:root {
    --black: rgb(0, 0, 0);
    --white: rgb(255, 255, 255);
    --green: rgb(43, 178, 73);
    --lgreen: rgb(160, 204, 57);
    --purple: rgb(107, 83, 162);
    --violet: rgb(45, 48, 145);
    --gray: rgb(170, 170, 170);
    --lgray: rgb(200, 200, 200);
    --red: rgb(237, 51, 56);
    --lred: rgb(242, 112, 108);
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    padding-bottom: 2em;
}

h1 {
    margin: 0;
    font-size: 3em;
    color: var(--white);
    font-weight: bold;
}

h1.smaller {
    font-size: 2.5em;
}

h2 {
    position: relative;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0.75em 0;
}

h2.smaller {
    font-size: 1.4em;
}

p,
ul,
ol {
    margin: 0;
    line-height: 1.5;
}

p.md {
    font-size: 1.2em;
}

p.lg {
    font-size: 1.6em;
}

.pl-md {
    padding-left: 2.8em;
}

.pr-md {
    padding-right: 2.5em;
}

address {
    font-style: normal;
}

.background-image1 {
    background: var(--white) url('assets/background_tile3.jpg') left 7vw;
}

.purple {
    color: var(--purple);
}

.white {
    color: var(--white);
}

.lgreen {
    color: var(--lgreen);
}

.green {
    color: var(--green);
}

.black {
    color: var(--black);
}

.violet {
    color: var(--violet);
}

.lgray {
    color: var(--lgray);
}

.gray {
    color: var(--gray);
}

.lred {
    color: var(--lred);
}

.red {
    color: var(--red);
}

.purple-b {
    background-color: var(--purple);
}

.white-b {
    background-color: var(--white);
}

.lgreen-b {
    background-color: var(--lgreen);
}

.green-b {
    background-color: var(--green);
}

.black-b {
    background-color: var(--black);
}

.violet-b {
    background-color: var(--violet);
}

.lgray-b {
    background-color: var(--lgray);
}

.gray-b {
    background-color: var(--gray);
}

.lred-b {
    background-color: var(--lred);
}

.red-b {
    background-color: var(--red);
}

.lred-r {
    -webkit-box-shadow: 0 0 15px 5px var(--lred);
    box-shadow: 0 0 15px 5px var(--lred);
}

.red-r {
    -webkit-box-shadow: 0 0 15px 5px var(--red);
    box-shadow: 0 0 15px 5px var(--red);
}

.violet-r {
    -webkit-box-shadow: 0 0 15px 5px var(--violet);
    box-shadow: 0 0 15px 5px var(--violet);
}

.purple-r {
    -webkit-box-shadow: 0 0 15px 5px var(--purple);
    box-shadow: 0 0 15px 5px var(--purple);
}

.gray-r {
    -webkit-box-shadow: 0 0 15px 5px var(--gray);
    box-shadow: 0 0 15px 5px var(--gray);
}

.green-r {
    -webkit-box-shadow: 0 0 15px 5px var(--green);
    box-shadow: 0 0 15px 5px var(--green);
}

.yellow-r {
    -webkit-box-shadow: 0 0 15px 5px var(--lgreen);
    box-shadow: 0 0 15px 5px var(--lgreen);
}

.green-border {
    border: 2px solid var(--green);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
}

.violet-green-gradient {
    background: linear-gradient(to right, var(--violet), var(--green));
    text-align: center;
    min-height: 5px;
    color: #fff;
}

h1.violet-green-gradient {
    position: relative;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.6);
    padding: 0.5em;
}

.break-xs {
    height: 0.5em;
}

.break-sm {
    height: 1em;
}

.break-md {
    height: 1.5em;
}

.break-lg {
    height: 3em;
}

.padded-sm {
    padding: 0.5em;
}

.padded-md {
    padding: 1.3em;
}

.padded-lg {
    padding: 2em;
}

.pb-0 {
    padding-bottom: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.centered {
    text-align: center;
}

.max-820 {
    max-width: 820px;
    margin: 0 auto;
}

button {
    margin: 0 0.5em;
    padding: 0.33em 0.9em;
    font-size: 1.25em;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.4);
    font-weight: bold;
    border: none;
    border-radius: .3125em;
    cursor: pointer;
}

button.back {
    /* initially, the back button is removed because the user cannot go back from the first screen */
    display: none;
}

button .material-icons {
    font-size: 1.1em;
    vertical-align: text-bottom;
}

button.green,
button.green:active,
button.green:hover,
button.light-violet,
button.light-violet:active,
button.light-violet:hover,
button.violet,
button.violet:active,
button.violet:hover,
button.red,
button.red:active,
button.red:hover,
.narration-toggle,
.narration-toggle:active,
.narration-toggle:hover {
    color: #fff;
    text-shadow: none;
}

button.green {
    background-color: #2bb249;
}

button.green:active,
button.green:hover {
    background-color: #2da52b;
}

button.light-violet {
    background-color: #6b53a2;
}

button.light-violet:active,
button.light-violet:hover {
    background-color: #5a4688;
}

button.violet {
    background-color: #2d3091;
}

button.violet:active,
button.violet:hover {
    background-color: #1f2275;
}

button.red {
    background-color: #ed3338;
}

button.red:active,
button.red:hover {
    background-color: #c9262c;
}

.nav-buttons {
    display: inline-block;
    position: relative;
    margin-top: 0.8em;
    padding: 0.5em;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    z-index: 2;
}

.nav-buttons:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: inset 4px 4px 4px 0 rgba(0, 0, 0, 0.1), inset -5px -5px 5px 0 rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.curtain {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    box-pack: center;
    -moz-box-pack: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(0, 0, 0, 0.3);
    background-color: #fff;
    text-shadow: none;
    font-size: 0.9em;
    font-weight: bold;
}

.curtain.moved {
    animation: curtain-move 0.8s 1 ease forwards;
    -webkit-animation: curtain-move 0.8s 1 ease forwards;
}

@keyframes curtain-move {
    100% {
        left: 100%;
    }
}

@-webkit-keyframes curtain-move {
    100% {
        left: 100%;
    }
}

.bttn {
    position: relative;
    display: inline-block;
    padding: 0.3em 0.9em 0.33em;
    text-decoration: none;
    text-align: center;
    font-size: 1.25em;
    font-weight: bold;
    border: none;
    border-radius: .3125em;
    cursor: pointer;
    vertical-align: middle;
    overflow: hidden;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.bttn:focus {
    outline: none; /* override Chrome */
}

.bttn:hover {
    text-decoration: none;
}

.bg-white,
.bttn.white {
    color: var(--gray);
    background-color: #fff;
}

.red-b,
.lred-b,
.green-b,
.lgreen-b,
.violet-b,
.purple-b,
.gray-b {
    color: #fff;
}

.bttn.green-b:active,
.bttn.green-b:hover,
.bttn.green-b.active {
    background-color: #2da52b;
}

.bttn.lgreen-b:active,
.bttn.lgreen-b:hover,
.bttn.lgreen-b.active {
    background-color: #91b835;
}

.bttn.violet-b:active,
.bttn.violet-b:hover,
.bttn.violet-b.active {
    background-color: #1f2275;
}

.bttn.purple-b:active,
.bttn.purple-b:hover,
.bttn.purple-b.active {
    background-color: #5a4688;
}

.bttn.red-b:active,
.bttn.red-b:hover,
.bttn.red-b.active {
    background-color: #d32a30;
}

.bttn.lred-b:active,
.bttn.lred-b:hover,
.bttn.lred-b.active {
    background-color: #dd6b67;
}

.bttn.lg {
    font-size: 1.6em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.img-res {
    max-width: 100%;
    display: block;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.flex-spread {
    display: flex;
    justify-content: space-around;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.spacer {
    width: 3em;
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*================================================
-~-~-~-~-~-~| BODY STYLE |-~-~-~-~-~-~-~-~-~-~-~-~
================================================*/

.main-nav {
    box-sizing: border-box;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    letter-spacing: 0.11em;
    padding: 10px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--white);
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
    z-index: 100;
}

.main-nav-logo {
    height: 100%;
}

.main-nav-logo img {
    max-height: 100%;
}

.main-nav-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
}

.main-nav-list li:nth-child(3) {
    position: relative;
}

.main-nav-list li a {
    position: relative;
    color: var(--gray);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: 50px;
    padding-bottom: 12px;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
}

.main-nav-list li a.white {
    color: var(--white);
}

.main-nav-list li>a:hover,
.main-nav-list li>a.active-tab {
    color: var(--purple);
}

.main-nav-list li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background-color: var(--purple);
    visibility: hidden;
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0);
    -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1) 0s;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.main-nav-list li>a:hover:before,
.main-nav-list li>a.active-tab:before {
    visibility: visible;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
}

.extra-tabs {
    position: absolute;
    top: 32px;
    left: 20px;
    width: 290px;
    display: none;
    opacity: 0;
    padding-top: 30px;
    background-color: var(--white);
    border-bottom: 10px solid rgb(240, 240, 240);
}

.main-nav-list li .extra-tab-item {
    color: var(--gray);
    display: block;
    padding: 20px;
    margin-left: 0;
    background-color: rgb(240, 240, 240);
}

.main-nav-list li .extra-tab-item:hover {
    color: var(--purple);
}

.extra-tab-item:first-child {
    border-top: 10px solid rgb(240, 240, 240);
}

.main-nav-mobile {
    display: none;
    margin-left: 50px;
}

.main-nav-icon {
    color: var(--gray);
    padding: 0.8em 0.8em 0.8em 2.8em;
}

.main-nav-icon:hover {
    cursor: pointer;
}

.main-nav-icon i {
    font-size: 2.4em;
}

.main-nav-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 8px;
}

.main-nav-list-mobile {
    display: none;
    position: absolute;
    right: 0;
    top: 100px;
    width: 196px;
    padding: 10px 0;
    background-color: #f0f0f0;
}

.main-nav-list-mobile a,
.menu-widget {
    box-sizing: border-box;
    width: 100%;
    text-align: right;
    position: relative;
    text-decoration: none;
}

.main-nav-list-mobile a {
    display: block;
    color: var(--gray);
    font-weight: 900;
    text-transform: uppercase;
    padding: 20px;
}

.main-nav-list-mobile a:visited {
    color: var(--gray);
}

.main-nav-list-mobile a.active-tab {
    color: var(--purple);
}

.nav-spacing {
    height: 100px;
    /* matches the height of the .main-nav */
    transition: height 0.2s;
}

.blurb {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 250px;
    padding: 1em 1.25em;
    color: var(--white);
    font-size: 1.2em;
    height: 8em;
    opacity: 0;
    transition: left 0.5s, opacity 0.5s;
}

.left .blurb {
    left: -20%;
    margin-right: 3em;
}

.right .blurb {
    margin-left: 3em;
    left: 20%;
}

.blurb-img {
    position: relative;
    width: 100%;
    max-width: 543px;
    border: 2px solid var(--purple);
    border-radius: 5px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: left 0.5s, opacity 0.5s;
}

.left .blurb-img {
    left: 20%;
}

.right .blurb-img {
    left: -20%;
}

.left.active .blurb,
.right.active .blurb,
.left.active .blurb-img,
.right.active .blurb-img {
    left: 0;
    opacity: 1;
}

.osi-label {
    margin: 70px auto 0 auto;
    padding-bottom: 100px;
}

.osi-tour-link {
    width: fit-content;
    font-size: 120%;
    text-decoration: none;
    color: var(--white);
    position: relative;
    border-radius: 7px;
    margin: 30px auto;
    background: #6b53a2;
    padding: 13px 23px;
    font-weight: bold;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.4);
}

.osi-tour-link:hover {
    background: #5a4688;
}

.overview-section-boxes {
    padding-bottom: 100px;
}

.osb-label {
    margin: 0 auto;
    max-width: 800px;
    width: 82%;
    text-align: left;
    /*letter-spacing: -0.3px;*/
}

.osb-container {
    padding: 0 50px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
}

.osb {
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    width: 250px;
    display: inline-block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 150px;
    background-color: var(--lgreen);
    padding: 50px 20px;
    margin: 20px;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.4);
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.osb-text-big {
    line-height: 1em;
    font-size: 140%;
    letter-spacing: 1px;
    text-shadow: 1px 0 black;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}


.osb:before {
    border-radius: 10px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
}

.osb:hover,
.osb:focus,
.osb:active {
    color: var(--white);
    font-weight: bold;
}

.osb:hover:before,
.osb:focus:before,
.osb:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.fine-print {
    box-sizing: border-box;
    font-size: 0.8125em;
    font-weight: normal;
    opacity: 0.75;
}

footer a {
    color: var(--purple);
    text-decoration: underline;
}

/*================================================
-~-~-~-~-~-~| CHILD STYLE |-~-~-~-~-~-~-~-~-~-~-~-
================================================*/

.child-section-intro {
    font-weight: 400;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.child-text-container-left,
.child-text-container-right {
    box-sizing: border-box;
    border-radius: 0.25em;
    background: #ffffff;
}

.child-text-container-right {
    margin-left: 40px;
}

.child-text-container-right.minimum-width,
.child-text-container-left.minimum-width {
    align-self: start;
}

.child-text-container-left {
    -webkit-box-flex: 10;
    -ms-flex-positive: 10;
    flex-grow: 10;
    position: relative;
    max-width: 1120px;
    min-width: 600px;
    overflow: hidden;
}

.slideshow-content {
    padding: 25px;
}

.quote,
.lt-660,
.lt-400 {
    display: none;
}

.ctc-list-header {
    font-weight: bold;
    border-bottom: 3px solid var(--green);
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.participant-list,
.admin-list {
    margin-left: 10px;
}

.slide-counter {
    position: absolute;
    bottom: 14px;
    left: 20px;
    font-size: 18px;
    color: var(--grey);
}

.ss-img {
    max-width: 100%;
    display: none;
    /* height: 350px; */
    /* border-radius: 15px; */
}

.ss-btns {
    margin-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ss-li {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    list-style: none;
    padding: 5px 0 5px 24px;
    background: url('assets/filled_triangle_right.svg') left center/0.8em no-repeat
}

.ss-prev,
.ss-next {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: 900;
    font-size: 130%;
    color: var(--gray);
}

.ss-prev {
    padding: 2px 0 0 32px;
    background: url('assets/arrow_left.svg') left center/22% 82% no-repeat;
}

.ss-next {
    padding: 2px 32px 0 0;
    background: url('assets/arrow_right.svg') right center/32% 82% no-repeat;
}

.ss-section-number {
    position: absolute;
    left: 0;
}

.ss-prev:hover,
.ss-next:hover {
    cursor: pointer;
    color: var(--black);
}

.ss-li:hover {
    cursor: pointer;
}

.ss-note {
    display: none;
}

.ss-note,
.ss-note1 {
    color: #585858;
}

.slideshow {
    border: 2px solid var(--lgreen);
    cursor: pointer;
    width: fit-content;
}

.slideshow>div {
    width: fit-content;
}

.overlay {
    position: fixed;
    display: none;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.4);
}

.overlay-image {
    max-width: 95%;
    max-height: 95%;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
}

.overlay .close {
    position: absolute;
    top: 1em;
    right: 1em;
    color: var(--white);
    font-size: 2em;
    cursor: pointer;
}

.gray-overlay {
    background: #00000063;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    height: 100%;
}

.exit-button {
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.text {
    flex-shrink: 0;
    width: 26%;
    margin-left: 3%;
}

.p-top {
    padding-top: 38px;
}

.child-text-container-left ul li {
    margin-left: 50px;
}

.child-text-container-right {
    width: 350px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.ctc-p {
    position: relative;
    margin: 0.25em 0 1em;
    color: var(--gray);
}

.ctc-li {
    margin: 10px 0;
}

.ctc-medp {
    font-weight: 900;
    font-size: 130%;
    margin: 20px 0;
}

.ctc-bigp {
    font-weight: 900;
    font-size: 200%;
    margin-bottom: 20px;
}

.ctc-side-img {
    width: 100%;
    border-radius: 0.25em;
}

.content.light-green,
.content.light-green .curtain {
    background-color: #a0cc39;
}

.content.light-green,
.content.green-border {
    border-color: #2bb429;
    color: #444;
}

.content.green-border,
.content.green-border .curtain {
    background-color: #fff;
}

.content.light-red,
.content.light-red .curtain {
    background-color: #f2706c;
}

.content.light-red {
    border-color: #ed3338;
    color: #444;
}

.content.light-violet,
.content.light-violet .curtain,
button.light-violet {
    background-color: #6b53a2;
}

.content.light-violet {
    border-color: #2d3091;
    color: #f9f9f9;
}

.content.gray {
    border-color: #aaa;
    color: #444;
    box-shadow: none;
}

.content {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
    width: 100%;
    max-width: 730px;
    background-color: #fff;
    border-radius: 0.25em;
    z-index: 2;
}

.card {
    box-sizing: border-box;
    flex-shrink: 0;
    align-self: stretch;
    width: 42%;
    border: 2px solid;
}

.card .head {
    margin: 0;
    padding: 0.5em;
    color: var(--white);
    text-align: center;
}

.card .body {
    padding: 0.5em 1em;
    color: var(--black);
}

.card .body p {
    line-height: 1.26;
    margin-bottom: 0.7em;
}

.card.lgreen {
    border-color: var(--lgreen);
    background-color: rgba(160, 204, 57, 0.2);
}

.card.lgreen .head {
    background-color: var(--lgreen);
}

.card.green {
    border-color: var(--green);
    background-color: rgba(43, 178, 73, 0.2);
}

.card.green .head {
    background-color: var(--green);
}

.card.purple {
    border-color: var(--purple);
    background-color: rgba(107, 83, 162, 0.2);
}

.card.purple .head {
    background-color: var(--purple);
}

button {
    cursor: pointer;
}

select {
    border: none;
    border-radius: 0.125em;
}

textarea {
    resize: none;
}

label {
    display: inline-block;
    margin-bottom: 0.3em;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="range"],
input[type="date"],
textarea,
select {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: 270px;
    margin-bottom: 0.5em;
    padding: 0.5em;
    font-size: 1.4em;
    border: 1px solid var(--gray);
    background-color: #eee;
    border-radius: 0.125em;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
input[type="range"],
input[type="date"],
select {
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    background-color: #fff;
    -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.4);
    outline: none;
    /* override Chrome */
}

/*.form1 {
    margin-right: 100px;
}*/

/*.form1-top {
    margin: 20px 50px 0 0;
    width: 100%;
}

.form1-bottom {
    margin: 20px 50px 0 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.tb-button {
    height: 76px;
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: 2px solid #000000;
    background: #ffffff;
    font-size: 1em;
    font-family: 'Lato', sans-serif;
}

.tb-button:hover {
    border: 2px solid var(--purple);
}

.tb-message,
.tb-name,
.tb-email {
    width: 100%;
    border-radius: 3px;
    padding: 10px;
    margin-top: 5px;
    outline-style: none;
    border: 2px solid #000000;
    background: #ffffff;
    font-size: 100%;
    font-weight: 400;
}

.tb-phone {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.tb-phone span {
    font-size: 200%;
}

.tb-parea,
.tb-pthree,
.tb-pfour {
    border-radius: 3px;
    padding: 10px;
    margin-top: 5px;
    outline-style: none;
    border: 2px solid #000000;
    background: #ffffff;
    font-size: 100%;
    font-weight: 400;
}*/

input[type="text"].tb-parea,
input[type="text"].tb-pthree {
    display: initial;
    width: 66px;
    min-width: 66px;
}

input[type="text"].tb-pfour {
    display: initial;
    width: 80px;
    min-width: 80px;
}

.tb-message {
    height: 150px;
}

/*.tb-parea:focus,
.tb-parea:hover,
.tb-pthree:focus,
.tb-pthree:hover,
.tb-pfour:focus,
.tb-pfour:hover {
    border: 2px solid var(--purple);
}

.tb-message:focus,
.tb-message:hover {
    border: 2px solid var(--purple);
}

.tb-name:hover,
.tb-name:focus {
    border: 2px solid var(--purple);
}

.tb-email:hover,
.tb-email:focus {
    border: 2px solid var(--purple);
}*/

.alert-success,
.alert-failure {
    text-align: center;
    font-size: 1.4em;
}

.alert-failure {
    color: rgb(237, 51, 56);
}

.alert-success {
    color: rgb(43, 178, 73);
}

.extra-lspace {
    line-height: 120%;
}

/*
    Audio sample page
*/

.audio-content-container {
    border: 2px solid var(--green);
    box-shadow: 0 0 2px gray;
    border-radius: 0.25em;
    border-top-left-radius: 0;
    z-index: 2;
    position: relative;
    background: white;
}

.tab-button {
    color: white;
    border: none;
    margin-left: 0;
    padding: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 19px;
    position: relative;
    top: 10px;
    z-index: 1;
    transition: top 0.3s;
    cursor: pointer;
}

.tab-button:hover {
    top: 0;
}

.tab-button-en {
    cursor: default;
}

.audio-sample-image {
    display: block;
    margin: 0 auto;
    border-radius: 0.25em;
}

/*================================================
-~-~-~-~-~| RESPONSIVE BREAKPOINTS |-~-~-~-~-~-~-~
================================================*/

@media (orientation: portrait),
    (max-width: 900px) {
    .col-in-portrait {
        flex-direction: column-reverse;
        align-items: center;
    }

    .col-in-portrait .text {
        width: 100%;
        margin-left: 0;
        margin-bottom: 1em;
    }
}

@media only screen and (max-width: 1130px) {
    .child-section-intro {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .child-text-container-right {
        margin: 2em auto 0;
        width: 100%;
        max-width: 408px;
    }

    .content {
        margin: 0 auto;
    }
}

@media (max-width: 975px) {
    .left .blurb,
    .right .blurb,
    .left .blurb-img,
    .right .blurb-img {
        left: 0;
        opacity: 1;
    }

    .left .blurb,
    .right .blurb {
        margin: 0;
    }

    .blurb-img {
        margin: 0 0 2em;
    }

    .col-at-975 {
        flex-direction: column;
    }

    .col-rev-at-975 {
        flex-direction: column-reverse;
    }

    .col-rev-at-975 .text {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
        margin-bottom: 1em;
    }

    .card {
        width: 100%;
        margin-bottom: 1em;
    }
}

@media only screen and (max-width: 965px) {
    .main-nav-list {
        display: none;
    }

    .main-nav-mobile {
        margin-top: 8px;
        display: flex;
    }

    .main-nav {
        height: 100px;
        flex-direction: row;
        -ms-flex-direction: row;
    }

    a.extra-tab-item {
        padding-right: 30px;
    }
}


@media only screen and (max-width: 780px) {
    /*.child-section-intro {
        padding: 150px 30px 100px 30px;
    }*/

    .child-text-container-left {
        min-width: 0;
    }

    .gt-750 {
        display: none;
    }

    /*.child-text-container-left,
    .child-text-container-right {
        padding: 40px;
    }*/
}

@media (max-width: 700px) {
    h1 {
        font-size: 1.95em;
    }
}

@media (max-width: 700px), (max-height: 655px) {
    .main-nav,
    .nav-spacing {
        height: 80px;
    }

    .main-nav-list-mobile {
        top: 80px;
    }

    .main-nav-icon {
        padding: 0.25em 0.2em 0.25em 2.8em;
    }
}

@media (max-width: 660px) {
    .col-at-660 {
        flex-direction: column;
        align-items: center;
    }

    .col-at-660 .bttn {
        margin-bottom: 1em;
    }

    .col-at-660 .bttn:last-child {
        margin-bottom: 0;
    }

    .lt-660 {
        display: initial;
    }

    .child-text-container-left ul li {
        margin-left: 0;
    }

    ul {
        padding-left: 1.1em;
    }

    ul.pr-md {
        padding-right: 0;
    }

    h2.pl-md {
        padding-left: 0.75em;
    }
}

@media only screen and (max-width: 600px) {
    .msh-text-big {
        font-size: 250%;
    }

    .msf-text {
        padding: 50px 20px;
    }
}

@media only screen and (max-width: 550px) {
    .msf-text-big {
        padding-top: 0;
        line-height: 1em;
    }

    /*.child-section-intro {
        padding: 125px 0 50px 0;
    }*/

    /*.child-text-container-left,
    .child-text-container-right {
        margin-right: 0;
        margin-left: 0;
        padding: 30px;
        font-size: 18px;
    }*/

    .slide-counter {
        font-size: 16px;
    }
}

@media only screen and (max-width: 450px) {
    .msh-img {
        max-width: 95%;
        margin: 0 auto;
    }

    .slide-counter {
        bottom: 4px;
        left: 12px;
    }
}


@media only screen and (max-width: 400px) {
    .lt-400 {
        display: initial;
    }

    .main-nav-mobile {
        margin-left: 0;
    }

    .main-nav-icon {
        padding-left: 0;
    }

    .msh-text-big {
        font-size: 200%;
    }

    /*.child-section-intro {
        padding: 100px 0 0 0;
        background: none;
    }*/

    .child-text-container-left.lred-r {
        border-bottom: 4px solid var(--lred);
    }

    .child-text-container-left.violet-r {
        border-bottom: 4px solid var(--violet);
    }

    .child-text-container-left.purple-r {
        border-bottom: 4px solid var(--purple);
    }

    /*.child-text-container-left,
    .child-text-container-right {
        padding: 20px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }*/

    .padded-lg {
        padding: 1.8em 1em;
    }

    .child-text-container-right .padded-lg {
        padding: 2em;
    }

    .padded-lg.pb-0 {
        padding-bottom: 0;
    }

    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="file"],
    input[type="range"],
    input[type="date"],
    textarea,
    select {
        min-width: 0;
    }

    .col-in-portrait .nav-buttons {
        margin-bottom: 0.75em;
    }
}

@media (max-width: 360px) {
    .child-text-container-right .padded-lg {
        padding: 1.8em 1em;
    }
}
