/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control the layout of elements
and how they stack. This is based off of the bootstrap system.
*********************************************************************************
****************************************************************************** */


.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 544px) {
  .container {
    max-width: 576px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 940px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.col-xs {
  position: relative;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-xs-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-xs-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-xs-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-xs-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-xs-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-xs-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-xs-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-xs-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-xs-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-xs-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-xs-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.pull-xs-0 {
  right: auto;
}

.pull-xs-1 {
  right: 8.33333%;
}

.pull-xs-2 {
  right: 16.66667%;
}

.pull-xs-3 {
  right: 25%;
}

.pull-xs-4 {
  right: 33.33333%;
}

.pull-xs-5 {
  right: 41.66667%;
}

.pull-xs-6 {
  right: 50%;
}

.pull-xs-7 {
  right: 58.33333%;
}

.pull-xs-8 {
  right: 66.66667%;
}

.pull-xs-9 {
  right: 75%;
}

.pull-xs-10 {
  right: 83.33333%;
}

.pull-xs-11 {
  right: 91.66667%;
}

.pull-xs-12 {
  right: 100%;
}

.push-xs-0 {
  left: auto;
}

.push-xs-1 {
  left: 8.33333%;
}

.push-xs-2 {
  left: 16.66667%;
}

.push-xs-3 {
  left: 25%;
}

.push-xs-4 {
  left: 33.33333%;
}

.push-xs-5 {
  left: 41.66667%;
}

.push-xs-6 {
  left: 50%;
}

.push-xs-7 {
  left: 58.33333%;
}

.push-xs-8 {
  left: 66.66667%;
}

.push-xs-9 {
  left: 75%;
}

.push-xs-10 {
  left: 83.33333%;
}

.push-xs-11 {
  left: 91.66667%;
}

.push-xs-12 {
  left: 100%;
}

.offset-xs-1 {
  margin-left: 8.33333%;
}

.offset-xs-2 {
  margin-left: 16.66667%;
}

.offset-xs-3 {
  margin-left: 25%;
}

.offset-xs-4 {
  margin-left: 33.33333%;
}

.offset-xs-5 {
  margin-left: 41.66667%;
}

.offset-xs-6 {
  margin-left: 50%;
}

.offset-xs-7 {
  margin-left: 58.33333%;
}

.offset-xs-8 {
  margin-left: 66.66667%;
}

.offset-xs-9 {
  margin-left: 75%;
}

.offset-xs-10 {
  margin-left: 83.33333%;
}

.offset-xs-11 {
  margin-left: 91.66667%;
}

@media (min-width: 544px) {
  .col-sm {
    position: relative;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-sm-0 {
    right: auto;
  }

  .pull-sm-1 {
    right: 8.33333%;
  }

  .pull-sm-2 {
    right: 16.66667%;
  }

  .pull-sm-3 {
    right: 25%;
  }

  .pull-sm-4 {
    right: 33.33333%;
  }

  .pull-sm-5 {
    right: 41.66667%;
  }

  .pull-sm-6 {
    right: 50%;
  }

  .pull-sm-7 {
    right: 58.33333%;
  }

  .pull-sm-8 {
    right: 66.66667%;
  }

  .pull-sm-9 {
    right: 75%;
  }

  .pull-sm-10 {
    right: 83.33333%;
  }

  .pull-sm-11 {
    right: 91.66667%;
  }

  .pull-sm-12 {
    right: 100%;
  }

  .push-sm-0 {
    left: auto;
  }

  .push-sm-1 {
    left: 8.33333%;
  }

  .push-sm-2 {
    left: 16.66667%;
  }

  .push-sm-3 {
    left: 25%;
  }

  .push-sm-4 {
    left: 33.33333%;
  }

  .push-sm-5 {
    left: 41.66667%;
  }

  .push-sm-6 {
    left: 50%;
  }

  .push-sm-7 {
    left: 58.33333%;
  }

  .push-sm-8 {
    left: 66.66667%;
  }

  .push-sm-9 {
    left: 75%;
  }

  .push-sm-10 {
    left: 83.33333%;
  }

  .push-sm-11 {
    left: 91.66667%;
  }

  .push-sm-12 {
    left: 100%;
  }

  .offset-sm-0 {
    margin-left: 0%;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    position: relative;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-md-0 {
    right: auto;
  }

  .pull-md-1 {
    right: 8.33333%;
  }

  .pull-md-2 {
    right: 16.66667%;
  }

  .pull-md-3 {
    right: 25%;
  }

  .pull-md-4 {
    right: 33.33333%;
  }

  .pull-md-5 {
    right: 41.66667%;
  }

  .pull-md-6 {
    right: 50%;
  }

  .pull-md-7 {
    right: 58.33333%;
  }

  .pull-md-8 {
    right: 66.66667%;
  }

  .pull-md-9 {
    right: 75%;
  }

  .pull-md-10 {
    right: 83.33333%;
  }

  .pull-md-11 {
    right: 91.66667%;
  }

  .pull-md-12 {
    right: 100%;
  }

  .push-md-0 {
    left: auto;
  }

  .push-md-1 {
    left: 8.33333%;
  }

  .push-md-2 {
    left: 16.66667%;
  }

  .push-md-3 {
    left: 25%;
  }

  .push-md-4 {
    left: 33.33333%;
  }

  .push-md-5 {
    left: 41.66667%;
  }

  .push-md-6 {
    left: 50%;
  }

  .push-md-7 {
    left: 58.33333%;
  }

  .push-md-8 {
    left: 66.66667%;
  }

  .push-md-9 {
    left: 75%;
  }

  .push-md-10 {
    left: 83.33333%;
  }

  .push-md-11 {
    left: 91.66667%;
  }

  .push-md-12 {
    left: 100%;
  }

  .offset-md-0 {
    margin-left: 0%;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    position: relative;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-lg-0 {
    right: auto;
  }

  .pull-lg-1 {
    right: 8.33333%;
  }

  .pull-lg-2 {
    right: 16.66667%;
  }

  .pull-lg-3 {
    right: 25%;
  }

  .pull-lg-4 {
    right: 33.33333%;
  }

  .pull-lg-5 {
    right: 41.66667%;
  }

  .pull-lg-6 {
    right: 50%;
  }

  .pull-lg-7 {
    right: 58.33333%;
  }

  .pull-lg-8 {
    right: 66.66667%;
  }

  .pull-lg-9 {
    right: 75%;
  }

  .pull-lg-10 {
    right: 83.33333%;
  }

  .pull-lg-11 {
    right: 91.66667%;
  }

  .pull-lg-12 {
    right: 100%;
  }

  .push-lg-0 {
    left: auto;
  }

  .push-lg-1 {
    left: 8.33333%;
  }

  .push-lg-2 {
    left: 16.66667%;
  }

  .push-lg-3 {
    left: 25%;
  }

  .push-lg-4 {
    left: 33.33333%;
  }

  .push-lg-5 {
    left: 41.66667%;
  }

  .push-lg-6 {
    left: 50%;
  }

  .push-lg-7 {
    left: 58.33333%;
  }

  .push-lg-8 {
    left: 66.66667%;
  }

  .push-lg-9 {
    left: 75%;
  }

  .push-lg-10 {
    left: 83.33333%;
  }

  .push-lg-11 {
    left: 91.66667%;
  }

  .push-lg-12 {
    left: 100%;
  }

  .offset-lg-0 {
    margin-left: 0%;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    position: relative;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pull-xl-0 {
    right: auto;
  }

  .pull-xl-1 {
    right: 8.33333%;
  }

  .pull-xl-2 {
    right: 16.66667%;
  }

  .pull-xl-3 {
    right: 25%;
  }

  .pull-xl-4 {
    right: 33.33333%;
  }

  .pull-xl-5 {
    right: 41.66667%;
  }

  .pull-xl-6 {
    right: 50%;
  }

  .pull-xl-7 {
    right: 58.33333%;
  }

  .pull-xl-8 {
    right: 66.66667%;
  }

  .pull-xl-9 {
    right: 75%;
  }

  .pull-xl-10 {
    right: 83.33333%;
  }

  .pull-xl-11 {
    right: 91.66667%;
  }

  .pull-xl-12 {
    right: 100%;
  }

  .push-xl-0 {
    left: auto;
  }

  .push-xl-1 {
    left: 8.33333%;
  }

  .push-xl-2 {
    left: 16.66667%;
  }

  .push-xl-3 {
    left: 25%;
  }

  .push-xl-4 {
    left: 33.33333%;
  }

  .push-xl-5 {
    left: 41.66667%;
  }

  .push-xl-6 {
    left: 50%;
  }

  .push-xl-7 {
    left: 58.33333%;
  }

  .push-xl-8 {
    left: 66.66667%;
  }

  .push-xl-9 {
    left: 75%;
  }

  .push-xl-10 {
    left: 83.33333%;
  }

  .push-xl-11 {
    left: 91.66667%;
  }

  .push-xl-12 {
    left: 100%;
  }

  .offset-xl-0 {
    margin-left: 0%;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}


/* Responsive Grid */

.row-fluid {
  width: 100%;
  *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  *margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.66%;
}
.row-fluid .span10 {
  width: 83.33%;
}
.row-fluid .span9 {
  width: 75%;
}
.row-fluid .span8 {
  width: 66.66%;
}
.row-fluid .span7 {
  width: 58.33%;
}
.row-fluid .span6 {
  width: 50%;
}
.row-fluid .span5 {
  width: 41.66%;
}
.row-fluid .span4 {
  width: 33.33%;
}
.row-fluid .span3 {
  width: 25%;
}
.row-fluid .span2 {
  width: 16.66%;
}
.row-fluid .span1 {
  width: 8.33%;
}

.container-fluid {
  *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

.dnd-section > .row-fluid .dnd-column,
.dnd-section > .row-fluid > [class*="span"].dnd-module {
  padding-left: 15px;
  padding-right: 15px;
}
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .dnd-column.span12,
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .span12.dnd-module {
  padding-left: 0px;
  padding-right: 0px;
}


@media (min-width: 768px) {
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.66%;
  }
  .row-fluid .span10 {
    width: 83.33%;
  }
  .row-fluid .span9 {
    width: 75%;
  }
  .row-fluid .span8 {
    width: 66.66%;
  }
  .row-fluid .span7 {
    width: 58.33%;
  }
  .row-fluid .span6 {
    width: 50%;
  }
  .row-fluid .span5 {
    width: 41.66%;
  }
  .row-fluid .span4 {
    width: 33.33%;
  }
  .row-fluid .span3 {
    width: 25%;
  }
  .row-fluid .span2 {
    width: 16.66%;
  }
  .row-fluid .span1 {
    width: 8.33%;
  }
}

/* Clearfix */

.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* Visibilty Classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}
main.body-container-wrapper.wit-page .content-container .content-button {
    padding: 0;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
  main.body-container-wrapper.wit-page .content-container {
    padding: 20px;
}
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important ;
  }
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}



/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

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

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
  max-width:100%;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: hidden;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */


.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */
@font-face {
  font-family: "Neue Haas Grotesk Text Pro 75 Bold";
  src: url() format("embedded-opentype"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/0209bfe594ed24b75ee2aac06529e4f9.woff2) format("woff2"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/0209bfe594ed24b75ee2aac06529e4f9.woff) format("woff"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/0209bfe594ed24b75ee2aac06529e4f9.ttf) format("truetype"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/0209bfe594ed24b75ee2aac06529e4f9.svg) format("svg"); 
}


@font-face {
  font-family: "Neue Haas Grotesk Text Pro 65 Medium";
  src: url() format("embedded-opentype"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/f21923cb0f60b46d41a66875255790b3.woff2) format("woff2"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/f21923cb0f60b46d41a66875255790b3.woff) format("woff"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/f21923cb0f60b46d41a66875255790b3.ttf) format("truetype"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/f21923cb0f60b46d41a66875255790b3.svg) format("svg");
}

@font-face {
  font-family: "Neue Haas Grotesk Text Pro 55 Roman";
  src: url() format("embedded-opentype"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/a4ea302c99b5ba55e6778c730de81ebd.woff2) format("woff2"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/a4ea302c99b5ba55e6778c730de81ebd.woff) format("woff"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/a4ea302c99b5ba55e6778c730de81ebd.ttf) format("truetype"),
    url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/fonts/a4ea302c99b5ba55e6778c730de81ebd.svg) format("svg");
}
@font-face {
  font-family: 'Neue Haas Grotesk Text Pro Md';
  src: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NHaasGroteskTXPro-65Md.woff2') format('woff2'),
    url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NHaasGroteskTXPro-65Md.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Roman';
  src: url('//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NeueHaasDisplayLight.woff2') format('woff2'),
    url('//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NeueHaasDisplayLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Roman';
  src: url('//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NeueHaasDisplayRoman.woff2') format('woff2'),
    url('//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NeueHaasDisplayRoman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NHaasGroteskTXPro-75Bd.woff2') format('woff2'),
    url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NHaasGroteskTXPro-75Bd.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NHaasGroteskTXPro-55Rg.woff2') format('woff2'),
    url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Neue%20Font/NHaasGroteskTXPro-55Rg.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  src: url("http://db.onlinewebfonts.com/t/14126655f43628074be1976d86f13eae.eot"); /* IE9*/
  src: url("http://db.onlinewebfonts.com/t/14126655f43628074be1976d86f13eae.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("http://db.onlinewebfonts.com/t/14126655f43628074be1976d86f13eae.woff2") format("woff2"), /* chrome firefox */
    url("http://db.onlinewebfonts.com/t/14126655f43628074be1976d86f13eae.woff") format("woff"), /* chrome firefox */
    url("http://db.onlinewebfonts.com/t/14126655f43628074be1976d86f13eae.ttf") format("truetype"), /* chrome firefox opera Safari, Android, iOS 4.2+*/
    url("http://db.onlinewebfonts.com/t/14126655f43628074be1976d86f13eae.svg#Font Awesome 5 Pro") format("svg"); /* iOS 4.1- */
}
.fal {
  font-family: "Font Awesome 5 Pro";
}

html {
  scroll-behavior: smooth;
}

*{
  transition:all .2s ease-in-out;
}
body {
  font-family: Neue Haas Grotesk Text Pro, Roboto, serif;
  font-size: 18px;
  color: #3D3935;
  line-height:1.72222222;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Anchor Links */
a {
  color:  linear-gradient(to bottom, #000066 102%, #ff99cc 100%);;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: bold;
  font-family: Neue Haas Grotesk Text Pro, Roboto, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.23;  
}

h2 {
  font-size: 1.6rem;
  line-height: 1.11;  
/*   letter-spacing: 0.58px; */
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;  
/*   letter-spacing:2.45px; */
}

h4 {
  font-size: 1.175rem;
  line-height: 1.26;
/*   letter-spacing: 2.45px; */
}

h5 {
  font-size: 1rem;
  line-height: 1.28; 
/*   letter-spacing: 1.92px; */
}

h6 {
  font-size: .9rem;
  line-height: 1.25;
/*   letter-spacing: 1.76px; */
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {
  line-height: 1.5rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

sup,
sub {
  position: relative;
  font-size: 50%;
  letter-spacing: 0.2em;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

.hs-button, .button--primary{
  background:linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);;
}

form {
  max-width: 767px;
  font-family: Neue Haas Grotesk Text Pro, Roboto, serif;
}
h3.form-title{
  padding: 10px;
}
h3.form-title:empty{
  display:none;
}
.hs-button {
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  background-color: rgb(253, 133, 80);
  border: 2px solid rgb(253, 133, 80);
  border-radius: 50px;
  color: rgb(255, 255, 255);
  font-family: "Neue Haas Grotesk Text Pro";
  font-size: 17.6px;
  line-height: 23px;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  padding: 14px 46px;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: auto;
  white-space: normal;
}
.actions {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 48px;
}
.hs-button:hover{
  background-color: #21222a;
  border-color: #21222a;

  color: #fff;
}

.hs-form label {
  font-size: .83rem;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 4px;
}

.hs-error-msgs label {
  color: #f2545b !important;
}
.hs-form-field > label {
  font-size: 14px;
  color: rgb(117, 117, 117);
  line-height: 24px;
  font-family: "Neue Haas Grotesk Text Pro";
  margin: 0;
}
input#hs-pwd-widget-password,
.hs-search-field__input,
.hs-input:not([type=checkbox]):not([type=radio]) {
  transition: color 0.3s ease 0s, border-color 0.3s ease 0s;
  font-family: "Neue Haas Grotesk Text Pro";
  font-size: 19.51px;
  letter-spacing: 1.29px;
  line-height: 24px;
  padding: 12px 24px;
  background-color: #F0F0F0;
  width: 100%;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #33475b;
  display: inline-block;
}
.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
input#hs-pwd-widget-password:hover,
.hs-search-field__input:hover,
.hs-input:hover {
  border-color: rgb(80, 137, 253);
}

input#hs-pwd-widget-password:focus,
.hs-search-field__input:focus,
.hs-input:focus {
  outline: none;
  border-color: rgb(80, 137, 253);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872 !important;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.hs-error-msgs label {
  width: 100%;
  height: 16px;
  font-size: 11px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: normal;
  display: block;
  margin-top: 4px;
  margin-bottom: 0;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 18px;
  color: #3D3935;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}

.input .hs-input.hs-fieldtype-intl-phone {
    padding: 0;
  background: none !important;
}
.form-popup-section .hs-input, .form-popup-section .field>label, .form-popup-section .field span, .form-popup-section .field select, .form-popup-section .field select option, .form-popup-section .hs-input:not([type=checkbox]):not([type=radio]){
font-size: 14px;
}
@media(max-width:992px){
.input .hs-input.hs-fieldtype-intl-phone select.hs-input {
    margin-bottom: 15px;
}
}
@media (max-width: 400px),
(min-device-width: 320px) and (max-device-width: 480px) {
  .email-correction form .form-columns-2 .hs-form-field,
  .email-correction form .form-columns-3 .hs-form-field,
  .email-validation form .form-columns-2 .hs-form-field,
  .email-validation form .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  .email-correction form .form-columns-2 .hs-form-field .hs-input,
  .email-correction form .form-columns-3 .hs-form-field .hs-input,
  .email-validation form .form-columns-2 .hs-form-field .hs-input,
  .email-validation form .form-columns-3 .hs-form-field .hs-input {
    width: 90%;
  }
  .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-2 .hs-form-field input[type=radio],
  .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-3 .hs-form-field input[type=radio],
  .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-2 .hs-form-field input[type=radio],
  .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
    width: 24px;
  }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Neue Haas Grotesk Text Pro, Roboto, serif;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}


.breadcrumb-sec-iner {
  width: 100%;
  float: left;
  padding: 2px 0;
  background: #0099CD;
  color: #fff;
}

.breadcrumb-sec-iner ul {
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: center;
  display: flex;
}

.breadcrumb-sec-iner ul li a {
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
}

.breadcrumb-sec-iner ul>li {
  list-style: none;
  padding: 5px 0px 5px 10px !important;
}

/* Events */
.blog-header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.filterheading {
  padding-right: 15px;
}
.filters-drop {
  padding-left: 0px; 
  display: flex;
  flex-wrap: wrap;}

.customdrop {
  border: 2px solid #503f81;
  outline: 0;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);;
  font-size: 14px;
  padding: 10px 22px 10px 30px;
  cursor: pointer;
  color: #503f81;
  text-align: left;
  position: relative;
  margin-right: 5px;
  min-width: 180px;
  border-radius: 5px;
  width: 240px;
}

select#SortSelect {
  position: relative;
  margin-right: 5px;
  background-repeat: no-repeat;
  text-align: center;
  background: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Icons/sort.png') 10% / 12% no-repeat #fff;
}

select#select_country{
  position: relative;
  margin-right: 5px;
  background-repeat: no-repeat;
  text-align: center;
  background: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Icons/planet.png') 10% / 12% no-repeat #fff;
}

select#select_product {
    position: relative;
    margin-right: 5px;
    background-repeat: no-repeat;
    text-align: center;
    background: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Icons/molar-tooth.png) 3% / 8% no-repeat #fff;    
    padding-right: 5px;
}

select#select_event{
  position: relative;
  margin-right: 5px;
  background-repeat: no-repeat;
  text-align: center;
  background: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Icons/edit.png') 10% / 12% no-repeat #fff;
}


.customdrop:last-child {
  margin-right: 0;
}

.filter-group {
  margin-right: 4px;
  margin-bottom:8px;
}

.filter-group:last-child {
  margin-right: 0;
}
.filterheading h2.blog-header {
  letter-spacing: 1.98px;
  color: #503f81;
}

/* Event Style */

.events .event-main-heading {width: 100%;float: left;padding: 40px 0;}
.events .event-main-heading h4 {color: #3D3935;margin: 0;}
.events .twci-container-inner{width:100%;justify-content: space-between;align-items: center;}
.events .twci-container-inner .content-container{padding:0 !important;flex: 0 0 40%;max-width: 38%;}
.events .twci-container-inner .image-container {flex: 0 0 60%;max-width: 58%;}
.events .twci-container-inner .image-container img {width: 100%;height: 380px !important;object-fit: cover;}
.events .description-content {padding: 50px 0;width: 100%;float: left;}
.events .request-call-block {position: relative;margin-top: 50px;}
.events fieldset .hs-form-field {width: 50% !important;float: left;}
.events fieldset {outline: 0;border: 0;padding: 0;margin: 0;}


.event-box .cwti-items-image img {
  display: inherit;
  width: 100%;
  height: 320px !important;
  object-fit: cover;
}

.event-box .cwti-items-image .event-tag {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  padding: 8px 20px;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);;
  color: #fff;
  font-size: 13px;
}

.event-box .cwti-items-image .event-tag:hover {
  opacity: 0.8;
}

.event-box .cwti-items-content {
  font-size: 14px;
  color: #272727;
}

.event-box .cwti-items-content h6 {
  margin: 20px 0 !important;
}

.event-box .cwti-items-content h6>a {
  color: #000;
}

.event-box .cwti-items-image .event-tag>a {
  color: #fff;
}

.event-box .cwti-items-content .content-desc p {
  font-size: 18px;
}

.event-box .cwti-items-content .read-more {
  display: flex;
  justify-content: flex-end;
}

.event-box .cwti-items-content .read-more span>svg {
  width: 15px;
  height: auto;
  fill: #00b9ff;
}

.event-box .cwti-items-content .read-more a {
  font-size: 18px;
}

.event-box .cwti-items-content {
  padding: 20px 10px 20px 10px !important;
}



.mixitup-page-stats {
  display: none;
}

.mixitup-page-list {
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

button {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

button.mixitup-control.mixitup-control-prev {
  position: relative;
  min-width: 52px;
  color: transparent !important;
  margin-right: 20px;
}

button.mixitup-control.mixitup-control-prev:before {
  position: absolute;
  content: "Previous";
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  left: 0;
  color:#503f81;
}

button.mixitup-control.mixitup-control-active {
  font-size: 23px;
  color: #503f81;
}

button.mixitup-control {
  font-size: 19px;
  color: #B2B4B2;
  cursor: pointer;
  transition: all 0.6s;
}

button.mixitup-control:hover {
  font-size: 23px;
  color: #503f81;
  transition: all 0.6s;
}

button.mixitup-control.mixitup-control-prev.mixitup-control-disabled,
button.mixitup-control.mixitup-control-next.mixitup-control-disabled {pointer-events: none;}

.mixitup-control-disabled:before{color:#b2b4b2 !important;}

{position: absolute;
  content: "";color:#B2B4B2;}

button.mixitup-control.mixitup-control-next {
  position: relative;
  min-width: 28px;
  color: transparent !important;
  margin-left: 20px;
}

button.mixitup-control.mixitup-control-next:before {
  position: absolute;
  content: "Next";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 13px;
  color: #503f81;
  transition: all 0.3s;
}

button.mixitup-control.mixitup-control-next:hover:before,
button.mixitup-control.mixitup-control-prev:hover:before{
  color: #503f81;
}
.embed_container {   
    max-width: 100% !important;
}


/* End Event Style */




/* Breadcrumb Style */

.breadcrumb-sec .hs-breadcrumb-menu-wrapper {background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);;}
.breadcrumb-sec {width: 100%;float: left;}
.breadcrumb-sec .hs-breadcrumb-menu-item {color: #fff;font-size: 12px;}

/* End Breadcrumb Style */



@media(max-width:767px){
  select#SortSelect {
    background: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/sort.png) 11px / 15px no-repeat #503f81;
  }

  select#select_product {
    background: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Product.png) 7px / 20px no-repeat #503f81;
  }

  select#select_event {
    background: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Type.png) 8px / 20px no-repeat #503f81;
  }

  select#select_country {
    background: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Category.png') 7px / 20px no-repeat #503f81;
  }
}




.cm-itero-lp-layout {
  padding: 0;
  margin: 0;
  font-family: Roboto,Arial,sans-serif;
  line-height: 1.6;
  font-size: 18px;
  width: 100%;
}
.cm-itero-lp-layout p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.88
}
.cm-itero-lp-layout h1,
.cm-itero-lp-layout p {
    font-family: Roboto,Arial,sans-serif!important
}
.cm-itero-lp-layout h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
}

@media(max-width:767px) {
    .cm-itero-lp-layout h1 {
        font-size:30px
    }
}
.cm-itero-lp-layout .banner-area .cwti-items-content {
  padding: 0;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-right: 27%;
  position: relative;
}
#hs_cos_wrapper_widget_1628514389781 {
  position: relative;
}
.cm-itero-lp-layout .cwti-container.banner-area {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 27px;
  background-position: 0px 39%;
  position:relative;
}
.cm-itero-lp-layout .banner-area .cwti-items-content h1 {
  color: #fff;
}
.cm-itero-lp-layout .cwti-container.banner-area:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cm-itero-lp-layout * {
  transition: none;
}
.cm-itero-lp-layout .cwti-container .cwti-items-col .cwti-items-image {
  background-color: #2bd3ca;
  border-radius: 50%;
  height: 82px;
  width: 85px;
  display: flex;
  padding: .5%;
  justify-content: center;
  box-shadow: none;
  margin: 0px auto 20px;
}
.cm-itero-lp-layout .cwti-container .cwti-items-col h6 {
  color: #fff;
  text-transform: none;
  font-weight: normal;
  margin: 0 0 10px;
  font-family: Roboto,Arial,sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.cm-itero-lp-layout .cwti-container .cwti-items-col p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #fff;
  text-align:center;
}
.cm-itero-lp-layout .cwti-container .cwti-items-col {
  width: 33.333%;
  margin-bottom: 30px;
}
.cm-itero-lp-layout footer.footer {
  padding: 0;
  background: #3f2a56;
}
.cm-itero-lp-layout span#hs_cos_wrapper_footer_copyright_text_ {
  background: transparent;
  color: #fff;
  font-size: 12px;
  line-height: normal;
  display: block;
}
.cm-itero-lp-layout .footer-logo {
  text-align: right;
}
.cm-itero-lp-layout .footer-logo img {
  max-width: 70px !important;
}
.cm-itero-lp-layout .hs-input {
  height: auto;
  padding: 7px 20px !important;
  min-height: auto;
  border-radius: 0 !important;
}
.cm-itero-lp-layout .field {
  margin-bottom: 9px;
}
.cm-itero-lp-layout h3.form-title {
  font-size: 26px !important;
  text-align: center;
  color: #fff;
}
.cm-itero-lp-layout .hs-form-field>label {
  color: #fff;
}
.cm-itero-lp-layout .actions {
  margin-top: 20px;
}
.cm-itero-lp-layout input.hs-button.primary.large {
  border-radius: 0;
  padding: 10px 20px;
  width: 100%;
  background: #03D3C9;
  color: #000;
  font-weight: bold;
}
.cm-itero-lp-layout .hs_cos_wrapper_type_module > .hs-button {
  color: #000;
  background-color: #2bd3ca;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 0;
  font-family: Roboto,Arial,sans-serif !important;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  cursor: pointer;
  min-width: 216px;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  margin: 0 22px 0 0;
  padding: 23px 20px;
}
.cm-itero-lp-layout .hs_cos_wrapper_type_module > .hs-button:hover {
  color: #000;
  background-color: #8fede8;
}
.cm-itero-lp-layout h2 {
  color: #3f2a56;
  margin-bottom: 20px;
}
.cm-itero-lp-layout .dnd-section[class*="background-image"]:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0.5);
  opacity: 0.2;
  top: 0;
  left: 0;
  right: 0;
}
.cm-itero-lp-layout .dnd-section[class*="background-image"] {
  position: relative;
}
.cm-itero-lp-layout .dnd-section[class*="background-image"] > div {
  position: relative;
}
.cm-itero-lp-layout .dnd-section[class*="background-image"] h2 {
  margin-bottom: 8px;
  margin-top: 10px;
}


@media(max-width:1400px){
  .cm-itero-lp-layout .banner-area .cwti-items-content {
    padding-right: 40vw;
  }
}

@media(max-width:767px){
  .cm-itero-lp-layout .cwti-container .cwti-items-col {
    width:100%;
  } 
  .cm-itero-lp-layout footer.footer {
    text-align: center;
  }
  .cm-itero-lp-layout span#hs_cos_wrapper_footer_copyright_text_ {
    text-align: center;
  }
  .cm-itero-lp-layout .footer-logo {
    text-align: center;
    margin-bottom: 10px;
  }
  .cm-itero-lp-layout footer.footer .row-fluid {
    display: flex;
    flex-direction: column-reverse;
  }
  .cm-itero-lp-layout #hs_cos_wrapper_widget_1628514389781 {
    margin-top: 0 !important;
  }
  .cm-itero-lp-layout .banner-area .cwti-items-content {
    padding-right: 15px;
    text-align: center;
  }
  .cm-itero-lp-layout .cwti-container.banner-area {
    background-position: center;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
.hs-landing-page header.header {
    background: #3d3836;
}

/* Footer */
.footer__container {
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
}

span#hs_cos_wrapper_footer_copyright_text_ {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
img {
  height: auto;
}
.hm-banner-slides {
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 632px;
  padding: 60px 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  width: 30px;
  height: 60px;
  font-size: 60px;
  cursor: pointer;
  color: #503f81;
  left: 25px;
  z-index: 99;
}

.slick-next.slick-arrow {
  left: unset;
  right: 25px;
}
.hm-banner-slides .page-center {
  height: 100%;
  display: flex;
  width: 100%;
}

.slick-initialized .hm-banner-slides {
  display: flex;
  align-items: center;
}

.hm-banner-content * {
  color: #fff;
}
.hm-banner-content h1 {
  margin-bottom: 30px;
}

.hm-banner-content p {
  width: 562px;
  max-width: 100%;
  line-height: 1.27;
}
ul.slick-dots {
  margin: 0;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  list-style: none;
}

ul.slick-dots li button {
  display: none;
}

ul.slick-dots li {
  height: 11px;
  width: 11px;
  background-color: #B2B4B2;
  margin: 0 4px;
  cursor: pointer;
}

ul.slick-dots li.slick-active, ul.slick-dots li:hover {
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
}
.home-banner-container {
  position: relative;
}
.slick-arrow:hover {
  color: #b2b4b2;
}
.introduction-card-content-container {
  position: relative;
  overflow: hidden;
  padding:77px 0 50px 0;
}

.introduction-card-content-container > img {
  position: absolute;
  top: -49px;
  left: -3%;
  width: auto;
  height: auto;
}

.introduction-card-content-container .page-center {
  max-width: 1000px;
}

.introduction-card-content-container .bottom-image {
  top: unset;
  left: unset;
  bottom: -50px;
  right: -3%;
}

.introduction-card-content-container h1 {
  margin-bottom: 30px;
}

.introduction-card-content-container .intro-content {
  font-size: 24px;
  letter-spacing: 1.59px;
  line-height: 1.5;
}

.introduction-card-content-container .intro-content *:last-child {
  margin-bottom: 0;
}
.counter-container {
  text-align: center;
}

.counter-container .icon-container {
  display: inline-flex;
  margin-bottom: 25px;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
}

.counter-container h2 {
  font-size: 60px;
  letter-spacing: 3.97px;
  line-height: 1.2;
}

.counter-container p {
  font-size: 18px;
  letter-spacing: 1.9px;
  line-height: 1.2;
}
.bg-pattern {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}



.hs-tabber-cust-mod {
  position: relative;
  padding: 20px 0 60px 0;
}

.hs-tabber-cust-mod .tabber-tab ul {
  margin: 0;
  padding: 60px 0;
  list-style: none;
  display: flex;
}

.hs-tabber-cust-mod .tabber-tab ul li {
  width: 50%;
  text-align: center;
}

.hs-tabber-cust-mod .tabber-tab {
  width: 60%;
}

.hs-tabber-cust-mod .tabber-tab ul li a {
  display: inline-block;
  padding: 10px 0;
  font-size: 23px;
  letter-spacing: 1.87px;
  line-height: 29px;
  color: #707372;
  position: relative;
}
.who-is-involved-heading h2 {margin-bottom: 30px;}
.hs-tabber-cust-mod .tabber-tab ul li a:hover,
.hs-tabber-cust-mod .tabber-tab ul li.active a {
  color: #503f81;
}

.hs-tabber-cust-mod .tabber-tab ul li a:after {
  content: '';
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0);
  transition: all .2s ease-in-out;
}

.hs-tabber-cust-mod .tabber-tab ul li a:hover:after,
.hs-tabber-cust-mod .tabber-tab ul li.active a:after {
  transform: scale(1);
}

.hs-tabber-cust-mod .tabber-content {
  width: 60%;
  line-height: 28px;
}

.tab-pane-more {
  text-align: right;
  padding-right: 78px;
}

.tab-pane-more a {
  display: inline-block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 22px;
  color: #00B9FF;
  font-family: 'Roboto';
}

.fa-long-arrow-right:before {
  content: '\f178';
}

.tab-pane-more a i {
  margin-left: 10px;
  position: relative;
  left: 0;
}

.tab-pane-more a:hover {
  color: rgba(112,115,114,1.0);
}

.tab-pane-more a:hover i {
  left: 10px;
}

.hs-tabber-cust-mod .tabber-content .tab-image {
  top: 0;
  position: absolute;
  right: 0;
  width: 40%;
}

.twci-container-inner {
  display: flex;
  flex-wrap: wrap;
}

.twci-container-inner > * {
  width: 50%;
}

.twci-container-inner img {
  width: 100%;
}

.twci-container-inner .content-container {
  padding: 120px 60px;
}

.twci-container-inner h4 {
  margin-bottom: 30px;color:#3d3936;
}

.twci-container-inner .content-container .content-container-inner {
  max-width: 570px;
}

.twci-container-inner p {
  line-height: 23px;
}
.twci-container-inner p:last-child{margin-bottom:0;}
.im-al- .twci-container-inner {
  align-items: center;    justify-content: space-between;
}
.twci-container-inner>div {
  flex: 0 0 50%;
  max-width: 48%;
}
.twci-container-inner .content-container .content-button {
  padding-top: 40px;
}

.twci-container-inner .content-container .content-button a {
  height: 54px;
  width: 213px;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box !important;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  border: 1px solid #503f81;
  font-weight:600;
}

.twci-container-inner .content-container .content-button a:hover {
  background: #fff;
  color: #503f81;
}
.cwti-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cwti-container .cwti-items-col {
  width: 20%;
  padding: 0 15px;
  text-align: center;
}

.cwti-container .cwti-items-col .cwti-items-image {
  height: 120px;
  width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 4px 6px 0 rgba(189,189,189,0.5);
  margin-bottom: 30px;
}

.cwti-container .cwti-items-col h6 {
  color: #3D3935;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 25px;
}

.case-banner-container {
  position: relative;
}

.case-banner-inner-container {
  padding-bottom: 80px;
}
.case-banner-inner-container .content-cnt {
  padding: 30px 15px;
}

.case-banner-inner-container .content-cnt h5 {
  margin-bottom: 40px;
}

.case-banner-inner-container .content-cnt p {
  font-size: 22px;
  letter-spacing: 1.45px;
  line-height: 28px;
  color: #2B2B2A;
}
.case-banner-container .slick-arrow {
  left: -25px;
}

.case-banner-container .slick-next.slick-arrow {
  left: unset;
  right: -25px;
}
.bottom-boxed-container {
  border-radius: 0 88px 0 0;
  background-color: #FFFFFF;
  box-shadow: 0 -2px 4px 3px rgba(222,222,222,0.5);
  padding-top: 40px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 40px;
}

.bottom-boxed-container .bottom-bocd-fluid {
  display: flex;
  margin-top: 40px;
}

.bottom-boxed-container .bottom-bocd-content {
  max-width: 370px;
}

.bottom-boxed-container .bottom-bocd-content h6 {
  line-height: 25px;
  color: #3D3935;
}

.bottom-boxed-container .bottom-bocd-form {
  width: calc(100% - 370px);
  padding-left: 20px;
}

.bottom-boxed-container .bottom-bocd-form .hs-form-field {
  margin: 0;
  width: calc(100% - 213px);
}

.bottom-boxed-container .bottom-bocd-form .hs-form-field > label {
  display: none;
}

.bottom-boxed-container .bottom-bocd-form .hs-form-field .hs-input {
  height: 55px;
  width: 567px;
  background-color: #F0F0F0;
  border-radius: 0;
  font-size: 18px;
  letter-spacing: 1.19px;
  line-height: 23px;
  color: #A3A3A3;
  max-width: 100%;
}

.bottom-boxed-container .bottom-bocd-form form {
  position: relative;
}

.bottom-boxed-container .bottom-bocd-form .hs-button {
  height: 54px;
  width: 213px;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  border-radius: 0;
  border: 1px solid #503f81;
  font-size: 21px;
  letter-spacing: 1.39px;
  line-height: 27px;
  position: absolute;
  top: 0;
  right: 0;
}

.bottom-boxed-container .bottom-bocd-form .hs-button:hover {
  color: #503f81;
  background: #fff;
}
ul.hs-breadcrumb-menu {
  display: flex;
  width: 100%;
  justify-content: center;
}
@media (max-width:1220px){
  .hm-banner-content {
    width: 100%;
    padding: 0 53px;
  }
}
@media (max-width:767px){





  .hm-banner-slides {
    min-height: 400px;
  }

  .hm-banner-content h1 {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .hm-banner-content p {
    font-size: 16px;
  }

  .slick-arrow {
    font-size: 42px;
  }
}
@media (max-width:480px){
  .slick-arrow {
    left: 10px;
  }

  .slick-next.slick-arrow {
    left: unset;
    right: 10px;
  }

  .hm-banner-content {
    padding: 0 25px;
  }
  .hm-banner-content * {
    text-align: center;
  }


}








.invi-go-header-container {background: #3d3935;padding: 20px 0;}

.invi-go-header-container .container {display: flex;align-items: center;}

.in-header-left img {width: 250px;height: auto;}

.in-header-left {padding-right: 30px;}

.in-header-right {padding-left: 30px;border-left: 1px solid #fff;}

.in-header-right * {color: #fff;font-weight: normal;}

.in-header-right h2 {font-size: 24px;margin-bottom: 5px;}

.in-header-right p {margin: 0;font-size: 13px;}

.invi-banner-container {padding: 100px 0;position: relative;background-position: center;background-repeat: no-repeat;background-size: cover;}

.invi-banner-container * {color: #fff;}

.in-banner-content {position: relative;}

.invi-banner-container:before {content: '';background: #3d3935b3;width: 100%;height: 100%;position: absolute;top: 0;left: 0;}

.cm-why-itero-layout .request-call-block.request-callnew .bottom-boxed-container {
  background: linear-gradient(90deg,rgba(36,28,75,1) 0%,rgba(129,75,147,1) 100%);
  border: 1px solid #503f81;
  color: #fff;
  box-shadow: none;
}
.cm-why-itero-layout .request-callnew .bottom-boxed-container .bottom-bocd-content h6{
  color:#fff;
}
.cm-why-itero-layout .request-call-block.request-callnew .bottom-boxed-container > .bottom-boxed-inner img {
  width: 250px;
}
body .form-popup-iner-sec .form-sec form fieldset.form-columns-1 .hs-input.hs-fieldtype-intl-phone select {
  margin-right: 10px;
  width: calc(30% - 10px) !important;
  float: left;
}
body .form-popup-iner-sec .form-sec form fieldset.form-columns-1 .hs-input.hs-fieldtype-intl-phone input {
  width: 70% !important;
  float: left;
}
.form-popup-section .hs-input, .form-popup-section .field>label, 
.form-popup-section .field span, .form-popup-section .field select,
.form-popup-section .field select option ,
.form-popup-section .hs-input:not([type=checkbox]):not([type=radio]) {
  color: #000;
  font-weight: normal !important;
}

.form-popup-section .field .hs-input::placeholder {
  color: #000;
  font-family: roboto, sans-serif;
}
.form-popup-section .submitted-message {
  font-weight: 400;
  color: #000;
  font-family: Roboto;
  font-size: 18px;
  text-align: center;
}

@media (max-width:767px){
  .invi-go-header-container .container {flex-direction: column;align-items: center;justify-content: center;}

  .in-header-left {padding: 0;margin-bottom: 15px;}

  .in-header-right {padding: 0;border: 0;text-align: center;}

  .in-header-right h2 {font-size: 20px !important;}
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.custom-header-wrap {
  min-height: 144px;
}
header.header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(187,187,187,0.5);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
header.header.ru-header .header-button {
  padding: 0 0 0 20px;
}
header.header .page-center {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 1269px;
}

.header-logo-section {
  width: calc(200px + 30px);
  padding: 0 15px;
}

.header-right-section {
  width: calc(100% - 230px);
  padding: 0 15px;
}
.header-logo-section a {
  display: inline-grid;
}


.header-logo-section>div {
  display: grid;
}

.header-logo-section>div>span {
  display: inherit;
}
.header-lang-container {
  padding-bottom: 34px;
  /*   height: 26px; */
  box-sizing: content-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: auto;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  border: 1px solid #503F81;
  color: #fff;
  font-size: 18px;
  line-height: 21px;
  padding: 10px 20px;
  box-sizing: border-box !important;
  text-align: center;
  border-radius:5px;
}
.header-main-nav .hs-menu-wrapper>ul>li:nth-last-child(2) a {
  font-size: 15px;
}
.header-button a:hover {
  background: #fff;
  color: #503f81;
}
.boxed-btn a,
.cm-itero-slider-group .custom-button,
.twci-container-inner.form-image-block .content-container .content-container-inner .actions .hs-button,
.cm-banner-section-group .button-group a{
  border-radius:5px !important;
}
.header-main-nav .hs-menu-wrapper > ul {
  flex-wrap: nowrap;
  max-width:850px;
  width:100%;
  position: relative;
}

.header-main-nav .hs-menu-wrapper > ul > li {
  margin-right: 24px;
}

.header-main-nav .hs-menu-wrapper > ul > li > a {
  font-size: 16px;
  line-height: 1.23;
  color: #3D3935;
  display: block;
}
.header-button {
  margin: 0 10px;
}
.header-main-nav .hs-menu-wrapper > ul > li > a:hover {
  color: #503f81;
  background-color: #fff;
}

.header-main-nav .hs-menu-wrapper > ul > li.active > a,
.header-main-nav .hs-menu-wrapper > ul > li.active-branch > a {
  color: #503f81;
  background-color: #fff;
}
.header-main-nav .hs-menu-wrapper>ul ul.hs-menu-children-wrapper {
  background-color: transparent !important;box-shadow: none !important;
}
.header-main-nav .hs-menu-wrapper > ul>li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper {
  display: flex !important;
  position: absolute;
  border-radius: 0;
  background: linear-gradient(90deg,rgba(36,28,75,1) 0%,rgba(129,75,147,1) 100%);
  box-shadow: 0 2px 18px 0 rgba(207,207,207,0.5);
  opacity: 0;
  visibility: hidden;
  top: 140%;
  padding: 0; line-height:0; overflow:hidden;
  z-index:-9;
    pointer-events:none;
}
.header-main-nav .hs-menu-wrapper>ul>li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper li:last-child a {
  border: 0;
}
.header-main-nav .hs-menu-wrapper>ul>li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper li.hs-menu-depth-3.active-branch>a {color: #5cd3ca;}
/* .header-main-nav .hs-menu-wrapper>ul ul.hs-menu-children-wrapper li:hover {
background: #fff;
} */
/* .header-main-nav .hs-menu-wrapper > ul > li > ul:before {
border-width: 10px;
border-style: solid;
border-color: transparent transparent #00A3D7!important;
content: "";
position: relative;
top: -21px;
}
*/
.header-main-nav .hs-menu-wrapper > ul li.hs-item-has-children:hover:after {
  content: '';
  height: 18px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.header-main-nav .hs-menu-wrapper > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.header-main-nav .hs-menu-wrapper > ul ul li a {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 15px;
  white-space: nowrap;
  border-bottom: 0.5px solid rgba(0,154,206,0.5);
  padding: 10px 0;
  display: inline-block;
}

.header-main-nav .hs-menu-wrapper > ul ul li a:hover {
  color: #503f81;
  background-color: #fff;
}

.header-main-nav .hs-menu-wrapper > ul ul li.active > a,
.header-main-nav .hs-menu-wrapper > ul ul li.active-branch > a {
  color: #503f81;
  background-color: #fff;
}

.header__language-switcher--label-current {
  color: #8B8B8B;
  font-size: 14px;
  letter-spacing: 1.14px;
  line-height: 18px;
  text-transform: uppercase;
  margin-left: 10px;
}

header .globe_class {
  background-image: url(//8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/raw_assets/public/Invisalign%20-%20New%20branding/images/glbe.png);
  width: 26px;
  height: 26px;
}

div#hs_cos_wrapper_language-switcher {
  line-height: 0;
  font-size: 0;
}

.scroll-header .header-logo-section img {
  max-width: 230px;
}

.scroll-header .header-main-nav .hs-menu-wrapper>ul>li>a {
  font-size: 14px;
}

.scroll-header .header-button a {
  font-size: 14px;
  height: 40px;
  width: max-content;
}

.scroll-header .header-lang-container {
  /*   height: 20px; */
  padding-bottom: 10px;
}

header.scroll-header .globe_class {
  width: 20px;
  height: 20px;
}

.scroll-header .header__language-switcher--label-current {
  font-size: 11px;
}

header.header.scroll-header {
  padding: 10px 0;
}
.mobile-menu-container {
  display: none;
}

.mobile-trigger {
  display: none;
}
.mobile-menu-container .header-button {
  display: none;
}

html[lang="fr"] .header__language-switcher--label-current,
html[lang="en"] .header__language-switcher--label-current {
  font-size: 0;
}
html[lang="fr"] .header__language-switcher--label-current:before,
html[lang="en"] .header__language-switcher--label-current:before {
  content: "ENG";
  font-size: 14px;
  letter-spacing: 1.14px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: left;
  vertical-align: middle;
  position: relative;
  top: 1px;
}
html[lang="fr"] .header__language-switcher--label-current:before{
  content: "FR";
}
html[lang="en"] .header__language-switcher--label-current:before {
  content: "ENG";
}

.header-main-nav .hs-menu-wrapper>ul>li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper li a {
  color: #fff;
  padding: 15px;
  font-size: 15px;
}
.header-main-nav .hs-menu-wrapper>ul>li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper li {
  /*   background: #00A3D7;  */
  line-height:0;
}


@media(min-width:992px){
  li.hs-menu-item.hs-menu-depth-2.hs-item-has-children>a {pointer-events: none;
    padding: 13px 15px 0 !important;
    font-size: 13px !important;
    font-weight: 300;
    opacity: .8;
  }

  li.hs-menu-item.hs-menu-depth-2.hs-item-has-children:first-child:before {position: absolute;content: "";top: 50%;right: 0;width: 3px;background: #5cd3ca;height: 70%;transform: translateY(-50%);}

}
@media (max-width:1125px) and (min-width:992px){
  .header-main-nav .hs-menu-wrapper>ul>li>a {
    font-size: 14px;
  }

  .header-logo-section img {
    max-width: 130px;
  }

  .header-logo-section {
    width: calc(130px + 30px);
  }

  .header-right-section {
    width: calc(100% - 164px);
  }

  .header-button a {
    height: 40px;
    width: 179px;
    font-size: 15px;
  }
  .scroll-header .header-logo-section img {
    max-width: 128px;
  }

  .scroll-header .header-main-nav .hs-menu-wrapper>ul>li>a {
    font-size: 14px;
  }

  .scroll-header .header-button a {
    /*     height: 45px;
    width: 179px;
    font-size: 15px; */
    height: 34px;
    width: 145px;
    font-size: 15px;
  }
}
@media (max-width:991px){
  .custom-header-wrap {
    min-height: 98px;
  }
  .header-main-nav {
    display: none;
  }
  header.header {
    padding: 10px 0;
  }

  .header-logo-section img {
    max-width: 140px;
  }

  .header-button a {
    font-size: 14px;
    height: 40px;
    width: 187px;
  }

  .header-lang-container {
    /*     height: 20px; */
    padding-bottom: 10px;
  }

  .header__language-switcher--label-current {
    font-size: 11px;
  }

  header .globe_class {
    width: 20px;
    height: 20px;
  }
  .mobile-trigger {
    display: block;
    height: 25px;
    width: 29px;
    position: relative;
    cursor: pointer;
  }

  .mobile-trigger span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
    position: absolute;
    left: 0px;
    transform-origin: center center;
    transition: all .3s ease 0s;
  }

  .mobile-trigger span:nth-child(1) {
    top: 0px;
    transform: rotate(0);
  }

  .mobile-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    display: block;
  }

  .mobile-trigger span:nth-child(3) {
    bottom: 0px;
    transform: rotate(0);
  }

  .header-button {
    margin-right: 19px;
  }

  .mobile-trigger:hover span {
    background-color: rgba(61,57,53,1.0);
  }
  .mobile-open .mobile-trigger span:nth-child(1) {
    top: calc(50% - 2px);
    transform: rotate(
      -135deg
    );
  }
  .mobile-open .mobile-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    display: none;
  }
  .mobile-open .mobile-trigger span:nth-child(3) {
    bottom: calc(50% - 1px);
    transform: rotate(
      135deg
    );
  }
  .mobile-open .mobile-trigger span:nth-child(1) {
    top: calc(50% - 2px);
    transform: rotate( -135deg );
  }

  .mobile-open .mobile-trigger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    display: none;
  }

  .mobile-open .mobile-trigger span:nth-child(3) {
    bottom: calc(50% - 1px);
    transform: rotate( 135deg );
  }

  .header-main-nav .hs-menu-wrapper>ul {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    padding: 15px;
  }

  .mobile-menu-container {
    width: 100%;
    position: relative;
    height: calc(100vh - 0px);
    overflow-y: scroll;
    padding-bottom: 270px;
  }

  .header-main-nav .hs-menu-wrapper>ul>li {
    margin: 5px 0;    position: relative;
  }
  .header-main-nav .hs-menu-wrapper>ul>li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper{display:none;}
  .header-main-nav .hs-menu-wrapper>ul ul.hs-menu-children-wrapper{display:block;}

  li.hs-menu-item.hs-menu-depth-2.hs-item-has-children>div {display: none;}
  .header-main-nav .hs-menu-wrapper>ul>li.hs-menu-depth-1.hs-item-has-children>ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
    position: static;
    pointer-events: all;
    padding: 0;
    box-shadow: none !important;
    z-index:9;
    display:none;
  }

  .header-main-nav .hs-menu-wrapper>ul>li>ul:before {
    display: none;
  }

  .header-main-nav .hs-menu-wrapper>ul ul li {
    padding: 5px 15px;
  }

  .header-main-nav .hs-menu-wrapper>ul ul li a {
    display: block;
  }

  .header-main-nav .hs-menu-wrapper>ul>li>a {
    border-bottom: .5px solid rgba(0,154,206,0.5);
    display: block;
    padding-bottom: 8px;
  }
  .header-main-nav .hs-menu-wrapper>ul li.hs-item-has-children:hover:after {
    display: none;
  }
  .child-trigger {
    display: inline-flex;
    height: 29px;
    width: 29px;
    color: rgba(61,57,53,1.0);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
  }

  .child-trigger:hover {
    color: #503f81;
  }

  .child-trigger:after {
    content: '+';
    font-weight: bold;
    font-size: 25px;
  }

  .child-open .child-trigger:after {
    transform: rotate(45deg);
  }

}
@media (max-width:974px){
  .header-button {
    display: none;
  }
}
@media (max-width:480px){
  .header-button {
    display: none;
  }

  .mobile-menu-container .header-button {
    display: block;
    margin: 0;
    padding: 0 15px;
  }

  .header-button a {
    width: 100%;
  }
  .scroll-header .header-button a {
    width: 100%;
  }
}



/*  NEW CSS*/
ul.hs-menu-children-wrapper {left:0;right:0;}

ul.hs-menu-children-wrapper  .hs-menu-depth-2 {flex: 0 0 50%;}


li.hs-menu-item.hs-menu-depth-2.hs-item-has-children {position: relative;}

li.hs-menu-item.hs-menu-depth-3>a:hover {color: #5cd3ca !important;}
ul.hs-menu-children-wrapper.active-branch li.hs-menu-item.hs-menu-depth-2.hs-item-has-children a {
    border: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  background-color: transparent;
  text-align: center;
}
.footer__container {
  padding: 1rem;
  margin: 0 auto;
}
.footer__copyright {
  font-family: Lato, sans-serif;
  font-size: .7rem;
  margin: .5rem 0;
}


footer.footer {
  background-color: #292D2F;
  padding-top: 70px;
}

.footer-top {
  text-align: left;
  padding: 20px 0;
}

.page-center {
  padding: 0 15px;
}

.footer-middle {
  padding: 30px 0;
  border-top: 3px solid #EBEBEB;
  border-bottom: 3px solid #BE933C;
}

.footer-middle .page-center {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  align-items: center;
}

.footer-middle .footer-links-col {
  width: 88%;
  padding: 0 15px;
}

.footer-middle .footer-social-links {
  width: 11%;
  padding: 0 15px;
}
.footer-link .hs-menu-wrapper > ul li {
  margin: 7.5px 0;
}

.footer-link .hs-menu-wrapper > ul li a {

/*   font-size: 21px; */
  font-weight: 500;
/*   letter-spacing: 1.39px; */
  line-height: 24px;
  color: #FFFFFF;
}

.footer-link .hs-menu-wrapper > ul li:not(:last-child) {
  margin-right: 20px;
}

.footer-link .hs-menu-wrapper > ul li a:hover {
  color: rgba(2,112,224,1.0);
}

.footer-bottom {
  padding: 30px 0;
}

ul.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

ul.social-links li:not(:last-child) {
  margin-right: 12px;
}

ul.social-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #C0C0C0;
  border-radius: 100%;
  font-size: 15px;
  color: #292d2f;
}

ul.social-links li a:hover {
  transform: scale(1.1);
  background: rgba(2,112,224,1.0);
  color: #fff;
}


@media (max-width:1125px){
  .footer-middle .footer-social-links {
    width: 20%;
  }
  .footer-middle .footer-links-col {
    width: 80%;
  }
}
@media (max-width:767px){
  .footer-top {
    text-align: center;
  }

  .footer-middle .footer-link {
    width: 50%;
    padding: 0 15px;
  }

  .footer-link .hs-menu-wrapper > ul li {
    display: block;
    width: 100%;
    margin-right: 0 !important;
    text-align: center;
  }

  ul.social-links {
    justify-content: center;
  }
  .footer-middle .page-center {
    align-items: flex-start;
  }
}

@media (max-width:575px){
  .footer-middle .footer-link {
    width: 100%;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.hs-blog-listing {
  background-image: url('https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/svg%20%282%29.svg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}


.blog-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 0px 30px;
}
.blog-header__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem 1rem 2rem 1rem; 
}

.blog-featured-image-sec {
  position: relative;
}

.blog-post__tags a {
  position: absolute;
  top: 25px;
  padding: 8px 20px;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  color: #fff;
  font-size: 13px;
  left:0;
}

.blog-post__tags a:hover {
  color: #fff;
  opacity: 0.6;
}

/* @media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/1);
  }
} */
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/1);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  height: 100%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}
.blog-index__post-content--small h2 {
  font-size: 1.25rem;
}

.blog-index__post-content a,
.blog-post__read-more svg{
  color: #00B9FF;
  fill:#00B9FF;
}

.blog-index__post-content a:hover,
.blog-post__read-more svg:hover{
  color: #00B9FF;
  fill:#00B9FF;
}

.blog-index__post-content h6>a{
color:#272727;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin: 3.3rem 0;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  font-size:19px;
  color: #B2B4B2;
  text-decoration: none;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  font-size: 23px;
  color: #503f81;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}

.blog-pagination__prev-link, .blog-pagination__next-link {
  font-size: 13px;color:#503f81;
}

.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {
  color: #B2B4B2;
  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: #3D3935;
  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  color:#503f81;font-size:23px;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {
  background-color: #3D3935;
}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {
  color: #3D3935;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: Lato, sans-serif;
  color: #000;
}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: transparent;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  color: #3D3935;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}
.blog-comments .hs-button {
  background-color: transparent;
  border: 2px solid #494A52;
  color: #494A52;
}
.blog-comments .hs-button:hover {
  background-color: #494A52;
  color: #fff;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  display: flex;
}

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
  background: #fff;
}

.blog-index > div {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    margin: 15px 0;    overflow: hidden; padding:0;
}
.all.blog-index__post.blog-index__post--small.mix.certification.invisalign_and_itero:hover {
    border: 2px solid #00b9ff;
}

.blog-index>div a.register {
   background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
    color: #fff;
    border-radius: 4px;
    padding: 15px;
    display: inline-block;
    margin: 0 0 0 20px;
    border: 2px solid #503f81;
    font-size: 15px;
}
.twci-container.events-detail .content-container-inner .content-button {
    justify-content: space-between!important; flex-wrap:wrap;
}

.blog-index>div a.register.read {
    color: #00b9ff;
    background: transparent;
}
.blog-index>div a.register.read:hover {
    color: #fff;
    background: #00b9ff;
}

.blog-index > div a.register:hover{ background:transparent; color:#00b9ff; }

.blog_post_date {
    font-size: 15px;
    color: #404042;
    display: flex;
    margin-bottom: 15px;
}
.blog_post_date .date {
    padding-right: 60px;
}
.blog_post_date .date i, .blog_post_date .time i {
    font-size: 18px;    
}

.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
  margin:20px 0;
}


.blog-index__post-content--small h2>a{color: #272727;}

.blog-index__post-content h6 {
  margin: 20px 0;
}

.blog-index__post-inner-card .blog-index__post-content p {
  color: #272727;
  line-height: 26px;
  margin-bottom:0;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

.blog-post__meta-section {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
  .twci-container.events-detail .content-container-inner .content-button a {
    margin: 10px 0;
  }


}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  
  .blog-index .blog-index__post-inner-card > div{flex:0 0 70%; }

  .blog-index .blog-index__post-inner-card > div:first-child { flex:0 0 30%; }

  .blog-index .blog-index__post-inner-card { flex-flow: wrap; }
  
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
  font-weight: 600;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  margin-bottom: -110px;
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 84px 100px 80px 100px;
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {
  .blog-post {
    width: 90%;
    padding: 30px;
  }
}

/* Blog Comments */

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  min-width: 650px;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Neue Haas Grotesk Text Pro, Roboto, serif;
  font-size: 1.25rem;
  color: #3D3935;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #3D3935;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/** why itro page **/
/** Breif module **/

.invisalign-innovation-heading {
  margin-bottom: 0px !important;
}
ul.hs-breadcrumb-menu li a {
  color: #fff;
}
.bg-white{
  background-color: #FFFFFF;
  box-shadow: 0 28px 59px 0 #E0E0E0;
}
.cwti-container.brief-area {
  justify-content: space-between;
}
.cwti-container.brief-area .brief-block{
  min-height: 474.43px;
  width: 310.37px;
  text-align:center;
  display:flex;
  justify-content:center;
  padding:60px 35px 35px 35px;
}
.cwti-container.brief-area .cwti-items-col.bg-white.brief-block .cwti-items-image {
  box-shadow: none;
  margin: 0;
}
.brief-block .cwti-items-content h2 {
  color: #272727;
  line-height: normal;
  margin: 15px 0;
}

/** Breif module end **/

.left-text {
  padding-left: 55px;
}
.left-text h3 {
  font-size: 32px;    
  line-height: 40px;
  color: #3D3935;
  margin: 0 0 30px;
}
.left-text p {
  font-size: 18px;
  line-height: 28px;
  color: #3D3935;
  margin-bottom: 25px;
}
.left-text ul , .list-content ul {
  list-style: none;
}
.left-text li , .list-content li {
  font-size: 16px;
  line-height: normal;
  color: #3D3935;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.left-text li:before , .list-content li:before {
  content: "\f00c";
  background: #50ADD0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  text-align: center;
  color: #fff;
  left: -40px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.left-text.right-text {
  padding: 0 25px;
}
.span6.widget-span.widget-type-cell.cell_1615809048574-padding.dnd-column.cell_1615809048574-vertical-alignment .hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_module.widget-type-linked_image {
  width: 100%;
}
.bg-block-area {
  display: flex;
}
.bg-block-area .bg-sec {
  height: 515px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.bg-block-area .bg-sec h4 {
  color: #3D3935;
  line-height: 38px;
  margin-bottom: 20px;
  padding: 0 20px;
}
.bg-block-area .bg-sec a {
  color: #503f81;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 25px;
}
.row-fluid-wrapper.dnd-section.dnd_area-row-0-padding.dnd_area-row-0-background-image {
  position: relative;
}
.row-fluid-wrapper.dnd-section.dnd_area-row-0-padding.dnd_area-row-0-background-image:after {
  position: absolute;
  content: "";
  background-image: url(https://sos.invisaligngcc.net/hubfs/half-pattern-bottom.png);
  width: 450px;
  height: 450px;
  display: block;
  right: 0;
  bottom: 0;
  background-size: 100%;
  z-index: -1;
}

.cwti-container.brief-area.bg-patten-text .cwti-items-col.bg-white.brief-block {
  width: 100%;
  text-align: left;
  padding: 35px 90px 40px;
  background: transparent;
  min-height: auto;
  color: #fff;
}
.cwti-container.brief-area.bg-patten-text {
  background:linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block .cwti-items-image {
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  border-radius: 50%;
}
.cwti-container.brief-area.two-box h5 {
  color: #272727;margin:20px 0;
}
.cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block {
  /*   width: 40%; */
  margin-bottom: 35px;
}
.cwti-container.brief-area.two-box {
  justify-content: space-around;
  padding: 30px 0;
}

.twci-container-inner.form-image-block .content-container {
  width: 65%;
}
.twci-container-inner.form-image-block .image-container {
  width: 35%;
}
.twci-container-inner.form-image-block .content-container .content-container-inner {
  max-width: 100%;
}
.twci-container-inner.form-image-block .content-container .content-container-inner h3 {
  color: #3D3935;
  margin-bottom: 30px;
  line-height: 39px;
  text-transform: none;
}
.twci-container-inner.form-image-block .content-container .content-container-inner p {
  color: #272727;
  margin-bottom: 30px;
}
.twci-container-inner.form-image-block .content-container .content-container-inner fieldset {
  max-width: 100%;margin-bottom: 10px;
}
.twci-container-inner.form-image-block .content-container .content-container-inner .content-form form input , 
.twci-container-inner.form-image-block .content-container .content-container-inner .content-form form select{
/*   background: #fff; */
  font-size: 16px;
}
.twci-container-inner.form-image-block .content-container .content-container-inner .actions {
  margin-top: 30px;
  justify-content: flex-start;
}
/* .twci-container-inner.form-image-block .content-container .content-container-inner .actions input.hs-button.primary.large {
  background-color: #3F2A56;
} */
/** why itro page **/

/** Events Detail page  **/
.twci-container.events-detail .detil-boxes {
  display: flex;
  flex-direction: column;
}
.cwti-container.brief-area.event-boxes {
  flex-direction: column;
  padding: 35px;
  background: #fff;
  box-shadow: 5px 9px 13px 0 rgb(214 214 214 / 50%);
  margin-bottom: 50px;
}
.event-title {
  text-align: center;
  margin-bottom: 30px;
}
.event-title h2 {
  color: #3D3935;   
  line-height: 39px;
}
.event-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.twci-container.events-detail .box {
  display: flex;
  padding: 25px;
  background: #fff;
  box-shadow: 5px 9px 13px 0 rgb(214 214 214 / 50%);
  margin-bottom: 25px;
  align-items: center;
}
.twci-container.events-detail .box img {
  width: 40px;
  margin-right: 10px;
  height:40px !important;
  object-fit: contain;
}

.box.events-blog-details-sec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.event-loc.events-blog-details-content h6 {
  margin: 0;
}
.twci-container.events-detail .box h6 {
  color: #503f81;
  line-height: 25px;
}
.twci-container-inner .description-content {
  width: 100%;
  padding: 20px 0;
  color: #272727;  
  font-size: 20px; 
  line-height: 28px;
}
.twci-container.events-detail .content-container-inner .content-button {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.twci-container.events-detail .content-container-inner .content-button a{
  border: 2px solid #503f81;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #503f81;
  font-size: 17px;  
  line-height: 21px;
  transition: all 0.5s ease-in-out;
}
.twci-container.events-detail .content-container-inner .content-button a:hover{
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  color: #fff;
}
.cwti-items-col.bg-white.brief-block.event-box {
  padding: 20px;
  width: 31.33%;
  box-shadow: none;
  height: auto;
  margin-bottom: 25px;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-image {
  width: 100%;
  padding: 0;
  position: relative;
  height: auto;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-image .event-tag {
  position: absolute;
 background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  bottom: 0;
  left: 0;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-content {
  text-align: left;
  padding: 0 10px 10px;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-content h5 {
  color: #272727;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  padding: 12px 0 0;
  margin: 0;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-content h6 {
  color: #272727;
  line-height: 27px;
  margin:20px 0 0 0;
  text-transform: none;
}
main.body-container-wrapper.cd-page .cwti-container.brief-area .cwti-items-col.bg-white.brief-block .cwti-items-image img {
  height: 220px !important;
}
.cwti-items-col.bg-white.brief-block.event-box .content-desc {
  margin-top: 10px;
}

.cwti-items-col.bg-white.brief-block.event-box .cwti-items-content .content-desc p {
  text-align: left;
  color: #272727;  
  line-height: 22px;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-content .read-more{
  text-align: right;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-content .read-more a {
  color: #00B9FF;
  font-weight: 600;
  line-height: 22px;
}
.cwti-items-col.bg-white.brief-block.event-box .cwti-items-content .read-more a span {
  padding-left: 7px;
}
.request-call-block {
  margin-bottom: -80px;
}
.request-call-block .bottom-bocd-content {
  max-width: 100%;
  margin-top: 20px;
}
.request-call-block .bottom-bocd-fluid {
  margin-top: 25px;
}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form {
  width: 100%;
  padding: 0;
}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form form {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form form fieldset.form-columns-2 {
  max-width: 75%;
  margin-bottom: 20px;
}
.request-call-block .bottom-boxed-container {
  padding: 40px 60px 20px;
}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form form fieldset.form-columns-2 .field.hs-form-field {
  padding-right: 15px;
}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form form .actions {
  margin: 0;
}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form form .hs-button {
  top: inherit;
  bottom: 20px;
  right: 40px;
  line-height: normal;
  padding: 0;
}
.event-top-title {
  text-align: left;
  letter-spacing: 1.19px;
  color: #503f81;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 2px;
}
.events .custom-hubdb-events-post .event-main-heading {
  float: none;
  padding-top:0;
  padding-bottom:18px;
}
.custom-hubdb-events-post .twci-container-inner .description-content {
  float: none;
}
.custom-hubdb-events-post span.custom-duration {
  position: relative;
  padding-left: 28px;
}
.events .custom-hubdb-events-post .twci-container-inner {
  align-items: flex-start;
}
.custom-hubdb-events-post {
  padding-top: 65px;
}
.events .custom-hubdb-events-post .twci-container-inner .content-container {
  flex:unset;
  width: 100%;
  max-width: 100%;
}

.events .custom-hubdb-events-post .twci-container-inner .image-container {
  flex: 0 0 45%;
  max-width: 45%;
}
.events .custom-hubdb-events-post .custom-date{
  margin-right:40px;
}
.events .custom-hubdb-events-post .event-loc i {
  color: #00A3D7;
  position: absolute;
  left: 0;
  vertical-align: middle;
  top: 2px;
}
.events .custom-hubdb-events-post .event-loc {
  position: relative;
  padding-left: 37px;
  color: #272727;
  font-weight:bold;
  margin-bottom:8px;
}
.event-loc.events-blog-details-content h6 {
  font-size: 18px;
  font-weight: bold;
  color: #272727;
}
.custom-hubdb-events-post h5 {
  color : #272727;
  font-size: 21px;
  margin-bottom: 0;
  margin-top: 20px;
}
.custom-hubdb-events-post hr {
  margin-top: 17px;
}

.cm-event-accordion-content {
  display: none;
}

.cm-event-accordion-header {
  background: #F7F7F7;
  padding: 15px;
  color: #503f81;
  font-size: 21px;
  font-weight: bold;
  position: relative;
  cursor:pointer;
}
.cm-event-accordion-item {
  margin-bottom: 12px;
}
.cm-event-accordion-item i {
  color: #fff;
  border-radius: 50%;
 background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  font-size: 14px;
  padding: 8px;
  height: 30px;
  width: 30px;
  text-align: center;
  margin-right: 10px;
  line-height: 1;
}
.cm-event-accordion-inner-content {
  border-left: 6px solid #503f81;
  padding-left: 20px;
  margin: 35px 0;
}
.cm-event-accordion-header:after {
  content: "\f077";
  font-family: 'Font Awesome 5 Brands';
  font-weight: bold;
  font-size: 20px;
}
.cm-event-accordion-group * {
  transition: none;
}
.cm-event-accordion-group {
  max-width: 680px;
  margin-top: 60px;
}
.custom-hubdb-events-post.twci-container.events-detail .content-container-inner .content-button {
  justify-content: flex-start !important;
}
.custom-hubdb-events-post.twci-container.events-detail .content-container-inner .content-button a {
  width: auto;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 20px;
  margin-bottom: 10px;
}

.events .custom-hubdb-events-post .twci-container-inner .image-container.right {
  float: right;
  max-width: none;
  flex: unset;
  margin: 0;
  width: 40%;
}
.events .custom-hubdb-events-post .twci-container-inner .content-container .content-container-inner {
  max-width: 100%;
}


/** Events Detail page End **/

/** Request a call **/
.cwti-container.banner-area {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-area .cwti-items-content {
  width: 100%;
  padding: 150px 20px 30px;
  text-align: left;
}
.banner-area .cwti-items-content p {
  color: #3D3935;
  font-size: 28px;   
  line-height: 1.25;
  font-weight: bold;
}
.cwti-video-form-block {
  display: flex;
  padding: 0 35px;
}
.cwti-video-form-block .cwti-items-content.left-block {
  width: 60%;
  padding-right: 25px;
}
.cwti-video-form-block .right-form {
  width: 40%;
  background: #fff;
  border-top: 5px solid #503f81;
  padding: 30px 25px;
  box-shadow: 0 26px 53px 0 rgb(4 17 31 / 10%);
  margin-top: -300px;
  margin-right: 10px;
}
.cwti-video-form-block .right-form h3 {
  color: #272727;
  font-family: "Neue Haas Grotesk Text Pro";
  font-size: 30px;
  letter-spacing: 0;
  line-height: 46px;
  margin-bottom: 20px;
}
.cwti-video-form-block .right-form p {
  color: #272727;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 20px;
  margin-bottom: 30px;
}
.cwti-video-form-block .right-form form {
  padding: 0 30px;
}
.cwti-video-form-block .right-form form .hs-form-field {
  margin-bottom: 25px;
}
.cwti-video-form-block .right-form form .hs-form-field input, .cwti-video-form-block .right-form form .hs-form-field .hs-input:not([type=checkbox]):not([type=radio]) {
  font-size: 18px;
  padding: 20px 25px;
}
.cwti-video-form-block .right-form form .hs-form-field label {
  color: #3D3935;
  font-size: 16px;    
  line-height: 20px;
  margin-bottom: 10px;
}
.cwti-video-form-block .right-form form .hs-form-field ul.inputs-list.multi-container li label {
  font-size: 13px;
}
.cwti-items-content.left-block h5 {
  color: #503f81;
  line-height: 28px;
  width: 80%;
  margin-bottom: 25px;
}
.cwti-items-content.left-block p {
  color: #3D3935;  
  line-height: 31px;
  margin-bottom: 20px;
}
.video-section {
  padding-bottom: 25px;
}
.video-section .iframe_wrapper iframe {
  width: 100%;
  height: 100%;
}
.list-content li {
  margin-bottom: 30px;
}
.cwti-video-form-block:before {
  content: "";
  position: absolute;
  width: 105px;
  height: 388px;
  left: 0;
  background-image: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Invisalign/background%20patterns/Rectangle%20Copy.png);
  background-repeat: no-repeat;
  z-index: -1;
}
.cwti-video-form-block:after {
  content: "";
  position: absolute;
  width: 105px;
  height: 175px;
  right: 0;
  background-image: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Invisalign/background%20patterns/Rectangle%20Copy.png);
  background-repeat: no-repeat;
  bottom: -100%;
  z-index: -1;
}
/** Request a call **/



.full-width-form.brief-area {
  background-color: #FFFFFF;
  box-shadow: 0 29px 58px 0 rgb(4 17 31 / 10%);
  padding: 25px 100px 60px;
  text-align: center;
}

.full-width-form.brief-area .form-content , .full-width-form.brief-area .form-content form, .full-width-form.brief-area .form-content form fieldset {
  width: 100%;
  max-width: 100%;
}
.full-width-form.brief-area .form-content form fieldset {
  margin-bottom: 20px;
}
.full-width-form.brief-area .form-content form fieldset .hs-form-field {
  padding-right: 20px;
}
.full-width-form.brief-area .form-content form fieldset .hs-form-field:last-child {
  padding-right: 0px;
}
.full-width-form.brief-area .form-content form fieldset .hs-form-field input , .full-width-form.brief-area .form-content form fieldset .hs-form-field select {
  font-size: 18px;
  padding: 25px;
}
.full-width-form.brief-area .form-content .form {
  margin-top: 40px;
}
.full-width-form.brief-area .form-content h2 {
  color: #3D3935;
  font-size: 30px;    
  line-height: 38px;
  margin-bottom: 20px;
}
.full-width-form.brief-area .form-content p {
  color: #272727; 
  font-size: 18px;  
  line-height: 21px;
}
/** Contact Page **/
.google-map iframe {
  height: 100vh;
}
main.body-container-wrapper.ct-page form {
  width: 85%;
  margin: auto;
}
main.body-container-wrapper.ct-page form input.hs-input {
  font-size: 18px;
}
main.body-container-wrapper.ct-page form .actions {
  margin-top: 30px;
}
main.body-container-wrapper.ct-page .dnd_area-row-1-background-image .span6.widget-span.dnd-column:first-child {
  box-shadow: 0 29px 58px 0 rgb(4 17 31 / 10%);
}
main.body-container-wrapper.ct-page .acc_wrap {
  box-shadow: 0 29px 58px 0 rgb(4 17 31 / 10%);
  padding-left: 13%;
  padding: 75px 50px 75px 13%;
  background: #fff;
  position: relative;
}
main.body-container-wrapper.ct-page .acc_wrap:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  width: 10px;
  height: 90%;
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
}
.acc_wrap h3 {
  color: #3D3935;
  font-size: 35px;
  margin-bottom: 20px;
  line-height: normal;
}
.accourdion-item button.accourdion-item-title {
  background: no-repeat;
  border: 0;
  position: relative;
  color: #3D3935;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 25px;
  padding: 0px 20px;
  border-left: 1px solid #6A6A6A;
  margin-left: 60px;
  overflow: visible;
}
.accourdion-item-content {
  margin: 20px 0;
  padding: 15px;
}
.accourdion-item button.accourdion-item-title:before {
  content: "+";
  position: absolute;
  left: -35px;
  overflow: visible;
  font-size: 18px;
  font-weight: 600;
}
.accourdion-item button.accourdion-item-title.active:before {
  content: "-";
}
.accourdion-item {
  border-bottom: 1px solid rgba(106, 106, 106,0.2);
  padding: 20px 0;
}
.accourdion-item:last-child {
  border-bottom: none;    
}
.accourdion-item button.accourdion-item-title.active + .accourdion-item-content {
  display: block !important;
}
.inquiry-block {
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  padding: 40px;
}
.inquiry-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.5);
}
.inquiry-block ul li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.inquiry-block .text {
  display: flex;
  justify-content: space-between;
  color:#fff;  
  font-size: 16px;
}
.inquiry-block .text a{
  color:#fff;  
}
/** Events page  **/
main.body-container-wrapper.et-page .cwti-container.brief-area.event-boxes {
  box-shadow: none;
  background: transparent;
  padding: 0 15px;
}
/** Restorative Page **/
main.body-container-wrapper.it-page .cwti-container.brief-area {
  justify-content: space-evenly;
}
main.body-container-wrapper.it-page .brief-block .cwti-items-content h2 {
  color: #503f81;
}
main.body-container-wrapper.it-page .twci-container-inner img {
  width: auto;
  height: auto;
}
main.body-container-wrapper.it-page .twci-container-inner .image-container {
  text-align: center;
  width: 35%;
}
main.body-container-wrapper.it-page .twci-container-inner .content-container {    
  width: 65%;
}
/* main.body-container-wrapper.it-page .cwti-items-col.bg-white.brief-block {
height: auto;
min-height: auto;
} */
/* main.body-container-wrapper.it-page .dnd_area-row-3-background-image {
overflow: inherit !important;
background-size: inherit !important;
background-position: inherit !important;
} */
/* ul {
list-style: decimal;
} */
.container-fluid.body-container.body-container__website ul li {   
  padding-bottom: 15px;
  color: #3D3935;
  letter-spacing: 0;
  line-height: 20px;
}
main.body-container-wrapper.smart-page .image-list-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main.body-container-wrapper.smart-page .image-list-block .image-list {
  width: 30%;
  text-align: center;
}
main.body-container-wrapper.smart-page .image-list-block h3 {
  color: #3D3935;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  margin-bottom: 25px;
}
main.body-container-wrapper.smart-page .image-list-block .image-list .description p {
  color: #3D3935;
  font-size: 18px;
  line-height: 31px;
  text-align: left;
}
main.body-container-wrapper.smart-page .image-list-block .image-list .description ul {
  list-style:none; 
  padding-left: 30px;
}

main.body-container-wrapper.smart-page .image-list-block .image-list .description li {
  color: #3D3935;
  font-size: 18px;
  line-height: 31px;
  text-align: left;
  padding-bottom: 20px; 
  position: relative;
}
main.body-container-wrapper.smart-page .image-list-block .image-list .description li:before {
  content: "";
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: -25px;
}
.request-call-block.two-flex-area .bottom-boxed-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
}
.request-call-block.two-flex-area .bottom-boxed-inner .bottom-bocd-content , .request-call-block.two-flex-area .bottom-boxed-inner .bottom-bocd-fluid {
  margin: 0;
}
.left-text-block h4 {
  margin-bottom: 30px;color:#3D3935;
}
.left-text-block h6 {
  color: #3D3935;
  margin-bottom: 15px;
}
.left-text-block p {
  color: #707372;
  line-height: 28px;
}
.twci-container-inner.three-list-block {
  justify-content: center;
  padding: 20px 50px 0;
  background-color: #FFFFFF;
  box-shadow: 5px 12px 13px 0 rgb(214 214 214 / 50%);
}
.twci-container-inner.three-list-block .list-area {
  width: 100%;
}
.twci-container-inner.three-list-block .list-area .heading h2 {
  text-align: center;
  line-height: 39px;
  margin-bottom: 40px;
}

.twci-container-inner.three-list-block .list-area .desc-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.twci-container-inner.three-list-block .list-area .desc-block .list {
  width: 30%;
}

.twci-container-inner.three-list-block .list-area .desc-block .list ul {
  list-style: none;
  padding-left: 15px;
  margin-bottom: 30px;
}
.twci-container-inner.three-list-block .list-area .desc-block .list ul li {
  font-size: 14px;
  position: relative;
  color: #3D3935;
  margin-bottom:6px;
}

.twci-container-inner.three-list-block .list-area .desc-block .list ul li:last-child {
  margin-bottom: 0;
}
.twci-container-inner.three-list-block .list-area .desc-block .list ul li:before {
  height: 7px;
  width: 7px;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  left: -15px;
  top: 9px;
}


.cwti-container.brief-area.event-boxes.detail-block-boxes .cwti-items-col.bg-white.brief-block.event-box .cwti-items-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
section.slider-box {
  box-shadow: 4px 7px 10px 0 rgb(214 214 214 / 50%);
  padding: 30px 30px 50px;
}
section.slider-box .heading h4 {
  text-align: center;
  color: #3D3935;   
  margin-bottom: 30px;
}
section.slider-box .slick-list .slick-slide {
  padding: 0 15px;
}
section.slider-box ul.slick-dots {
  bottom: unset;
  padding: 20px 0 0;
}
main.body-container-wrapper.pb-page .brief-block {
  width: 30%;
}
main.body-container-wrapper.pb-page .brief-block .cwti-items-content h2 {
  color: #503f81;
}
.bg-text-box {
  background-repeat: no-repeat;
  background-size: cover;
  width: 475px;
  height: 640px;
  display: flex;
  justify-content: center;
  padding: 50px;
}
section.bg-text-box .heading h4 {
  color: #3D3935;    
}
div#hs_cos_wrapper_widget_1616935424838 section.bg-text-box {
  float: right;
}
main.body-container-wrapper.pb-page .bg-pattern {
  z-index: 0;
}
section.slider-box.testi-slider-box {
  box-shadow: none;
}
section.slider-box.testi-slider-box h4 {
  color: #3D3935;
  font-size: 35px;
  line-height: 39px;
}
section.slider-box.testi-slider-box .heading {
  max-width: 1170px;
  margin: auto;
  text-align: center;
}
section.slider-box.testi-slider-box .heading .description {
  font-size: 18px;
  line-height: 24px;
  max-width: 1000px;
  margin: auto;
  color: #707372;
}
section.slider-box.testi-slider-box .slick-list .teti-slide.slick-slide {
  background-color: #fff;
  box-shadow: 0 27px 56px 0 #e0e0e0;
  width: 565px !important;
  padding: 50px;
  margin: 70px;
  text-align: center;
}
section.slider-box.testi-slider-box .slick-list .teti-slide.slick-slide img {
  margin: 0 auto 30px;
}
section.slider-box.testi-slider-box .slick-list .teti-slide.slick-slide h6 {
  color: #3D3935;
  margin-bottom: 25px;
}
section.slider-box.testi-slider-box .slick-list .teti-slide.slick-slide .client-comment {
  color: #3D3935;
  font-size: 18px;
  line-height: 24px;
}
main.body-container-wrapper.pbt-page .brief-block .cwti-items-content h2 {
  color: #503f81;
  font-size: 30px;
}
main.body-container-wrapper.pbt-page .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block .cwti-items-image {
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
}
main.body-container-wrapper.pbt-page .accourdion-item {
  border: none;
  padding-bottom: 0;
}
main.body-container-wrapper.pbt-page .accourdion-item button.accourdion-item-title {
  color: #503f81;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 20px 50px;
  border: none;
  margin: 0;
  background: #F7F7F7;
}
main.body-container-wrapper.pbt-page .accourdion-item button.accourdion-item-title:before {
  left: inherit;
  right: 50px;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}
main.body-container-wrapper.pbt-page .accourdion-item button.accourdion-item-title.active:before
{
  content: "\f106";
}
main.body-container-wrapper.pbt-page .accourdion-item button.accourdion-item-title:after {
  content: "\f00c";
  color: #fff;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50%;
  left: 15px;
  top: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  text-align: center;
  font-size: 14px;
}
main.body-container-wrapper.pbt-page .accourdion-item .accourdion-item-content {
  font-size: 18px;
  padding-left: 65px;
  line-height: 1.5;
  position: relative;
}
main.body-container-wrapper.pbt-page .accourdion-item .accourdion-item-content:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
  left: 35px;
}

.introduction-card-content-container>img {    
  width: 236px;
  height: 326px;
}
main.body-container-wrapper.home-page .bg-pattern {
  z-index: 0;
}
.hs-tabber-cust-mod .tabber-content .tab-image { 
  overflow: hidden;
  height: 100%;
}
.hs-tabber-cust-mod .tabber-content .tab-image img {   
  height: 100%;width:100%;object-fit: cover;
}

main.body-container-wrapper.home-page .request-call-block {
  margin: 0;
}
fieldset.form-columns-1 .hs_message.hs-message.hs-fieldtype-textarea.field.hs-form-field {
  width: 100% !important;
}
main.body-container-wrapper.home-page .cwti-container .cwti-items-col .cwti-items-image img {
  filter: brightness(0) invert(1);
}
.hs-tabber-cust-mod .tabber-tab ul li a , .introduction-card-content-container .intro-content , .case-banner-inner-container .content-cnt p  {    
  letter-spacing: 0;    
}

/** Home page**/
main.body-container-wrapper.home-page .counter-container p {
  font-size: 18px;
  letter-spacing: 0;   
  text-align: left;
}
main.body-container-wrapper.home-page .introduction-card-content-container .intro-content {
  font-size: 18px;
}
main.body-container-wrapper.home-page .hs-tabber-cust-mod .tabber-content p , .case-banner-inner-container .content-cnt p{
  font-size: 18px;
}
/* .page-center {
padding: 0 15px 60px;
} */
.tab-image:before {
  content: "";
  position: absolute;
  background: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Invisalign/background%20patterns/Combined%20Shape.svg);
  width: 100px;
  height: 100%;
  z-index: 9;
  background-size: cover;
  background-repeat: no-repeat;
  left: -2px;
  top: 0px;
}


/** Why itero **/
main.body-container-wrapper.wit-page .twci-container-inner .image-container {
  width: 40%;
}
main.body-container-wrapper.wit-page .twci-container-inner .image-container img{width:auto;}
main.body-container-wrapper.wit-page .twci-container-inner .content-container {
  width: 60%;
}
main.body-container-wrapper.it-page .three-column_sec_why_invisalign {
  justify-content: space-evenly;
}

.cwti-items-content p {
  text-align: left;
}
.it-page.htbc-page .twci-container-inner.form-image-block .content-container .content-container-inner .actions input.hs-button.primary.large {
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
}
.cwti-container.brief-area.event-boxes.detail-block-boxes .cwti-items-col.bg-white.brief-block.event-box .cwti-items-content h5:empty {
  display: none;
}
main.body-container-wrapper.cd-page .event-area {
  justify-content: flex-start;
}
.case-banner-inner-container .content-cnt {
  padding: 0px 15px 30px;
}
.video-frame {
  width: 100%;
  height: 100%;
}
iframe.vidyard_iframe {
  width: 100%;
  height: 100%;
}
#vidyard-content-fixed {    
  z-index: 9999 !important;   
}
.vidyard-close-x:after, .vidyard-close-x:before {   
  height: 50% !important;
}
.vidyard-close-container {    
  border-radius: 50%;
  overflow: hidden;
  background:#000;
}
#vidyard-overlay {    
  z-index: 999 !important;
}
div#vidyard-popbox {
  width: 100%;
}

@media(max-width:1199px){
  .request-call-block .bottom-bocd-fluid .bottom-bocd-form form fieldset.form-columns-2 {
    max-width: 100%;    
  }
  .request-call-block .bottom-bocd-fluid .bottom-bocd-form form .hs-button {   
    position: static;
  }
  .form-columns-2 .hs-form-field .hs-input{
    width: 100% !important;
  }
  main.body-container-wrapper.ct-page .acc_wrap {   
    padding: 35px;    
  }
  .inquiry-block {    
    padding: 20px;
  }
  .inquiry-block .text {   
    font-size: 14px;
  }
  /*   body .dnd_area-row-1-background-image {   
  background-size: cover !important; 
  padding-top: 100px !important;
  padding-bottom: 150px !important;
} */
  .bg-block-area .bg-sec {
    height: 300px;    
    background-size: cover;   
  }

}

@media(max-width:1100px){
  button.slick-arrow{display:none !important;}
  header.tabs-nav.mob button.slick-arrow {
    display: block !important;
  }
}

@media(max-width:992px){
  .full-width-form.brief-area {    
    padding: 25px;    
  }
  .accourdion-item-content {
    margin: 0;    
    font-size: 14px;
  }
  .google-map iframe {
    height: 65vh;
  }
  .span6.widget-span.widget-type-cell.cell_1616056839701-padding.cell_1616056839701-vertical-alignment.dnd-column {
    padding-right: 20px !important;
  }
  .row-fluid-wrapper.dnd_area-row-2-force-full-width-section.dnd_area-row-2-padding.dnd-section.dnd_area-row-2-background-image.dnd_area-row-2-vertical-alignment {
    padding-bottom: 35px !important;
  }
  .cwti-video-form-block {   
    padding: 0 15px;
    flex-direction: column;
  }
  .cwti-video-form-block .cwti-items-content.left-block {
    width: 100%;
    padding-right: 0;
  }
  .cwti-video-form-block .right-form {
    width: 100%;    
    margin-top: 0;
    margin-right: 0;
  }
  .cwti-video-form-block .right-form form {
    padding: 0;
  }
  .cwti-video-form-block:before {    
    width: 120px;
    height: 100px; 
  }
  /*   body .dnd_area-row-1-background-image { 
  padding-bottom: 100px !important;
} */
  main.body-container-wrapper.it-page .cwti-items-col.bg-white.brief-block {    
    margin-bottom: 30px;
  }
  .left-text {
    padding-left: 15px;
  }
  .left-text h3 {
    font-size: 20px !important;
    margin: 0 0 10px;
    line-height: 28px;
  }
  .left-text p {
    font-size: 14px;
    line-height: 20px;   
  }
  main.body-container-wrapper.it-page .dnd-section {
    padding-bottom: 0;
    padding-top: 0;
  }
  main.body-container-wrapper.smart-page .image-list-block {    
    flex-direction: column;
  }
  main.body-container-wrapper.smart-page .image-list-block .image-list {
    width: 100%;
    text-align: center;
  }
  main.body-container-wrapper.home-page .row-fluid-wrapper.row-depth-1.row-number-7 .row-fluid {
    flex-wrap: wrap;
  }
  main.body-container-wrapper.home-page .row-fluid .span2, main.body-container-wrapper.home-page .row-fluid .span3, main.body-container-wrapper.home-page .row-fluid .span4 {
    width: 50%;
  }
  .cwti-container.brief-area {
    justify-content: space-around;
    align-items: center;
  }
}


@media(max-width:767px){
  .events .custom-hubdb-events-post .twci-container-inner .image-container.right {
    width: 100%;
    float: none;
  }
  .events .custom-hubdb-events-post .twci-container-inner .image-container.right img {
    height: auto !important;
  }
  .twci-container-inner.form-image-block {
    flex-direction: column-reverse;
  }

  .twci-container-inner.form-image-block .image-container {
    margin: 0;
  }
  main.body-container-wrapper.wit-page .twci-container-inner .content-container{width:100%;}
  main.body-container-wrapper.wit-page .twci-container-inner .image-container{width:100%;}
  .cwti-container.brief-area.bg-patten-text .cwti-items-col.bg-white.brief-block {
    padding: 40px 22px;
    text-align: center;
  }

  .bg-white {
    box-shadow: 0 2px 10px 0 rgb(0,0,0,0.1);}

  h2 {
    font-size: 28px !important;
  }
  h3 {   
    font-size: 24px !important;   
  }

  .cwti-container.brief-area {
    justify-content: center;   
  }
  /*     .cwti-container.brief-area .brief-block {   
  width: 300px;    
  margin-bottom: 30px;
} */
  .twci-container-inner {   
    flex-direction: column;
  }
  .twci-container-inner>* {
    width: 100%;
  }
  .twci-container-inner>div{flex:0 0 100%;max-width:100%;margin-bottom:20px;}

  .twci-container-inner>div:last-child{margin-bottom:0;}

  .twci-container.widget_1615871906523 .content-container {   
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .bg-block-area {
    display: flex;
    flex-direction: column;
  }
  .bg-block-area .bg-sec {
    height: 300px;   
    background-size: cover;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
  }

  .bg-block-area .bg-sec:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.4);
  }

  .bg-block-area .bg-sec h4,
  .bg-block-area .bg-sec a {
    position: relative;
    color: #fff;
  }


  .bg-block-area .bg-sec:last-child{margin-bottom:0;}
  .cwti-container.brief-area.two-box {
    justify-content: center;    
    flex-direction: column;
  }
  .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block {
    width: 100%;  
    min-height:auto;
  }
  .twci-container-inner.form-image-block .image-container {
    width: 100%;
  }
  .twci-container-inner.form-image-block .content-container .content-container-inner .content-form form input , 
  .twci-container-inner.form-image-block .content-container .content-container-inner .content-form form select{
    width: 100% !important;
  }
  .twci-container-inner.form-image-block .content-container {
    width: 100%;
  }
  .request-call-block .bottom-boxed-container {
    padding: 20px;
  }
  .request-call-block .bottom-bocd-fluid .bottom-bocd-form form fieldset.form-columns-2 {
    max-width: 100%;
    margin-bottom: 0px;
  }
  .bottom-boxed-container .bottom-bocd-form .hs-form-field .hs-input {   
    width: 100% !important;
    margin-bottom: 20px;
  }
  .request-call-block .bottom-bocd-fluid .bottom-bocd-form form .hs-button {    
    position: static;
  }
  .left-text {
    padding: 20px;
  }
  .twci-container.widget_1617096233854 .content-container {   
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #hs_cos_wrapper_widget_1616072200076 li.hs-breadcrumb-menu-item {
    font-size: 10px !important;
  }
  main.body-container-wrapper.it-page .twci-container-inner .image-container {
    text-align: center;
    width: 100%;
  }
  main.body-container-wrapper.it-page .twci-container-inner .content-container {
    width: 100%;
    padding: 30px 30px 0 !important;
  }

  .content-button-new .bottom-boxed-container {    
    padding: 30px !important;
  }
  .require-button-sec {
    padding: 20px 0;
  }
  .event-area , .twci-container-inner.three-list-block .list-area .desc-block {   
    flex-direction: column;
  }
  .cwti-items-col.bg-white.brief-block.event-box , .twci-container-inner.three-list-block .list-area .desc-block .list {   
    width: 100%;   
  }
  .full-width-form.brief-area .form-content form fieldset .hs-form-field {
    padding-right: 0px;
  }
  .full-width-form.brief-area .form-content form fieldset {
    margin-bottom: 0px;
  }
  .hs-tabber-cust-mod .tabber-tab , .hs-tabber-cust-mod .tabber-content {
    width: 100%;
  }
  .hs-tabber-cust-mod .tabber-tab ul {   
    padding: 30px 0;    
    flex-direction: column;
  }
  .hs-tabber-cust-mod .tabber-tab ul li {
    width: 100%;
    text-align: center;
    padding-bottom:0 !important;
  }
  .hs-tabber-cust-mod .tabber-content .tab-image {   
    position: static;   
    width: 100%;
  }
  .tab-pane-more {
    text-align: left;    
  }
  .twci-container.widget_1614955335298 .content-container {
    padding:20px !important;
  }
  .cwti-container {   
    flex-direction: column;
  }
  .cwti-container .cwti-items-col {
    width: 100%;
    padding: 15px;    
    max-width: 500px;
    margin: 0 auto;
  }

  .cwti-items-content p {
    text-align: center;
  }
  .bottom-boxed-container {
    padding: 20px;
  }
  .bottom-boxed-container .bottom-bocd-fluid {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
  }
  .bottom-boxed-container .bottom-bocd-content {
    max-width: 370px;
    width: 100%;
  }
  .bottom-boxed-container .bottom-bocd-form {
    width: 100%;
    padding-left: 0;
  }
  .bottom-boxed-container .bottom-bocd-form .hs-form-field {
    margin: 0;
    width: 100%;
  }
  .bottom-boxed-container .bottom-bocd-form .hs-button {    
    position: static;    
  }
  .actions {    
    margin-top: 0;
  }
  .banner-area .cwti-items-content {    
    padding: 20px 20px 50px;    
  }
  .banner-area .cwti-items-content p {   
    font-size: 14px;   
  }
  main.body-container-wrapper.it-page .cwti-container.brief-area {
    justify-content: center;
    align-items: center;
  }
  .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block:last-child {
    margin: 0;
  }
  main.body-container-wrapper.it-page .bg-pattern {   
    display: none;
  }
  .cwti-container.brief-area .brief-block:last-child {
    margin: 0;
  }
  main.body-container-wrapper.it-page .row-fluid-wrapper.row-depth-1.row-number-15.dnd-section.dnd_area-row-5-padding.dnd_area-row-5-vertical-alignment.dnd_area-row-5-background-color.dnd_area-row-5-force-full-width-section .row-fluid {
    display: flex;
    flex-direction: column-reverse;
  }
  main.body-container-wrapper.home-page .row-fluid .span2, main.body-container-wrapper.home-page .row-fluid .span3, main.body-container-wrapper.home-page .row-fluid .span4 {
    width: 100%;
  }
  .hs-tabber-cust-mod .tabber-tab ul li a {    
    font-size: 18px;   
  }
  .hs-tabber-cust-mod .tabber-content p {
    font-size: 16px;
    line-height: 22px;
  }
  .introduction-card-content-container h1 {    
    font-size: 30px;
  }
  .introduction-card-content-container .intro-content p , .case-banner-inner-container .content-cnt p {
    font-size: 18px;
  }
  .case-banner-inner-container .content-cnt h5 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .tab-image:before{content:none;}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form form fieldset.form-columns-2 .field.hs-form-field {
  padding-right: 0px;
}
  .request-call-block .bottom-bocd-fluid .bottom-bocd-form form fieldset.form-columns-2 .field.hs-form-field .input {
    margin: 0;
}

}

/* final css */

.wi-page .brief-block .cwti-items-content h2 {
  color: #503f81;
}

.wi-page .fa, .fas {
  font-weight: 900;
  padding-left: 10px;
}
.hs-breadcrumb-menu-divider:before {
  content: '/';
  padding-left: 10px;
} 


.it-page .invisalign-innovation {
  background: #ffffff;
}
.cd-page .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #503f81;
  border-right: 2px solid #503f81;
  transform: rotate(135deg);
  margin-left: 9px;
}
.twci-container-inner.form-image-block .content-container .content-container-inner .actions .hs-button{
  border-radius:0;
}
.it-page .twci-container-inner.form-image-block .content-container .content-container-inner .actions input.hs-button.primary.large {
  background-color: #3f2a56;
}
.pb-page .twci-container-inner.form-image-block .content-container .content-container-inner .actions input.hs-button.primary.large {
  background: linear-gradient(90deg, rgba(36,28,75,1) 0%, rgba(129,75,147,1) 100%);
}
.hs-breadcrumb-menu-item {   
  padding: 5px 0px 5px 10px !important;
}
.container-fluid.body-container.body-container__website.head-content .span12.widget-span.widget-type-custom_widget.dnd_area-module-1-vertical-alignment.dnd-module {
  padding-left: 0;
}
div#hs_cos_wrapper_language-switcher , .header__language-switcher--label-current {   
  display: none;
}
.disclaimr {
  font-size: 14px;
  font-style: italic;
  color: #999;
  padding: 10px 0;
}
.slick-slide img {   
  width: 100%;
}
.request-call-block h4 {
  font-weight: 300;
}

.bottom-boxed-container .bottom-bocd-content h6 {
  font-weight: normal;
}
.request-call-block .bottom-bocd-fluid .bottom-bocd-form form .hs-button {
  background: #5cd3ca;
  padding: 13px 25px;
  line-height: normal;
  display: inline-block;
  color: #000;
  font-size: 15px;
  border: 0;
}
.vidyard-player-container .play-button .arrow {
   border-left: 300px solid #000 !important;    
}
/* ******************************************************************************
*********************************************************************************
Use this file to override any of the CSS styles preset in the themed
stylesheets or you can add your own custom styles.
*********************************************************************************
****************************************************************************** */

/* Test */
















.dnd-section > .row-fluid {
  max-width: 1200px;
}

.dnd-section {
  padding-bottom: 40px;
  padding-top: 40px;
}
.page-center, .container {
  max-width: 1200px;
}



  .cm-itero-lp-layout .cwti-container.banner-area {
    min-height: 550px;  
    background-position: bottom;
}
body {
  font-weight: 400;
  color: #000000;
  font-family: Roboto;
  font-size: 18px;
}

a {
  color: rgba(80, 63, 129, 1.0);
  cursor: pointer;
}

a:hover,
a:focus {
  color:#707372;
}

h1 {
  color: #3f2a56;
  font-family: Roboto;
  font-size: 44px;
  font-weight: 400;
}

h2 {
  color: #3f2a56;
  font-family: Roboto;
  font-size: 35px;
  font-weight: 500;
}

h3 {
  color:#3f2a56
  font-family: Roboto;
  font-size: 32px;
  font-weight: 400;
}

h4 {
  color: #272727;
  font-family: Roboto;
  font-size: 30px;
  font-weight: 400;
}

h5 {
  color:#503f81;
  font-family: Neue Haas Grotesk Text Pro;
  font-size: 25px;
  font-weight: 400;
}

h6 {
  color: #503f81;
  font-family: Neue Haas Grotesk Text Pro;
  font-size: 20px;
  font-weight: 400;
}

blockquote {
  border-left: 10px solid #503f81;;
}





form,
.submitted-message {
  border-color: rgba(#null, 0.0);
  font-family: Roboto;
}

h3.form-title {
  background-color: rgba(112, 115, 114, 0.0);
  color: rgba(112, 115, 114, 1.0);
}

.hs-button,
.button--primary {
  background-color: rgba(80, 63, 129, 1.0);
  border-color: rgba(112, 115, 114, 0.0);
  border-radius: 5px;
  border-width: 0px;
  color: rgba(255, 255, 255, 1.0);
  padding-left: 53px;
  padding-right: 53px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.hs-button:hover,
.hs-button:focus,
.button--primary:hover,
.button--primary:focus {
  background-color: rgba(163, 163, 163, 1.0);
  border-color: rgba(112, 115, 114, 0.0);
  color: rgba(255, 255, 255, 1.0);
}

.hs-form label {
  color: rgba(112, 115, 114, 1.0);
}

.hs-form legend {
  color: rgba(163, 163, 163, 1.0);
}
input#hs-pwd-widget-password,
.hs-search-field__input,
form input,
form select,
form textarea,
.hs-input:not([type=checkbox]):not([type=radio])  {
  color: rgba(163, 163, 163, 1.0);
  border-color: rgba(240, 240, 240, 0.0);
  background-color: rgba(240, 240, 240, 1.0);
  border-radius: 6px;
}
input#hs-pwd-widget-password:focus,
.hs-search-field__input:focus,
form input:focus,
form select:focus,
form textarea:focus,
.hs-input:not([type=checkbox]):not([type=radio]):focus {
  border-color: rgba(112, 115, 114, 0.0);
}

.fn-date-picker .pika-table thead th {
  color: rgba(255, 255, 255, 0.0);
}
.hs-search-field__input::placeholder,
.hs-search-field__input:-moz-placeholder,
.hs-search-field__input::-webkit-input-placeholder,
.hs-input::placeholder,
.hs-input:-moz-placeholder,
.hs-input::-webkit-input-placeholder,
.hs-field-desc,
.hs-dateinput:before,
.hs-richtext {
  color: rgba(163, 163, 163, 1.0);
}

.hs-richtext {
  font-size: 18;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Roboto;
}

.fn-date-picker td.is-today .pika-button {
  color: #707372;
}

.fn-date-picker td.is-selected .pika-button {
  background: #707372;
}

.fn-date-picker td .pika-button:hover {
  background-color: #503f81 !important;
}






th,
td {
  background-color: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(112, 115, 114, 1.0);
  color: rgba(112, 115, 114, 1.0);
}

thead th,
thead td {
  background-color: rgba(112, 115, 114, 1.0);
  color: rgba(255, 255, 255, 1.0);
}

tfoot td {
  background-color: rgba(255, 255, 255, 1.0);
  color: rgba(112, 115, 114, 1.0);
}

table,
tbody + tbody {
  border-color: rgba(112, 115, 114, 1.0);
}





header.header {
  background-color: rgba(255, 255, 255, 1.0);
  box-shadow: 0 2px 4px 0 rgba(187, 187, 187, 0.5);
}
.header-button a {
  background-color: rgba(80, 63, 129, 1.0);
  border: 1px solid rgba(80, 63, 129, 1.0);
  color: rgba(255, 255, 255, 1.0);
}

.header-button a:hover {
  background: rgba(255, 255, 255, 1.0);
  color: rgba(80, 63, 129, 1.0);
  border-color:rgba(80, 63, 129, 1.0);
}

.header-main-nav .hs-menu-wrapper > ul > li > a {
  color: rgba(61, 57, 53, 1.0);
}

.header-main-nav .hs-menu-wrapper > ul > li > a:hover {
  color: rgba(80, 63, 129, 1.0);
  background-color: rgba(0, 154, 206, 0.0);
}

.header-main-nav .hs-menu-wrapper > ul > li.active > a,
.header-main-nav .hs-menu-wrapper > ul > li.active-branch > a {
  color: rgba(80, 63, 129, 1.0);
  background-color: rgba(0, 154, 206, 0.0);
}

.header-main-nav .hs-menu-wrapper > ul ul.hs-menu-children-wrapper {
  background-color: rgba(255, 255, 255, 1.0);
  box-shadow: 0 2px 18px 0 rgba(207, 207, 207, 0.5);
}
.header-main-nav .hs-menu-wrapper > ul > li > ul:before {
  border-color: transparent transparent rgba(255, 255, 255, 1.0);
}

.header-main-nav .hs-menu-wrapper > ul ul li a {
  color: rgba(112, 115, 114, 1.0);
  border-bottom: 0.5px solid rgba(80, 63, 129, 0.5);
}

.header-main-nav .hs-menu-wrapper > ul ul li a:hover {
  color: rgba(80, 63, 129, 1.0);
  background-color:rgba(0, 154, 206, 0.0);
}

.header-main-nav .hs-menu-wrapper > ul ul li.active > a,
.header-main-nav .hs-menu-wrapper > ul ul li.active-branch > a {
  color: rgba(80, 63, 129, 1.0);
  background-color:rgba(0, 154, 206, 0.0);
}

.header__language-switcher--label-current {
  color:rgba(139, 139, 139, 1.0);
}




footer.footer {
  background-color: rgba(41, 45, 47, 1.0);
}

.footer-middle {
  border-top: 3px solid rgba(235, 235, 235, 1.0);
  border-bottom: 3px solid rgba(190, 147, 60, 1.0);
}

.footer-link .hs-menu-wrapper > ul li a {
  color: rgba(255, 255, 255, 1.0);
}
.footer-link .hs-menu-wrapper > ul li a:hover {
  color: rgba(80, 63, 129, 1.0);
}

ul.social-links li a {
  background-color: rgba(192, 192, 192, 1.0);
  color: rgba(41, 45, 47, 1.0);
}

ul.social-links li a:hover {
  background: rgba(2, 112, 224, 1.0);
  color: rgba(255, 255, 255, 1.0);
}





.content-wrapper {
  max-width: 1200px;
}

.blog-post__date {
  border-color: #000000;
}

.blog-tag-filter__menu-link,
.blog-post__tag-link,
.blog-card__tag-link,
.blog-post__author-name,
.blog-card__title a {
  color: #000000;
}

.blog-card__tag-link:hover,
.blog-card__title a:hover,
.blog-tag-filter__menu-link:hover,
.blog-post__tag-link:hover,
.blog-post__author-name:hover,
.blog-card__tag-link:focus,
.blog-card__title a:focus,
.blog-tag-filter__menu-link:focus,
.blog-post__tag-link:focus,
.blog-post__author-name:focus {
  color: #000000;
}

.blog-card__tag-link:active,
.blog-card__title a:active,
.blog-tag-filter__menu-link:active,
.blog-post__tag-link:active,
.blog-post__author-name:active {
  color: #282828;
}

.blog-tag-filter__menu-link--active-item:after {
  background-color: #707372;
}


.blog-pagination__link--active:after,
.blog-pagination__prev-link:after,
.blog-pagination__next-link:after {
  background-color: #707372;
}

.blog-post__title {
  color: #3f2a56;
  font-family:Roboto;
  font-size: 35px;
  font-weight: ;
}

.blog-post__author {
  background-color: #503f81;
}

#comments-listing .comment-reply-to {
  color: rgba(#null, 0.0);
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  color: rgba(#null, 0.0);
}

#comments-listing .comment-reply-to:active {
  color: rgba(#null, 0.0);
}

/*             Blog Grid Listing and Post styles            */


.hs-blog-listing,
.hs-blog-post {
  background-color: #ffffff;
}


.blog-post__tag-link:hover{
  color: #707372;
}


.blog-sidebar ul {
  box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.blog-sidebar a {
  color: #000000;
}

.blog-sidebar a:hover {
  color: #707372;
}

.blog__subscription-block {
  background-color: rgb(245, 245, 245);
}

.post-featured-image {
  max-height: 600px;
}

.blog-post {
  box-shadow: -5px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.blog-post__meta a {
  color: #000000;
}


.blog-post__meta a:hover {
  color: #707372
}

.blog-post__links {
  border-top:  2px solid rgb(60, 43, 109);
}

.blog-post__back-to-blog {
  color: #000000;
}

.blog-post__back-to-blog:hover {
  color: #707372;
}

.blog-post__back-to-blog svg {
  fill: #000000;
}

a.blog-post__back-to-blog:hover svg {
  fill: #707372;
}

.comment.depth-0,
.blog-comments form {
  border-top: 2px solid rgb(60, 43, 109);
}

.comment.depth-1 {
  border-left: 2px solid rgb(60, 43, 109);
}

.section.post-footer .hs-input {
  border-color: rgb(60, 43, 109);
}

.blog-recent-posts {
  background-color: rgb(245, 245, 245);
}










body .icon svg {
  fill: #707372;
}

body .tns-nav button.tns-nav-active {
  background-color: #707372;
}

body .tns-nav button:hover,
body .tns-nav button:focus {
  background-color: #707372;
}

body .social-links__icon {
  background-color: #707372;
}

body .social-links__icon:hover svg,
body .social-links__icon:focus svg {
  fill: rgba(#null, 0.0);
}

body .social-links__icon:active svg {
  fill: rgba(#null, 0.0);
}

body .team-member__description {
  background-color: #503f81;
}

.page-center {
  max-width: 1200px;
  margin: 0 auto;
}




.body-container__website .dnd-section:nth-child(odd) {
  background-color: {typography=, tables=, buttons=, spacing=, footer=, global_colors=, blog_settings=, header=, forms=}
}
main.body-container-wrapper.pbt-page h3 {
    color: #3D3935;
}
main.body-container-wrapper.pbt-page .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block {  
    height: auto;
    width: 40%;
}
main.body-container-wrapper.pbt-page .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block .cwti-items-content span {
    font-size: 13px;
    line-height: normal;
    text-align: left !important;
    display: block;
    margin-bottom: 10px;
}
main.body-container-wrapper.pbt-page .twci-container-inner.form-image-block .content-container .content-container-inner .actions input.hs-button.primary.large {
    background: #503f81;
}
main.body-container-wrapper.pbt-page .twci-container.im-al-left .twci-container-inner .image-container {
    width: 40%;
}
main.body-container-wrapper.pbt-page .twci-container.im-al-left .twci-container-inner .content-container {
    width: 60%;
}
main.body-container-wrapper.pbt-page .twci-container.im-al-left .twci-container-inner .image-container img {
    width: auto;
}
main.body-container-wrapper.pb-page .bg-pattern.widget_1617542034159 , main.body-container-wrapper.pb-page .bg-pattern.widget_1617542115441 {    
    z-index: -1;
}
main.body-container-wrapper.events {
    background-image: url(https://8833132.fs1.hubspotusercontent-na1.net/hubfs/8833132/Pattern%20Bg.svg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (max-width:1024px){
main.body-container-wrapper.wit-page .content-container {
    padding: 10px;
}
  .cwti-container.brief-area .brief-block{
  margin-bottom: 30px;
  }
  .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block , main.body-container-wrapper.pbt-page .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block{
    width: 45%;
    padding: 20px;
}
  main.body-container-wrapper.pbt-page h3 {   
    font-size: 28px;
    margin-bottom: 10px !important;
}
  main.body-container-wrapper.pbt-page .span8.widget-span.widget-type-cell.cell_16171024552662-padding.cell_16171024552662-vertical-alignment.dnd-column {
    padding-left: 30px !IMPORTANT;
}
  main.body-container-wrapper.pbt-page .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block h2 {
    font-size: 24px;
}
  main.body-container-wrapper.pbt-page .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block p {
   
    line-height: normal;
    margin-bottom: 10px;
}
main.body-container-wrapper.it-page  .align-testimonial-sec-start {    
    height: auto !important;    
}
main.body-container-wrapper.it-page  .who-is-involved-card>div {
    flex: 0 0 45%;
    margin: 15px;
    position: relative;
}
 

}

@media (max-width:767px){
  main.body-container-wrapper.pbt-page .accourdion-item .accourdion-item-content {   
    padding-left: 25px;    
}
main.body-container-wrapper.pbt-page .accourdion-item .accourdion-item-content:before {   
    left: 0px;
}
 .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block, main.body-container-wrapper.pbt-page .cwti-container.brief-area.two-box .cwti-items-col.bg-white.brief-block {
    width: 100%;    
}
  main.body-container-wrapper.pbt-page .twci-container.im-al-left .twci-container-inner .image-container {
    width: 100%;  
}
main.body-container-wrapper.pbt-page .twci-container.im-al-left .twci-container-inner .content-container {
    width: 100%; 
  padding: 20px;
}
 main.body-container-wrapper.it-page .who-is-involved-card>div {
    flex: 0 0 100%;
    margin:0 0 15px;
    position: relative;
}
  .filters-drop {   
    padding-left: 0;   
}
  .filter-group {
    margin-right: 0;
    width: 100%;
    margin-bottom: 15px;
}
  .customdrop {   
    margin-right: 0px;
    width: 100%;
}
   .events .twci-container-inner .image-container , .events .twci-container-inner .content-container {
    flex: 0 0 100%;
    max-width: 100%;
}
  .events fieldset .hs-form-field {
    width: 100% !important;
    float: left;
}
  main.body-container-wrapper.pb-page .brief-block {
    width: 100%;
}
  .bg-text-box {
    background-repeat: no-repeat;
    background-size: cover;
    width: 90%;
    height: 400px;
    display: flex;
    justify-content: center;
    padding: 50px;
    margin: auto;
}
  div#hs_cos_wrapper_widget_1616935424838 section.bg-text-box {
    float: none;    
}
  .twci-container-inner.form-image-block .content-container .content-container-inner h4 {    
    font-size: 24px;   
}
  section.slider-box.testi-slider-box .slick-list .teti-slide.slick-slide{
    width:90% !important;
  }
}