#enterprise-page h2,
#enterprise-page h3,
#enterprise-page p,
#enterprise-page a:not(.tz-button, .tz-button--secondary) {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}
#enterprise-page h1 {
    font-size: 40px;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}
#enterprise-page h2 {
    font-size: 24px;
}
#enterprise-page h3 {
    font-size: 16px;
}
#enterprise-page p {
    font-size: 13px;
    font-weight: 300;
}
#enterprise-page h2 + p,
#communityrec h2 + p,
#corporatewellness h2 + p {
    font-size: 16px;
    margin-top: 20px;
}
/* TODO: Consider to move this into separate css to be used globaly. */
#enterprise-page .tz-anim-fade-in-scroll,
#communityrec .tz-anim-fade-in-scroll,
#corporatewellness .tz-anim-fade-in-scroll {
    opacity: 0;
    transform: translateY(10vh);
    transition: all 1.4s;
}
#enterprise-page .tz-anim-fade-in-scroll.tz-anim-fade-in-scroll-reveal,
#communityrec .tz-anim-fade-in-scroll.tz-anim-fade-in-scroll-reveal, 
#corporatewellness .tz-anim-fade-in-scroll.tz-anim-fade-in-scroll-reveal {
    opacity: 1;
    transform: translateY(0);
}
@keyframes tz-anim-scale-up {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/* end of potentially-global animation section */

#enterprise-header {
    padding: 20px 0 64px 0;
}
.enterprise-header__text {
    text-align: center;
}
.enterprise-header__text h1 > span {
    display: block;
    margin-top: 15px;
    font-size: 18px;
}
.enterprise-header__graphics {
    max-width: 326px;
    height: 300px;
    margin: 30px auto 45px auto;
    position: relative;
}
.enterprise-header__video {
    position: absolute;
    z-index: 2;
    width: 280px;
    height: 186px;
    border: 2px solid #B5B8BA;
    border-radius: 8px;
    overflow: hidden;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}
.enterprise-header__circles {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../../enterprise/images/header-circles-bg.png) no-repeat center;
    background-size: cover;
}
.enterprise-header__phone {
    position: absolute;
    z-index: 3;
    width: 67px;
    height: 113px;
    left: -10px;
    bottom: 35px;
    background: url(../../enterprise/images/header-phone.png) no-repeat center;
    background-size: cover;
}
.enterprise-header__tablet {
    position: absolute;
    z-index: 3;
    width: 167px;
    height: 131px;
    right: -20px;
    bottom: 25px;
    background: url(../../enterprise/images/header-tablet.png) no-repeat center;
    background-size: cover;
}
.enterprise-header__btn {
    text-align: center;
}

#enterprise-second {
    padding: 64px 0 13px 0;
}
.enterprise-second__img {
    position: relative;
    max-width: 440px;
    height: 444px;
    margin: 0 auto;
    background: url(../../enterprise/images/integrations.jpeg) no-repeat center;
    background-size: cover;
}
.enterprise-second__text {
    margin-bottom: 47px;
}
.enterprise-second__balloons {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.enterprise-second__balloons img {
    position: absolute;
    height: 17px;
    width: 49px;
    border-radius: 58px;/*for shadow, to fit the rounded png*/
    box-shadow: 1px 2px 7px rgba(var(--color-full-black-rgb), 0.15);
    transform: scale(0);
    animation-duration: .4s;
    animation-fill-mode: forwards;
}
.enterprise-second__balloons.tz-anim-scale-up img {
    animation-name: tz-anim-scale-up;
}
.enterprise-second__balloons img[data-balloon-name="fitness"] {
    top: 20%;
    left: 13%;
}
.enterprise-second__balloons img[data-balloon-name="fitbit"] {
    top: 38%;
    left: 9%;
    animation-delay: .6s;
}
.enterprise-second__balloons img[data-balloon-name="peloton"] {
    top: 57%;
    left: 9%;
    animation-delay: 1.2s;
}
.enterprise-second__balloons img[data-balloon-name="calm"] {
    top: 75%;
    left: 45%;
    animation-delay: 1.5s;
}
.enterprise-second__balloons img[data-balloon-name="garmin"] {
    top: 66%;
    left: 68%;
    animation-delay: .9s;
}
.enterprise-second__balloons img[data-balloon-name="withings"] {
    top: 36%;
    left: 77%;
    animation-delay: .3s;
}

#enterprise-third {
    padding: 78px 0 64px 0;
}
.enterprise-third__title {
    margin-bottom: 33px;
}
.enterprise-third__card {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    max-width: 325px;
    margin: 0 auto 25px auto;
}
.enterprise-third__card-text {
    padding: 30px 36px;
}
.enterprise-third__card-text p {
    text-align: center;
}
.enterprise-third__card-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 220px;
    border-radius: 0 0 22px 22px;
}
.enterprise-third__card[data-card] .enterprise-third__card-img.lazyBg {
    background-image: none;
}
.enterprise-third__card[data-card="1"] .enterprise-third__card-img {
    background-image: url("../../enterprise/images/tz-on-all-devices.jpeg");
}
.enterprise-third__card[data-card="2"] .enterprise-third__card-img {
    background-image: url("../../enterprise/images/working-out.jpeg");
}
.enterprise-third__card[data-card="3"] .enterprise-third__card-img {
    background-image: url("../../enterprise/images/habits-screen.jpeg");
}
.enterprise-third__btn {
    margin-top: 15px;
    text-align: center;
}

#enterprise-fourth {
    padding: 64px 0 78px 0;
}
.enterprise-fourth__text {
    margin-bottom: 32px;
}
.enterprise-fourth__text-items {
    position: relative;
    height: 50px;
    margin-top: 20px;
}
#enterprise-page .enterprise-fourth__text-items p,
#communityrec .enterprise-fourth__text-items p {
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.enterprise-fourth__img {
    max-width: 326px;
    margin: 0 auto;
}
.enterprise-fourth__slider-nav {
    margin: 20px auto;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.enterprise-fourth__slider-nav ul.slick-dots {
    display: inline-flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding-inline-start: 0;
    height: 19px;
}
.enterprise-fourth__slider-nav ul.slick-dots li button {
    color: transparent;
    height: 15px;
    width: 15px;
    border: 1px solid var(--color-primary);
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    font-size: 1px;
}
.enterprise-fourth__slider-nav ul.slick-dots li.slick-active button {
    background: rgb(35,31,32);
    background: radial-gradient(circle, rgba(35,31,32,1) 0%, rgba(35,31,32,1) 40%, rgba(35,31,32,0.17690826330532217) 40%, rgba(35,31,32,0) 100%);
}
.enterprise-fourth__slider-nav .enterprise-fourth-prev {
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    background-image: url(../../enterprise/images/icons/simple-arrow-left.svg);
    border: none;
    background-position: center;
}
.enterprise-fourth__slider-nav .enterprise-fourth-next {
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    background-image: url(../../enterprise/images/icons/simple-arrow-right.svg);
    border: none;
    order: 3;
    background-position: center;
}
#enterprise-fifth {
    padding: 64px 0;
}
.enterprise-fifth__title {
    margin-bottom: 60px;
}
.enterprise-fifth__card {
    margin-bottom: 40px;
}
.enterprise-fifth__card-img {
    margin-bottom: 20px;
}
.enterprise-fifth__card-img img {
    height: 45px;
}
.enterprise-fifth__card-title {
    margin-bottom: 15px;
}
.enterprise-fifth__card-title *,
.enterprise-fifth__card-text * {
    padding: 0;
    margin: 0;
}
#enterprise-page .enterprise-fifth__card-title *,
#communityrec .enterprise-fifth__card-title *,
#corporatewellness .enterprise-fifth__card-title * {
    font-size: 16px;
    font-weight: 700;
}

#enterprise-sixth {
    padding: 64px 0;
}
.enterprise-sixth__title {
    margin-bottom: 40px;
}
#enterprise-page .enterprise-sixth__title *,
#communityrec .enterprise-sixth__title *,
#corporatewellness .enterprise-sixth__title * {
    font-weight: 900;
}
.enterprise-sixth__logos {
    max-width: 345px;
    margin: 0 auto;
}
.enterprise-sixth__logos > div > div {
    display: flex;
    margin-bottom: 30px;
}
.enterprise-sixth__logos > div > div > div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#enterprise-les-mills,
#communityrec-scale {
    padding: 60px 0 80px 0;
}
.enterprise-les-mills__logo {
    max-width: 212px;
    margin: 0 auto 32px auto;
}
.enterprise-les-mills__heading, 
.communityrec-scale__heading {
    margin-bottom: 22px;
}
.enterprise-les-mills__video,
.communityrec-scale__video {
    margin: 0 auto 34px auto;
}
.enterprise-les-mills__video .tz-video__poster {
    background-image: url('https://file.trainerize.com/assets/tz/enterprise/images/lesmills.jpeg');
}
.enterprise-les-mills__logo img {
    width: 100%;
}
#enterprise-les-mills .enterprise-les-mills__text p,
#communityrec-scale .communityrec-scale__text p {
    font-size: 16px;
}

#enterprise-seventh {
    padding: 64px 0;
}
.enterprise-seventh__title,
.enterprise-seventh__img,
.enterprise-seventh__text {
    margin-bottom: 40px;
}
.enterprise-seventh__img .slick-track {
    padding: 40px 0;
    height: 438px;
}
.enterprise-seventh__img img {
    width: 179px;
    margin: 0 25px;
    transition: transform .5s;
}
.enterprise-seventh__img img.slick-center {
    transform: scale(1.2);
}
.enterprise-seventh__img img.slick-center + img,
.enterprise-seventh__img img.slick-center-left {
    transform: scale(1.1);
}

#enterprise-page .enterprise-seventh__text p {
    font-size: 18px;
}

#enterprise-eight {
    padding: 64px 0;
}
.enterprise-eight__title {
    margin-bottom: 28px;
}
.enterprise-eight__card {
    max-width: 326px;
    padding: 0 43px 28px 43px;
    border-radius: 18px;
    overflow: hidden;
    margin: 0 auto 20px auto;
}
.enterprise-eight__card-icon {
    height: 160px;
    margin-bottom: 20px;
}
.enterprise-eight__card[data-card="1"] img {
    width: 92px;
}
.enterprise-eight__card[data-card="2"] img {
    width: 109px;
}
.enterprise-eight__card[data-card="3"] img {
    width: 105px;
}
.enterprise-eight__card-title {
    margin-bottom: 20px;
}
.enterprise-eight__card-title > *,
.enterprise-eight__card-desc > * {
    text-align: center;
}

#enterprise-ninth {
    padding: 64px 0 40px 0;
}
.enterprise-ninth__title {
    margin-bottom: 20px;
}

#enterprise-lead {
    padding: 30px 0 50px;
}
.enterprise-lead__img img {
    margin-left: -30px;
}
#enterprise-lead .enterprise-lead__text h2 + p {
    font-size: 18px;
    margin: 20px 0;
}
.enterprise-lead__text .tz-button--secondary {
    margin-top: 40px;
}

#enterprise-tenth {
    padding: 64px 0 0 0;
    text-align: center;
}
.enterprise-tenth__title {
    margin-bottom: 25px;
}
.enterprise-tenth__mobile-screens {
    position: relative;
    height: 500px;
    background-image: url('../../enterprise/images/phones-puzzle.png');
    background-repeat: no-repeat;
    background-position: top center;
}
.enterprise-tenth__text {
    margin-bottom: 30px;
}
#enterprise-page .enterprise-tenth__text p,
#communityrec .enterprise-tenth__text p,
#corporatewellness .enterprise-tenth__text p {
    font-size: 12px;
}
.enterprise-tenth__btn {
    margin-bottom: 15px;
}
.enterprise-tenth__subtext {
    display: none;
}
#enterprise-page__popup-container {
    position: fixed;
    top: 135px;
    bottom: 50px;
    left: 10%;
    right: 10%;
    z-index: 100;
    background: transparent;
}

@media only screen and (min-width:768px) {
    #enterprise-header {
        padding: 80px 0 100px 0;
    }
    .enterprise-header__text {
        text-align: left;
        max-width: none;
        margin: 0;
        padding-right: 30px;
        margin-bottom: 60px;
    }
    .enterprise-header__graphics {
        max-width: none;
        margin: 10px 0 0 0;
    }
    .enterprise-header__video {
        width: 300px;
        height: 199px;
    }
    .enterprise-header__phone {
        bottom: 30px;
    }
    .enterprise-header__tablet {
        bottom: 0;
    }

    #enterprise-second {
        height: 393px;
        padding: 0;
        position: relative;
    }
    #enterprise-second > .container,
    .enterprise-second__text {
        height: 100%;
        margin-bottom: 0;
    }
    .enterprise-second__img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        max-width: none;
        margin: 0;
        width: 390px;
        height: auto;
    }
    .enterprise-second__text {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .enterprise-second__text-wrapper {
        flex: 0 0 305px;
    }

    #enterprise-third {
        padding-bottom: 90px;
    }
    .enterprise-third__title {
        max-width: 605px;
        margin: 0 auto 50px auto;
    }
    .enterprise-third__title * {
        text-align: center;
    }
    .enterprise-third__card {
        margin-bottom: 35px;
    }
    .enterprise-third__btn {
        margin-top: 30px;
    }
    .enterprise-fourth__text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .enterprise-fourth__text * {
        text-align: center;
    }
    .enterprise-fourth__text-items {
        width: 450px;
    }
    .enterprise-fourth__img {
        max-width: 400px;
        left: 25%;
        margin: 0;
    }
    .enterprise-fifth__title {
        max-width: 590px;
        margin: 0 auto 60px auto;
    }
    .enterprise-fifth__title * {
        text-align: center;
    }

    #enterprise-sixth {
        padding: 80px 0;
    }
    .enterprise-sixth__title {
        max-width: 670px;
        margin: 0 auto 70px auto;   
    }
    .enterprise-sixth__title * {
        text-align: center;
    }
    .enterprise-sixth__logos {
        max-width: none;
    }
    .enterprise-sixth__logos > div {
        display: flex;
        align-items: center;
    }
    .enterprise-sixth__logos > div > div {
        flex: 1;
    }

    #enterprise-seventh {
        padding: 100px 0 80px 0;
    }
    .enterprise-seventh__text,
    .enterprise-seventh__title {
        text-align: center;
    }
    .enterprise-seventh__title,
    .enterprise-seventh__img {
        margin-bottom: 70px;
    }

    #enterprise-eight {
        padding: 100px 0 80px 0;
    }
    .enterprise-eight__title {
        max-width: 550px;
        margin: 0 auto 50px auto;
    }
    .enterprise-eight__title * {
        text-align: center;
    }
    .enterprise-eight__card {
        margin-bottom: 40px;
    }

    #enterprise-ninth {
        padding: 90px 0 70px 0;
    }
    .enterprise-ninth__title {
        max-width: 455px;
        margin: 0 auto 30px auto;
    }
    .enterprise-ninth__title * {
        text-align: center;
    }

    #enterprise-lead {
        padding: 40px 0;
    }
    .enterprise-lead__img img {
        margin-left: 0;
    }
    .enterprise-lead__text {
        max-width: 340px;
        margin-top: 25px;
    }

    #enterprise-tenth {
        padding: 100px 0 35px;
        position: relative;
        text-align: left;
    }
    #enterprise-tenth > .container .col-sm-6 {
        position: static;
    }
    .enterprise-tenth__mobile-screens {
        width: 450px;
        height: 508px;
        position: absolute;
        top: 60px;
        right: 0;        
        background-image: url('../../enterprise/images/desktop/phones-puzzle.png');
        background-position: top left;
        background-size: cover;
        
    }
    .enterprise-tenth__title {
        margin-bottom: 50px;
        max-width: 230px;
    }
    #enterprise-page .enterprise-tenth__title p,
    #communityrec .enterprise-tenth__title p {
        max-width: 300px;
    }
    .enterprise-tenth__text {
        text-align: left;
    }
    .enterprise-tenth__text a.tz-button {
        margin-bottom: 30px;
    }
    #enterprise-page .enterprise-tenth__subtext,
    #communityrec .enterprise-tenth__subtext,
    #corporatewellness .enterprise-tenth__subtext {
        margin-top: 35px;
        max-width: 230px;
        display: block;
    }

    .enterprise-les-mills__heading,
    .communityrec-scale__heading {
        margin:0 20px 22px;
    }

    .enterprise-les-mills__video .tz-video__poster,
    .communityrec-scale__video .tz-video__poster {
        width: 326px;
        height: 364px;
    }
}

@media only screen and (min-width:992px) {
    #enterprise-page h1 {
        font-size: 60px;
    }
    #enterprise-page h2 {
        font-size: 40px;
        line-height: 1.2;
    }
    #enterprise-page h2 + p,
    #communityrec h2 + p,
    #corporatewellness h2 + p {
        font-size: 18px;
        margin-top: 35px;
    }
    #enterprise-page p {
        font-size: 14px;
    }

    #enterprise-header {
        padding: 80px 0 120px 0;
    }
    .enterprise-header__text h1 > span {
        font-size: 30px;
    }
    #enterprise-header__text {
        margin-bottom: 85px;
    }
    .enterprise-header__graphics {
        margin-top: 20px;
        height: 414px;
    }
    .enterprise-header__video {
        width: 360px;
        height: 239px;
        top: 45px;
    }
    .enterprise-header__phone {
        background-image: url(../../enterprise/images/desktop/header-phone.png);
        width: 100px;
        height: 150px;
        bottom: 60px;
        left: 0;
    }
    .enterprise-header__tablet {
        background-image: url(../../enterprise/images/desktop/header-tablet.png);
        width: 180px;
        height: 140px;
        bottom: 60px;
    }

    #enterprise-second {
        height: 500px;  
    }
    .enterprise-second__text-wrapper {
        flex: 0 0 410px;
    }
    .enterprise-second__img {
        height: auto;
        width: 496px;
    }
    .enterprise-second__balloons img {
        width: 94px;
        height: 33px;
    }

    #enterprise-third {
        padding: 120px 0;
    }
    .enterprise-third__title {
        max-width: 910px;
        margin-bottom: 60px;
    }
    .enterprise-third__card {
        margin-bottom: 0;
        min-height: 390px;
    }
    .enterprise-third__btn {
        margin-top: 60px;
    }

    #enterprise-fourth {
        padding: 130px 0;
    }
    .enterprise-fourth__wrapper {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .enterprise-fourth__text {
        flex: 0 0 470px;
        margin-bottom: 0;
        align-items: flex-start;
        margin-top: -90px;
    }
    .enterprise-fourth__text * {
        text-align: left;
    }
    #enterprise-page .enterprise-fourth__text p[data-item],
    #communityrec .enterprise-fourth__text p[data-item],
    #corporatewellness .enterprise-fourth__text p[data-item] {
        font-size: 20px;
    }
    .enterprise-fourth__slider-nav {
        margin: -60px 0 0 50%;
        justify-content: flex-start;
    }
    .enterprise-fourth__slider-nav .enterprise-fourth-prev,
    .enterprise-fourth__slider-nav .enterprise-fourth-next {
        height: 12px;
    }
    .enterprise-fourth__slider-nav ul.slick-dots li button {
        height: 20px;
        width: 20px;
    }
    .enterprise-fourth__img {
        left: 0;
    }

    #enterprise-fifth {
        padding: 140px 0;
    }
    .enterprise-fifth__title {
        max-width: 715px;
        margin-bottom: 95px;
    }
    .enterprise-fifth__card {
        max-width: 270px;
        margin: 0 auto;
    }
    .enterprise-fifth__first-card-row {
        margin-bottom: 90px;
    }
    .enterprise-fifth__card-img {
        margin-bottom: 35px;
    }
    .enterprise-fifth__card-img img {
        height: 54px;
    }
    #enterprise-page .enterprise-fifth__card-title *,
    #communityrec .enterprise-fifth__card-title *,
    #corporatewellness .enterprise-fifth__card-title * {
        font-size: 18px;
    }

    .enterprise-sixth__title {
        max-width: 700px;
    }
    #enterprise-page .enterprise-sixth__title h2
    #communityrec .enterprise-sixth__title h2,
    #corporatewellness .enterprise-sixth__title h2 {
        font-size: 24px;
    }

    #enterprise-les-mills,
    #communityrec-scale {
        padding: 105px 0 100px 0;
    }
    .enterprise-les-mills__logo {
        max-width: 430px;
    }
    .enterprise-les-mills__heading,
    .communityrec-scale__heading{
        margin: 0 35px 40px;
    }
    #enterprise-les-mills .enterprise-les-mills__heading h2,
    #communityrec-scale .communityrec-scale__heading h2 {
        font-size: 38px;
    }
    .enterprise-les-mills__video,
    .communityrec-scale__video {
        margin-bottom: 68px;
    }
    .enterprise-les-mills__video .tz-video__poster {
        background-image: url('https://file.trainerize.com/assets/tz/enterprise/images/large/lesmills.jpeg');
        width: 100%;
        max-width: 1030px;
        height: 541px;
    }
    #enterprise-les-mills .enterprise-les-mills__text p,
    #communityrec-scale .communityrec-scale__text p {
        font-size: 20px;
    }

    #enterprise-seventh h2 {
        font-size: 38px;
    }
    #enterprise-page .enterprise-seventh__text p {
        font-size: 20px;
        max-width: none;
    }

    .enterprise-seventh__img {
        position: relative;
        overflow: hidden;
        height: 438px;
        width: 100%;
    }
    .enterprise-seventh__img img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        width: auto;
        opacity: 0;
        transition: opacity 1s, transform 1.5s;
    }
    .enterprise-seventh__img img[data-img-pos="left-2"],
    .enterprise-seventh__img img[data-img-pos="right-2"] {
        width: 154px;
        height: 317px;
        z-index: 1;
    }
    .enterprise-seventh__img img[data-img-pos="left-1"],
    .enterprise-seventh__img img[data-img-pos="right-1"] {
        width: 179px;
        height: 370px;
        z-index: 2;
    }
    .enterprise-seventh__img img[data-img-pos="front"] {
        width: 212px;
        height: 438px;
        z-index: 3;
    }
    .enterprise-seventh__img.enterprise-screens-spread img[data-img-pos="front"] {
        opacity: 1;
    }
    .enterprise-seventh__img.enterprise-screens-spread img[data-img-pos="left-2"] {
        opacity: 1;
        transform: translate(-320%, -50%);
    }
    .enterprise-seventh__img.enterprise-screens-spread img[data-img-pos="left-1"] {
        opacity: 1;
        transform: translate(-175%, -50%);
    }
    .enterprise-seventh__img.enterprise-screens-spread img[data-img-pos="right-2"] {
        opacity: 1;
        transform: translate(220%, -50%);
    }
    .enterprise-seventh__img.enterprise-screens-spread img[data-img-pos="right-1"] {
        opacity: 1;
        transform: translate(75%, -50%);
    }

    .enterprise-eight__title {
        max-width: 700px;
        margin-bottom: 70px;
    }
    .enterprise-eight__card {
        min-height: 383px;
        margin-bottom: 0;
        padding: 0 40px 28px 40px;
    }
    .enterprise-eight__card-icon {
        height: 178px;
        margin-bottom: 10px;
    }
    .enterprise-eight__card[data-card="1"] img {
        width: 104px;
    }
    .enterprise-eight__card[data-card="2"] img {
        width: 125px;
    }
    .enterprise-eight__card[data-card="3"] img {
        width: 121px;
    }

    #enterprise-ninth {
        padding: 120px 0 60px 0;
    }
    .enterprise-ninth__title {
        max-width: 705px;
        margin-bottom: 65px;
    }

    #enterprise-lead {
        padding: 80px 0 70px;
    }
    .enterprise-lead__img img {
        width: 100%;
    }
    .enterprise-lead__text {
        max-width: none;
        margin-top: 0;
    }
    #enterprise-lead .enterprise-lead__text h2 + p {
        font-size: 30px;
        margin: 30px 0;
    }
    #enterprise-lead .enterprise-lead__text p {
        font-size: 16px;
    }


    #enterprise-tenth {
        padding: 70px 0 40px;
    }
    .enterprise-tenth__title {
        max-width: 380px;
    }
    #enterprise-page .enterprise-tenth__title p {
        font-size: 20px;
        max-width: 310px;
    }
    .enterprise-tenth__btn {
        margin-bottom: 30px;
    }
    #enterprise-page .enterprise-tenth__text p,
    #communityrec .enterprise-tenth__text p,
    #corporatewellness .enterprise-tenth__text p {
        font-size: 14px;
    }
    .enterprise-tenth__mobile-screens {
        width: 550px;
        height: 620px;
    }
    #enterprise-page .enterprise-tenth__subtext,
    #communityrec .enterprise-tenth__subtext,
    #corporatewellness .enterprise-tenth__subtext {
        max-width: 300px;
    }
}

@media only screen and (min-width:1200px) {

    #enterprise-header {
        padding: 80px 0;
    }
    .enterprise-header__text {
        padding: 50px 0 0 0;
    }
    .enterprise-header__graphics {
        margin-top: 0;
        height: 595px;
    }
    .enterprise-header__video {
        width: 552px;
        height: 366px;
        top: 65px;
        border-width: 4px;
        border-radius: 18px;
    }
    .enterprise-header__phone {
        width: 156px;
        height: 233px;
        bottom: 70px;
        left: -20px;
    }
    .enterprise-header__tablet {
        width: 337px;
        height: 263px;
        bottom: 55px;
        right: -35px;
    }

    #enterprise-second {
        height: 728px;
    }
    .enterprise-second__text-wrapper {
        flex: 0 0 475px;
    }
    .enterprise-second__img {
        background-image: url(../../enterprise/images/desktop/integrations.jpeg);
        background-position: top left;
        width: 50%;
        max-width: 1018px;
    }
    .enterprise-second__balloons {
        width: 592px;
    }
    .enterprise-second__balloons img[data-balloon-name="calm"] {
        left: 45%;
    }
    .enterprise-second__balloons img[data-balloon-name="garmin"] {
        left: 80%;
    }
    .enterprise-second__balloons img[data-balloon-name="withings"] {
        left: 84%;
    }

    #enterprise-third {
        padding: 160px 0;
    }
    .enterprise-third__card {
        max-width: 360px;
        min-height: 375px;
    }
    .enterprise-third__card-img {
        height: 245px;
    }

    #enterprise-fourth {
        padding: 130px 0 190px;
    }
    .enterprise-fourth__img {
        max-width: 529px;
    }
    .enterprise-fourth__slider-nav {
        margin: -115px 0 0 59%;
    }

    #enterprise-fifth {
        padding: 160px 0 200px 0;
    }
    .enterprise-fifth__title {
        margin-bottom: 95px;
    }
    .enterprise-fifth__title * {
        text-align: center;
    }
    .enterprise-fifth__card-img {
        margin-bottom: 35px;
    }

    .enterprise-sixth__title {
        max-width: none;
    }
    .enterprise-sixth__logos {
        display: flex;
        align-items: center;
    }
    .enterprise-sixth__logos > div {
        flex: 1;
    }
    .enterprise-sixth__logos img {
        margin-right: 35px;
    }

    #enterprise-seventh {
        padding: 165px 0 230px 0;
    }
    .enterprise-seventh__title {
        max-width: 970px;
        margin: 0 auto 70px auto;
    }
    .enterprise-seventh__img {
        width: 1113px;
        height: 490px;
        margin: 0 auto 48px auto;
    }
    .enterprise-seventh__img img[data-img-pos="left-2"],
    .enterprise-seventh__img img[data-img-pos="right-2"] {
        width: 172px;
        height: 355px;
    }
    .enterprise-seventh__img img[data-img-pos="left-1"],
    .enterprise-seventh__img img[data-img-pos="right-1"] {
        width: 200px;
        height: 413px;
    }
    .enterprise-seventh__img img[data-img-pos="front"] {
        width: 237px;
        height: 489px;
    }

    #enterprise-eight {
        padding: 155px 0 175px 0;
    }
    .enterprise-eight__card {
        max-width: 360px;
        min-height: 383px;
        padding: 0 45px;
    }
    .enterprise-eight__card-icon {
        height: 178px;
        margin-bottom: 10px;
    }

    #enterprise-ninth {
        padding: 120px 0 60px 0;
    }

    #enterprise-lead {
        padding: 40px 0 10px;
    }
    .enterprise-lead__text {
        margin-top: 80px;
    }
    #enterprise-lead .enterprise-lead__text h2 {
        max-width: 500px;
    }

    #enterprise-page .enterprise-tenth__title p,
    #communityrec .enterprise-tenth__title p,
    #corporatewellness .enterprise-tenth__title p {
        max-width: 475px;
    }
    #enterprise-tenth {
        padding: 165px 0 130px;
    }
    .enterprise-tenth__title {
        margin-bottom: 105px;
    }
    .enterprise-tenth__mobile-screens {
        width: 822px;
        height: 928px;
    }
}