:root {
    --main: #0E838C;
    --secondary: #1fa8f5;
    --border: #E8E4E0;
    --menu: #0E838C;
    --bannerBg: #5ec6b0;
    --white: #fff;
    --green: #4ABA46;
    --darkGreen: #70AD47;
    --lightGreen: #4BC174;
    --lighterGreen: #50C8A7;
    --blue: #4472C4;
    --lighterBlue: #55C3CF;
    --darkBlue: #2F5496;
    --red: #f51f3d;
    --lighterRed: #F56C1F;
    --yellow: #f5d71f;
    --lighterYellow: #F5E71F;
    --black: #202020;
    --gray: #F6F4F1;
    --footer: #2e5a75;
    --page-background: #fff;
    --progress: #70AD47;
    --tableBorder: #d8d8dc;
    --tableHover: #f5f5f5;
    --tableStripe: #f5f5f5;
    --main90: rgba(14, 131, 140, 0.9);
    --main80: rgba(14, 131, 140, 0.8);
    --main50: rgba(14, 131, 140, 0.5);
    --main30: rgba(14, 131, 140, 0.3);
    --main20: rgba(14, 131, 140, 0.2);
    --main10: rgba(14, 131, 140, 0.1);
    --mainBanner: #0e838c;
    --block: #4472C4;
    /* --mainBanner: #F56C1F;
    --card1: #F56C1F;
    --card2: #1fa8f5;
    --card3: #4ABA46;
    --card4: #70AD47;
    --card5: #4BC174;
    --card6: #50C8A7; */

    /* --mainBanner: #277DA1;
    --card1: #F9C74F;
    --card2: #90BE6D;
    --card3: #43AA8B;
    --card4: #4D908E;
    --card5: #577590;
    --card6: #277DA1; */

    /* --mainBanner: #42a5f5;
    --card1: #42a5f5;
    --card2: #2196f3;
    --card3: #1e88e5;
    --card4: #1976d2;
    --card5: #1565c0;
    --card6: #0d47a1; */


    /* --mainBanner: #0e838c;
    --card1: #52b69a;
    --card2: #34a0a4;
    --card3: #168aad;
    --card4: #1a759f;
    --card5: #1e6091;
    --card6: #184e77; */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.hide {
    display: none !important;
}

body {
    font-family: "LatoLatinWeb", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #252529;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    /* background-color: #f4f4f4; */
}

body a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.55;
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flex-container-vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.btn {
    border: none;
    color: white;
    padding: 0.6em 1.2em;
    border-radius: 0.4em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), background-color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}

.btn:active {
    box-shadow: 0px 5px 5px -3px rgb(0 0 0 / 20%), 0px 8px 10px 1px rgb(0 0 0 / 14%), 0px 3px 14px 2px rgb(0 0 0 / 12%)
}

.btn.disabled {
    pointer-events: none;
    user-select: none;
    opacity: .6;
}

.btn.loading,
.btn[disabled] {
    pointer-events: none;
    user-select: none;
}

.btn-primary {
    background-color: var(--main);
}

.btn-primary:hover {
    background-color: var(--main90);
    color: var(--white);
}

.btn-primary.btn-border-only {
    background-color: var(--page-background);
    border: 1px solid var(--main);
    color: var(--main);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-danger {
    background-color: var(--red);
}

.btn-default {
    background-color: #E1E5EC;
    color: var(--black);
}

.btn-link {
    background-color: transparent;
    color: var(--main);
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: none;
    user-select: none;
}

.btn-link:hover {
    text-decoration: underline;
    color: var(--main90);
    box-shadow: none;
}

.btn-link:hover i {
    text-decoration: none;
}

.btn-link:active {
    box-shadow: none;
}

.btn.btn-sm {
    padding: 0.55em 1.2em .45em;
    font-size: .8rem;
}

.btn.btn-sm .icon {
    font-size: 1rem;
    margin-right: .5;
}

.btn.btn-block {
    display: block;
    position: relative;
    width: 100%;
    padding: 0.6em 1.2em 0.6em 1.2em;
}

.btn .icon {
    margin: -.1em .4em 0 -.2em;
    font-size: 1.2rem;
}

.btn.btn-block .icon {
    position: absolute;
    left: .6em;
    margin-right: 0;
    font-size: 1.4rem;
}

hr {
    border: 0;
    border-top: 1px solid #e0e0e0;
}

.panel {
    border-radius: 0.4em;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12), 0 1px 8px 0 rgba(0, 0, 0, 0.20);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.content-narrow {
    flex: 1 1 auto;
    max-width: 800px;
    width: 100%;
}

.content-wide {
    flex: 1 1 auto;
    max-width: 1280px;
    width: 100%;
    /* margin: 0 auto; */
}

.toastify {
    font-size: 1rem;
}

.toastify-info {
    background: linear-gradient(60deg, #26c6da, #00acc1);
}

.toastify-info .toastify-content {
    color: var(--white);
}

.toastify-success {
    background: linear-gradient(60deg, #66bb6a, #43a047);
}

.toastify-success .toastify-content {
    color: var(--white);
}

.toastify-error {
    background: linear-gradient(60deg, #ef5350, #e53935);
}

.toastify-error .toastify-content {
    color: var(--white);
}

.toastify-warning {
    background: linear-gradient(60deg, #ffa726, #fb8c00);
}

.toastify-warning .toastify-content {
    color: var(--white);
}

.text-link {
    color: var(--blue);
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.terms-container {
    margin: 1rem 0;
    height: calc(100vh - 14rem);
    padding: 0 1.5rem;
}

.terms-preview {
    height: calc(100vh - 30rem);
    min-height: 300px;
    /* margin: 1rem; */
    /* padding: 1rem; */
    /* position: relative; */
    /* display: inline-block; */
    background-color: #eee;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.20);
}

.terms-agree-container {
    width: 50%;
    margin: 1rem auto;
    gap: 1rem;
}

body.signIn-active {
    overflow: hidden;
}

.signIn {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    /* perspective: 10000px; */
    overflow: hidden;
    z-index: 9;
    /* transition: background-color 280ms cubic-bezier(0.4, 0, 0.2, 1); */
}

.signIn.active {
    background-color: rgba(0, 0, 0, 0.5);
}

.signIn-poster {
    /* flex: 1 1 auto; */
    width: calc(100vw - 4rem);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    transform-origin: center left;
    /* -webkit-transform: translateX(-100%); */
    transform: translateX(-100%);
    /* -webkit-transform-style: preserve-3d; */
    /* transform-style: preserve-3d; */
    /* -webkit-transition: 0.6s; */
    /* transition: all 0.6s ease-in-out; */
    overflow: hidden;
}

.signIn-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signIn.active .signIn-poster {
    /* -webkit-transform: translateX(0); */
    transform: translateX(-7rem);
}

.signIn-container {
    position: fixed;
    left: 100vw;
    top: 0;
    width: 38rem;
    /* flex: 1 1 40rem; */
    height: 100%;
    padding: 0 0 10rem;
    justify-content: center;
    background-image: linear-gradient(to bottom, #fff, #f4f4f4);
    /* -webkit-transform: translateX(100%); */
    /* transform: translateX(100%); */
    /* transition: transform 0.6s ease-in-out; */
    box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%);
}

.signIn.active .signIn-container {
    /* -webkit-transform: translateX(0); */
    transform: translateX(-100%);
}

.signIn.backstage .signIn-poster {
    width: 0;
}

.signIn.backstage .signIn-container {
    top: -40vh;
    width: 100%;
    height: 100vh;
    /* position: relative;
    pointer-events: none; */
    left: 0;
    z-index: -1;
}

.signIn-logo {
    font-family: "Nunito Sans", Sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: .5rem;
    text-align: center;
}


header {
    font-family: "Nunito Sans", Sans-serif;
    background-color: #2e5a75;
    /* border-bottom: 1px solid #E8E4E0; */
    position: relative;
    top: 0;
    width: 100%;
    z-index: 2;
}

.topbar {
    justify-content: space-between;
    height: 5.5rem;
    padding: 0.5rem 2rem;
    left: 0;
    width: 100%;
    z-index: 999;
    /* border-bottom: 1px solid var(--border); */
    /* -webkit-box-shadow: 0 2px 10px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 16%); */
    background: #0E838C;
}

.topbar-icon {
    display: none;
}

.logo {}


.logo__image {
    box-shadow: none;
    padding-right: 0.5rem;
}

.logo-image img {
    height: 2.5rem;
    width: 2rem;
}

.logo-text {
    align-items: baseline;
    box-shadow: inset 2px 0px 0px #e8e4e0;
    color: var(--white);
    display: flex;
    padding: 0 0.5rem;
}

.logo-text-large {
    font-size: 1.125rem;
    font-weight: 700;
}

.logo-text-small {
    font-size: .75rem;
}

.topbar-menu {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.user-profile {
    padding: 0 2rem;
    position: relative;
    font-size: 1rem;
}

.user-profile img {
    height: 3.5rem;
    width: 3.5rem;
}

.userInfo {
    margin-left: .5rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--white);
}

.dropdown-menu {
    position: absolute;
    background: #ffffff;
    top: 58px;
    right: 0;
    display: none;
    width: 15rem;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-radius: 2px;
    -webkit-box-shadow: 0 0px 10px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 16%);
}

.user-profile.active .dropdown-menu {
    display: block;
    z-index: 999;
}


.dropdown-item {}

.dropdown-item a {
    padding: 0.75em 1em;
    text-align: left;
    display: block;
    width: 100%;
    color: #666666;
    position: relative;
    /* -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s; */
    border-radius: 2px;
}

.dropdown-item a:hover {
    background-color: #f4f4f4;
}

.dropdown-item.disabled {
    background-color: #f4f4f4;
    pointer-events: none;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



header nav {
    display: none;
    margin: auto;
    max-width: 84rem;
}

.nav-list {
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0 0.05rem 0 0.05rem;
}

.nav-item.disabled {
    cursor: wait
}

.nav-link {
    color: var(--white);
    display: block;
    font-size: .875rem;
    /* font-weight: 700; */
    line-height: 1.25rem;
    padding: 1.125rem 0.5rem;
    position: relative;
    margin: 0;
}

.nav-link.disabled {
    pointer-events: none;
}

.nav-link[aria-expanded] {
    padding: 1.125rem 1.875rem 1.125rem 0.5rem;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active,
.nav-item.current-page .nav-link {
    color: var(--white);
    outline: none;
}

.nav-link[aria-expanded]::before {
    border-color: #7C716A transparent transparent transparent;
    border-style: solid;
    border-width: 0.3125rem 0.3125rem 0 0.3125rem;
    content: "";
    height: 0;
    position: absolute;
    right: 0.8125rem;
    top: 50%;
    transform-origin: center center;
    transform: translateY(-50%);
    /* transition: border-color .1s ease, transform .3s ease; */
    width: 0;
}

.nav-link:focus:before,
.nav-link:hover:before,
.nav-link.active:before {
    border-color: var(--menu) transparent transparent transparent;
    transform: translateY(-50%) rotate(-180deg);
}


.nav-item.current-page .nav-link:before {
    border-color: var(--menu) transparent transparent transparent;
}

.nav-link:after {
    background-color: var(--menu);
    bottom: 0;
    content: "";
    height: 0.25rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    /* transition: width .1s ease; */
    visibility: visible;
    width: 0;
}

.nav-link:focus:after,
.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-item.current-page .nav-link:after {
    width: 100%;
}



.nav-link .fa {
    margin-right: 0.5rem;
}

.nav-item-menu {
    display: none;
    position: absolute;
    margin-top: -4px;
    padding: 0;
    background: var(--white);
    /* border-top: 4px solid var(--menu); */
    /* border: 1px solid var(--menu); */
    opacity: 0;
    transform-origin: top left;
    /* transform: scale(0.5); */
    /* transition: opacity .3s ease; */
    z-index: 1;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 20%);
}

.nav-link:focus+.nav-item-menu,
.nav-link:hover+.nav-item-menu,
.nav-link.active+.nav-item-menu,
.nav-item-menu.active {
    display: block;
    opacity: 1;
}

.nav-item-menu.animate {
    /* transform: scale(1); */
}

.nav-item-menu::before {
    background-color: var(--menu);
    top: 0;
    content: "";
    height: 0.25rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    /* transition: width .1s ease; */
    visibility: visible;
    width: 100%;
}

.nav-link:focus+.nav-item-menu.animate::before,
.nav-link:hover+.nav-item-menu.animate::before,
.nav-link.active+.nav-item-menu.animate::before,
.nav-item-menu.active.animate::before {
    width: 100%;
}


.nav-item-menu-item {
    display: block;
    /* padding: .5em 1.5em; */
}

.nav-item-menu-item:hover {
    background: var(--menu);
}

.nav-item-menu-item:hover .nav-item-link {
    color: var(--white);
}

.nav-item-link {
    color: var(--menu);
    display: block;
    font-size: .875rem;
    font-weight: 800;
    line-height: 1.25rem;
    padding: 1.125rem 1.5rem;
    position: relative;
    margin: 0;
}

footer {
    background: var(--footer);
    color: var(--white);
    padding: 2.5rem 0 3rem;
    border-top: 1px solid #E8E4E0;
    text-align: center;
}

.footer-content {
    display: inline-block;
    text-align: left;
    font-size: 1rem;
}

.footer-content a {
    color: var(--white);
}

.footer-content a:hover {
    text-decoration: underline;
}

main,
.main {
    flex: 1 1 auto;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    background: var(--page-background);
    /* margin-top: 7.5rem; */
    overflow-x: hidden;
}

.page {
    flex: 1 1 auto;
    align-items: center;
    /* padding-top: 1rem; */
    font-size: 1rem;
    opacity: 0;
    transition: opacity .1s ease;
}

.page.backstage,
.signIn.backstage {
    z-index: -1;
    height: 0;
    opacity: 0;
    position: fixed;
    user-select: none;
    pointer-events: none;
}

.page.active {
    opacity: 1;
}

.page-header {
    background-color: var(--bannerBg);
    /* background-image: url("/img/AdobeStock_428313407.png"); */
    /* color: var(--white); */
    width: 100%;
    padding: 2rem;
}

.page-header-title {
    font-size: 2.5rem;
    margin-left: 15%;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.page-header-subtitle {
    font-size: 1.125rem;
    line-height: 1.25rem;
    margin: 0;
    margin-left: 15%;
}

.page-content {
    width: 100%;
    margin: 0 auto;
}


.banner {
    margin: 1em auto;
    padding: 0.3em 1em;
    min-width: 80%;
    background: #43AA8B;
    color: var(--white);
    text-align: center;
    font-size: 1.75em;
    /* font-weight: bold; */
    font-stretch: condensed;
    border-radius: .25em;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.20);
}

.mosc-block-container {
    align-items: stretch;
}

.mosc-block {
    flex: 1 1 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mosc-block a {
    margin: .5em 0;
    padding: 0.75em;
    height: 5em;
    /* width: 100%; */
    min-width: 10rem;
    border-radius: .5em;
    background-color: var(--block);
    border: 3px solid var(--block);
    color: var(--white);
    font-size: 1.3542vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.20);
}

.mosc-block a:hover {
    border: 3px solid var(--black);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.20);
}

.mosc-block-next {
    padding: 0 .5vw;
    width: 3vw;
    /* min-width: 4rem; */
    /* height: 5rem; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mosc-block-next::after {
    content: "";
    background: #B0BCDE;
    width: 2.5vw;
    height: 2.5vw;
    clip-path: polygon(0 0.5vw, calc(100% - 0.75vw) 0.5vw, calc(100% - 0.75vw) 0, 100% 50%, calc(100% - 0.75vw) 100%, calc(100% - 0.75vw) calc(100% - 0.5vw), 0 calc(100% - 0.5vw));
}

.resource-block-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: stretch;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
    /* margin-top: 7.5rem; */
    overflow-x: hidden;
}

.resource-block {
    display: flex;
    align-items: center;
}

.resource-block a {
    font-size: 0.8333vw;
    position: relative;
    margin: 2em 0;
    padding: 0.75em;
    height: 7em;
    width: 100%;
    max-width: 10em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #DAE3F3;
}

.resource-block a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5vw;
    /* opacity: 0; */
    z-index: 1;
    box-shadow: 0 0 0.5vw 0.5vw #4472c4;
}

.resource-block a::after {
    content: attr(data-title);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: .75em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid var(--white);
    background-color: #DAE3F3;
    z-index: 1;
}

.resource-block a:hover::after {
    background-color: #8FAADC;
}

.mosc-card {
    flex: 0 0 30%;
    height: 15rem;
    position: relative;
    background-color: var(--white);
    border-radius: 2.5em;
    margin-bottom: 1.5em;
    padding: 1em;
    overflow: hidden;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.20);
    transition: all .25s ease;
}

.mosc-card.has-decroation-triange {
    border-bottom-right-radius: 0;
}


.mosc-card:hover {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.20);
}

.mosc-card-link {
    color: var(--black);
    flex: 1 1 auto;
}

.mosc-card-title {
    position: relative;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.2;
    margin: .5em 1.5em .5em .5em;
}

.mosc-card-title::before {
    content: "More detail...";
    position: absolute;
    top: 1em;
    right: -2.7em;
    font-size: 0.65em;
    font-weight: 400;
    line-height: 1.2;
    writing-mode: vertical-rl;
    white-space: nowrap;
    margin: .5em 1.5em .5em .5em;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .25s ease, height.25s ease;
}

.mosc-card:hover .mosc-card-title::before {
    opacity: 1;
    height: 10rem;
}

.mosc-card-title::after {
    content: '';
    display: block;
    width: .5em;
    height: .5em;
    border-right: solid 2px;
    border-bottom: solid 2px;
    position: absolute;
    top: 0.25em;
    right: -0.5em;
    transform-origin: center center;
    transform: rotate(-45deg);
    transition: all .3s linear;
}

.mosc-card:hover .mosc-card-title::after {
    transform: rotate(-45deg) translateX(1px);
    border-right: solid 3px;
    border-bottom: solid 3px;
}

.mosc-card-content {
    padding: 1em;
    margin-right: 3rem;
}

.mosc-card-decroation {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 6rem;
    width: 6rem;
}

.mosc-card-decroation-triangle {
    width: 0;
    height: 0;
    border-top: 6rem solid transparent;
    border-bottom: 6rem solid transparent;
    border-left: 6rem solid var(--green);
    transform-origin: center right;
    transform: rotate(45deg);
}

.mosc-card-decroation-double-line {
    width: 2rem;
    height: 12rem;
    border-top: none;
    border-bottom: none;
    border-left: .75rem solid var(--darkGreen);
    border-right: .75rem solid var(--darkGreen);
    transform: rotate(45deg) translateY(-2rem);
}

.mosc-card-step {
    font-family: "LatoLatinWebBlack", "Helvetica", Arial, sans-serif;
    font-size: 1.625rem;
}

.singup-poster {
    cursor: pointer;
}

.singup-poster:hover .btn {
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}

.singup-poster:hover .pointer {
    animation-duration: 2s;
    animation-name: pointerClick;
    animation-iteration-count: infinite;
}

@keyframes pointerClick {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(2em) scale(1);
    }

    35% {
        transform: translateY(2em) scale(0.9);
    }

    40% {
        transform: translateY(2em) scale(1);
    }

    60% {
        transform: translateY(2em) scale(1);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.contact-form {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    width: 100%;
    /* max-width: 40rem; */
    padding: 1em;
}

.contact-form .contact-textarea {
    width: 100%;
    height: 10rem;
    padding: 1em;
    margin: 1em 0;
    border: none;
    border-radius: 1em;
    font-size: 0.8333vw;
    background-color: var(--page-background);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.20);
}

.contact-form .contact-text {
    font-size: 1rem;
    width: 100%;
}

.contact-form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
    width: 100%;
}

.contact-form-row .contact-form-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    width: 100%;
    max-width: 40rem;
    padding: 1em 0;
}

.svg-checkbox {}

.svg-checkbox input[type=checkbox] {
    display: none;
    pointer-events: none;
}

.svg-checkbox input[type=checkbox]+label {
    cursor: pointer;
    display: flex;
    align-content: center;
    align-items: baseline;
    user-select: none;
}

.svg-checkbox input[type=checkbox]+label svg {
    width: 1.6em;
    stroke: var(--black);
    stroke-width: 6px;
    fill: var(--page-background);
    transition: stroke .3s linear;
}

.svg-checkbox input[type=checkbox]+label svg .box {
    stroke-dasharray: 320;
    stroke-dashoffset: 0;
    fill: var(--page-background) !important;
    transition: stroke-dashoffset .3s linear;
}

.svg-checkbox input[type=checkbox]+label svg .check {
    stroke-dasharray: 70;
    stroke-dashoffset: 70;
    fill: none;
    transition: stroke-dashoffset .3s linear;
}

.svg-checkbox input[type=checkbox]+label span {
    /* padding-top: .2em; */
    margin-left: 0.3em;
    color: var(--black);
    transform: translateY(-0.45em);
    transition: color .5s;
}

.svg-checkbox input[type=checkbox]:checked+label svg {
    stroke: var(--lighterBlue);
}

.svg-checkbox input[type=checkbox]:checked+label svg .box {
    stroke-dashoffset: 320;
}

.svg-checkbox input[type=checkbox]:checked+label svg .check {
    stroke-dashoffset: 0;
}

.svg-checkbox input[type=checkbox]:checked+label span {
    color: var(--lighterBlue);
}


.process-container {
    margin: 1rem auto 1.25rem;
    padding: 0;
}

.process-progress-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: .5rem;
    background: #f2f2f2;
    z-index: 0;
}

.process-progress-bar-fill {
    height: .5rem;
    background-color: var(--progress);
    transition: width .3s ease;
}

.process-progress-bar-fill-shadow {
    position: absolute;
    height: .5rem;
    background-color: var(--progress);
    transition: width .3s ease;
    opacity: .3;
}

.process-shape-container {
    gap: 3rem;
}

.process {
    position: relative;
    width: 8rem;
    height: 4rem;
    text-align: center;
    color: var(--white);
    cursor: pointer;
    user-select: none;
    opacity: .6;
    transition: all .25s ease;
    z-index: 1;
}

.process.active,
.process:hover {
    opacity: 1;
}

.process a {
    flex: 1 1 auto;
    padding: 0px 0.5rem;
    color: var(--white);
    justify-content: center;
    transform: translateX(-.7rem);
}

.process::before {
    content: '';
    display: block;
    width: 100%;
    height: 2rem;
    width: 8rem;
    background-color: var(--progress);
    position: absolute;
    top: 50%;
    transform: skewX(45deg) translate(1rem, -2rem);
    z-index: -1;
}

.process::after {
    content: '';
    display: block;
    width: 100%;
    height: 2rem;
    width: 8rem;
    background-color: var(--progress);
    position: absolute;
    top: 50%;
    transform: skewX(-45deg) translateX(-1rem);
    z-index: -1;
}

.tabs-body-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: var(--page-background);
    z-index: 1;
}

.tabs-body {
    /* padding: 1.3em 0; */
    position: relative;
    /* overflow: hidden; */
    /* gap: 2.5rem; */
    align-items: flex-start;
    transition: all .5s ease-in-out;
}

.tab-body {
    flex: 0 0 100%;
}


.dialog-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    width: 100%;
    height: 100vh;
    z-index: 998;
    transition: opacity 0.3s ease-in-out 0.3s;
}

.dialog-backdrop.backstage {
    width: 0;
    height: 0;
    opacity: 0;
    z-index: -1;
    user-select: none;
    pointer-events: none;
}


.dialog-backdrop.show {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.dialog-box {
    position: fixed;
    top: calc(50vh - 2rem);
    left: 50%;
    width: 30em;
    max-height: fit-content;
    transform: translate(-50%, -25%);
    background-color: var(--page-background);
    border-radius: .5em;
    padding: 1em 1.25em;
    opacity: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

.dialog-box.backstage {
    z-index: -1;
    user-select: none;
    pointer-events: none;
}

.dialog-box.show {
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all 0.3s ease-in-out 0.3s;
}

.dialog-box-title {
    font-family: 'effra_bold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: .25em;
}

.dialog-box-title .icon {
    font-size: 21px;
    position: relative;
    top: 2px;
}

.dialog-box-content {
    line-height: 1.5;
    padding: .5em 0;
    font-size: 1rem;
    /* margin-bottom: 1em; */
    border-top: 1px solid rgb(0, 0, 0, 0.1);
}

.page input[type=text],
.page input[type=email],
.page input[type=number],
.dialog-box-content input[type=text],
.dialog-box-content input[type=email],
textarea,
select {
    width: 100%;
    border: 2px solid var(--main30);
    padding: .5em;
    border-radius: .3em;
    transition: boder 0.3s ease-in-out;
}

.page input[type=text]:focus,
.page input[type=email]:focus,
.page input[type=number]:focus,
.dialog-box-content input[type=text]:focus,
.dialog-box-content input[type=email]:focus,
textarea:focus,
select:focus {
    border: 2px solid var(--main50);
}

.page input[type=text]:focus-visible,
.page input[type=email]:focus-visible,
.page input[type=number]:focus-visible,
.dialog-box-content input[type=text]:focus-visible,
.dialog-box-content input[type=email]:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}

select option {
    padding: 0.5em;
}

select:invalid {
    color: gray;
}

.copy-icon,
.input-icon-suffix {
    position: absolute;
    bottom: 1.2rem;
    right: .5rem;
    /* transform: translateY(-50%); */
    line-height: 1.5rem;
    color: var(--main50);
    cursor: pointer;
    transition: color 0.15s ease-in-out;
}

.input-icon-suffix {
    right: 0;
}

.copy-icon:hover,
.input-icon-suffix:hover {
    color: var(--main);
}

.copy-icon:active,
.input-icon-suffix:active {
    color: var(--main70);
}

.copy-icon .fa,
.input-icon-suffix .fa {
    font-size: 1.5rem;
}

.copy-icon span,
.input-icon-suffix span {
    display: inline-block;
    /* font-size: 1.25rem; */
    margin-left: .5rem;
    line-height: 1;
    vertical-align: middle;
}

textarea {
    font-family: Arial, Helvetica, sans-serif;
    /* width: 440px !important; */
    /* min-height: 5vh !important; */
    /* max-height: 50vh !important; */
}

.table-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 1px solid var(--tableBorder);
    border-radius: .3em;
}

.table-btn-container {
    justify-content: flex-end;
    gap: 1rem;
    padding: .5em 1em;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
}


.table thead {
    background-color: var(--white);
    border-top: 1px solid var(--tableBorder);
    border-bottom: 1px solid var(--tableBorder);
}

.table th {
    padding: 0.75em 1.214em;
    text-align: left;
}

.table td {
    padding: 0.5em 1.214em;
    text-align: left;
}

.table tbody tr:nth-child(odd) {
    background-color: var(--tableHover);
}

.table tbody tr:hover {
    background-color: var(--tableHover);
}

.table tr:hover td,
.table tr:hover td a,
.table tr:hover td a:hover,
.table tr:hover td a:active,
.table tr:hover td a:visited,
.table tr:hover td a:focus {
    color: var(--main);
}

table .btn {
    margin: 0 0.25em;
}

.dialog-box-content .character-count {
    font-size: .75rem;
    color: var(--navy);
    margin: -.5em 0 0;
}

.dialog-box-content .form-group {
    margin-bottom: .5em;
}

.dialog-box-content .form-control.disabled {
    opacity: .5;
    pointer-events: none;
}

.dialog-box-content .form-check-inline {
    margin: .25em;
    /* padding-top: 5px; */
    /* padding-bottom: 5px; */
}

.dialog-box-content .form-check-input[type=radio] {
    position: absolute;
    left: -9999px;
}

.dialog-box-content .form-check-input[type=radio]+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.dialog-box-content .form-check-input[type=radio]+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25em;
    height: 1.25em;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

.dialog-box-content .form-check-input[type=radio]+label::after {
    content: '';
    width: 0.75em;
    height: 0.75em;
    background: var(--main);
    position: absolute;
    top: 50%;
    left: .25em;
    transform-origin: 50% 0%;
    transform: translateY(-50%);
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.dialog-box-content .form-check-input[type=radio]:not(:checked)+label::after {
    opacity: 0;
    -webkit-transform: scale(0) translateY(-50%);
    transform: scale(0) translateY(-50%);
}


.dialog-box-content .form-check-input[type=radio]:checked+label::after {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-50%);
    transform: scale(1) translateY(-50%);
}


.dialog-box-content input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid var(--main);
    outline-offset: max(2px, 0.15em);
}


.dialog-box-button {
    margin-top: .5em;
    justify-content: flex-end;
    gap: 1em;
}

.form-row {
    display: flex;
    align-items: baseline;
}

.form-row .form-group:not(:last-child) {
    flex: 1;
    margin-right: 1em;
}


.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .5em;
    padding: 0 0 1em 0;
    /* margin: 0 1rem; */
}

.form-group.form-group-horizontal {
    flex-direction: row;
    align-items: center;
}

.form-group.changed label {
    color: var(--main);
}

.form-group.changed label::before {
    content: ' +';
    color: var(--main);
}

.form-group.invalid {
    color: var(--red);
}

.form-group.invalid input,
.form-group.invalid textarea,
.form-group.invalid select {
    border: 2px solid var(--red);
}

.help-icon {
    position: relative;
    color: var(--lighterBlue);
    font-size: 1.25rem;
    margin-left: .125rem;
    cursor: pointer;
}

.help-icon-description {
    visibility: hidden;
    background-color: black;
    color: #fff;
    font-size: small;
    text-align: center;
    padding: .5rem;
    border-radius: .5rem;
    position: absolute;
    width: 10rem;
    top: 50%;
    left: 100%;
    transform: translate(.6rem, -50%);
    z-index: 1;
}

.help-icon-description::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
    border-width: .51rem;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.help-icon:hover .help-icon-description {
    visibility: visible;
}

.help-text {
    font-size: .75rem;
    color: var(--red);
    margin: -.5em 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.help-text.show {
    max-height: 100px;
    overflow: visible;
}



.col-50,
.col-80,
.col-100 {
    margin-left: auto;
    margin-right: auto;
}

.col-50 {
    width: 50%;
}

.col-80 {
    width: 80%;
}

.col-100 {
    width: 100%;
}

.flex-100,
.flex-12 {
    flex: 0 0 100%;
}

.flex-11 {
    flex: 0 0 91.666667%;
}

.flex-10 {
    flex: 0 0 83.333333%;
}

.flex-9 {
    flex: 0 0 75%;
}

.flex-66,
.flex-8 {
    flex: 0 0 66.666667%;
}

.flex-7 {
    flex: 0 0 58.333333%;
}

.flex-50,
.flex-6 {
    flex: 0 0 50%;
}

.flex-5 {
    flex: 0 0 41.666667%;
}

.flex-33,
.flex-4 {
    flex: 0 0 33.333333%;
}

.flex-25,
.flex-3 {
    flex: 0 0 25%;
}

.flex-20 {
    flex: 0 0 20%;
}

.flex-2 {
    flex: 0 0 16.666667%;
}

.flex-1 {
    flex: 0 0 8.333333%;
}

@media screen and (min-width: 992px) {
    .logo-image {
        box-shadow: inset -2px 0px 0px #e8e4e0;
        padding-right: 1.5rem;
        height: 5.5rem;
    }

    .logo-image img {
        height: 4rem;
        width: 3.25rem;
    }

    .logo-text {
        box-shadow: none;
        padding: 0 1rem;
    }

    .logo-text-large {
        font-size: 1.5rem;
    }

    .logo-text-small {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1200px) {
    header nav {
        display: block;
    }

    .page-content {
        width: 66.6667%;
    }
}

@media screen and (min-width: 1440px) {
    .logo-image img {
        height: 5.5rem;
        width: 4.5rem;
    }

    .logo-text {
        padding: 0 1rem 0 1.5rem;
    }

    .logo-text-large {
        font-size: 2rem;
    }

    .logo-text-small {}

    .nav-link {
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 1.5rem 0.5rem;
    }

    .nav-link[aria-expanded] {
        padding: 1.5rem 2rem 1.5rem 0.5rem;
    }
}