

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner>.item {
    position: relative;
    display: none;
    -webkit-transition: .4s ease-in-out left;
    -o-transition: .4s ease-in-out left;
    transition: .4s ease-in-out left
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner>.item {
        -webkit-transition: -webkit-transform .4s ease-in-out;
        -o-transition: -o-transform .4s ease-in-out;
        transition: -webkit-transform .4s ease-in-out;
        transition: transform .4s ease-in-out;
        transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out, -o-transform .4s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }
    .carousel-inner>.item.active.right,
    .carousel-inner>.item.next {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.active.left,
    .carousel-inner>.item.prev {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0
    }
    .carousel-inner>.item.active,
    .carousel-inner>.item.next.left,
    .carousel-inner>.item.prev.right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
    display: block
}

.carousel-inner>.active {
    left: 0
}

.carousel-inner>.next,
.carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner>.next {
    left: 100%
}

.carousel-inner>.prev {
    left: -100%
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
    left: 0
}

.carousel-inner>.active.left {
    left: -100%
}

.carousel-inner>.active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: transparent;
    filter: alpha(opacity=50);
    opacity: .5
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x
}

.carousel-control:focus,
.carousel-control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    filter: alpha(opacity=90);
    opacity: .9
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1
}

.carousel-control .icon-prev:before {
    content: "\2039"
}

.carousel-control .icon-next:before {
    content: "\203a"
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 10px
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next,
    .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px
    }
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px
    }
    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }
    .carousel-indicators {
        bottom: 20px
    }
}



/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/




.removeLine {
    float: left
}
.scrollmenu .a-rep.active:after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(100vw * .078);
    z-index: 8;
    width: 0;
    height: 0;
    border-top: solid 10px #b29041 !important;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent
}
.breakCls {
    display: none;
}
.treatable-section-2 .col-sm-12 {
    display: table;
    height: calc(100vw * .5)
}
.centerAlign {
    display: table-cell;
    vertical-align: middle
}
.centerAlign h3 {
    max-width: 450px
}
.headProp {
    margin-top: 20px;
    margin-bottom: 40px !important
}
.extraBottomPadd {
    margin-bottom: 20px
}
.helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle
}


.treatable-section-1 {
    background-size: cover !important;

}
.treatable-section-1 .inner-section {
    /*        max-width: 500px;*/
    margin-right: calc(75vw * .1);
    margin-left: calc(530vw * .1);
    margin-top: calc(100vw * .157 - 50px);
    text-align: right;
    color: #fff;
}

.treatable-section-1 .inner-section h3{
    font-size: 40px;
    color: #b29041;
}

.treatable-section-1 .inner-section p{
    font-size: 20px;
}





.treatable-section-1_overbite {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/over_bite-57d85716809c3b5d9447485efcb3876e14518467d7adbf3cfb1cef777b71dbb0.jpg) no-repeat
}
.treatable-section-1_underbite {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/under_bite-c1d80c3a6cb95603ac575173029953ef8ce873b634b415df676da874127b9c93.jpg) no-repeat
}
.treatable-section-1_crossbite {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/cross_bite-aebdf7d49f47fcd95b7ff554e0a14403cea5c140df0dab2d57ff89cc2fa8cd96.jpg) no-repeat
}
.treatable-section-1_gapteeth {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/gapped-a789c1636d15cc3809449372ac133e474397eec5b98b16ba47b5d27fba38284e.jpg) no-repeat
}
.treatable-section-1_openteeth {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/open_bite-2d148520773345661e3a14851121c11e329819979a6375f51986f7ec575e5c76.jpg) no-repeat
}
.treatable-section-1_crowdedteeth {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/crowded-4ad9ba2cc4fbd1952f208afed2fa2a32419d1c0dbd2f7500ae8188658452a278.jpg) no-repeat
}
.treatable-section-1_phase1 {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/mixed_baby-af80074bdba0961b7599af5c9931c87084a607a41314ac79608502c6ef7a2cb2.jpg) no-repeat
}
.treatable-section-1_straighterteeth {
    background: url(//dv2c9ihs6hqjp.cloudfront.net/assets/invisalign/cosmetic-baa3e120d472cf00b5e10b580d951bf66a6932b71ebf60bc1c2c42792d1c9b03.jpg) no-repeat
}

.scrollmenu {
    height: calc(100vw * .087);
    white-space: nowrap;
    background-color: #f7f7f7;
    padding: 0px !important
}
.scrollmenu .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    /*    width: 12.496%*/
    width: 16.6666667%;
}
.scrollmenu .a-rep {
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    max-width: 100%;
    cursor: pointer;
}
.scrollmenu .a-rep.active {
    background-color: #b29041;
    position: relative;
    color: white;
}
.scrollmenu .a-rep:focus,
.scrollmenu .a-rep:active {
    background-color: #b29041;
    position: relative;
    color: white
}
.scrollmenu .a-rep:focus:after,
.scrollmenu .a-rep:active:after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(100vw * .078);
    z-index: 999;
    width: 0;
    height: 0;
    border-top: solid 10px #b29041;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent
}
.scrollmenu .a-rep:focus .contImg img.onderbiteImg,
.scrollmenu .a-rep.active .contImg img.onderbiteImg {
    content: url(../img/overbite-white.png);
}
.scrollmenu .a-rep:focus .contImg img.underbiteImg,
.scrollmenu .a-rep.active .contImg img.underbiteImg {
    content: url(../img/underbite-white.png);
}
.scrollmenu .a-rep:focus .contImg img.crossbiteImg,
.scrollmenu .a-rep.active .contImg img.crossbiteImg {
    content: url(../img/crossbite-white.png);
}
.scrollmenu .a-rep:focus .contImg img.gapImg,
.scrollmenu .a-rep.active .contImg img.gapImg {
    content: url(../img/teeth-white.png);
}
.scrollmenu .a-rep:focus .contImg img.openImg,
.scrollmenu .a-rep.active .contImg img.openImg {
    content: url(../img/open_bite-white.png);
}
.scrollmenu .a-rep:focus .contImg img.crowdedImg,
.scrollmenu .a-rep.active .contImg img.crowdedImg {
    content: url(../img/crowded_teeth-white.png);
}
.scrollmenu .a-rep:focus .contImg img.phase1Img,
.scrollmenu .a-rep.active .contImg img.phase1Img {
    content: url(../img/permanent-white.png);
}
.scrollmenu .a-rep:focus .contImg img.casesImg,
.scrollmenu .a-rep.active .contImg img.casesImg {
    content: url(../img/generally_straighter-white.png);
}

.scrollmenu .a-rep:focus .innerhelper,
.scrollmenu .a-rep:active .innerhelper {
    color: #ffffff
}
.scrollmenu .a-rep .helper1 {
    display: inline-block;
    height: 100%;
    vertical-align: middle
}
.scrollmenu .a-rep .contImg {
    height: calc(100vw * .061);
}
.scrollmenu .a-rep img {
    width: calc(100vw * .0725);
}
.scrollmenu .a-rep .innerhelper {
    margin-top: 0px;
    line-height: 20px;
    font-size: 18px;
}
.activeLink {
    background-color: #009ace;
    position: relative;
    color: white

}
.activeLink:after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(100vw * .078);
    width: 0;
    height: 0;
    border-top: solid 10px #009AC9;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent
}
.activeLink .innerhelper {
    color: white !important;
    margin-top: -10px
}



/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 1600px) {}
@media (max-width: 1440px) {
    .scrollmenu .a-rep .contImg {
        height: calc(90vw * .061);
    }
    .treatable-section-1 .inner-section h3 {
        font-size: 34px;
        color: #b29041;
    }
    .treatable-section-1 .inner-section p {
        font-size: 18px;
    }


}
@media (max-width: 1366px) {}
@media (max-width: 1330px) {
    .scrollmenu .a-rep .innerhelper {
        margin-top: -5px;
        line-height: 20px;
        font-size: 14px;
    }
}
@media (max-width: 1280px) {
    .treatable-section-1 .inner-section h3 {
        font-size: 30px;
        color: #b29041;
    }
    .treatable-section-1 .inner-section p {
        font-size: 17px;
    }
}
@media (max-width: 1024px) {}
@media (max-width: 991px) {
    .scrollmenu .helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        width: 33.3333333%;
    }
    .scrollmenu .a-rep.active:after {
        content: '';
        position: absolute;
        top: 100%;
        left: calc(100vw * .058);
        z-index: 8;
        width: 0;
        height: 0;
        border-top: solid 0px #b29041 !important;
        border-left: solid 0px transparent;
        border-right: solid 0px transparent;
    }
    .scrollmenu .a-rep img {
        width: calc(100vw * .1);
    }
    .scrollmenu .a-rep .contImg {
        height: calc(100vw * .1);
    }
    .scrollmenu {
        height: calc(100vw * .15);
        white-space: nowrap;
        background-color: #f7f7f7;
        padding: 0px !important;
        margin-bottom: 5rem;
    }

}
@media (max-width: 768px) {
    .treatable-section-1 .inner-section h3 {
        font-size: 20px;
        color: #b29041;
    }
    .treatable-section-1 .inner-section p {
        font-size: 14px;
    }
    .treatable-section-1 .inner-section {
        /* max-width: 500px; */
        margin-right: calc(10vw * .1);
        margin-left: calc(530vw * .1);
        margin-top: calc(100vw * .157 - 50px);
        text-align: right;
        color: #fff;
    }


}
@media (max-width: 576px) {
    .scrollmenu .a-rep .innerhelper {
        margin-top: -5px;
        line-height: 16px;
        font-size: 13px;
    }
    .scrollmenu {
        height: calc(100vw * .13);
        white-space: nowrap;
        background-color: #f7f7f7;
        padding: 0px !important;
        margin-bottom: 4rem;
    }
    .treatable-section-1 .inner-section h3 {
        font-size: 18px;
        color: #b29041;
    }
    .treatable-section-1 .inner-section p {
        font-size: 13px;
        font-weight: 300;
    }




}
@media (max-width: 480px) {
    .scrollmenu .a-rep .innerhelper {
        margin-top: 0px;
        line-height: 12px;
        font-size: 12px;
    }
    .scrollmenu .a-rep img {
        width: calc(100vw * .12);
    }
    .scrollmenu .a-rep .contImg {
        height: calc(100vw * .1);
    }
    .scrollmenu {
        height: calc(100vw * .165);
        white-space: nowrap;
        background-color: #f7f7f7;
        padding: 0px !important;
        margin-bottom: 4rem;
    }
    .scrollmenu .a-rep {
        display: inline-block;
        text-align: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        max-width: 100%;
        cursor: pointer;
        padding-right: 5px;
        padding-left: 5px;
    }
    .treatable-section-1 .inner-section {
        /* max-width: 500px; */
        margin-right: calc(10vw * .1);
        margin-left: calc(470vw * .1);
        margin-top: calc(100vw * .157 - 50px);
        text-align: right;
        color: #fff;
    }


}
@media (max-width: 425px) {
    .scrollmenu .a-rep .innerhelper {
        margin-top: 0px;
        line-height: 12px;
        font-size: 11px;
    }

    .treatable-section-1 .inner-section {
        /* max-width: 500px; */
        margin-right: calc(10vw * .1);
        margin-left: calc(530vw * .1);
        margin-top: calc(100vw * .12 - 50px);
        text-align: right;
        color: #fff;
    }
    .treatable-section-1 .inner-section p {
        font-size: 12px;
        font-weight: 300;
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        -webkit-line-clamp: 2;
    }
}
@media (max-width: 414px) {}
@media (max-width: 375px) {}
@media (max-width: 320px) {}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*

@media only screen and (min-width: 1100px) {
    .treatable-section-1 {
        background-size: cover !important;
        height: calc(100vw * .4)
    }
    .treatable-section-1 .inner-section {
        max-width: 500px;
        margin-right: calc(100vw * .15)
    }
}

@media only screen and (max-width: 767px) {
    .get_button {
        height: 38px !important
    }
    h2 {
        max-width: 75% !important
    }
    .demonstration {
        margin-bottom: 0;
        max-width: none;
        color: #949695;
        font-size: 12px !important;
        line-height: 1.3;
        position: absolute;
        bottom: 3px;
        left: 0px;
        right: 0px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        z-index: 9
    }
    .col-sm-section-5 .col-sm-12 p {
        margin-right: auto;
        margin-left: auto
    }
    .extraPadd {
        padding-left: 32px !important
    }
    .headProp {
        margin-top: 20px;
        margin-bottom: 20px !important
    }
    .treatable-section-2 .col-sm-12 {
        display: table;
        height: calc(100vw * 1.2);
        margin-left: auto;
        margin-right: auto
    }
    .centerAlign {
        display: table-cell;
        vertical-align: middle
    }
    .centerAlign h1 {
        font-size: 45px
    }
    .scrollWrapper {
        height: 110px;
        overflow: auto;
        background: #3f3d39
    }
    .scrollmenu {
        height: 100px;
        white-space: nowrap;
        background-color: #f7f7f7;
        padding: 0px !important
    }
    .scrollmenu .helper {
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        width: 100px;
        background-color: #f7f7f7;
        margin-left: -2px;
        margin-right: -2px
    }
    .scrollmenu .a-rep {
        display: inline-block;
        text-align: center;
        width: 100%;
        height: 100%;
        text-decoration: none
    }
    .scrollmenu .a-rep .helper1 {
        display: inline-block;
        height: 100%;
        vertical-align: middle
    }
    .scrollmenu .a-rep .contImg {
        height: 60px
    }
    .scrollmenu .a-rep img {
        width: 52px;
        margin-left: -3px
    }
    .scrollmenu .a-rep .innerhelper {
        display: inherit;
        color: #949695;
        margin-top: -10px;
        font-size: 11px !important
    }
    .scrollmenu .a-rep.active:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 40%;
        width: 0;
        height: 0;
        border-top: solid 10px #009AC9;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent
    }
    .scrollmenu .activeLink {
        background-color: #009ace;
        position: relative;
        color: white
    }
    .scrollmenu .activeLink:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 40%;
        width: 0;
        height: 0;
        border-top: solid 10px #009AC9;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent
    }
    .scrollmenu .activeLink .innerhelper {
        color: #ffffff
    }
    .treatable-section-1 {
        background-size: cover !important;
        height: calc(100vw * 1.1)
    }
    .treatable-section-1 .inner-section {
        margin-top: calc(100vw * .70)
    }
    .treatable-section-1 .inner-section-phase1 {
        margin-top: calc(100vw * .66)
    }
}
*/