body {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    line-height: 1.3;
    font-size: 18px;
    font-size: 1.125rem;
    color: #334148;
    background: #FFF;
    height: 100%;
    width: 100%;
    position: absolute;
}

a {
    text-decoration: none;
    color: #349BE7;
    font-weight: 300
}

a:hover {
    color: rgb(77, 174, 235);
}

a:active {
    color: rgb(0, 110, 179);
}

a[disabled] {
    pointer-events: none;
    opacity: .5;
}

input[type='text'], button {
    font-family: 'Roboto', sans-serif;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
}

img {
    display: inline-block;
    max-width: 100%;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 667px) {
    .container {
        padding: 0 16px;
    }
}

.heading-primary {
    margin: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300;
    color: #576D77;
    line-height: 32px;
    line-height: 2rem;
    text-align: center
}

@media (max-width: 667px) {
    .school-description .heading-primary {
        font-weight: 600 !important;
    }

    .school-description .text {
        font-weight: 600 !important;
    }
}

@media (min-width: 667px) {

    .heading-primary {
        color: #334148;
        font-size: 2.125rem;
        /* max-width: 31.375rem; */
        letter-spacing: 1px;
        line-height: 2.5rem;
    }
    }

@media (min-width: 1024px) {

    .heading-primary {
        font-size: 2.125rem;
    }
    }

.heading-secondary {
    margin: 0 0 24px;
    margin: 0 0 1.5rem;
    font-weight: 400;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 32px;
    line-height: 2rem;
    color: #576D77;
    text-align: center
}

@media (min-width: 667px) {

    .heading-secondary {
        text-align: left;
        font-size: 2.125rem;
        line-height: 2.5rem;
    }
    }


@media (max-width: 667px) {
    .text-lines-sparse {
        line-height: 28px !important;
    }

    .text-lines-medium {
        line-height: 24px !important;
    }
}

.text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 28px;
    line-height: 1.75rem;
    color: #576D77;
    font-weight: 300;
}

@media (min-width: 667px) {

    .text {
        font-size: 1.125rem;
    }
    }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  20%, 60% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-3px, 0, 0);
  }

  40%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(3px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  20%, 60% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-3px, 0, 0);
  }

  40%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(3px, 0, 0);
  }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.spinner {
  display: none;
  position: absolute;
  top: 50%;
  right: 100%;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  margin-top: -12px;
  margin-top: -0.75rem;
  margin-right: 2px;
  margin-right: 0.125rem;

  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}

.loading .spinner {
  display: block;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}

@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}

html {
    /* @media (--mobile) {font-size: .6em;} */
}

.header {
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

@media (min-width: 667px) {
    .header {
        height: 80px;
        border: none;
    }
}

.header-container {
    position: relative;
    width: 100%;
    max-width: 1024px;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 24px;
    padding: 0 0 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-end;
        -ms-flex-align: flex-end;
            align-items: flex-end;

    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media (min-width: 667px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

.header-right, .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


@media (min-width: 668px) {
    .header-nav {
        margin-left: 10px;
    }
}

@media (max-width: 667px) {
    .header-right {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding-top: 56px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
        background: #FFF;
        box-shadow: 0 10px 24px 0 rgba(96,125,139,0.1);
        z-index: 2;
    }

    .header-nav:hover {
        display: block;
    }

    .nav-toggle-label {
        padding-right: 16px;
    }
}

.header-nav .nav-link {
    position: relative;
    padding: 4px 8px;
    color: #607D8B;
    text-transform: uppercase;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    z-index: 3;
}

@media (max-width: 667px) {
    .header-nav .nav-link {
        padding-left: 16px;
        color: #334148;
        font-weight: 400;
    }
}

.header-premium-link {
    display: inline-block;
    color: #FFA000;
    font-size: 14px;
}


.header-premium-link:hover,
.header-premium-link:focus {
    color: #FFA000;
    opacity: 0.8;
}

@media (min-width: 667px) {
    .header-premium-link {
        padding-right: 24px;
    }
}

.header-container .logo {
    margin-bottom: 2px;
    /* height: 28px; */
}

@media (min-width: 667px) {
    .header-container .logo {
        height: 24px;
    }
}

.header-container .login-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (max-width: 667px) {
    .header-container .login-links {
        display: none;
        position: absolute;
        top: 48px;
        width: 100%;
        padding: 0 0 0 16px;
        z-index: 2;
    }
}

.clever-link {
    padding-left: 8px;
    margin-left: 8px;
    border-left: 2px solid #607D8B;
    color: #607D8B !important;
}

.header-container .header-link {
    /* display: none; */
    font-size: 16px;
    letter-spacing: 0.6px;
    font-weight: 400;
    color: #349BE7;
}

@media (max-width: 667px) and (orientation: landscape) {

    .header-container .header-link {
        display: block;
    }
}

@media (min-width: 667px) {

    .header-container .header-link {
        display: block;
    }
}

.main-content {
    padding-bottom: 24px;
    overflow: hidden;
}

.section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 88px;
    margin-top: 5.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse
}

@media (min-width: 667px) {

    .section {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    }

.section .section-image {
    margin-top: 16px;
    margin-top: 1rem;
}

.section .section-image img {
    max-width: 80%;
    float: left;
    margin-top: 24px;
}

.section .section-image video {
    max-width: 100%;
    box-shadow: 0 2px 8px 0 rgba(52,124,255,0.1), 0 7px 6px 0 rgba(96,125,139,0.04), 0 7px 24px 0 rgba(96,125,139,0.1);
}

@media (min-width: 667px) {
    .section .section-image {
        width: 50%;
        text-align: right;
    }

    .section .section-image img {
        display: block;
        margin: auto;
    }
}

.section .section-content {
    margin-top: 32px;
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 667px) {

    .section .section-content {
        width: 50%;
        padding-left: 2rem;
    }
}

.section .heading-secondary {
}

@media (min-width: 667px) {

    .section .heading-secondary {
        letter-spacing: 1px;
    }
}

.section.section-reverse {
}

@media (min-width: 667px) {

    .section.section-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }
}

.section.section-reverse .section-content {
}

@media (min-width: 667px) {

    .section.section-reverse .section-content {
        padding-left: 0;
        padding-right: 2rem;
    }
}

.section.section-reverse .heading-secondary,
        .section.section-reverse .text {
}

/*
@media (min-width: 667px) {
    .section.section-reverse .heading-secondary {
        max-width: 384px;
        margin-left: auto;
    }
}
 */

.section.section-reverse .section-image {
}

@media (min-width: 667px) {

    .section.section-reverse .section-image {
        text-align: left;
    }
}

.section .text {
    max-width: 384px;
    max-width: 24rem;
}

@media (min-width: 667px) {

    .section .text {
        text-align: left;
    }
}

.section .text-secondary {
    max-width: 437px;
    max-width: 27.3125rem;
    margin-top: 54px;
    margin-top: 3.375rem;
    color: #455A64;
    line-height: 26px;
    line-height: 1.625rem;
    font-weight: 300;
}

.text-secondary {
    margin-top: 48px;
    margin-top: 3rem;
    color: #455A64;
    line-height: 26px;
    line-height: 1.625rem;
    font-weight: 300;
}

.main-wrapper {
    background: #FAFCFD;
    overflow: hidden;
}

.main {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    display: block;
    padding-top: 18px;
    text-align: center;
}

@media (min-width: 667px) {
    .main {
        padding-top: 48px;
    }
}

.main .heading-primary {
    position: relative;
    font-weight: 300;
    z-index: 1;
    color: #334148;
    font-size: 28px;
    line-height: 38px;
    font-family: "Open Sans";
}

@media (min-width: 667px) {
    .main .heading-primary {
        text-align: left;
        min-width: 50%;
        max-width: 520px;
        font-size: 48px;
        line-height: 58px;
        font-weight: 300;
    }

    .main .heading-primary > span {
        display: inline-block;
    }
}

.main .section-image {
    margin: 0 -16px;
}

.main .section-image img {
    max-height: 100%;
}

.section-image.section-image-mobile {
    display: none;
}

@media (max-width: 667px) {
    .main .section-image {
        display: none;
    }

    .main .section-image.section-image-mobile {
        display: block;
        text-align: center;
        margin-top: 24px;
    }
}

@media (min-width: 667px) {

    .main .section-image {
        position: absolute;
        top: 80px;
        left: 380px;
        bottom: 0;
        margin: 0;
        max-width: 100%;
    }

    .main .section-image img {
        max-width: initial;
    }
}

.main .section-content {
    position: relative;
    z-index: 1;
}

@media (min-width: 667px) {

    .main .section-content {
        text-align: left;
        text-align: left;
    }
}

.main .action-button {
    width: 100%;
}

.main .action-input {
}

@media (min-width: 667px) {

    .main .action-input {
        width: 205px;
    }
}

.main .text-secondary {
    margin-top: 18px;
    color: #607D8B;
    font-size: 16px;
    line-height: 24px;
    font-family: "Open Sans";
}

@media (min-width: 667px) {

    .main .text-secondary {
        max-width: 440px;
        margin-right: auto;
        text-align: left;
        font-size: 20px;
        line-height: 30px;
    }
}

.student-portal-message {
    margin-top: 8px;
    font-weight: 300;
}

.student-portal-link {
    color: #0091EA;
    font-weight: 400;
}

.action-items-wrapper {
    margin-top: 28px;
    display: table;
    width: 100%;
    margin-right: auto
}

@media (min-width: 667px) {
    .action-items-wrapper {
        width: 355px;
    }
}

@media (min-width: 667px) {

    .action-items {
        margin-top: 24px;
        margin-right: auto;
        display: inline-block;
    }
    }

.action-item {
    display: block;
}

@media (min-width: 667px) {

    .action-item {
        display: inline-block;
        width: 100%;
    }

    .action-item:first-child {
        margin-bottom: 40px;
    }
}

.action-item .action-label {
    margin-left: 16px;
    padding-bottom: 8px;
    font-size: 16px;
    color: #576D77;
    font-weight: 300;
    letter-spacing: 0.6px;
    line-height: 19px;
}

.action-item .action-input {
    display: inline-block;
    height: 46px;
    height: 2.875rem;
    margin: 0;
    padding: 0;
    padding-left: 16px;
    padding-left: 1rem;
    background: #fafcfd;
    border: 1px solid #becacf;
    border-radius: 0.25rem;
    outline: none;
    box-shadow: none;
    box-sizing: content-box;
    text-transform: uppercase;
}

.action-item .action-input::-webkit-input-placeholder { /* WebKit browsers */
    text-transform: none;
}
.action-item .action-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    text-transform: none;
}
.action-item .action-input::-moz-placeholder { /* Mozilla Firefox 19+ */
    text-transform: none;
}
.action-item .action-input:-ms-input-placeholder { /* Internet Explorer 10+ */
    text-transform: none;
}
.action-item .action-input::placeholder { /* Recent browsers */
    text-transform: none;
}

@media (min-width: 667px) {

    .action-item .action-input {
        height: 3.875rem;
    }
}

.action-item .action-error {
    display: none;
    margin-top: 8px;
    margin-top: .5rem;
    color: #FF1744;
    font-weight: 300;
}

.action-item .input-group {
    display: table;
    width: 100%;
    font-size: 0;
}

.action-item .input-group .action-input {
    display: table-cell;
    width: 100%;
    border-radius: 0.25rem 0 0 0.25rem;
    border: 1px solid #becacf;
    border-right: none;
    font-size: 18px;
    font-size: 1.125rem;
    -webkit-transition: all .2s;
    transition: all .2s;
    font-size: 18px;
    font-size: 1.125rem;
    vertical-align: top;
}

.action-item .input-group .input-group-addon {
    position: relative;
    display: table-cell;
    width: 1%;
    vertical-align: top;
}

.action-item .input-group .action-button {
    /* width: 80px !important; */
    /* width: 5rem !important; */
    background: #607d8b;
    border-radius: 0 0.25rem 0.25rem 0;
    font-size: 18px;
    font-size: 1.125rem;
}

.action-item .input-group .action-button:hover {
    background: rgb(77, 119, 140);
}

.action-item .input-group .action-button:active {
    background: rgb(97, 151, 179);
}

.action-item .input-group .action-button[disabled], .action-item .input-group .action-button[disabled]:hover {
    background-color: #FAFCFD;
    box-shadow: inset 0 0 0 1px #becacf;
    color: #becacf;
    cursor: not-allowed;
}

.action-item .input-group.has-error {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.action-item .input-group.has-error + .action-error {
    display: block;
}

.action-item .input-group.has-error .action-input {
    border-color: #FF1744;
}

.action-item .input-group.has-error .action-button {
    background: #FF1744;
}

.action-item .input-group.has-error .action-button:hover {
    background: rgb(255, 77, 112);
}

.action-item .input-group.has-error .action-button:active {
    background: rgb(179, 23, 54);
}

.action-item.action-primary {
    margin-top: 32px;
}

.action-item.action-primary .action-button {
    background: #6DDC72;
    color: #FFF;
}

.action-item.action-primary .action-button:hover {
    background: #8AE48D;
}

.action-button {
    display: inline-block;
    background: #0091EA;
    border-radius: 0.25rem;
    line-height: 48px;
    line-height: 3rem;
    color: #fff;
    padding: 0 16px;
    padding: 0 1rem;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    cursor: pointer;
    outline: none;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: background 0.1s;
    transition: background 0.1s
}

@media (min-width: 667px) {

    .action-button {
        line-height: 4rem;
    }
    }

.action-button:hover {
    background: rgb(77, 176, 242);
    color: #fff;
}

.action-button:active {
    background: rgb(56, 130, 179);
    color: #fff;
}

.security-banner {
    background: rgba(255,160,0,0.04);
    margin-bottom: 19px;
}

.security-banner-content {
    max-width: 1024px;
    padding: 20px 24px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.security-banner-icon {
    height: 80px;
    min-width: 80px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-banner-heading {
    margin: 0;
    font-size: 20px;
    color: #334148;
    font-weight: 400;
}

.data-security {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.data-security-image {
    flex: 1;
    min-width: 250px;
    max-height: 440px;
    object-fit: contain;
}

.data-security-pros {
    margin-left: 66px;
    min-width: 320px;
}

.data-security-heading {
    font-size: 34px;
    line-height: 50px;
    font-weight: 400;
    margin: 0;
    margin-bottom: 16px;
}

.data-security-pros-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.data-security-pros-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.data-security-pros-item:before {
    content: "";
    display: block;
    height: 8px;
    min-width: 8px;
    background: #334148;
    border-radius: 4px;
    margin-left: 6px;
    margin-right: 18px;
}

@media (max-width: 668px) {
    .data-security {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .data-security-pros {
        margin-left: 0;
        margin-top: 20px;
    }
}
.landing-page-video-thumbnail-container {
    position:relative;
    width: auto;
    height: auto;
    margin-top: 40px;
    overflow: hidden;
}

.landing-page-video-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.landing-page-video-thumbnail img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: auto;
    max-width: 976px;
    width: auto;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
            transition: all .2s ease-in-out;
}

.landing-page-video-overlay {
    position: relative;
    float: left;
    padding-top: 55px;
    border: 0;
    width: 100%;
    height: 100%;
    text-align:center;
    margin-top: 0px;
}

@media (min-width: 668px) {
    .landing-page-video-thumbnail-container:hover > div:first-child > img {
        -webkit-transform: translate(-50%,-50%) scale(1.07,1.07);
            -ms-transform: translate(-50%,-50%) scale(1.07,1.07);
                transform: translate(-50%,-50%) scale(1.07,1.07);
    }
}

@media (max-width: 667px) {
    .landing-page-video-thumbnail img {
        height: 100%;
    }
}

.landing-page-video-overlay-text1 {
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 34px;
    margin-bottom: 0px;
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.landing-page-video-overlay-text2 {
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-left: 16px;
    margin-right: 16px;
    text-align: center;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.landing-page-video-overlay-text3 {
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

@media (max-width: 667px) {
    .landing-page-video-overlay-text3 {
        opacity: 0;
    }
}

.landing-page-video-overlay img:hover {
    transform: scale(1.04);
    transition: transform .2s;
}

.secondary {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column
}

.secondary-gray-space {
    height: 105px;
    width: 100%;
    background: #FAFCFD;
    box-shadow: 24px 0 0 #FAFCFD, -24px 0 0 #FAFCFD;
}

@media (max-width: 667px) {
    .start-video-text1 {
        color: #ff7845;
        font-family: "Open Sans";
        font-size: 34px;
        text-align: center;
        margin-bottom: -200px;
      }
}

.secondary .section-image {
    width: 100%;
    text-align: center;
}

.secondary .section-image img {
    display: inline-block;
    max-width: 100%;
}

.secondary .section-content {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.secondary .heading-primary {
    max-width: 668px;
    margin: 40px auto 0;
    font-size: 34px;
    line-height: 48px;
    color: #334148;
    font-family: "Open Sans";
}

@media (max-width: 667px) {
    .secondary .heading-primary {
        font-size: 24px;
        line-height: 32px;
    }
}

.summary {
    position: relative;
    display: block;
    margin: 8px auto 0;
    padding: 28px 0;
    text-align: center;
    font-family: "Open Sans";
}

.summary-main {
    background: #FAFCFD;
    padding-bottom: 8px;
}

@media (max-width: 667px) {
    .summary {
        margin-top: 148px;
    }

    .summary .heading-primary {
        padding: 0 16px;
        color: #334148;
    }
}

.summary .action-button {
    position: relative;
    min-width: 300px;
    width: auto;
    padding: 0 48px;
    z-index: 1;
}

@media (max-width: 667px) {
    .summary .action-button {
        padding: 0 32px;
        min-width: 194px;
        max-width: 100%;
        background: #2196F3;
        border-radius: 2px;
    }
}

.summary .heading-secondary {
    text-align: center;
}

.summary .text {
    position: relative;
    max-width: 667px;
    line-height: 26px;
    margin: 32px auto;
    margin: 2rem auto;
    z-index: 1;
}

@media (max-width: 667px) {
    .summary .text {
        margin-top: 16px;
        font-family: "Open Sans";
        font-size: 16px;
        line-height: 24px;
        color: #576D77;
    }
}

.footer {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #607D8B;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 300;
}

@media (max-width: 667px) {
    .footer {
        padding: 0 16px 24px;
        display: block;
    }
}

.footer-section {
    flex: 2;
    padding: 0 4px;
}

@media (max-width: 667px) {
    .footer-section {
        display: inline-block;
        width: 48%;
        vertical-align: top;
    }

    .footer-section:nth-child(even) {
        margin-right: 2%;
    }
}

.footer-section.blog-section {
    flex: 3;
}

.footer-section.logo-section {
    display: block;
    max-width: 80px;
    width: 80px;
}

@media (max-width: 667px) {
    .footer-section.logo-section {
        display: none;
    }
}

.footer-title {
    margin-bottom: 12px;
    text-transform: uppercase;
}

@media (max-width: 667px) {
    .footer-title {
        margin: 12px 0;
        font-weight: 400;
    }
}

.footer .footer-logo {
    height: 40px;
}

.footer .footer-link {
    display: block;
    padding: 4px 0;
    color: #607D8B;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
}

.footer .footer-link:hover {
    opacity: 0.7;
}

.footer .blog-section .footer-link {
    padding: 4px 0 12px;
}

@media (max-width: 667px) {
    .footer .blog-section .footer-link {
        padding: 4px 0;
    }
}

.footer .read-more-link {
    color: #0091EA;
}

.footer .social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer .social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 24px;
    width: 1.5rem;
    height: 24px;
    height: 1.5rem;
    padding: 12px;
    padding: 0.75rem;
    box-sizing: content-box;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
}

.footer .social-link:hover {
    opacity: 0.8;
}

.footer .social-link img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: auto;
    padding: 16px;
    padding: 1rem;
    z-index: 3;
    -webkit-animation: fadein 0.5s;
            animation: fadein 0.5s
}

.modal .modal-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 800px;
    max-width: 50rem;
    padding: 16px;
    padding: 1rem;
    background: #fff;
}

.modal .modal-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    background: rgba(51, 56, 72, .8);
}

.modal .close {
    position: absolute;
    top: 16px;
    top: 1rem;
    right: 16px;
    right: 1rem;
    width: 32px;
    width: 2rem;
    height: 32px;
    height: 2rem;
    padding: 8px;
    padding: 0.5rem;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    line-height: 16px;
    line-height: 1rem;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAowAAAKMB8MeazgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAB5SURBVDiNrZPRCcAwCEQfnUiySAZuF8kSWeH6Yz8KrQZMQAicJ+epAB0YwAmYJKIADLic0/GPPCbQAnLznCd/4NWUFfkgy1VjH8CryA95ApYltAiTRCZxpuoW+gz9WXE6NPeg+ra1UDIxGlWEObe4SGxY5fIxlc75Bkt9V4JS7KWJAAAAAElFTkSuQmCC59ef34356faa7edebc7ed5432ddb673d');
    cursor: pointer;
}

.modal-show {
    display: block;
}

.privacy {
}

.privacy .privacy-list {
    padding: 0 24px 48px 48px;
}

.privacy .privacy-header {
    margin-top: 40px;
    font-size: 48px;
    font-size: 3rem;
    text-align: center;
    font-weight: normal;
}

.privacy .privacy-subheader {
    margin-top: 24px;
}

.privacy .privacy-updated {
    margin-top: 16px;
    margin-top: 1rem;
    margin-left: 16px;
    margin-left: 1rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
    font-size: 16px;
    font-size: 1rem;
    opacity: 0.8;
}

.privacy .privacy-item {
    font-size: 28px;
    font-size: 1.75rem;
}

.privacy .privacy-item-title {
    margin-top: 16px;
    margin-top: 1rem;
    font-size: 28px;
    font-size: 1.75rem;
}

.privacy .privacy-text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 16px;
    margin-top: 1rem;
}

.privacy .list-alpha {
    list-style-type: lower-alpha;
    padding-left: 16px;
    padding-left: 1rem;
}

.privacy .list-alpha> li {
    margin-top: 16px;
    margin-top: 1rem;
}

.privacy .list-roman {
    list-style-type: upper-roman;
    padding-left: 16px;
    padding-left: 1rem;
}

.privacy .list-roman> li {
    margin-top: 16px;
    margin-top: 1rem;
}


/*# sourceMappingURL=app.css.map*/

.language-buttons {
    display: block;
    color: #607D8B;
    font-weight: 300;
    font-size: 14px;
    cursor: pointer;
}

@media (min-width: 667px) {
    .language-buttons {
        position: relative;
        margin-right: 24px;
    }
}

.language-current {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    /* height: 40px; */
    text-transform: capitalize;
    z-index: 3;
}

.language-name {
    display: none;
}

@media (min-width: 667px) {
    .language-name {
        display: block;
    }

    .language-code {
        display: none;
    }
}

.language-current svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: #8BA1AB;
}

@media (max-width: 667px) {
    .language-current {
        font-size: 16px;
    }

    .language-current svg {
        width: 24px;
        height: 24px;
    }
}

.language-buttons:hover .language-caret {
    opacity: 1;
}

.language-caret {
    display: none;
    align-items: center;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    font-size: 10px;
    opacity: 0.7;
    transform: scaleY(0.6);
}

@media (min-width: 667px) {
    .language-caret {
        display: block;
    }
}

.language-dropdown-toggle {
    visibility: hidden;
    display: none;
}

.language-dropdown {
    display: none;
    position: absolute;
    right: 0;
    margin-top: -1px;
    background: #FFF;
    box-shadow: 0 7px 6px 0 rgba(96,125,139,0.04), 0 10px 24px 0 rgba(96,125,139,0.1);
    z-index: 2;
}

@media (min-width: 667px) {
    .language-dropdown {
        top: 0;
        left: 0;
        right: auto;
        padding-top: 40px;
    }
}

.language-dropdown-toggle:checked ~ .language-current {
    color: #0091EA;
}

.language-dropdown-toggle:checked ~ .language-current svg {
    fill: #0091EA;
}

@media (min-width: 667px) {
    .language-dropdown-toggle:checked ~ .language-current {
        color: inherit;
    }

    .language-dropdown-toggle:checked ~ .language-current svg {
        fill: #8BA1AB;
    }
}

.language-dropdown-toggle:checked ~ .language-current .language-caret {
    transform: rotate(180deg) scaleY(0.6);
}

.language-dropdown-toggle:checked ~ .language-dropdown {
    display: block;
}

.language-form {
    display: block;
    width: 100%;
    cursor: pointer;
}

.language-form input {
    display: inline-block;
    padding: 12px 16px 12px 44px;
    width: 100%;
    cursor: pointer;
    text-align: left;
    text-transform: capitalize;
    outline: none;
    font-size: 16px;
    color: #455A64;
    font-weight: 300;
}

@media (min-width: 667px) {
    .language-form input {
        font-size: 14px;
    }
}

.language-form:hover {
    background: #E7F7FE;
}

.features-groups {
    display: flex;
    margin-top: 40px;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 667px) {
    .features-groups {
        flex-direction: column;
    }
}

.feature-group {
    flex: 1;
    padding: 24px 16px 40px;
    margin-right: 24px;
    overflow: hidden;
    border: 1px solid #F0F2F4;
    border-radius: 8px;
    box-shadow: 0 4px 0 0 #F0F2F4;
    color: inherit;
    cursor: pointer;
    -webkit-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
}

.feature-group:last-child {
    margin-right: 0;
}

.feature-group:hover {
    box-shadow: 0 7px 6px 0 rgba(96,125,139,0.04),
        0 7px 24px 0 rgba(96,125,139,0.2);
    color: inherit;
}

.feature-group:hover .feature-group-arrow {
    transform: translateX(4px);
}

.feature-group-label {
    position: relative;
    display: inline-block;
    margin-left: -24px;
    padding: 4px 16px 6px 24px;
    background: #E7F7FE;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    font-style: italic;
    transform: skew(-10deg);
}

.feature-group-label > div {
    transform: skew(10deg);
}

.feature-group-title {
    margin-top: 12px;
    font-size: 20px;
    color: #334148;
    font-weight: 400;
}

.feature-group-description {
    min-height: 120px;
    max-width: 280px;
    margin-top: 16px;
    color: #607D8B;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

.feature-group-categories {
    max-width: 280px;
    margin-top: 16px;
    color: #607D8B;
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
}

.feature-group-arrow {
    transition: transform 0.2s;
}

@media (max-width: 667px) {
    .feature-group {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .feature-group-description,
    .feature-group-categories {
        min-height: 0;
        max-width: 100%;
    }
}

.feature-group-link {
    display: flex;
    padding-top: 16px;
    font-style: italic;
    color: #0091EA;
}

.feature-group-link img {
    margin-left: 12px;
}

.feature-group-link:hover {
    opacity: 0.8;
}

@media (max-width: 667px) {
    .feature-group-link {
        margin-bottom: 56px;
        padding-top: 8px;
        font-size: 16px;
    }
}

.classtime-proud-intro {
    width: 65%;
    margin: 40px auto;
    font-weight: normal;
    font-family: "Open Sans";
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

.classtime-proud-gallery {
    width: 100%;
    max-width: 864px;
    position: relative;
    margin: 0 auto 60px;
}

.js_frame {
    width: 670px;
    margin: 0 auto;
    position: relative;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    white-space: nowrap;
}

.js_slides {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.js_slides li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    font-family: "Open Sans";
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    width: 670px;
    white-space: normal;
    padding: 0 35px;
}

.js_slides .skewed-paragraph {
    background: #E1F5FE;
    padding: 16px 50px 24px;
    transform: skew(-9deg);
    margin: 0 35px;
    position: relative;
}

.js_slides .quote-paragraph {
    transform: skew(9deg);
    margin: 0;
    font-weight: 200;
}

.js_slides .quote-paragraph span{
    display: block;
    margin-top: 30px;
}

.js_slides li .quote-logo {
    margin: 24px 0 20px 85px;
    height: 40px;
    filter: grayscale(1);
}

#technology_in_learning{
    display: flex;
    align-items: center;
}

#technology_in_learning span{
    margin-left: 15px;
    font-size: 24px;
}

#wohlen{
    height: 24px;
}

#careum{
    height: 56px;
}

.js_slides .quote-icon {
    position: absolute;
    bottom: -35px;
    left: -35px;
    height: 77px;
}

.js_prev, .js_next {
    position: absolute;
    top: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 64px;
    width: 64px;
    background: #FFFFFF;
    box-shadow: 0 7px 6px 0 rgba(96,125,139,0.04), 0 7px 24px 0 rgba(96,125,139,0.1);
    border-radius: 50%;
}

.js_next {
    right: 0;
}

.js_prev {
    left: 0;
}

.js_prev i, .js_next i{
    border: solid #334148;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
}

.js_next i{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-right: 5px;
}

.js_prev i{
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-left: 5px;
}

.js_dots {
    padding: 0;
    text-align: center;
    margin: 0 auto 32px;
}

.js_dots li {
    cursor: pointer;
    display: inline-block;
    height: 8px;
    width: 8px;
    margin: 8px;
    background: #B0BEC5;
    border-radius: 50%;
}

.js_dots .active {
    background: #0091EA;
    -webkit-box-shadow: 0 0 0 8px rgba(225,245,254,1);
    -moz-box-shadow: 0 0 0 8px rgba(225,245,254,1);
    box-shadow: 0 0 0 8px rgba(225,245,254,1);
}

@media (max-width: 720px) {
    .js_frame {
        width: 400px;
    }

    .js_slides li {
        width: 400px;
        padding: 0 10px;
    }

    .js_slides .skewed-paragraph {
        padding: 16px 13px 24px;
        transform: skew(-5deg);
        margin: 0 10px;
    }

    .js_slides .quote-paragraph {
        transform: skew(5deg);
    }

    .js_slides li .quote-logo {
        margin: 24px 0 20px 25px;
    }

    .js_slides li img {
        margin: 24px 0 20px 25px;
    }

    .js_slides .quote-icon {
        left: -10px;
        height: 56px;
    }

    .js_next {
        right: -37px;
    }

    .js_prev {
        left: -37px;
    }
}

@media (max-width: 460px) {
    .js_frame {
        width: 270px;
    }

    .js_slides li {
        font-size: 16px;
        line-height: 26px;
        width: 270px;
    }

    .js_slides .skewed-paragraph {
        transform: skew(-2deg);
    }

    .js_slides .quote-paragraph {
        transform: skew(2deg);
    }

    .js_next i{
        margin-right: 27px;
    }

    .js_prev i{
        margin-left: 27px;
    }
}

.schools-info {
    display: none !important; /* temporarily hidden within this dev branch */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 50px;
}
@media (max-width: 667px) {
    .schools-info {
        display: block;
        margin-top: 40px;
        margin-bottom: 90px;
    }
}

.schools-info p {
    color: #607D8B;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 24px;
}

.schools-info-col1 {
    width: 35%;
    margin-right: 20px; /* even when col1 and col2 together are 100% width, the margin between them can be placed. It will eat space from col1 */
}
@media (max-width: 667px) {
    .schools-info-col1 {
        width: 100%;
        margin-left: 20px;
    }
}

.schools-info-col1 div {
    min-height: 50px; /* using this when evenly placing divs vertically */
}

.schools-info-col2 {
    width: 65%;
}
@media (max-width: 667px) {
    .schools-info-col2 {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.column2-blue-quote {
    padding: 30px;
    margin-left: 20px;
    margin-right: 20px;
    transform: skew(-10deg);
    background-color: #E1F5FE !important;
    font-family: "Open Sans";
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    position: relative;
}

.column2-client-logo {
    top: 30px;
    position: relative;
    width: 157px;
    margin: 0 auto;
}
@media (max-width: 667px) {
    .column2-client-logo {
        width: 60%;
    }
}

.column2-quote-image {
    height: 77px;
    width: 73px;
    position: relative;
    z-index: 9;
    top: -38px;
    float: right;
}


.benefits-of-school {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
}
@media (max-width: 667px) {
    .benefits-of-school {
        display: block;
    }
}

.benefits-of-school h1 {
    color: #334148;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.benefits-of-school p {
    color: #334148;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
}

.benefits-col1 {
    padding-top: 10px;
    padding-right: 15px;
    width: 60%;
}
@media (max-width: 950px) {
    /* for fitting 4 lines of text in School licence section */
    .benefits-col1 {
        width: 45%;
        padding-right: 10px;
    }
}
@media (max-width: 667px) {
    .benefits-col1 {
        margin-top: -30px;
        width: 100%;
        height: 470px;
    }
}

.benefits-image {
    margin-top: 25px;
    min-width: 460px !important; /* min image width - even if doesn't fit the column width */
    float: right; /* if not enough width, image sticks to the right side and is cut off on the left */
}
@media (max-width: 667px) {
    .benefits-image {
        display: none;
    }
}

.benefits-image-simple {
    min-width: 430px !important; /* min image width - even if doesn't fit the column width */
    display: none;
}
@media (max-width: 667px) {
    .benefits-image-simple {
        display: block;
        height: auto;
        float: right;
        position: relative;
        margin-right: 60px;
        margin-top: 10px;
    }
}

.benefits-col2 {
    width: 44%;
    justify-items: end;
}
@media (max-width: 950px) {
    /* for fitting 4 lines of text in School licence section */
    .benefits-col2 {
        min-width: 380px;
    }
}
@media (max-width: 667px) {
    .benefits-col2 {
        width: 100%;
    }
}

.benefits-col2 div {
    height: 155px;
}
@media (max-width: 667px) {
    .benefits-col2 div {
        padding-top: 8px;
        height: auto;
    }
    .benefits-col2 div h1 {
        margin-top: -30px;
        padding-left: 60px;
    }
    .benefits-col2 div p {
        padding-left: 60px;
    }
}

.benefits-icon {
    display: none;
}
@media (max-width: 667px) {
    .benefits-icon {
        display: block;
        width: 40px;
    }
}


.description-padded-horizontally {
    padding-top: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 667px) {
    .description-padded-horizontally {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.header-text-demo {
    color: #334148;
    font-family: "Open Sans";
    font-size: 34px;
    line-height: 50px;
}

.description-text-demo {
    color: #334148;
    font-family: "Open Sans";
    font-size: 18px;
    line-height: 26px;
}

.sub-header-text-demo {
    color: #334148;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.sub-description-text-demo {
    color: #607D8B;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 22px;
}

.sub-text-shifted {
    margin-left: 80px;
}
@media (max-width: 667px) {
    .sub-text-shifted {
        margin-left: 85px;
    }
}

.green-icon {
    height: 70px;
}
@media (max-width: 667px) {
    .green-icon {
        height: 64px;
        margin-bottom: -20px;
    }
}

/* temporary within this dev branch */
.school-offering .heading-primary {
    padding-top: 24px;
}


@media (max-width: 667px) {
    .school-offering .heading-primary {
        color: #334148;
        font-family: "Open Sans";
        font-size: 30px;
        line-height: 40px;
        font-weight: 500;
        padding-left: 30px;
        padding-right: 30px;
    }
    .header-text-demo {
        color: #334148;
        font-family: "Open Sans";
        font-size: 30px;
        line-height: 40px;
        font-weight: 500;
        padding-left: 30px;
        padding-right: 30px;
    }
}


.analytics-demo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 667px) {
    .analytics-demo {
        display: none;
    }
}

.analytics-demo div {
    margin: 8px; /* spacing between divs inside the flex will be 16px, and 8px outside */
}

.analytics-demo div img {
    max-height: 240px; /* images will fit screen by width, until enough width to allow max 240px hight */
}



.analytics-demo-carousel {
    display: none; /* for mobile verion */
}
@media (max-width: 667px) {
    .analytics-demo-carousel {
        display: block;
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

[type=radio] {
    display: none;
}

#carousel-slider {
    height: 63vw;
    position: relative;
    perspective: 1500px;
    transform-style: preserve-3d;
}

#carousel-slider label {
    margin: auto;
    width: 63%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    cursor: pointer;
    transition: transform 0.4s ease;
    background: #FFFFFF;
}

#carousel-slider label img {
    height: 100%;
    width: 100%;
}

#carousel-slider label {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

#carousel-s2:checked ~ #carousel-slide1,
#carousel-s3:checked ~ #carousel-slide2,
#carousel-s1:checked ~ #carousel-slide3 {
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.37);
    transform: translate3d(-40%,0,-200px);
}

#carousel-s1:checked ~ #carousel-slide1,
#carousel-s2:checked ~ #carousel-slide2,
#carousel-s3:checked ~ #carousel-slide3 {
    box-shadow: 0 13px 25px 0 rgba(0,0,0,.3), 0 11px 7px 0 rgba(0,0,0,.19);
    transform: translate3d(0,0,0);
}

#carousel-s1:checked ~ #carousel-slide2,
#carousel-s2:checked ~ #carousel-slide3,
#carousel-s3:checked ~ #carousel-slide1 {
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.37);
    transform: translate3d(40%,0,-200px);
}

#carousel-slide1 {
    background-image: url("https://static.classtime.com/www/images/school-licenses/analytics-demo-1.fcb60d7aa599.png?03e78ceacf4f")
}
#carousel-slide2 {
    background-image: url("https://static.classtime.com/www/images/school-licenses/analytics-demo-2.8e26853423c2.png?03e78ceacf4f")
}
#carousel-slide3 {
    background-image: url("https://static.classtime.com/www/images/school-licenses/analytics-demo-3.bba4b9b4114d.png?03e78ceacf4f")
}

.conversion-row1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* divs inside are vertically aligned to top */
    justify-content: center;
    flex-wrap: nowrap;
}
@media (max-width: 667px) {
    .conversion-row1 {
        display: block;
    }
}

.conversion-row1-col1 {
    width: 45%;
}
@media (max-width: 667px) {
    .conversion-row1-col1 {
        width: 100%;
    }

    .conversion-row1-col1 .header-text-demo {
        text-align: center;
        float: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .conversion-row1-col1 .description-text-demo {
        text-align: center;
        float: center;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.conversion-image-inline {
    display: none; /* the image is in the second column in desktop version */
}
@media (max-width: 667px) {
    .conversion-image-inline {
        width: 100%;
        max-width: 500px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        margin: auto;
        display: block;
    }
}

.conversion-row1-col2 {
    margin-top: 50px;
    margin-left: 20px;
    margin-right: -22px;
    padding-right: 22px;
    width: 55%;
    overflow: hidden;
}
@media (max-width: 667px) {
    .conversion-row1-col2 {
        display: none; /* the image is in the first column in mobile version */
    }
}

.conversion-row1-col2 img {
    min-width: 480px !important;
    float: left;
}

.conversion-row2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* divs inside are vertically aligned to top */
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 30px;
    margin-bottom: 40px;
}
@media (max-width: 667px) {
    .conversion-row2 {
        display: block;
        margin-bottom: 80px;
    }
}

.conversion-row2-col1 {
    width: 50%;
}
@media (max-width: 667px) {
    .conversion-row2-col1 {
        width: 100%;
    }
}

.conversion-row2-col2 {
    width: 50%;
}
@media (max-width: 667px) {
    .conversion-row2-col2 {
        width: 100%;
    }
}


.content-block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 15px;
}
@media (max-width: 667px) {
    .content-block {
        display: block;
    }
}

.content-block-col1 {
    width: 50%;
}
@media (max-width: 667px) {
    .content-block-col1 {
        display: none;
    }
}

.content-block-col1 img {
    min-width: 400px !important;
    float: right;
}

.content-block-col2 {
    width: 50%;
    margin-left: 30px;
}
@media (max-width: 667px) {
    .content-block-col2 {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin: auto;
        text-align: center;
    }
}

.content-block-inline {
    display: none;
}
@media (max-width: 667px) {
    .content-block-inline {
        width: 100%;
        max-width: 450px;
        padding-left: 20px;
        padding-right: 20px;
        margin: auto;
        display: block;
    }
}



.onboarding-row1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
}
@media (max-width: 667px) {
    .onboarding-row1 {
        display: block;
        margin-top: 70px;
    }
}

.onboarding-row1-col1 {
    width: 50%;
    margin-right: 20px;
}
@media (max-width: 667px) {
    .onboarding-row1-col1 {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
}

.onboarding-row1-col2 {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 50%;
}
@media (max-width: 667px) {
    .onboarding-row1-col2 {
        display: none;
    }
}

.onboarding-image-inline {
    display: none;
}
@media (max-width: 667px) {
    .onboarding-image-inline {
        margin-left: -36px;
        margin-right: -36px;
        display: block;
    }
}

.onboarding-row2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 50px;
}
@media (max-width: 667px) {
    .onboarding-row2 {
        display: block;
    }
}

.onboarding-row2-col1 {
    width: 50%;
}
@media (max-width: 667px) {
    .onboarding-row2-col1 {
        width: 100%;
    }
}

.onboarding-row2-col2 {
    width: 50%;
}
@media (max-width: 667px) {
    .onboarding-row2-col2 {
        width: 100%;
    }
}



.get-license-today {
    background: #eff2f3;
    padding: 32px !important;
}

.clients-container {
    padding-top: 0 !important;
}

@media (max-width: 667px) {
    .clients-container {
        padding: 32px 0 !important;
    }
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-logos > div {
    width: 300px;
    max-width: 50%;
    padding: 32px 32px 0;
    text-align: left;
}

.clients-logos > div:first-child {
    text-align: right;
}

.clients-logos img {
    position: static !important;
    z-index: 1 !important;
    opacity: 1 !important;
}

.testimonial {
    margin-top: 40px;
    padding-right: 30px;
    padding-bottom: 194px;
    overflow: hidden;
}

.testimonial-content {
    position: relative;
    float: right;
    max-width: 550px;
}

.testimonial-message {
    position: relative;
    padding: 40px;
    font-size: 24px;
    line-height: 36px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    transform: skew(-10deg);
    background-color: #E1F5FE;
    z-index: 2;
}

.testimonial-message > div {
    transform: skew(10deg);
}

@media (max-width: 667px) {
    .testimonial {
        padding: 0 8px;
        overflow: visible;
    }

    .testimonial-content {
        float: none;
    }

    .testimonial-message {
        padding: 40px 24px;
        font-size: 16px;
        line-height: 1.5;
    }

    .testimonial-message > div {
        /* transform: skew(3deg); */
    }
}

.testimonial-globe {
    position: absolute;
    width: 364px;
    z-index: 0;
    right: 100%;
    margin-top: -101px;
    margin-right: -35px;
}

@media (max-width: 667px) {
    .testimonial-globe {
        margin-right: -64px;
    }
}

.testimonial-cloud {
    position: absolute;
    width: 100px;
    z-index: 2;
    right: 100%;
    margin-top: -64px;
    margin-right: -24px;
}

@media (max-width: 667px) {
    .testimonial-cloud {
        width: 40px;
        margin-top: -10px;
        margin-right: -18px;
    }
}

.subpage-navi {
    margin-top: 8px;
    font-family: "Open Sans";
    font-size: 16px;
    color: #B0BEC5;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 667px) {
    .subpage-navi {
        margin-top: 24px;
    }
}

.subpage-navi-item {
    display: inline-block;
}

@media (max-width: 667px) {
    .subpage-navi-item {
        margin-top: 8px;
    }
}

.subpage-navi-title {
    display: inline-block;
    margin-right: 24px;
    padding: 4px 12px 6px;
    background: #E7F7FE;
    color: #334148;
    transform: skew(-10deg);
}

.subpage-navi-title > div {
    transform: skew(10deg);
}

.subpage .summary {
    padding: 80px 0;
    font-family: "Open Sans";
}

@media (max-width: 667px) {
    .subpage .summary {
        margin-top: 0;
        padding: 16px 16px 0;
    }
}

.subpage .summary-main {
    max-width: 1600px;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
    background-color: #A2A2A0;
}

.subpage .summary-main .container {
    position: relative;
    font-family: "Open Sans";
}

.subpage .summary-main .action-button {
    background: #0091EA;
    box-shadow: 0 8px 20px 0 rgba(55, 168, 242, 0.1), 0 8px 40px 0 #334148;
}

.subpage .summary-main .action-button:hover,
.subpage .summary-main .action-button:focus {
    background: #2196F3;
}

.subpage .summary-main .heading-primary {
    text-shadow: 0 0 2px rgba(51, 65, 72, 0.5);
}

.subpage .summary .heading-primary {
    font-family: 'Open Sans';
    font-size: 34px;
    line-height: 46px;
    font-weight: normal;
}

@media (max-width: 667px) {
    .subpage .summary .heading-primary {
        font-size: 24px;
        line-height: 1.3;
    }
}

.subpage .summary-main .heading-primary {
    position: relative;
    font-size: 48px;
    font-weight: 300;
    line-height: 58px;
    color: #FFF;
    z-index: 1;
}

@media (max-width: 667px) {
    .subpage .summary-main {
        margin-top: 16px;
        padding: 16px 0 24px !important;
    }

    .subpage .summary-main .heading-primary {
        padding: 0 32px;
        font-size: 32px;
        line-height: 1.3;
    }

    .subpage .summary-main .action-button {
        box-shadow: 0 4px 8px 0 rgba(51, 65, 72, 0.3);
    }
}

.subpage .summary .text {
    margin: 24px auto 36px;
    letter-spacing: normal;
    font-weight: normal;
}

.subpage .summary-main .text {
    margin: 40px auto 66px;
    max-width: 618px;
    font-size: 20px;
    line-height: 30px;
    color: #FFF;
    text-shadow: 0 0 2px rgba(51, 65, 72, 0.5);
    font-weight: 300;
}

@media (max-width: 667px) {
    .subpage .summary-main .text {
        margin: 24px auto 32px;
        font-size: 16px;
        line-height: 24px;
        font-family: "Open Sans";
        font-weight: 300;
    }
}

.subpage .summary img {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 0;
}

@media (max-width: 667px) {
    .subpage .summary img {
        width: 58px;
        opacity: 0.5;
        top: -12px;
    }
}

.subpage .section {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    font-family: "Open Sans";
}

@media (max-width: 667px) {
    .subpage .section {
        margin-top: 32px;
    }
}

.subpage .section .section-content {
    text-align: left;
}

@media (max-width: 667px) {
    .subpage .section .section-content {
        margin-left: auto;
        margin-right: auto;
    }
}

.subpage .section .section-content img {
    height: 40px;
    margin-bottom: 16px;
}

@media (max-width: 667px) {
    .subpage .section .section-content img {
        display: block;
        margin: 0 auto 16px;
    }
}

.subpage .section .heading-secondary {
    color: #334148;
}

.subpage .section .heading-secondary,
.subpage .section .text {
    margin-left: 0;
    letter-spacing: normal;
}

.subpage .section .text {
    color: #607D8B;
}

@media (max-width: 667px) {
    .subpage .section .text {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.3;
    }
}

.subpage .testimonial {
    margin-top: 120px;
    padding-bottom: 40px;
}

.subpage .testimonial-content {
    float: none;
    max-width: 100%;
    margin-left: 100px;
}

@media (max-width: 667px) {
    .subpage .testimonial-content {
        margin-left: 20px;
    }
}

.intro-video {
    position: relative;
    margin: 40px 0 48px;
}

@media (max-width: 667px) {
    .intro-video {
        margin: 32px -16px 0 -16px;
    }
}

.play-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

@media (max-width: 667px) {
    .play-video {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.play-video:hover .play-button {
    opacity: 1;
    transform: scale(1.03);
}

.play-label {
  height: 40px;
  padding: 0 16px;
  margin: 12px 12px 12px 0;
  background: rgba(38, 50, 56, 0.87);
  border-radius: 2px;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  color: #FFF;
  white-space: nowrap;
}

.play-button {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  box-shadow: inset 0 0 0 4px #FAFCFD, 0 0 0 6px rgba(38, 50, 56, 0.87);
  background: rgba(38, 50, 56, 0.87);
  transition: all 0.2s;
  z-index: 2;
  animation: pulsate 0.75s 1s ease;
  border-radius: 50%;
}

@media (max-width: 667px) {
    .play-button {
        width: 56px;
        height: 56px;
    }
}

.play-button svg {
    width: 40px !important;
    height: 40px !important;
    fill: #FAFCFD !important;
}

.classroom-picture {
    text-align: center;
}

.classroom-picture img {
    width: 714px;
    max-width: 100%;
}

.summary-blank {
    padding: 0 !important;
    background: none;
}

.summary-blank .heading-primary {
    max-width: 540px;
    margin: 0 auto;
    font-weight: 400;
}

.summary-blank .text {
    text-align: left;
    max-width: 800px;
    margin-top: 40px;
}

.player-modal .modal-content {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-top: 56px;
}

.nav-dropdown-block {
    position: relative;
    margin-left: 8px;
}

.nav-dropdown-block:first-child {
    margin-left: 0;
}

@media (max-width: 769px) {
    .nav-dropdown-block:last-child {
        display: none;
    }
}

@media (max-width: 667px) {
    .nav-dropdown-block {
        display: block !important;
        margin-left: 0;
    }
}

.nav-dropdown-toggle {
    visibility: hidden;
    display: none;
}

.nav-toggle-icon {
    width: 24px;
    height: 24px;
    fill: #8BA1AB;

}

.nav-toggle-checkbox {
    visibility: hidden;
    display: none;
}

.nav-toggle-checkbox:checked ~ .header-nav {
    display: block;
}

.nav-toggle-checkbox:checked ~ .nav-toggle-label .nav-toggle-icon {
    fill: #0091EA;
}

.nav-toggle-checkbox:checked ~ .login-links {
    display: block !important;
}

@media (min-width: 667px) {
    .nav-toggle-icon {
        display: none;
    }
}

@media (max-width: 667px) {
    .nav-toggle-checkbox:checked + .nav-toggle-icon {
        fill: #3EA9EF;
    }
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -8px;
    min-width: 100%;
    margin-top: 0;
    padding: 8px 0;
    background: #FFF;
    box-shadow: 0 7px 6px 0 rgba(96,125,139,0.04), 0 10px 24px 0 rgba(96,125,139,0.1);
    z-index: 3;
}

@media (max-width: 667px) {
    .nav-dropdown {
        display: block;
        position: static;
        margin: 0;
        padding: 0 0 8px;
        box-shadow: none;
    }
}

.nav-dropdown-block:hover .nav-link {
    color: rgba(96, 125, 139, 0.8);
}

@media (min-width: 667px) {
    box-shadow: 0 0 6px 0 rgba(96,125,139,0.04), 0 10px 24px 0 rgba(96,125,139,0.1);
}

.nav-dropdown-block:hover .nav-dropdown {
    display: block;
}

.nav-dropdown-block:last-child:hover .nav-dropdown {
    color: rgba(255, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-height: 580px;
    overflow: hidden;
    left: -300px;
    width: 720px;
}

.nav-dropdown-link {
    word-wrap: break-all;
    display: block;
    padding: 20px 20px;
    padding-top: 8px;
    padding-bottom: 13px;
    color: #8BA1AB;
    font-family: Roboto;
    font-size: 16px;
    line-height: 24px;
    width: 360px;
}

@media (max-width: 800px) {
    .nav-dropdown-link {
        width: 320px;
    }

    .nav-dropdown-block:last-child:hover .nav-dropdown {
        left: -320px;
        max-height: 600px;
        width: 640px;
    }
}

.nav-dropdown-link h1 {
    word-wrap: break-all;
    font-weight: 400;
    color: #334148;
    font-family: Roboto;
    font-size: 20px;
    line-height: 20px;
}

.nav-dropdown-link:hover h1 {
    color: #0093E4;
}

@media (max-width: 667px) {
    .nav-dropdown-link {
        padding: 3px 0 8px 24px;
        width: auto;
    }
}

.nav-dropdown-link:hover {
    background: #E7F7FE;
    color: #455A64;
}


/* SCHOOL OFFERING PAGE: */

.school-offering .testimonial {
    margin: 40px 0;
}

.school-intro {
    max-width: 1600px;
    margin: 8px auto 0;
    background-size: cover;
    background-position: center;
}

.school-intro .container {
    display: flex;
    color: #FFF;
}

@media (max-width: 667px) {
    .school-intro .container {
        flex-direction: column;
        padding-bottom: 16px;
    }
}

.school-intro .heading-primary {
    max-width: 400px;
    margin-top: 60px;
    color: #FFF;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
    font-size: 48px;
    line-height: 58px;
    font-family: "Open Sans";
    text-align: left;
}

@media (max-width: 667px) {
    .school-intro .heading-primary {
        max-width: inherit;
        margin-top: 40px;
        font-size: 28px;
        line-height: 38px;
        text-align: center;
        font-weight: 500;
    }
}

.school-intro .text {
    margin-top: 24px;
    min-height: 120px;
    max-width: 436px;
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

@media (max-width: 667px) {
    .school-intro .school-description {
        text-align: center;
    }
}

.school-intro .watch-video-button {
    margin-top: 48px;
    margin-bottom: 48px;
    background: transparent;
    height: 56px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    box-shadow: inset 0 0 4px 0 #FFFFFF;
    font-size: 18px;
    line-height: 56px;
}

@media (max-width: 667px) {
    .school-intro .text {
        min-height: initial;
        margin: 24px auto 0;
        font-size: 16px;
        line-height: 24px;
    }

    .school-intro .watch-video-button {
        margin: 32px auto 8px;
    }
}

.school-intro .watch-video-button svg {
    margin-right: 8px;
}

.school-form-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.school-form {
    max-width: 394px;
    margin-top: 40px;
    margin-left: auto;
    padding: 40px 40px 24px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 667px) {
    .school-form {
        width: 100%;
        padding: 40px 16px 16px;
        margin-top: 24px;
        margin-right: auto;
    }
}

.school-form-title {
    color: #334148;
}

.school-form input,
.school-form textarea {
    height: 56px;
    width: 312px;
    max-width: 100%;
    margin-top: 16px;
    padding-left: 12px;
    border-radius: 2px 2px 0 0;
    background-color: #FAFCFD;
    opacity: 0.8;
    /* color: #8BA1AB; */
    /* font-size: 18px; */
    color: #334148;
    font-size: 16px;
    font-family: "Open Sans";
    line-height: 56px;
    box-shadow: 0 1px 0 #6DDC72;
    outline: none;
}

@media (max-width: 667px) {
    .school-form input,
    .school-form textarea {
        width: 100%;
    }
}

.school-form input:focus {
    box-shadow: 0 2px 0 #6DDC72;
}

.school-form textarea {
    min-height: 82px;
    padding-top: 12px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px #6DDC72;
    line-height: 1.3;
}

.school-form .input-invalid {
    box-shadow: 0 2px 0 #FF5252 !important;
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.school-form.form-success {
    background: #FAFCFD;
}

.school-form.form-success .form-success-block {
    display: block;
}

.school-form.form-success .form-fields {
    display: none;
}

.form-success-block {
    display: none;
    background: #FAFCFD;
    color: #334148;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    line-height: 26px;
    -webkit-animation: fadein 0.5s;
            animation: fadein 0.5s;
}

.form-success-block .send-icon {
    display: inline-block;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 50%;
    background: #BAF4BC;
}

.form-success-block .send-icon svg {
    fill: #FAFCFD;
}

.form-success-block div {
    margin-bottom: 16px;
}

.school-form-button {
    display: block;
    width: 100%;
    height: 56px;
    margin-top: 16px;
    border-radius: 4px;
    background-color: #6DDC72;
    line-height: 56px;
    font-size: 18px;
    color: #FFF;
    cursor: pointer;
    outline: none;
}

.school-form-button:hover {
    background: #8AE48D;
}

.section-rows {
    margin-top: 32px;
    font-size: 0;
}

.section-rows .section {
    margin: 0 0 32px;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    flex-direction: column;
}

.section-rows .section:nth-child(odd) {
    padding-right: 40px;
}

.section-rows .section:nth-child(even) {
    padding-left: 40px;
}

@media (max-width: 667px) {
    .section-rows .section {
        width: 100%;
        padding: 0 !important;
        margin-bottom: 48px;
    }
}

.section-rows .section-image {
    margin-top: 0;
    width: 100%;
}

.section-rows .section-content {
    margin: 0;
    padding: 0;
    width: auto;
}

.section-rows .heading-secondary {
    margin: 16px 0;
    font-size: 20px;
    line-height: 1.4;
}

.section-rows .section .text {
    max-width: 100%;
    font-size: 16px;
}

.section-rows .feature-points {
    margin-top: 16px;
    font-style: italic;
}

.contact-button {
    margin-top: 32px;
    background-color: #6DDC72 !important;
}

.contact-button:hover {
    background-color: #8AE48D !important;
}

/* TEAM PAGE */
.team-page .heading-primary {
    margin-top: 56px;
    font-size: 48px;
    font-family: "Open Sans";
    font-weight: 300;
}

@media (max-width: 667px) {
    .team-page .heading-primary {
        margin-top: 40px;
        font-size: 28px;
        color: #334148;
    }
}


.team-page .heading-secondary {
    max-width: 640px;
    margin: 32px auto 0;
    font-size: 20px;
    line-height: 30px;
    font-family: "Open Sans";
    text-align: center;
    color: #607D8B;
    font-weight: 300;
}

@media (max-width: 667px) {
    .team-page .heading-secondary {
        font-size: 18px;
        line-height: 24px;
    }
}

.team-page .main-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 114px;
}

@media (max-width: 667px) {
    .team-page .main-section {
        margin-top: 60px;
        flex-direction: column;
    }
}

.team-page .team-picture {
    flex: 1;
}

@media (max-width: 667px) {
    .team-page .team-picture {
        margin-left: -16px;
        margin-right: -16px;
        overflow: hidden;
    }
}

.team-page .description {
    max-width: 360px;
    margin-left: 24px;
    font-size: 18px;
    line-height: 28px;
    font-family: "Open Sans";
    font-weight: 300;
}

@media (max-width: 667px) {
    .team-page .description {
        max-width: none;
        margin-left: 0;
        margin-top: 16px;
        font-size: 16px;
    }
}

.team-page .advisory-section .heading-primary {
    margin-top: 80px;
    font-size: 34px;
}

@media (max-width: 667px) {
    .team-page .advisory-section .heading-primary {
        font-size: 28px;
    }
}

.team-page .advisory-board {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.team-page .advisory-board > div {
    padding: 0 4px;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
    -ms-flex-preferred-size: 27.5%;
        flex-basis: 27.5%;
}

@media (max-width: 667px) {
    .team-page .advisory-board {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

.team-page .advisory-item {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    max-width: 288px;
    min-width: 220px;
    margin: 0 auto;
    padding: 16px;
    border-radius: 4px;
    background: #FFF;
    -webkit-box-shadow: 0 0 0 1px #F0F2F4, 0 4px 0 0 #F0F2F4;
            box-shadow: 0 0 0 1px #F0F2F4, 0 4px 0 0 #F0F2F4;
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}


@media (min-width: 667px) {
    .team-page .advisory-item:hover .advisory-info {
        opacity: 1;
    }
}

@media (max-width: 667px) {
    .team-page .advisory-item {
        height: auto;
        width: auto;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .team-page .advisory-item:active .advisory-info {
        opacity: 1;
    }
}

.team-page .advisory-item-content {
    flex: 1;
}

.team-page .advisory-item img {
    display: block;
}

.team-page .advisory-name {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
}

.team-page .advisory-title {
    margin-top: 4px;
}

.team-page .advisory-origin {
    margin-top: 4px;
    color: #8BA1AB;
    font-style: italic;
}

.team-page .advisory-info {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px;
    border-radius: 4px;
    background: #FFF;
    font-size: 14px;
    line-height: 24px;
    max-height: 100%;
    overflow: auto;
    transition: all 0.2s;
}

@media (max-width: 667px) {
    .team-page .advisory-info {
        font-size: 16px;
        -webkit-user-select: none; /* no phantom selection on press on mobile */
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }
}

.team-page .partners-logos {
    display: flex;
    justify-content: space-between;
    margin: 64px auto 80px;
    text-align: center;
}

@media (max-width: 667px) {
    .team-page .partners-logos {
        display: block;
        text-align: center;
    }

    .team-page .partners-logos > div {
        margin-top: 16px;
        margin-bottom: 40px;
        max-width: 667px !important;
    }
}

.team-page .partners-logos > div {
    max-width: 280px;
}

.team-page .partners-logos img {
    height: 80px;
}

.team-page .partners-logo-title {
    margin: 32px 0 16px;
    font-weight: 600;
    font-size: 20px;
    font-family: "Open Sans";
}

.team-page .partners-logo-description {
    font-size: 16px;
    color: #607D8B;
    line-height: 24px;
    font-weight: 300;
}

/* Banner for certificate from UA Ministry of Education */
.cert-banner {
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(to right, #D4DFFF 0%, #CBEFFF 100%);
    color: #546E7A;
    cursor: pointer;
}

.cert-banner-content {
    display: flex;
    align-items: center;
}

.cert-banner-title {
    margin-left: 64px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.cert-banner:hover .cert-banner-title {
    color: #0091EA;
}

.cert-modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 48px 0;
}

.cert-modal-content {
    position: relative;
    height: 100%;
}

.cert-modal-image {
    display: block;
    height: 880px;
    margin: 0 auto 48px;
}

.cert-modal-close {
    position: absolute;
    top: 0;
    right: -36px;
    padding: 2px 4px;
    cursor: pointer;
}

.cert-modal-close img {
    width: 16px;
}

@media (max-width: 667px) {
    .cert-banner-content {
        flex-direction: column;
        align-items: center;
    }

    .cert-banner-logo {
        order: 2;
    }

    .cert-banner-title {
        order: 1;
        margin: 0 0 16px 0;
        line-height: 24px;
        text-align: center;
    }

    .cert-modal-image {
        height: auto;
    }

    .cert-modal-close {
        top: -36px;
        right: 0;
    }
}

/* Covid special campaign banner */

.corona-banner {
    display: block;
    padding: 20px 0;
    background: linear-gradient(60deg, rgba(239,108,0,0.5) 0%, rgba(255,196,0,0.5) 100%);
    cursor: pointer;
    text-align: center;
}

.corona-banner-title {
    color: #334148;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* pages for publishers' content */

.partner-header-container {
    width: 100%;
    align-items: center;
}

.partner-logo {
    height: 40px;
}

.full-height {
    min-height: 100vh;
    position: relative;
}

.footer-at-the-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    align-items: center;
}

.footer-at-the-bottom .logo {
    height: 24px;
}

.full-width {
    width: 100%;
}

.sides-padding {
    padding-left: 12px !important;
}

.full-bottom-border-heading {
    position: relative;
    padding: 8px 1.5rem 24px;
    font-size: 24px;
}

.full-bottom-border-heading:after, .footer-at-the-bottom:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -25vw;
    margin-right: -25vw;
    height: 1px;
    width: 50vw;
    background: #f0f2f4;
    box-shadow: 25vw 0 #f0f2f4, -25vw 0 #f0f2f4;
}

.full-bottom-border-heading:after {
    top: 100%;
}

.footer-at-the-bottom:after {
    bottom: 100%;
}

@media (max-width: 667px) {
    .full-bottom-border-heading {
        padding-bottom: 8px;
        border-bottom: 1px solid #f0f2f4;
    }
    .full-bottom-border-heading:after {
        display: none;
    }
}

.instruction {
    margin: 16px 0;
}

.chapter-exercises {
    margin: 0 0 48px;
    padding: 0;
    list-style: none;
}

.chapter-exercises-link {
    color: #334148;
    display: block;
    padding: 4px 0;
}

.description-large {
    height: 120px;
    width: 356px;
    color: #334148;
    font-family: Roboto;
    font-size: 34px;
    letter-spacing: 0.25px;
    line-height: 40px;
}

.info-text-small{
    height: 70px;
    width: 356px;
    color: #334148;
    font-family: Roboto;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    text-align: justify;
}

.info-text-large{
    margin: 0;
    height: 120px;
    width: 356px;
    color: #334148;
    font-family: Roboto;
    font-size: 34px;
    letter-spacing: 0.25px;
    line-height: 40px;
    text-align: left;
    font-weight: normal;
}

.main-flex {
    display: flex;
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    padding-top: 98px;
    text-align: center;
}

.img {
    height: 383px;
    width: 491px;
}

.cookie-banner {
    position: fixed;
    z-index: 3;
    display: flex;
    flex-direction: column;
    bottom: 16px;
    right: 16px;
    background-color: #FFFFFF;
    width: 360px;
    border: 1px solid #F0F2F4;
    border-radius: 5px;
    padding: 16px;
    overflow: hidden;

    font-family: "Open Sans";
    font-size: 14px;
    line-height: 20px;
    color: #334148;
}

.cookie-banner-image {
    position: absolute;
    bottom: -12px;
    left: -12px;
}

.cookie-image {
    max-width: 80px;
}

@media (max-width: 667px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
    }

    .main .section-content .text-secondary {
        display: none;
    }
}

.cookie-banner .cookie-banner-title {
    margin-bottom: 4px;
    font-weight: bold;
}

.cookie-banner .cookie-banner-description {
    margin-bottom: 16px;
}

.cookie-buttons {
    align-self: flex-end;
}

.cookie-secondary-button, .cookie-main-button {
    cursor: pointer;
    outline: none;
    text-align: center;
    white-space: nowrap;
    padding: 8px 16px;
}

.cookie-secondary-button {
    font-family: inherit;
    margin-right: 16px;
}

.cookie-main-button:hover {
    opacity: 0.85;
}
.cookie-main-button:active {
    opacity: 0.75;
}
.cookie-secondary-button:active {
    opacity: 0.5;
}

.cookie-main-button {
    background: #334148;
    color: #fff;
    font-family: Roboto;
    font-weight: 500;
    line-height: 24px;
}

.modal-cookie-content {
    position: relative;
    background: #fff;
    margin: 0 auto;
    top: 65px;
    width: 480px;
    padding: 40px;
    padding-top: 16px;
    border: 1px solid #F0F2F4;
    border-radius: 16px;
    display: flex;
    flex-direction: column;

    font-family: "Open Sans";
    font-size: 14px;
    line-height: 20px;
    color: #334148;
}

@media (max-width: 667px) {
    .modal .modal-cookie-content {
        width: 100%;
        padding: 16px;
    }

    .modal {
        padding: 0;
    }
}

.cookie-modal-image {
   display: flex;
   justify-content: center;
}

.cookie-modal-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
}

.cookie-modal-title, .cookie-modal-description, .cookie-modal-option, .cookie-modal-image {
    margin-bottom: 16px;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.active-checkbox {
    position: relative;
    width: 34px;
    height: 14px;
    background: #B0BEC5;
    outline: none;
    -webkit-appearance: none;
    border-radius: 20px;
    transition: .5s;
}

.active-checkbox:checked {
    background: rgba(0, 144, 234, 0.5);
}

.active-checkbox::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    bottom: -3px;
    left: -2px;
    background: #FAFAFA;
    transition: .5s;
}

.active-checkbox:checked::before {
   left: 15px;
   background: #0091EA;
}

.active-checkbox:enabled {
    cursor: pointer;
}

.active-checkbox:disabled {
    opacity: 50%;
}

.display-none {
    display: none;
}

.cookie-modal-show {
    display: block;
}

/* This file contains overrides for auth0 modal styles */
/* It has to be kept in sync with the auth0 overrides for teach app */
/* /app/teach/app/integrations/auth0.scss */

/* Safari-specific bug fix */
.no-auth0-transition .auth0-lock.auth0-lock.auth0-lock-opened .auth0-lock-widget {
    transition: none !important;
}

.auth0-lock.auth0-lock {
    font-family: Roboto, sans-serif !important;
    font-size: 14px;
}

.auth0-lock.auth0-lock * {
    font-size: inherit !important;
}

.auth0-lock.auth0-lock .auth0-lock-overlay {
    background: rgba(51, 65, 72, 0.87) !important;
    opacity: 1 !important;
}

.auth0-lock-badge-bottom {
    display: none;
}

.auth0-lock.auth0-lock .auth0-lock-widget {
    box-shadow: 0 20px 40px 0 rgba(51,65,72,0.3) !important;
    max-height: calc(100vh - 40px);
    position: relative !important;
    overflow-y: scroll;
}

.auth0-lock.auth0-lock .auth0-lock-close-button {
    background: transparent !important;
    height: 16px !important;
    width: 16px !important;
    top: 16px !important;
    right: 16px !important;
    box-shadow: none !important;
    color: #78909C !important;
    border: none !important;
}

.auth0-lock.auth0-lock .auth0-lock-close-button svg polygon {
    fill: #78909C !important;
}

.auth0-lock.auth0-lock .auth0-lock-cred-pane {
    border-radius: 4px !important;
    padding-bottom: 20px !important;
}

.auth0-lock.auth0-lock .auth0-lock-cred-pane-internal-wrapper {
    max-height: unset !important;
}

.auth0-lock.auth0-lock .auth0-lock-header {
    padding-top: 24px !important;
    background: none !important;
    position: relative !important;
}

.auth0-lock.auth0-lock .auth0-lock-header-bg {
    display: none !important;
}

.auth0-lock.auth0-lock .auth0-lock-header-logo {
    height: 48px !important;
}

.auth0-lock.auth0-lock .auth0-lock-name {
    font-size: 24px !important;
    font-weight: normal !important;
    color: #4F5A65;
}

.auth0-lock.auth0-lock .auth0-lock-content-body-wrapper {
    margin-top: 0 !important;
    padding-top: 7px !important;
}

.auth0-lock.auth0-lock .auth0-lock-form {
    font-size: 14px !important;
}

.auth0-lock.auth0-lock .auth0-lock-tabs li span, .auth0-lock.auth0-lock .auth0-lock-tabs li a {
    text-transform: uppercase;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.auth0-lock.auth0-lock .auth0-lock-social-button,
.auth0-lock.auth0-lock .auth0-lock-social-button[data-provider^=google].auth0-lock-social-big-button {
    background: #F0F2F4 !important;
    border-radius: 2px !important;
    border: none !important;
}

.auth0-lock.auth0-lock .auth0-lock-social-button-text,
.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button[data-provider^=google] .auth0-lock-social-button-text {
    color: #607D8B !important;
    font-weight: 500 !important;
    text-transform: none !important;
}

.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button[data-provider^=google]:hover:not([disabled]) .auth0-lock-social-button-icon,
.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button[data-provider^=google]:focus:not([disabled]) .auth0-lock-social-button-icon,
.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button[data-provider^=google]:hover:not([disabled]) .auth0-lock-social-button-text,
.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button[data-provider^=google]:focus:not([disabled]) .auth0-lock-social-button-text {
    background-color: transparent !important;
}

.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button-text:hover,
.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button[data-provider^=google] .auth0-lock-social-button-text:hover,
.auth0-lock.auth0-lock .auth0-lock-social-buttons-container .auth0-lock-social-button[data-provider^=google]:hover:not([disabled]) .auth0-lock-social-button-text:hover{
    background: rgba(0, 0, 0, 0.1) !important;
}

.auth0-lock.auth0-lock .auth0-lock-social-button[data-provider^=google].auth0-lock-social-big-button .auth0-lock-social-button-icon {
    height: 39px;
}

.auth0-lock.auth0-lock .auth0-lock-social-button[data-provider^=facebook].auth0-lock-social-big-button .auth0-lock-social-button-icon {
    background-image: url("https://storage.googleapis.com/classtime-assets/3rd_party_services/fb.png") !important;
    background-size: 102% !important;
}

.auth0-lock.auth0-lock .auth0-lock-social-button[data-provider^=windows].auth0-lock-social-big-button .auth0-lock-social-button-icon {
    background-image: url("https://storage.googleapis.com/classtime-assets/3rd_party_services/msft.png") !important;
    background-size: 77% !important;
}

.auth0-lock.auth0-lock .auth0-lock-input-block {
    margin-bottom: 16px !important;
}

.auth0-lock.auth0-lock .auth0-lock-input-wrap {
    background: none !important;
}

.auth0-lock.auth0-lock .auth0-lock-input-wrap.auth0-lock-focused {
    border-color: #0091EA !important;
}

.auth0-lock.auth0-lock .auth0-lock-alternative {
    margin-top: 16px !important;
    text-align: left !important;
}

.auth0-lock.auth0-lock .auth0-lock-alternative-link {
    color: #0091EA !important;
}

.auth0-lock.auth0-lock .auth0-lock-submit {
    min-height: 56px !important;
    width: calc(100% - 40px) !important;
    margin: 0 20px 0 !important;
    background: #0091EA !important;
    border-radius: 2px !important;
    padding: 0 !important;
}

.auth0-lock.auth0-lock .auth0-lock-form p {
    color: #4F5A65 !important;
}

.auth0-lock.auth0-lock .auth0-lock-submit .auth0-label-submit {
    width: 95%;
    height: unset !important;
    line-height: unset !important;
}

.auth0-lock.auth0-lock .auth0-loading {
    top: -7px !important;
}

.auth0-lock.auth0-lock .auth0-lock-terms {
    display: none !important;
}

@media (max-width: 830px) {
    .auth0-lock.auth0-lock .auth0-lock-widget {
        overflow-y: unset !important;
    }
    .auth0-lock.auth0-lock .auth0-lock-cred-pane {
        height: 500px !important;
    }
}

.pricing {
    display: flex;
    justify-content: center;
    padding: 48px 0;
}

.pricing-header {
    display: flex;
    max-width: 1024px;
    padding-top: 16px;
    padding-bottom: 72px;
    margin: 0 auto;
    background-image: url("https://static.classtime.com/www/images/education-free-sparkles.bf647bb90cda.png?03e78ceacf4f");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: left bottom 48px;
}

@media (max-width: 960px) {
    .pricing-header {
        display: block;
        padding-bottom: 48px;
        background: none;
    }
}

@media (max-width: 320px) {
    .pricing-header {
        padding-top: 24px;
    }
}

.pricing-header-description {
    display: flex;
    align-items: center;
    width: 60%;
    padding-right: 16px;
    padding-bottom: 48px;
}

@media (max-width: 960px) {
    .pricing-header-description {
        width: 100%;
        padding: 0;
        background: none;
    }
}

.pricing-header-picture-block {
    padding-left: 16px;
    text-align: center;
    width: 50%;
}

.pricing-header-picture {
    display: inline-block;
    max-width: 337px;
    transform: translateX(-32px);
}

@media (max-width: 960px) {
    .pricing-header-picture-block {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .pricing-header-picture {
        max-width: 300px;
        transform: none;
        margin: 16px auto 0;
    }
}

.pricing-header-title {
    color: #0091EA;
    font-size: 48px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    line-height: 58px;
}

@media (max-width: 960px) {
    .pricing-header-title {
        font-size: 28px;
        line-height: 40px;
        letter-spacing: 1px;
        font-weight: 500;
    }
}

.pricing-header-subtitle {
    margin-top: 16px;
    color: #607D8B;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 26px;
}

@media (max-width: 960px) {
    .pricing-header-subtitle {
        max-width: initial;
    }
}

.pricing-header-label {
    font-size: 24px;
    color: #334148;
}

@media (max-width: 960px) {
    .pricing-header-label {
        font-size: 18px;
        letter-spacing: 0.5;
    }
}

.pricing-header-content {
    position: relative;
    margin-top: 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 34px;
    line-height: 46px;
    font-weight: 300;
}

.trial {
    margin-top: 16px;
}

@media (max-width: 960px) {
    .trial {
        margin-top: 24px;
    }
}

.trial-title {
    font-size: 14px;
    line-height: 20px;
    color: #607D8B;
}

@media (max-width: 960px) {
    .trial-title {
        font-size: 16px;
        text-align: center;
    }
}

.trial-button {
    display: inline-block;
    height: 64px;
    margin-top: 12px;
    padding: 0 40px;
    border: 2px solid #FFA000;
    border-radius: 4px;
    color: #FFA000;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    outline: none;
    transform: translateZ(0);
}

@media (max-width: 960px) {
    .trial-button {
        width: 100%;
        height: 48px;
        margin-top: 16px;
        font-size: 16px;
    }
}


.trial-button:hover {
    cursor: pointer;
    opacity: 0.8;
}

@media (max-width: 960px) {
    .features-container {
        display: flex;
        min-height: 600px;
        align-items: center;
        justify-content: center;
    }
}

.features {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1024px;
    padding: 72px 0;
    margin: auto;
    color: #334148;
}

@media (max-width: 960px) {
    .features {
        display: block;
        min-height: 550px;
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .features {
        min-height: 500px;
    }
}

.features:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #FFA000;
    opacity: .2;
    z-index: -1;
    width: 9999px;
    transform: translateX(-50%);
}

.features-wrapper {
    position: relative;
    margin-left: 48px;
}

@media (max-width: 960px) {
    .features-wrapper {
        margin-left: 0;
        margin-top: 24px;
    }
}

.features-title {
    padding-bottom: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 34px;
    text-align: left;
}

@media (max-width: 960px) {
    .features-title.is-desktop {
        display: none;
    }
}

@media (min-width: 960px) {
    .features-title.is-mobile {
        display: none;
    }
}

@media (max-width: 960px) {
    .features-title {
        padding-bottom: 24px;
        font-size: 24px;
        text-align: center;
    }
}

.feature-video-wrapper {
    flex-shrink: 0;
}

.feature-video {
    display: block;
    width: 560px;
    height: 315px;
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 960px) {
    .feature-video {
        width: 480px;
        height: 270px;
    }
}

@media (max-width: 768px) {
    .feature-video {
        width: 448px;
        height: 252px;
    }
}

@media (max-width: 480px) {
    .feature-video {
        width: 320px;
        height: 180px;
    }
}

@media (max-width: 960px) {
    .feature-picture {
        width: 100%;
        margin: auto;
    }
}

.feature-picture img {
    max-width: 100%;
}

.features-content {
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 960px) {
    .features-content {
        height: auto;
    }
}

.features-descriptions {
    position: relative;
    text-align: left;
    font-size: 16px;
    line-height: 28px;
}

@media (max-width: 960px) {
    .features-descriptions {
        margin: 24px auto 0;
        max-width: initial;
        order: 2;
    }
}

.feature {
    display: none;
}

.feature.feature-active {
    display: block;
}

.feature:after {
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 0;
    left: 50%;
    border-radius: 4px;
    background: #B0BEC5;
}

.features-controls {
    display: flex;
    margin-top: 32px;
}

@media (max-width: 960px) {
    .features-controls {
        justify-content: center;
        margin: 0 auto;
    }
}

.features-control {
    width: 8px;
    height: 8px;
    margin-right: 24px;
    background-color: #8BA1AB;
    border-radius: 50%;
    cursor: pointer;
}

.features-control.feature-active {
    position: relative;
    background-color: transparent;
}

.features-control.feature-active:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -55%);
    background-image: url("https://static.classtime.com/www/images/icon-star.4a9124e6cf8a.svg?03e78ceacf4f");
    background-size: cover;
    background-position: center;
}

/* table core parts */
.pricing-table {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: #334148;
}

.pricing-section {
    margin: 72px auto 128px;
}

@media (max-width: 960px) {
    .pricing-section {
        margin: 56px auto;
    }
}

.pricing-section__title {
    margin-bottom: 64px;
    font-family: 'Open Sans', sans-serif;
    font-size: 34px;
    text-align: center;
}

@media (max-width: 960px) {
    .pricing-section__title {
        margin-bottom: 40px;
    }
}

@media (max-width: 960px) {
    .pricing-section__title {
        font-size: 24px;
        line-height: 32px;
    }
}

.pricing-table__hcell {
    vertical-align: top;
    padding: 32px 16px 16px;
    text-align: center;
}

.pricing-table__hcell--accented {
    position: relative;
}

.pricing-table__hcell--accented:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    height: 8px;
    width: 100%;
    border-radius: 100px 100px 0 0;
    background-color: #FFA000;
}

.pricing-table__subhcell {
    padding: 32px 0 8px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 28px;
    text-transform: uppercase;
}

.pricing-table__cell {
    width: 20%;
    padding: 12px 0;
    text-align: center;
}

.pricing-table__cell:first-child {
    width: 40%;
}

.pricing-table__label {
    position: relative;
    display: flex;
    align-items: center;
}

.pricing-table__fcell {
    vertical-align: top;
    padding: 24px 16px;
    text-align: center;
}

/* elements */
.pricing-button {
    display: block;
    width: 150px;
    margin: auto;
    padding: 8px 0;
    border-radius: 2px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    transition: background-color .2s;
}

.pricing-button:hover {
    color: #fff;
}

.pricing-button--secondary {
    background-color: #F0F2F4;
    color: #607D8B;
}

.pricing-button--secondary:focus,
.pricing-button--secondary:hover {
    background-color: #E3E5E7;
    color: #607D8B;
}

.pricing-button--secondary:active {
    background-color: #CACCCE;
}

.pricing-button--primary {
    background-color: #FFA000;
}

.pricing-button--primary:hover {
    background-color: #F29300;
}

.pricing-button--primary:focus,
.pricing-button--primary:active {
    background-color: #E68700;
}

.pricing-button--info {
    background-color: #0091EA;
}

.pricing-button--info:hover {
    background-color: #2A9BE5;
}

.pricing-button--info:focus,
.pricing-button--info:active {
    background-color: #1E8FD9;
}

.pricing-button:active,
.pricing-button:focus {
    outline: none;
}

.pricing-plan__price {
    font-size: 28px;
    line-height: 32px;
}

.pricing-plan__caption {
    font-size: 18px;
}

.pricing-plan__title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 28px;
    text-transform: uppercase;
}

.pricing-plan__title--accented {
    color: #FFA000;
}

.pricing-tooltip {
    position: absolute;
    left: -8px;
    transform: translateX(-100%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-image: url("https://static.classtime.com/www/images/icon-table-tooltip.ed767d0c962c.svg?03e78ceacf4f");
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

@media (max-width: 960px) {
    .pricing-tooltip {
        left: 0;
        transform: none;
    }
}

.pricing-tooltip:hover,
.pricing-tooltip:active {
    background-image: url("https://static.classtime.com/www/images/icon-table-tooltip-active.dca3f81ab57c.svg?03e78ceacf4f");
    outline: none;
}

.pricing-tooltip:focus {
    outline: none;
}

.pricing-note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 20px;
}

.pricing-note--small {
    color: #8BA1AB;
}

.pricing-note--tiny {
    margin-top: 8px;
}

.pricing-link {
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: color .2s;
}

.pricing-link--default {
    color: inherit;
}

.pricing-link--default:hover {
    color: #FFA000;
}

.pricing-link--primary {
    color: #FFA000;
}

.pricing-link--primary:hover {
    color: #CC6D00;
}

.pricing-link--info {
    color: #0091EA;
}

.pricing-link--info:hover {
    color: #005EB7;
}

/* cell-specific table styling */
.pricing-table__thead tr:first-child td:not(:first-child),
.pricing-table__tbody tr:first-child td:not(:first-child),
.pricing-table__tfoot tr:first-child td:not(:first-child) {
    border-top: 1px solid #F0F2F4;
}

.pricing-table__thead tr:last-child td:not(:first-child),
.pricing-table__tbody tr:last-child td:not(:first-child),
.pricing-table__tfoot tr:last-child td:not(:first-child) {
    border-bottom: 1px solid #F0F2F4;
}

.pricing-table__hcell:not(:first-child),
.pricing-table__cell:not(:first-child),
.pricing-table__fcell:not(:first-child) {
    border-right: 1px solid #F0F2F4;
    border-left: 1px solid #F0F2F4;
}

.pricing-table__tbody td {
    position: relative;
}

.pricing-table__tbody tr:hover td:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 44px;
    border-bottom: 2px solid #f0f2f4;
    border-top: 2px solid #f0f2f4;
}

.pricing-table__tbody tr:first-child:hover td:before {
    top: auto;
    bottom: 0;
}

.pricing-table__tbody tr:hover td:first-child:before {
    left: -36px;
    border-left: 2px solid #f0f2f4;
}

.pricing-table__tbody tr:hover td:last-child:before {
    border-right: 2px solid #f0f2f4;
    right: -1px;
}

.pricing-table__tbody tr:first-child td {
    padding-top: 24px;
}

.pricing-table__tbody tr:last-child td {
    padding-bottom: 24px;
}

.pricing-table__hcell,
.pricing-table__fcell {
    padding: 16px;
}

.pricing-table__thead tr:first-child td,
.pricing-table__tfoot tr:first-child td {
    padding: 24px 16px 12px;
}

.pricing-table__thead tr:last-child td,
.pricing-table__tfoot tr:last-child td {
    padding: 12px 16px 24px;
}

/* plugin tooltip styling */

.tippy-tooltip.pricing-tooltip-theme {
    margin-left: -10px;
    padding: 0;
    text-align: left;
    box-shadow: 0px 16px 16px -16px rgba(96,125,139,0.2);
    background-color: #FFECB3;
    border-radius: 8px;
}

.tippy-tooltip.pricing-tooltip-theme .tippy-content {
    padding: 24px;
    line-height: 24px;
    font-size: 16px;
    font-style: italic;
    color: #334148;
}

.tippy-tooltip.pricing-tooltip-theme .tippy-arrow {
    transform: translateX(10px);
    border-top-color: #FFECB3;
    border-bottom-color: #FFECB3;
}

.pricing-list {
    display: none;
}

@media (max-width: 960px) {
    .pricing-table {
        display: none;
    }
    .pricing-list {
        display: block;
    }
}

.pricing-list__nav {
    display: flex;
    margin-bottom: 40px;
}

.pricing-list__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 calc(100% / 3);
    text-align: center;
    text-transform: uppercase;
    padding: 24px 8px;
    border: 1px solid #B0BEC5;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 20px;
    color: #607D8B;
}

.pricing-list__tab:not(:first-child) {
    margin-left: -1px;
}

.pricing-list__tab.is-active {
    position: relative;
    background-color: #F0F2F4;
    color: #334148;
}

.pricing-list__tab--accented.is-active {
    background-color: rgba(255,236,179,0.1);
    color: #FFA000;
}

.pricing-list__tab.is-active:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
}

.pricing-list__tab--accented.is-active:after {
    border: 1px solid #FFA000;
}

.pricing-list__tab.is-active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    height: 8px;
    width: 100%;
    border-radius: 100px 100px 0 0;
    background-color: #B0BEC5;
}

.pricing-list__tab--accented.is-active:before {
    background-color: #FFA000;
}

.pricing-list__subheader {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.75px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pricing-list__subheader,
.pricing-list__item {
    padding-left: 32px;
}

.pricing-list__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-right: 16px;
    font-size: 14px;
    line-height: 20px;
}

.pricing-list__column {
    display: none;
}

.pricing-list__column.is-active {
    display: block;
}

.pricing-list__subcolumn {
    margin-bottom: 40px;
}

.pricing-plan__box {
    padding: 24px;
    text-align: center;
    border-radius: 4px;
}

.pricing-plan__box > *:not(:last-child) {
    margin-bottom: 24px;
}

.pricing-plan__box--accented {
    background-color: rgba(255, 236, 204, .4);
}

.pricing-plan__box--info {
    background-color: #F0F2F4;
}

.pricing-list__item-img {
    margin-left: 8px;
}
