:root {
    --font: Source Sans Pro, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --algae: #309d9c;
    --algaeBorder: algaeBorder;
    --algaeLight: #d9f3f4;
    --algaeLightBorder: #c3edee;
    --firefish: #f36f62;
    --firefishLight: #fdede9;
    --firefishBorder: #ef5e50;
    --firefishLightBorder: #fadcd5;
    --starfish: #f39f62;
    --starfishLight: #fdf3e9;
    --starfishBorder: #ee8e4a;
    --starfishLightBorder: #f9e6d4;
    --giraffe: #f3b962;
    --giraffeLight: #fff4cb;
    --giraffeBorder: #eeb155;
    --giraffeLightBorder: #fbebb4;
    --beetle: #745bf3;
    --beetleBorder: #684df1;
    --beetleLight: #eee7ff;
    --beetleLightBorder: #dfd6f3;
    --cuttles: #124aff;
    --cuttlesLight: #e0e7ff;
    --cuttlesBorder: #0a41f5;
    --cuttlesLightBorder: #d2dbf8;
    --cuttlesFade: #dde5ff;
    --strawberryFrog: #7d213b;
    --strawberryFrogLight: #fce1e8;
    --chameleon: #28956c;
    --chameleonLight: #ccece0;
    --freshPig: #e25ed1;
    --freshPigLight: #fde9f6;
    --rubberMink: #4eb6c0;
    --rubberMinkLight: #d5f2f5;
    --inkySquid: #3c4141;
    --inkySquidLight: #e3e3e3;
    --textColor: #211a13;
    --labelColor: #211a13;
    --primaryColor: #211a13;
    --linkColor: #211a13;
    --blessingBg: #fffbf8;
    --blessingActiveBg: #f3eae2;
    --blessingBorder: #faf4ef;
    --blessingColor: #211a13;
    --blessingFade: #88817c;
    --planCoverBg: #f3eae2;
    --planCoverColor: #211a13;
    --planCoverBorder: #f3eae2;
    --planSectionColor: #211a13;
    --swarmBg: #fffbf8;
    --swarmBorder: #faf4ef;
    --swarmColor: #211a13;
    --swarmActive: #211a13;
    --swarmFade: #88817c;
    --smackBg: #fffefc;
    --smackColor: #211a13;
    --smackBorder: #faf4ef;
    --smackFade: #88817c;
    --swarmButtonBg: #faf4ef;
    --swarmButtonColor: #7f766d;
    --fishColor: #211a13;
    --fishHoverBg: #faf4ef;
    --moon-1:#211a13;
    --moon-2:#7f766d;
    --moon-3:#88817c;
    --moon-4:#efeeea;
    --moon-5:#f0f0f0;
    --serene-1:#c2b9af;
    --serene-2:#dbd3cb;
    --serene-3:#f3eae2;
    --serene-4:#faf4ef;
    --serene-5:#fffbf8;
    --serene-6:#fffefc;
    --error: red;
    --success: green;
    --warning: orange
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.article-section ul {
    list-style: unset;
}

*:focus{
    box-shadow: none !important;
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-flex {
    display: flex !important
}


.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem #00000026 !important
}

.position-sticky {
    position: sticky !important
}

.border {
    border: 1px solid var(--serene-4) !important
}

.border-top {
    border-top: 1px solid var(--serene-4) !important
}

.border-bottom {
    border-bottom: 1px solid var(--serene-4) !important
}

.border-start {
    border-left: 1px solid var(--serene-4) !important
}

.w-100 {
    width: 100% !important
}

.h-100 {
    height: 100% !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.align-items-center {
    align-items: center !important
}

.order-first {
    order: -1 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}


.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}


.pb-5 {
    padding-bottom: 3rem !important
}

.text-start {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important
}

@media (min-width:768px) {
   
    .mt-md-5 {
        margin-top: 3rem !important
    }

    .me-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

}

@media (min-width:992px) {

    .d-lg-block {
        display: block !important
    }

    .d-lg-none {
        display: none !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

}

@media (min-width:1200px) {

    .d-xl-inline {
        display: inline !important
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

}

@media (min-width:1200px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }

}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100:#f8f9fa;
    --bs-gray-200:#e9ecef;
    --bs-gray-300:#dee2e6;
    --bs-gray-400:#ced4da;
    --bs-gray-500:#adb5bd;
    --bs-gray-600:#6c757d;
    --bs-gray-700:#495057;
    --bs-gray-800:#343a40;
    --bs-gray-900:#212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, #ffffff26, #fff0);
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff
}

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

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }

}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {
    h1 {
        font-size: 2.5rem
    }

}

h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
    h2 {
        font-size: 2rem
    }

}

h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
    h3 {
        font-size: 1.75rem
    }

}

h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
    h4 {
        font-size: 1.5rem
    }

}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

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


ol,
ul {
    padding-left: 2rem
}

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

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

#menu-main-menu {
    margin-bottom: 0;
}

blockquote {
    margin: 0 0 1rem
}

b, strong {
    font-weight: bolder
}

small {
    font-size: .875em
}

a {
    text-decoration: underline
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

a>code {
    color: inherit
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

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

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

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

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

iframe {
    border: 0
}

[hidden] {
    display: none !important
}

.img-fluid,
.img-thumbnail {
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl
{
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container,
    .container-sm {
        max-width: 540px
    }

}

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

}

@media (min-width:992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }

}

@media (min-width:1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }

}

@media (min-width:1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1320px
    }

}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width:576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

}

@media (min-width:992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

}

@media (min-width:1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.dropdown,
.dropend,
.dropstart,
.dropup {
    position: relative
}


.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }

}

.nav-link:focus,
.nav-link:hover {
    color: #0a58ca
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}


@media (min-width:992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }


    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler,
    .navbar-expand-lg .offcanvas-header {
        display: none
    }

}

.text-with-logo p {
    margin-bottom: 0; 
    font-size: 12px; 
    font-weight: 600; 
    color: #211a13;
}

.text-with-logo img {
    max-width: 280px;
}

.get-started-sec h2 {
    color: #fff;
}

.get-started-sec p {
    font-size: 24px;
    color: #fff;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth
}

body,
html,
main {
    background-color: initial
}

body {
    background: #fffefc;
}

hr {
    color: var(--serene-2);
    margin: 0
}

.noise {
    position: fixed
}

.noise,
.noise-before:before {
    background-image: url(../img/noise.png);
    left: 0;
    top: 0;
    right: 0;
    pointer-events: none;
    bottom: 0;
    background-position: 0 0;
    background-size: auto;
    -webkit-user-select: none;
    user-select: none;
    background-repeat: repeat;
    opacity: .25
}

.noise-before:before {
    content: '';
    position: absolute
}

section.lg {
    padding-top: 120px;
    padding-bottom: 120px
}

section.md {
    padding-top: 60px;
    padding-bottom: 60px
}

.algae-txt {
    color: var(--algae)
}

.starfish-txt {
    color: var(--starfish)
}

@keyframes move-twink-back {
    0% {
        background-position: 0 0
    }

    to {
        background-position: -10000px 5000px
    }

}

@keyframes move-clouds-back {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 10000px 0
    }

}

.clouds,
.stars,
.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block
}

.stars {
    background: #000 url(../img/stars.png) repeat top;
    z-index: 0
}

.twinkling {
    background: #0000 url(../img/twinkling.png) repeat top;
    z-index: 1;
    animation: move-twink-back 200s linear infinite
}

.clouds {
    background: #0000 url(../img/clouds.png) repeat top;
    z-index: 2;
    opacity: .4;
    animation: move-clouds-back 200s linear infinite
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: var(--labelColor)
}

h6 {
    font-size: 13px
}

h5 {
    font-size: 15px
}

h4,
h5 {
    font-weight: 600
}

h4 {
    font-size: 18px
}

h3 {
    font-size: 20px
}

h2,
h3 {
    font-weight: 600
}

h2 {
    font-size: 26px
}

h1 {
    font-weight: 700;
    font-size: 34px
}

.hint {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--moon-1)
}

@media (min-width:768px) {
    .hint {
        font-size: calc(1vw + 1vh + .3vmin)
    }

}

@media (min-width:1200px) {
    .hint {
        font-size: 26px
    }

}

.hint a {
    color: inherit;
    text-decoration: underline
}

section h1 {
    font-size: 36px;
    font-weight: 700
}

@media (min-width:768px) {
    section h1 {
        font-size: 60px;
        line-height: 1.1
    }

}

section h2 {
    font-size: 30px;
    font-weight: 700
}

@media (min-width:768px) {
    section h2 {
        font-size: 36px
    }

}

section h2 .baller {
    line-height: 1.4
}

section h3 {
    font-size: 22px;
    font-weight: 700
}

@media (min-width:768px) {
    section h3 {
        font-size: 26px
    }

}

section p.lead {
    font-size: 20px;
	font-weight: 400;
    color: var(--moon-2)
}

@media (min-width:768px) {
    section p.lead {
        font-size: 28px
    }

}

@media (min-width:1200px) {
    section p.lead {
        font-size: 28px;
    }

}

section p.sublead {
    font-size: 20px;
    color: var(--moon-2)
}

@media (min-width:1024px) {
    section p.sublead {
        font-size: 22px;
    }

}

@media (min-width:1200px) {
    section p.sublead {
        font-size: 24px;
    }

}

section p.h3lead {
    font-size: 18px;
    color: var(--moon-2)
}

@media (min-width:768px) {
    section p.h3lead {
        font-size: calc(.75vw + .75vh + .4vmin)
    }

}

@media (min-width:1200px) {
    section p.h3lead {
        font-size: 20px
    }

}

a {
    color: var(--moon-1)
}

a:hover {
    color: var(--moon-2)
}

.border-serene-3 {
    border-color: var(--serene-3) !important
}

.giraffeLight-bg {
    background-color: var(--giraffeLight) !important
}

.beetleLight-bg {
    background-color: var(--beetleLight) !important
}

.cuttlesLight-bg {
    background-color: var(--cuttlesLight) !important
}

.freshPigLight-bg {
    background-color: var(--freshPigLight) !important
}

.frontpage-hero-content {
    text-align: center;
}

.frontpage-hero-animation .animation {
    margin: auto;
    max-width: 300px;
    min-height: 300px;
}

@media (min-width:768px) {
    .frontpage-hero-content {
        text-align: left;
    }
    .frontpage-hero-animation .animation {
        max-width: 376px;
    }

}

@media (max-width:991px) {
    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px
    }

}

.top-nav {
    padding-top: 16px;
    padding-bottom: 16px
}

.top-nav .nav-item {
    margin-bottom: 8px
}

.top-nav-logo img,
.top-nav-logo svg {
    width: 110px;
    height: auto;
    max-height: 28.14px;
}

.top-nav li .top-nav-link-button {
    white-space: nowrap;
    text-decoration: none;
    font-size: 18px;
}

.top-nav li .top-nav-link {
    text-decoration: none;
    padding: 0;
    color: var(--moon-1);
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap
}

.top-nav li .top-nav-link:hover {
    text-decoration: underline
}

@media (min-width:992px) {
    .top-nav .nav-item {
        margin-bottom: 0
    }
    .top-nav li .top-nav-link {
        padding-right: 16px;
        padding-left: 16px
    }

}

.top-nav.light li .top-nav-link {
    color: #fff
}

.top-nav.light .navbar-collapse.collapse {
    background-color: #000 !important
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 8px 6px;
    margin-top: 0;
    border-radius: 2px;
    margin-bottom: 0;
    background-color: var(--cuttlesLight);
    background-image: none;
    border: none
}

.navbar-toggle .icon-bar {
    background-color: var(--cuttles);
    display: block;
    height: 2.5px;
    border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 3.5px
}

.navbar-toggle .icon-bar {
    width: 22px;
    transition: all .2s
}

.navbar-toggle.x .icon-bar:first-of-type {
    transform: rotate(45deg);
    -webkit-transform-origin-x: 4px;
    -webkit-transform-origin-y: 4px
}

.navbar-toggle.x .icon-bar:nth-of-type(2) {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggle.x .icon-bar:nth-of-type(3) {
    transform: rotate(-45deg);
    -webkit-transform-origin-x: 3px;
    -webkit-transform-origin-y: -2px;
}

.navbar-toggle.x.collapsed .icon-bar:first-of-type {
    transform: rotate(0);
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(2) {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggle.x.collapsed .icon-bar:nth-of-type(3) {
    transform: rotate(0);
}

.footer .top {
    border-top: 1px solid var(--serene-4);
    border-bottom: 1px solid var(--serene-4);
    padding-top: 20px;
    padding-bottom: 20px
}

.footer .top .logo {
    width: 140px
}

.footer .top .lead {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 20px;
    color: var(--moon-2)
}

.footer .middle {
    padding-top: 30px;
    padding-bottom: 30px
}

.footer .bottom {
    border-top: 1px solid var(--serene-4);
    background-color: var(--serene-5);
    padding-top: 10px;
    padding-bottom: 10px
}

.footer .footer-links {
    margin-bottom: 15px
}

.footer .footer-links h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600
}

.footer .footer-links a {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.25;
    color: var(--moon-2);
    text-decoration: none
}

.footer .footer-links a:hover {
    text-decoration: underline
}

.footer .bottom-links a {
    color: var(--serene-1)
}

.footer .bottom-links p {
    margin: 0;
}

.btn {
    font-weight: 600;
    font-size: 15px;
    padding: 4px 8px;
    border-radius: 2px;
    line-height: normal
}

.btn,
.btn .active,
.btn:focus,
.btn:hover {
    background-color: var(--moon-4);
    color: var(--moon-1)
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 2.5px rgba(var(--cuttlesButtonBackground), .15)
}

.btn-lg {
    padding: 6px 12px;
    font-size: 18px
}

@media (min-width:768px) {
    .btn-lg {
        font-size: calc(1vw + 1vh + .3vmin)
    }

}

@media (min-width:1200px) {
    .btn-lg {
        font-size: 28px
    }

}

.btn-moon {
    background-color: #211a13;
    border: none;
    color: #faf4ef
}

.btn-moon:hover {
    color: #f4e7dc;
    background: #110d0a
}

.btn-moon.focus,
.btn-moon:focus {
    background: #211a13;
    color: #faf4ef;
    outline: none
}

.btn-moon.disabled,
.btn-moon:disabled {
    cursor: not-allowed;
    pointer-events: visible;
    box-shadow: none !important
}

.btn-algae {
    background-color: #d9f3f4;
    border: none;
    color: #309d9c
}

.btn-algae:hover {
    color: #2a8989;
    background: #c5edee
}

.btn-algae.focus,
.btn-algae:focus {
    background: #d9f3f4;
    color: #309d9c;
    outline: none
}

.btn-algae.disabled,
.btn-algae:disabled {
    cursor: not-allowed;
    pointer-events: visible;
    box-shadow: none !important
}

.btn-cuttles {
    background-color: #e0e7ff;
    border: none;
    color: #124aff;
    top: -2px;
    position: relative;
}

.btn-cuttles:hover {
    color: #003af8;
    background: #c7d3ff
}

.btn-cuttles.focus,
.btn-cuttles:focus {
    background: #e0e7ff;
    color: #124aff;
    outline: none
}

.btn-cuttles.disabled,
.btn-cuttles:disabled {
    cursor: not-allowed;
    pointer-events: visible;
    box-shadow: none !important
}

.btn-cuttles-dark {
    background-color: #124aff;
    border: none;
    color: #e0e7ff
}

.btn-cuttles-dark:hover {
    color: #c7d3ff;
    background: #003af8
}

.btn-cuttles-dark.focus,
.btn-cuttles-dark:focus {
    background: #124aff;
    color: #e0e7ff;
    outline: none
}

.btn-cuttles-dark.disabled,
.btn-cuttles-dark:disabled {
    cursor: not-allowed;
    pointer-events: visible;
    box-shadow: none !important
}

.btn-tab {
    background-color: var(--serene-4);
    border: none;
    color: var(--moon-1);
    font-size: 18px;
    display: inline-block
}

.btn-tab.active,
.btn-tab:hover {
    background-color: #211a13 !important;
    border: none !important;
    color: #faf4ef !important
}

a.btn {
    text-decoration: none
}

.blob {
    font-weight: 800;
    background-color: var(--serene-4);
    letter-spacing: .5px;
    position: relative;
    color: var(--serene-1);
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 15px;
    background-size: cover !important
}

.blob,
.blob img {
    width: 30px;
    height: 30px;
    border-radius: 2px
}

.blob-35 {
    font-size: 16px;
    width: 35px;
    height: 35px
}

.blob-35 svg {
    width: 25px;
    height: 25px
}

.baller {
    padding: 0 2px;
    line-height: 1;
    border-radius: 2px;
    font-weight: inherit;
    font-size: inherit
}

.baller.algae {
    background-color: var(--algaeLight);
    color: var(--algae)
}

.baller.giraffe {
    background-color: var(--giraffeLight);
    color: var(--giraffe)
}

.baller.beetle {
    background-color: var(--beetleLight);
    color: var(--beetle)
}

.baller.cuttles {
    background-color: var(--cuttlesLight);
    color: var(--cuttles)
}

.baller.chameleon {
    background-color: var(--chameleonLight);
    color: var(--chameleon)
}

.testimonials {
    text-align: left
}

.testimonial-section h2 ~ p{
    font-size: 24px;
    color: #7f766d;
}

.testimonials .testimonial {
    border: 1px solid var(--serene-4);
    border-radius: 2px;
    padding: 20px;
    font-size: 18px
}

.testimonials .testimonial .quote {
    font-style: italic
}

.testimonials .testimonial img {
	width: 50px;
    max-width: 100%;
    height: auto;
	border-radius: 2px;
}

.testimonials .testimonial .name {
    font-weight: 600;
    font-size: 15px
}

.testimonials .testimonial .company {
    color: var(--moon-3);
    font-weight: 500;
    font-size: 15px
}

.featured-in img {
    margin: 15px 20px 0;
    height: 55px;
    flex: 0 0 auto;
    width: auto
}

.achievements .achievement .award {
    font-weight: 600;
    font-size: 16px;
    color: var(--moon-1)
}

.achievements .achievement .source {
    font-weight: 500;
    font-size: 14px;
    color: var(--moon-3)
}

.achievements .achievement .rating {
    font-size: 12px
}

.achievements .achievement .rating i:not(:first-child) {
    margin-left: 2.5px
}

.lookbook {
    display: flex;
    flex-wrap: wrap;
    width: auto
}

.lookbook h3 {
    font-size: 20px
}

.lookbook-item {
    width: calc(50% - 15px);
    margin-bottom: 20px
}

@media (min-width:992px) {
    .lookbook-item {
        width: calc(33.33% - 15px)
    }

}

.lookbook-item.bigger {
    width: calc(50% - 15px)
}

.lookbook-link {
    width: 100%;
    color: inherit;
    display: block;
    text-decoration: none
}

.lookbook-link-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.lookbook-link-icon {
    background: var(--serene-4);
    text-align: center;
    height: 120px;
    position: relative;
    padding-top: 66.6%;
    border-radius: 6px
}

.lookbook-link-icon .icon {
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    transition: none 0s ease 0s;
    pointer-events: none;
    display: block;
    margin: auto;
    width: 100px
}

.lookbook-link-text {
    margin-top: 7.5px;
    display: flex;
    justify-content: space-between
}

.lookbook-link-heading {
    color: var(--moon-1);
    flex-basis: 100%;
    font-size: 18px;
    font-weight: 600
}

.lookbook-link:hover {
    text-decoration: underline
}

.lookbook-list a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 12.5px 0;
    border-bottom: 1px solid var(--serene-4);
    color: var(--moon-1);
    margin-bottom: 0;
    text-decoration: none
}

.lookbook-list a:hover {
    text-decoration: underline
}

.articles-card {
    height: auto;
    width: 100%;
    min-height: 120px;
    border-radius: 6px;
    background: #0000
}

.articles-card-link {
    width: 100%;
    color: var(--moon-1);
    display: block;
    text-decoration: none !important
}

.articles-card-link:hover .articles-card-text-title {
    color: var(--moon-1);
    text-decoration: underline !important
}

.articles-card-image:after {
    content: '';
    display: table;
    clear: both
}

.articles-card-image img,
.articles-card-image object,
.articles-card-image svg {
    border-radius: 2px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    transition: none 0s ease 0s;
    pointer-events: none;
    display: block
}

.articles-card-emoji {
    border-radius: 4px;
    width: 100%;
    aspect-ratio: 12/8;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--serene-5)
}

.articles-card-emoji span {
    line-height: 1.3;
    font-size: 54px
}

.articles-card-text {
    margin-top: 7.5px;
    margin-bottom: 20px
}

.articles-card-text-title {
    color: var(--moon-1);
    flex-basis: 100%;
    font-size: 18px;
    font-weight: 600;
    text-overflow: ellipsis;
    width: 100%;
    vertical-align: middle;
    line-clamp: 2;
    -webkit-line-clamp: 2
}

.articles-card-text-description,
.articles-card-text-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.articles-card-text-description {
    font-weight: 500;
    color: #36363b;
    line-clamp: 5;
    -webkit-line-clamp: 5
}

.articles-card-medium {
    min-height: 60px
}

.articles-card-medium .articles-card-link {
    display: flex
}

.articles-card-medium .articles-card-text {
    margin-top: 0;
    margin-left: 10px;
    height: 60px;
    display: flex;
    align-items: center
}

.articles-card-medium .articles-card-emoji,
.articles-card-medium .articles-card-image {
    margin-top: 0;
    height: 60px;
    width: 60px;
    min-height: 60px;
    max-width: 60px;
    min-width: 60px
}

.articles-card-medium .articles-card-emoji span,
.articles-card-medium .articles-card-image span {
    font-size: 20px
}

.author-written-by {
    color: var(--moon-2);
    margin: 0 0 5px;
    line-height: 1;
    font-size: 18px
}

.author-name {
    font-weight: 600
}

.author-date,
.author-name {
    line-height: 1;
    font-size: 16px
}

.author-date {
    color: var(--moon-2);
    margin: 0 0 5px
}

.article-progress {
    z-index: 99;
    position: sticky;
    top: 0
}

.article-progress-container {
    width: 100%;
    height: 1px;
    background: var(--serene-4);
    z-index: 99;
    top: 0
}

.article-progress-bar {
    height: 2px;
    background: var(--cuttles);
    width: 0
}

article .article-section {
    padding: 30px 15px;
    margin: 30px 0;
    border-radius: 4px
}

article .article-section:first-child {
    padding-top: 0;
    margin-top: 0
}

article h1 {
    font-size: 30px
}

@media (min-width:768px) {
    article h1 {
        font-size: 60px;
        font-weight: 700;
        line-height: 1.1
    }

}

article h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px
}

@media (min-width:768px) {
    article h2 {
        font-size: 30px;
        font-weight: 700
    }

}

article h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px
}

article li,
article p {
    line-height: 1.65;
    font-size: 18px;
    color: var(--moon-1)
}

@media (min-width:768px) {
    article li,
    article p {
        font-size: 20px
    }

}

article p {
    margin-bottom: 24px
}

article figure {
    text-align: center
}

article img {
    max-width: 100%
}

article ol,
article ul {
    padding-left: 20px
}

article blockquote {
    border-left: 10px solid var(--moon-1);
    margin: 15px 0;
    padding: 15px;
    quotes: "“" "”" "‘" "’"
}

article blockquote:before {
    color: var(--moon-1);
    content: open-quote;
    font-size: 4em;
    line-height: .1em;
    margin-right: .25em;
    vertical-align: -.4em
}

article blockquote cite {
    color: var(--moon-2);
    display: block
}

article blockquote p {
    display: inline
}

article .toc {
    position: sticky;
    top: 50px;
    background: var(--serene-4);
    padding: 20px;
    border-radius: 4px
}

article .toc h5 {
    color: var(--moon-1);
    font-size: 20px;
    margin-bottom: 15px
}

article .toc ul {
    list-style: none;
    padding-left: 0
}

article .toc ul li {
    line-height: 1.2;
    padding-bottom: 10px
}

article .toc ul li .toc-link {
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
    color: var(--moon-2)
}

article .toc ul li .toc-link.current {
    font-weight: 600;
    color: var(--moon-1)
}

.cuttles-information,
.cuttles-resource {
    padding-bottom: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 15px
}

.cuttles-information h4,
.cuttles-resource h4 {
    font-weight: 700;
    font-size: 24px
}

.cuttles-information p,
.cuttles-resource p {
    margin: 0;
    font-size: 18px;
    padding-bottom: 16px
}

.cuttles-information img,
.cuttles-resource img {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    border: 1px solid #f1f1f1
}

.cuttles-information .go-to-resource,
.cuttles-resource .go-to-resource {
    margin-top: 15px;
    text-align: center
}

.cuttles-information ul,
.cuttles-resource ul {
    padding: 0
}

.cuttles-information ul li,
.cuttles-resource ul li {
    margin-left: 5px;
    list-style: none;
    display: inline-block;
    padding-bottom: 10px
}

.cuttles-information ul li:first-child,
.cuttles-resource ul li:first-child {
    margin-left: 0
}

.cuttles-information ul li a,
.cuttles-resource ul li a {
    text-decoration: none;
    background-color: var(--serene-3);
    font-size: 16px;
    font-weight: 600;
    color: var(--moon-1);
    padding: 2px 4px;
    border-radius: 2px
}

.oldstyle figure {
    text-align: left
}

.oldstyle img {
    max-width: 300px
}

.resources-card-link {
    width: 100%;
    color: var(--moon-1);
    display: block;
    text-decoration: none !important
}

.resources-card-link:hover .articles-card-text-title {
    color: var(--moon-1);
    text-decoration: underline !important
}

.resources-card-image {
    position: relative;
    background-color: var(--serene-5)
}

.resources-card-perk {
    background: var(--cuttles);
    color: var(--cuttlesLight);
    left: 10px
}

.resources-card-deal,
.resources-card-perk {
    position: absolute;
    top: 10px;
    font-weight: 600;
    font-size: 12px;
    padding: 2px;
    line-height: 1;
    border-radius: 2px
}

.resources-card-deal {
    background: var(--moon-1);
    color: #fffefc;
    right: 10px;
    max-width: 160px
}

.resources-card-text-title {
    margin-top: 6px;
    color: var(--moon-1);
    flex-basis: 100%;
    font-size: 18px;
    font-weight: 600;
    text-overflow: ellipsis;
    width: 100%;
    vertical-align: middle;
    line-clamp: 2;
    -webkit-line-clamp: 2
}

.resources-card-text-description,
.resources-card-text-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.resources-card-text-description {
    font-size: 16px;
    font-weight: 500;
    color: #36363b;
    line-clamp: 5;
    -webkit-line-clamp: 5
}

.resources.list .resources-card-image {
    max-width: 230px
}

.border-grid {
    overflow: hidden
}

.border-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2px -2px 0;
    list-style: none;
    padding: 0
}

.border-grid-item {
    height: auto;
    border-right: 1px solid var(--serene-4);
    border-bottom: 1px solid var(--serene-4)
}

.border-grid-item a {
    text-decoration: none;
    color: inherit
}

.border-grid-item a:hover h4 {
    text-decoration: underline
}

.border-grid-item-emoji {
    font-size: 50px
}

.border-grid-item h4 {
    font-size: 28px
}

.border-grid-item p {
    font-size: 20px
}

@media (min-width:992px) {
    .border-grid-item:nth-child(3n) {
        border-right: none
    }

}

@media (max-width:991.98px) {
    .border-grid-item:nth-child(2n) {
        border-right: none
    }

}

@media (max-width:767.98px) {
    .border-grid-item {
        border-right: none
    }

}

.border-grid.border.giraffeLight-bg,
.border-grid.border.giraffeLight-bg .border-grid-item {
    border-color: var(--giraffeLightBorder) !important
}

.border-grid.border.beetleLight-bg,
.border-grid.border.beetleLight-bg .border-grid-item {
    border-color: var(--beetleLightBorder) !important
}

.border-grid.border.cuttlesLight-bg,
.border-grid.border.cuttlesLight-bg .border-grid-item {
    border-color: var(--cuttlesLightBorder) !important
}

.border-grid.border.freshPigLight-bg,
.border-grid.border.freshPigLight-bg .border-grid-item {
    border-color: var(--freshPigLightBorder) !important
}

.price-col {
    background-color: var(--serene-5);
    height: 580px;
    border-radius: 2px
}

.price-col-header {
    text-align: center;
    padding: 20px 12px
}

.price-col-header .title {
    font-size: 30px;
    font-weight: 700
}

.price-col-header .slogan {
    font-size: 20px;
    color: var(--moon-1)
}

.price-col-header .price {
    line-height: 1;
    font-size: 56px;
    font-weight: 700
}

.price-col-header .price span {
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: -10px
}

.price-col-header .interval {
    font-size: 18px
}

.price-col-button {
    padding: 0 12px 20px;
    text-align: center
}

.price-col-description {
    padding: 20px
}

.price-col-description h5 {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: .5px
}

.price-col-description h6 {
    font-size: 18px;
    position: relative;
    display: flex;
    margin-bottom: 12px;
    justify-content: flex-start;
    align-items: center
}

.price-col-description h6 strong {
    font-weight: 600 !important;
    margin-right: 3px
}

.price-col-description h6 i {
    width: 24px
}

.price-col.cuttles {
    background-color: var(--cuttlesLight);
    border: 1px solid var(--cuttlesLight)
}

.price-col.cuttles i {
    color: var(--cuttles)
}

.pay-monthly,
.pay-yearly {
    color: var(--moon-2);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 12px;
    letter-spacing: .5px
}

.pay-monthly.active,
.pay-yearly.active {
    color: var(--moon-1)
}

.breadcrumbs {
    padding: 5px;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    margin: 0;
    display: flex;
    width: 100%;
    height: 36px
}

.breadcrumbs-container {
    position: sticky;
    z-index: 99;
    top: 0;
    background-color: #fffefc;
}

.breadcrumbs-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--moon-1);
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline
}

.breadcrumbs-item .emoji {
    margin-right: 5px;
    text-decoration: none !important;
    display: inline-block
}

.breadcrumbs-item a {
    text-decoration: none;
    color: var(--moon-1);
    font-weight: 600
}

.breadcrumbs-item a:hover {
    text-decoration: underline
}

.breadcrumbs-item a:hover .emoji {
    text-decoration: none !important
}

.breadcrumbs-chevron {
    font-size: 12px;
    margin: 0 6px;
    color: var(--serene-1)
}

.toggle-btn {
    position: relative;
    width: 50px;
    height: 30px;
    border-radius: 40px
}

.toggle-btn input[type=checkbox] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2
}

.toggle-btn span {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid var(--serene-1);
    overflow: hidden;
    background-color: initial;
    border-radius: 40px;
    transition: border-color .1s ease
}

.toggle-btn span,
.toggle-btn span:before {
    position: absolute;
    border-color: var(--serene-1)
}

.toggle-btn span:before {
    content: '';
    top: -2px;
    width: 30px;
    height: 30px;
    border-width: 2px;
    border-style: solid;
    margin-left: 0;
    fill: #f090;
    border-radius: 50%;
    transform: translate(-3px);
    transition: border-radius .25s ease, transform .25s ease, width .25s ease, margin-left .25s ease, border-color .1s ease, background-color .1s ease
}

.toggle-btn input[type=checkbox]:checked+span {
    border-color: var(--moon-1)
}

.toggle-btn input[type=checkbox]:checked+span:before {
    border-color: var(--moon-1);
    background-color: var(--moon-1);
    background-size: 10px;
    background-position: 50%;
    transform: translate(18px)
}

.toggle-btn.rainbow input[type=checkbox]:checked+span:before {
	background-image: url("data:image/svg+xml,%0A%3Csvg width='170px' height='169px' viewBox='0 0 170 169' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Portfolio' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='lol' transform='translate(-0.000000, 0.000000)'%3E%3Cpath d='M169,0 C75.7060742,0.101793791 0.101793791,75.7060742 1.8189894e-12,169 L32.1746448,169 C32.3371831,93.5824765 93.4347169,32.4849427 168.85224,32.3224044' id='Path' fill='%23F7563C' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M167,0 C129.339884,0.0410912711 73.673217,0.0410912711 0,0 C0.0412271789,73.5486576 0.0412271789,129.215324 0,167 L1.0284153,167 C1.22557718,75.5172052 75.3379702,1.40481216 166.820765,1.20765027' id='Path' fill='%23745BF3' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M169,32.1746448 C93.5824765,32.3371831 32.4849427,93.4347169 32.3224044,168.85224 L64.4970492,168.85224 C64.6189625,111.187428 111.335188,64.4712029 169,64.3492896' id='Path' fill='%23EFCC00' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M169,64.3492896 C111.219895,64.3900372 64.3900372,111.219895 64.3492896,169 L96.5239344,169 C96.5646879,128.995446 128.995431,96.5812329 169,96.5608743' id='Path' fill='%2342BC59' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M169,96.5608743 C129.009856,96.6015975 96.6015975,129.009856 96.5608743,169 L128.809399,169 C128.829764,146.811785 146.811785,128.829764 169,128.809399' id='Path' fill='%230D98FF' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M169,169 C169.5,169 169.5,126 169.5,126 C146.027898,126 127,145.027898 127,168.5 C127,169 145.527898,169 169,169 Z' id='Oval' fill='%23745BF3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 30px
}

.image-with-content-sec p {
    font-size: 20px;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
    color: #7f766d;
}

accordion header {
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between
}

accordion header .question {
    font-size: 20px;
    color: var(--moon-1);
    font-weight: 700;
    padding: 12px 20px 12px 0
}

.accordian-sec p {
    font-size: 24px;
    color: #7f766d;
}

accordion header .question-toggle-wrap {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0
}

accordion header .question-toggle {
    padding: 8px;
    height: 30px;
    width: 30px
}

accordion header .question-toggle-icon {
    transform: rotate(0deg);
    transition: transform .1s ease-in-out
}

accordion-group {
    border-top: 1px solid var(--serene-4)
}

accordion-group.panel-open .question-toggle-icon {
    transform: rotate(45deg);
    transition: transform .1s ease-in-out
}

accordion .answer {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--moon-2)
}

.image-with-content-sec .img-col{
	height: 210px; 
	align-items: end; 
	display: flex; 
	text-align: center;
}

.app-feature object {
    display: block
}

.app-feature svg.svg-inline--fa g path {
    fill: #309d9c !important;
}

.app-feature-points p i {
    display: inline-block;
    width: 18px;
    height: 16px;
    font-size: 16px;
}

.app-feature object.screen {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--serene-4);
    border-radius: 2px
}

.app-feature object.icon {
    margin-bottom: 10px;
    max-width: 70px;
    height: auto
}

.app-feature object.icon-small {
    max-width: 40px
}

.app-feature h2 {
    font-size: 28px
}

.app-feature h3 {
    font-size: 20px;
    margin-bottom: 4px
}

.app-feature h5 {
    display: inline-block;
    font-size: 28px;
    letter-spacing: .25px;
    text-transform: uppercase;
    font-weight: 900
}

.app-feature .sublead {
    color: var(--moon-1);
    font-size: 16px !important
}

.app-feature p {
    font-size: 20px
}

.app-feature-points p {
    font-weight: 600;
    font-size: 16px !important
}

.cuttles-planning-arm {
    bottom: -60px;
    position: relative;
    z-index: -1
}

.cuttles-planning-arm object {
    overflow: visible !important;
    vertical-align: middle;
    max-width: 250px
}

@media (min-width:768px) {
    .cuttles-planning-arm object {
        max-width: 360px
    }

}

.legal ol {
    padding-inline-start: 0;
    counter-reset: item
}

.legal ol li {
    margin-bottom: 15px;
    display: block
}

.legal ol li:before {
    font-size: 26px;
    font-weight: 600;
    color: #124aff;
    display: inline;
    content: counters(item, ".") " ";
    counter-increment: item
}

.legal ol p {
    display: inline;
    margin-top: 5px
}

.legal ol ol {
    padding-inline-start: 0
}

.legal ol ol li:first-child {
    margin-top: 30px
}