/* Generic */

.fancybox__container {
    --fancybox-bg: rgba(24, 24, 27, 0.8);
    --fancybox-color: #F1BF50;
}

.fancybox__container .f-button.is-close-btn {
    opacity: 1 !important;
}

.fancybox__container .fancybox__nav,
.fancybox__container .fancybox__thumbs {
    display: none !important;
}

.fancybox__container.has-toolbar .fancybox__nav,
.fancybox__container.has-toolbar .fancybox__thumbs {
    display: block !important;
}

.gform_wrapper {
    background-color: #e4f3fb;
    border-radius: 10px;
    padding: 2em;
    color: #000000;
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {

    .gform_wrapper {
        padding: 1.5em;
    }
}

.gform_wrapper input:not([type="submit"]),
.gform_wrapper textarea {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px !important;
    outline: none;
}

.gform_wrapper input[type="submit"] {
    font-family: 'Fredoka One', sans-serif;
    display: inline-block;
    padding: 0.75em 2em;
    margin-bottom: 0 !important;
    border-radius: 40px;
    font-size: 1em;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    background-color: #E5007D;
    color: #FFFFFF !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gform_wrapper input[type="submit"]:hover {
    background-color: #000000;
}

.gform_wrapper input:not([aria-invalid="true"])::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000000;
}
.gform_wrapper input:not([aria-invalid="true"])::-moz-placeholder { /* Firefox 19+ */
    color: #000000;
}
.gform_wrapper input:not([aria-invalid="true"]):-ms-input-placeholder { /* IE 10+ */
    color: #000000;
}
.gform_wrapper input:not([aria-invalid="true"]):-moz-placeholder { /* Firefox 18- */
    color: #000000;
}

.gform_wrapper textarea:not([aria-invalid="true"])::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000000;
}
.gform_wrapper textarea:not([aria-invalid="true"])::-moz-placeholder { /* Firefox 19+ */
    color: #000000;
}
.gform_wrapper textarea:not([aria-invalid="true"]):-ms-input-placeholder { /* IE 10+ */
    color: #000000;
}
.gform_wrapper textarea:not([aria-invalid="true"]):-moz-placeholder { /* Firefox 18- */
    color: #000000;
}

.gform_wrapper .gform_footer {
    margin: 1em 0 0 0 !important;
    padding: 0 !important;
}

.gform_wrapper .charleft {
    font-size: 0.85em !important;
    font-style: italic;
}

.gform_wrapper .gfield_description {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.gform_wrapper .gfield_validation_message {
    padding: 0.5em 1em !important;
}

.gform_validation_errors {
    padding: 1em !important;
    outline: none;
}

.gform_validation_errors > h2 {
    font-size: 1.2rem !important;
    line-height: 1.4em !important;
}

.gform_validation_errors > ol {
    padding-left: 1em;
    margin-bottom: 0;
}

span.sr-only {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

div.audio-player audio {
    display: none;
}

div.audio-player span.btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

div.audio-player span.sound-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #E5007D;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

div.audio-player span.sound-btn svg {
    margin-top: -1px;
    width: auto;
    height: 18px;
}

div.audio-player span.sound-btn:hover {
    background-color: #11ABFF;
}

div.iframe-wrapper {
    position: relative;
    padding-top: 56.25%;
}

div.iframe-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

div.iframe-content {
    padding: 4em;
    text-align: center;
    max-width: 700px;
}

@media screen and (max-width: 37.5em) {

    div.iframe-content {
        padding: 2em;
    }
}

a.rm-btn,
span.rm-btn {
    font-family: 'Fredoka One', sans-serif;
    display: inline-block;
    padding: 0.75em 2em;
    border-radius: 40px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    background-color: #3C515B;
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

span.rm-btn.black {
    background-color: #000000;
}

a.rm-btn.yellow {
    background-color: #F1BF50;
}

a.rm-btn.pink {
    background-color: #E5007D;
}

a.rm-btn.pink-outline {
    background-color: #ffffff;
    border: 2px solid #E5007D;
    color: #E5007D;
}

a.rm-btn.pink-outline:hover {
    border-color: #11ABFF;
    color: #FFFFFF;
}

a.rm-btn:hover {
    background-color: #11ABFF;
}

.yellow-bg {
    background-color: #F1BF50;
}

.blue-bg {
    background-color: #4BC1F3;
}

.blue-gradient-bg.top-bottom {
    background: rgb(3,201,247);
    background: linear-gradient(0deg, rgba(3,201,247,1) 0%, rgba(0,86,144,1) 100%);
}

.blue-gradient-bg.bottom-top {
    background: rgb(55, 105, 151);
    background: linear-gradient(180deg, rgba(3,201,247,1) 0%, rgba(0,86,144,1) 100%);
}

.blue-gradient-bg.right-left {
    background: rgb(55, 105, 151);
    background: linear-gradient(90deg, rgba(3,201,247,1) 0%, rgba(0,86,144,1) 100%);
}

.light-green-bg {
    background-color: #ECFBE4;
}

.light-blue-bg {
    background-color: #e4f3fb;
}

.light-orange-bg {
    background-color: #FBF3E4;
}

.light-grey-bg {
    background-color: #F5F5F5;
}

.white-bg {
    background-color: #FFFFFF;
}

/* Default Banner */

div.default-banner.video {
    position: relative;
    min-height: 400px;
    border: none;
    border-radius: 0;
    padding: 4em 0;
    overflow: hidden;
}

div.default-banner.video div.banner-wrapper {
    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;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

div.default-banner.video div.banner-wrapper.container {
    max-width: 1400px;
}

div.default-banner.video div.banner-wrapper .image-wrapper {
    order: 2;
    display: block;
    width: 50%;
}

div.default-banner.video div.banner-wrapper .image-wrapper .image-wrapper__inner {
    position: relative;
    display: block;
    height: 0;
    padding-top: 50%;
}

div.default-banner.video div.image-wrapper div.btn-wrapper {
    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;
    gap: 20px;
    margin-top: 1em;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner a.play-btn {
    background-color: #F1BF50;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner a.play-btn.pink {
    background-color: #E5007D;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner span.illustration {
    position: absolute;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner span.illustration-1 {
    top: 20px;
    left: 20%;
    width: 125px;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner span.illustration-2 {
    top: -35px;
    right: -50px;
    width: 200px;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner span.illustration-3 {
    bottom: 20px;
    left: -60px;
    width: 175px;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner span.illustration-4 {
    bottom: -85px;
    right: -10px;
    width: 250px;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner span.illustration-5 {
    top: 20px;
    left: 12%;
    max-width: 175px;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner a.play-btn svg {
    margin-left: 5px;
    margin-top: 0;
    width: 25px;
    height: 30px;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner a.play-btn svg path {
    fill: #ffffff;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner a.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner a.play-btn:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #11ABFF;
}

div.default-banner.video div.banner-wrapper div.image-wrapper .image-wrapper__inner img.image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

div.default-banner.video div.banner-wrapper div.text-wrapper {
    order: 1;
    width: 50%;
    padding-right: 4em;
    max-width: unset;
    color: #000000;
}

div.default-banner.video div.banner-wrapper div.text-wrapper p.btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
}

div.default-banner.video div.banner-wrapper div.text-wrapper p.btn-wrapper a.rm-btn {
    margin-top: 0.5em;
}

div.default-banner.video div.banner-wrapper div.text-wrapper ul {
    margin: 1em 0 0 0;
    padding: 0;
}

div.default-banner.video div.banner-wrapper div.text-wrapper ul.tick-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 0 1.8em;
}

div.default-banner.video div.banner-wrapper div.text-wrapper ul.tick-list li {
    margin-bottom: 0.75em;
    line-height: 1.2em;
    font-family: "Fredoka One", cursive;
    font-weight: 500;
}

div.default-banner.video div.banner-wrapper div.text-wrapper ul.tick-list li:last-child {
    margin-bottom: 0;
}

div.default-banner.video div.banner-wrapper div.text-wrapper ul.tick-list li:before {
    content: '';
    height: 1.4em;
    width: 1.4em;
    display: block;
    float: left;
    margin-top: -2px;
    margin-left: -1.8em;
    background-image: url('images/tick-checkbox-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 64em) {

    div.default-banner.video div.banner-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    div.default-banner.video div.banner-wrapper div.text-wrapper {
        order: 2;
        width: 100%;
        padding-right: 0;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper {
        order: 1;
        width: 100%;
        margin-bottom: 2em;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.btn-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 1em;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner {
        padding-top: 50%;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-2 {
        top: -25px;
        right: 5px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-3 {
        left: 5px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-4 {
        bottom: -70px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-5 {
        left: 5%;
    }

    div.default-banner.video div.banner-wrapper div.text-wrapper p.btn-wrapper a.rm-btn {
        margin-top: 0;
    }

}

@media screen and (max-width: 37.5em) {

    div.default-banner.video {
        padding: 2em 0;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-1 {
        display: none;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-2 {
        width: 175px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-3 {
        width: 150px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-4 {
        width: 200px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-5 {
        left: 10%;
        max-width: 130px;
    }

    div.default-banner.video div.banner-wrapper div.text-wrapper p.btn-wrapper a.rm-btn {
        margin-top: 0;
    }

}

@media screen and (max-width: 25em) {

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-2 {
        width: 125px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-3 {
        width: 100px;
    }

    div.default-banner.video div.banner-wrapper div.image-wrapper div.image-wrapper__inner span.illustration-4 {
        width: 175px;
    }

}

div.default-banner.image {
	position: relative;
	min-height: 400px;
}

div.default-banner.image.has-overlay:before {
	content: '';
	background-color: black;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

div.default-banner.image div.image-wrapper div.btn-wrapper {
    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;
    gap: 20px;
    margin-top: 1em;
}

div.default-banner.image div.image-wrapper div.image-wrapper__inner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

div.default-banner.image div.text-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
	height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    padding: 0 30px;
    color: #FFFFFF;
    z-index: 2;
}

div.default-banner.text div.text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 2em 0 4em 0;
    text-align: center;
}

div.default-banner div.text-wrapper__inner {
    max-width: 600px;
}

div.default-banner.text div.text-wrapper__inner {
    max-width: 700px;
    width: 90%;
}

div.default-banner div.text-wrapper__inner p {
    margin-top: 1em;
}

div.default-banner div.text-wrapper__inner p.btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
}

div.default-banner div.text-wrapper__inner p a:not(.rm-btn)  {
    border-bottom: 1px solid;
    text-decoration: none;
}

@media screen and (max-width: 37.5em) {

    div.default-banner.image {
        min-height: 450px;
    }

    div.default-banner.text div.text-wrapper {
        margin: 2em 0;
    }

    div.default-banner div.text-wrapper__inner p br {
        display: none;
    }
}

/* Free Trial Banner */

div.ft-banner {
    position: relative;
    border: none;
    border-radius: 0;
    padding: 4em 0 0 0;
    overflow: hidden;
}

@media screen and (max-width: 37.5em) {

    div.ft-banner {
        padding: 2em 0 0 0;
    }

    div.ft-banner::before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(images/stars.svg);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: contain;
        height: 100%;
        width: 100%;    
        min-height: inherit;
    }
}

div.ft-banner div.ft-banner-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 800px;
    min-height: inherit;
    color: #ffffff;
    z-index: 1;
}

div.ft-banner div.ft-banner-wrapper h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

@media screen and (max-width: 37.5em) {

    div.ft-banner div.ft-banner-wrapper h1 {
        font-size: 1.75em;
        line-height: 1.25em;
    }
}

div.ft-banner div.ft-banner-wrapper h2 {
    font-size: 1.4em;
    margin-bottom: 1em;
}

div.ft-banner div.ft-banner-wrapper strong {
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85em;
}

div.ft-banner div.ft-banner-wrapper p.btn-wrapper {
    margin-top: 1em;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 10px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

div.ft-banner div.ft-banner-wrapper p.btn-wrapper + p {
    margin-top: 2em;
}

div.ft-banner div.ft-banner-wrapper p.btn-wrapper a.rm-btn {
    white-space: nowrap;
    min-width: 185px;
}

div.ft-banner svg,
div.ft-banner img {
    vertical-align: top;
    width: 100%;
}

@media screen and (min-width: 37.5em) {
    
    div.ft-banner svg,
    div.ft-banner img {
        margin-top: -15%;
    }
}

/* Account Setup */

div.account-setup {
    position: relative;
    padding: 2em 0 0 0;
}

div.account-setup div.mp_wrapper {
    margin-top: 1em;
}

@media screen and (min-width: 37.5em) {

    div.account-setup div.mp_wrapper {
        margin-top: 2em;
    }
}

div.account-setup div.account-setup-wrapper {
    color: #ffffff;
}

@media screen and (min-width: 37.5em) {

    div.account-setup div.account-setup-wrapper h2 {
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 37.5em) {

    div.account-setup div.account-setup-wrapper br {
        display: none;
    }
}

div.account-setup div.mp_wrapper form.mepr-signup-form {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

div.account-setup div.mp_wrapper form.mepr-signup-form span.cc-error {
    padding-left: 0 !important;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85em;
}

div.account-setup div.mp_wrapper form.mepr-signup-form div.mp-form-row {
    margin-bottom: 20px;
}

div.account-setup div.mp_wrapper form.mepr-signup-form div.mp-form-row.mepr_mepr_utm_source,
div.account-setup div.mp_wrapper form.mepr-signup-form div.mp-form-row.mepr_mepr_utm_medium,
div.account-setup div.mp_wrapper form.mepr-signup-form div.mp-form-row.mepr_mepr_utm_campaign,
div.account-setup div.mp_wrapper form.mepr-signup-form div.mp-form-row.mepr_mepr_membership_id {
    position: absolute;
    left: -9999px;
}

div.account-setup div.mp_wrapper form.mepr-signup-form input,
div.account-setup div.mp_wrapper form.mepr-signup-form textarea,
div.account-setup div.mp_wrapper form.mepr-signup-form select {
    padding: 15px 30px !important;
    border-radius: 50px !important;
    color: #000000 !important;
}

div.account-setup div.mp_wrapper form.mepr-signup-form div.mepr_spacer {
    padding: 0;
    margin: 0;
    height: 10px;
}

div.account-setup div.mp_wrapper form.mepr-signup-form div.mp-form-submit {
    text-align: center;
}

div.account-setup div.mp_wrapper form.mepr-signup-form input[type='submit'] {
    font-size: 16px !important;
    padding: 0.75em 2em !important;
    background-color: #E5007D !important;
    color: #ffffff !important;
    -webkit-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
}

div.account-setup div.mp_wrapper form.mepr-signup-form input[type='submit']:hover {
    transform: none !important;
    background-color: #11ABFF !important;
}

div.account-setup div.mp_wrapper form.mepr-signup-form input::-webkit-input-placeholder,
div.account-setup div.mp_wrapper form.mepr-signup-form textarea::-webkit-input-placeholder {
    color: #000000 !important;
    opacity: 1 !important;
}

div.account-setup div.mp_wrapper form.mepr-signup-form input::-moz-placeholder,
div.account-setup div.mp_wrapper form.mepr-signup-form textarea::-moz-placeholder {
    color: #000000 !important;
    opacity: 1 !important;
}

div.account-setup div.mp_wrapper form.mepr-signup-form input:-ms-input-placeholder,
div.account-setup div.mp_wrapper form.mepr-signup-form textarea:-ms-input-placeholder {
    color: #000000 !important;
    opacity: 1 !important;
}

div.account-setup div.mp_wrapper form.mepr-signup-form input:-moz-placeholder,
div.account-setup div.mp_wrapper form.mepr-signup-form textarea:-moz-placeholder { 
    color: #000000 !important;
    opacity: 1 !important;
}

div.account-setup div.mp_wrapper form.mepr-signup-form label {
    display: block !important;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85em;
    margin-bottom: 5px;
}

/*div.account-setup div.curve {
    position: relative;
    height: 70px;
    width: 100%;
    background: #8F5E3A;
}

div.account-setup div.curve {
    height: 150px;
    width: 100%;
    bottom: 0;
    text-align: center;
}

div.account-setup div.curve::before {
    content: '';
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    transform: translate(85%, 60%);
    background-color: #784F31;
}

div.account-setup div.curve::after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 55%;
    height: 100%;
    background-color: #8F5E3A;
    transform: translate(-4%, 40%);
    z-index: 1;
}*/

div.account-setup svg,
div.account-setup img {
    margin-bottom: -1px;
    width: 100%;
}

/* Default Section */

section {
	padding: 4em 0;
}

h1, h2 {
    font-size: 1.75em;
    line-height: 1.25em;
}

section.no-border {
    border-bottom: none;
}

section.no-padding {
    padding: 0;
}

section.padding-top {
    padding-bottom: 0;
}

section.padding-bottom {
    padding-top: 0;
}

@media screen and (max-width: 37.5em) {

    section {
        padding: 2em 0;
    }

}

/* Accordion */

section.accordion div.helper-image {
    text-align: center;
}

section.accordion div.helper-image img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

section.accordion div.accordion__text {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto 3em auto;
    color: #000000;
}

section.accordion div.accordion__text p {
    margin-top: 1em;
}

section.accordion div.accordion__text p:last-of-type {
    margin-bottom: 0;
}

section.accordion div.accordion__text p a {
    border-bottom: 1px solid;
    text-decoration: none;
}

section.accordion div.accordion-list.accordion-1 {
    border-bottom: 1px solid #000000;
}

section.accordion div.accordion-list {
    max-width: 1000px;
}

section.accordion div.accordion-list div.accordion {
    padding: 1.5em 2em;
    border-bottom: 1px solid #000000;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.accordion.yellow-bg div.accordion-list div.accordion.open {
    background-color: #edaf23;
}

section.accordion.blue-bg div.accordion-list div.accordion.open {
    background-color: #1eb2f0;
}

section.accordion.light-green-bg div.accordion-list div.accordion.open {
    background-color: #c0f2a5;
}

section.accordion.light-blue-bg div.accordion-list div.accordion.open {
    background-color: #a5d7f2;
}

section.accordion.light-grey-bg div.accordion-list div.accordion.open {
    background-color: #d0d0d0;
}

section.accordion.white-bg div.accordion-list div.accordion.open {
    background-color: #d9d9d9;
}

section.accordion div.accordion-list div.accordion:last-of-type {
    border-bottom: none;
}

section.accordion div.accordion-list div.accordion div.heading {
    position: relative;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

section.accordion div.accordion-list div.accordion div.heading span.heading__title {
    margin-right: 35px;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.75em;
    line-height: 1.25em;
    color: #000000;
}

section.accordion div.accordion-list div.accordion div.heading span.heading__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25px;
    min-width: 25px;
    height: 25px;
    margin-top: 4px;
}

section.accordion div.accordion-list div.accordion div.heading span.heading__icon svg {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.accordion div.accordion-list div.accordion.open div.heading span.heading__icon svg {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
}

section.accordion div.accordion-list div.accordion div.hidden-content {
    display: none;
    padding-right: 35px;
    color: #000000;
}

section.accordion div.accordion-list div.accordion div.hidden-content p {
    margin-top: 1em;
}

section.accordion div.accordion-list div.accordion div.hidden-content p:last-of-type {
    margin-bottom: 0;
}

section.accordion div.accordion-list div.accordion div.hidden-content p a:not(.rm-btn) {
    border-bottom: 1px solid;
    text-decoration: none;
}

section.accordion div.accordion-list div.accordion div.hidden-content ul,
section.accordion div.accordion-list div.accordion div.hidden-content ol {
    padding: 0;
    margin: 1em 0 0 1.1em;
}

section.accordion div.accordion-list div.accordion div.hidden-content ol li {
    margin-bottom: 1em;
}

section.accordion div.accordion-list div.accordion div.hidden-content ol li:last-child {
    margin-bottom: 0;
}

section.accordion div.cta-wrapper {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3em;
}

section.accordion div.cta-wrapper img {
    margin-left: 2em;
}

section.accordion div.cta-wrapper div.cta-wrapper__text {
    text-align: center;
    margin: 0 2em;
    color: #000000;
}

section.accordion div.cta-wrapper div.cta-wrapper__text p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 37.5em) {

    section.accordion div.accordion-list div.accordion {
        padding: 1.5em 1em;
    }

    section.accordion div.cta-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 2em;
    }

    section.accordion div.cta-wrapper img {
        margin-left: 0;
        order: 2;
    }

    section.accordion div.cta-wrapper div.cta-wrapper__text {
        order: 1;
        margin-bottom: 2em;
    }

}

/* Rich Text */

section.rich-text div.rich-text__text {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

section.rich-text div.rich-text__text h2,
section.rich-text div.rich-text__text strong {
    color: #000000;
}

/* Events */

section.events {
    overflow: hidden;
}

section.events div.events__text {
    max-width: 700px;
    margin: 0 auto;
    width: 90%;
    color: #000000;
}

section.events div.events__slider {
    max-width: 1000px;
    margin: 3em auto 0 auto;
}

section.events div.events__slider div.slick-list {
    overflow: visible;
}

section.events div.events__slider ul.slick-dots {
    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;
    list-style-type: none;
    padding: 0;
    margin: 1.5em 0 auto 0;
    z-index: 997;
}
    
section.events div.events__slider ul.slick-dots li {
    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;
    width: 10px;
    height: 10px;
    margin: 0 25px 0 0;
}

section.events div.events__slider ul.slick-dots li:last-child {
    margin: 0;
}

section.events div.events__slider ul.slick-dots li:only-child {
    display: none;
} 

section.events div.events__slider ul.slick-dots li:nth-of-type(1n+10) {
    display: none;
}

section.events div.events__slider ul.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border-color: #E5007D;
    border: 1px solid #E5007D;
    background-color: transparent;
    border-radius: 50%;
    text-indent: -9999px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.events div.events__slider ul.slick-dots li button:focus {
    outline: none;
}

section.events div.events__slider ul.slick-dots li:hover button,
section.events div.events__slider ul.slick-dots li.slick-active button {
    background-color: #E5007D;
}

section.events div.events__slider ul.slick-dots li button:before {
    display: none;
}

section.events div.events__slider div.event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 0 2em;
    box-shadow: 1px 0 6px 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

section.events div.events__slider div.event div.event__image,
section.events div.events__slider div.event div.event__text {
    width: 50%;
}

section.events div.events__slider div.event div.event__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.events div.events__slider div.event div.event__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2em;
    color: #000000;
}

section.events div.events__slider div.event div.event__text h3 {
    font-size: 1.4em;
    line-height: 1.2em;
    color: #000000;
}

section.events div.events__slider button.slick-prev,
section.events div.events__slider button.slick-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    background-color: #E5007D;
    padding: 15px;
    border-radius: 50%;
    outline: 0;
    z-index: 50;
}

section.events div.events__slider button.slick-prev:focus,
section.events div.events__slider button.slick-next:focus {
    outline: 0;
}

section.events div.events__slider button.slick-prev svg,
section.events div.events__slider button.slick-next svg {
    width: 23px;
    height: 20px;
}

section.events div.events__slider button.slick-prev svg {
    margin-left: -3px;
}

section.events div.events__slider button.slick-next svg {
    margin-right: -3px;
}

section.events div.events__slider button.slick-prev svg path,
section.events div.events__slider button.slick-next svg path {
    fill: #ffffff;
}

section.events div.events__slider button.slick-prev {
    left: -140px;
}

section.events div.events__slider button.slick-next {
    right: -140px;
}

@media screen and (max-width: 87.5em) {

    section.events div.events__slider div.event {
        margin: 0 1em;
    }

    section.events div.events__slider button.slick-prev {
        left: 50px;
    }

    section.events div.events__slider button.slick-next {
        right: 50px;
    }

}

@media screen and (max-width: 50em) {

    section.events div.events__slider div.event {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.events div.events__slider div.event div.event__image,
    section.events div.events__slider div.event div.event__text {
        width: 100%;
    }

}

@media screen and (max-width: 37.5em) {

    section.events div.events__slider {
        margin: 2em auto 0 auto;
    }

    section.events div.events__text p br {
        display: none;
    }

    section.events div.events__slider button.slick-prev,
    section.events div.events__slider button.slick-next {
        display: none !important;
    }

}

/* Featured Blocks */

section.featured-blocks {
    padding: 0;
}

section.featured-blocks.no-padding {
    padding: 0;
} 

section.featured-blocks.padding-top div.featured-blocks__text {
    padding-top: 4em;
} 

section.featured-blocks.padding-bottom div.featured-blocks__blocks {
    padding-bottom: 4em;
}

section.featured-blocks.padding-top-bottom div.featured-blocks__text {
    padding-top: 4em;
} 

section.featured-blocks.padding-top-bottom div.featured-blocks__blocks {
    padding-bottom: 4em;
} 

section.featured-blocks div.featured-blocks__blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
} 

section.featured-blocks div.featured-blocks__blocks.blocks-2 {
    grid-template-columns: repeat(2, 1fr);
} 

section.featured-blocks div.featured-blocks__text {
    padding-bottom: 8em;
}  

section.featured-blocks div.featured-blocks__text div.text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

section.featured-blocks div.featured-blocks__text h2 {
    margin-bottom: 0;
}   

section.featured-blocks div.featured-blocks__blocks {
    margin-top: -5em;
}  

section.featured-blocks div.featured-blocks__blocks div.block div.block__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1em;
    border: 1px solid #000000;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__image span.new {
    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;
    position: absolute;
    top: 20px;
    right: -60px;
    padding: 0.5em;
    background-color: #ed1c24;
    transform: rotate(45deg);
    width: 200px;
    text-align: center;
    font-family: "Fredoka One", cursive;
    font-weight: 700;
    font-size: .9em;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: #ffffff;
    box-shadow: 1px 0 6px 1px rgba(0,0,0,.1);
    z-index: 1;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__image span.new svg {
    width: 15px;
    margin-right: 5px;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__image span.new svg path {
    fill: #F1BF50;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__text span.subtitle,
section.featured-blocks div.featured-blocks__blocks div.block div.block__text span.title {
    display: block;
    text-align: center;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__text span.subtitle {
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 0.75em;
    letter-spacing: 0.15em;
    color: #E5007D;
    margin-bottom: 0.25em;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__text span.title {
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.2em;
}

section.featured-blocks div.featured-blocks__blocks div.block div.block__text a.rm-btn {
    margin-top: 1em;
}

@media screen and (max-width: 62.5em) {

    section.featured-blocks div.featured-blocks__blocks {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 37.5em) {

    section.featured-blocks.padding-top div.featured-blocks__text {
        padding-top: 2em;
    } 

    section.featured-blocks.padding-bottom div.featured-blocks__blocks {
        padding-bottom: 2em;
    }

    section.featured-blocks.padding-top-bottom div.featured-blocks__text {
        padding-top: 2em;
    } 

    section.featured-blocks.padding-top-bottom div.featured-blocks__blocks {
        padding-bottom: 2em;
    } 

    section.featured-blocks div.featured-blocks__text {
        padding-bottom: 7em;
    } 

    section.featured-blocks div.featured-blocks__text div.text-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    section.featured-blocks div.featured-blocks__text div.text-wrapper br {
        display: none;
    }

    section.featured-blocks div.featured-blocks__blocks,
    section.featured-blocks div.featured-blocks__blocks.blocks-2 {
        grid-template-columns: 100%;
    }

}

/* Image/Text Blocks */

section.image-text-blocks div.image-text-blocks__blocks div.block {
    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;
    margin-bottom: 4em;
}

section.image-text-blocks div.image-text-blocks__blocks div.block:last-of-type {
    margin-bottom: 0;
}

section.image-text-blocks div.image-text-blocks__blocks div.block.block--left div.block__image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-align: center;
}

section.image-text-blocks div.image-text-blocks__blocks div.block.block--left div.block__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 4em;
    color: #000000;
}

section.image-text-blocks div.image-text-blocks__blocks div.block.block--right div.block__image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    text-align: center;
}

section.image-text-blocks div.image-text-blocks__blocks div.block.block--right div.block__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 4em;
    color: #000000;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__image,
section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content {
    float: left;
    width: 50%;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content h1 {
    font-size: 2em;
    line-height: 1.4em;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content p:last-of-type {
    margin-bottom: 0;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content p a {
    border-bottom: 1px solid;
    text-decoration: none;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content ul,
section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content ol {
    padding: 0;
    margin: 1em 0 0 1.1em;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content ol li {
    margin-bottom: 1em;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content ol li:last-child {
    margin-bottom: 0;
}

section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content a.rm-btn {
    margin-top: 1em;
}

@media screen and (max-width: 50em) {

    section.image-text-blocks div.image-text-blocks__blocks div.block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 2em;
    }

    section.image-text-blocks div.image-text-blocks__blocks div.block.block--left div.block__image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    section.image-text-blocks div.image-text-blocks__blocks div.block.block--left div.block__content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding-right: 0;
        padding-top: 1em;
    }

    section.image-text-blocks div.image-text-blocks__blocks div.block.block--right div.block__content {
        padding-left: 0;
        padding-top: 1em;
    }

    section.image-text-blocks div.image-text-blocks__blocks div.block div.block__image,
    section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content {
        width: 100%;
    }

}

@media screen and (max-width: 37.5em) {

    section.image-text-blocks div.image-text-blocks__blocks div.block div.block__content h1 {
        font-size: 1.8em;
        line-height: 1.2em;
    }

}

/* Meet The Monsters */

section.monsters div.monsters__text {
    color: #000000;
    margin-bottom: 2em;
}

section.monsters div.monsters-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

section.monsters div.monsters__graphemes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
}

section.monsters div.monsters__graphemes div.grapheme {
    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;
    padding: 2em;
    border-radius: 10px;
    border: 1px solid #000000;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__image {
    width: 30%;
    margin: 0 auto;
    padding: 1em;
    max-width: 200px;
    text-align: center;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__image img {
    max-height: 150px;
    width: auto;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__text {
    width: 70%;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__text h3 {
    margin-bottom: 0.25em;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__text p:last-of-type {
    margin-bottom: 0;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__text span.sound-list {
    display: block;
    margin-top: 0.5em;
    line-height: 1em;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__text span.sound-list strong {
    color: #000000;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__text span.sound {
    font-family: 'Fredoka One', sans-serif;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__text span.btn-wrapper {
    margin-top: 1em;
}

section.monsters div.monsters__graphemes div.grapheme div.grapheme__example {
    display: none;
}

div.fancybox__content.grapheme__example {
    color: #000000;
    border-radius: 10px;
}

div.fancybox__content.grapheme__example h4 span[style="color: #ffffff;"] {
    text-shadow: 1px 1px 4px #000000;
}

div.fancybox__content.grapheme__example button.is-close-btn {
    top: 15px !important;
    right: 15px !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

div.fancybox__content.grapheme__example button.is-close-btn:focus,
div.fancybox__content.grapheme__example button.is-close-btn:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

div.fancybox__content.grapheme__example button.is-close-btn svg {
    width: 15px;
    height: 15px;
    stroke: #000000;
}

@media only screen and (max-width: 75em) {

    section.monsters div.monsters__graphemes div.grapheme {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.monsters div.monsters__graphemes div.grapheme div.grapheme__image {
        width: 100%;
        margin-bottom: 2em;
        padding: 0;
    }

    section.monsters div.monsters__graphemes div.grapheme div.grapheme__text {
        width: 100%;
    }

}

@media only screen and (max-width: 53.125em) {

    section.monsters div.monsters__graphemes {
        grid-template-columns: 100%;
    }

}

@media screen and (max-width: 37.5em) {

    section.monsters div.monsters-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    section.monsters div.monsters__graphemes div.grapheme {
        padding: 1.5em;
    }

    section.monsters div.monsters__graphemes div.grapheme div.grapheme__text span.sound-list strong {
        display: block;
    }

}

/* Logos */

section.logos {
    overflow: hidden;
}

section.logos div.logos__text {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 3em auto;
    color: #000000;
}

section.logos div.logos__text h2 {
    margin-bottom: 0;
}

section.logos div.logos__slider div.slick-list {
    overflow: visible;
}

section.logos div.logos__slider div.logo {
    position: relative;
    margin-left: 1em;
    margin-right: 1em;
}

section.logos div.logos__slider div.logo a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 37.5em) {

    section.logos div.logos__text br {
        display: none;
    }

}

/* Link Blocks */

section.link-blocks div.link-blocks__text {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 3em auto;
}

section.link-blocks div.link-blocks__text h2,
section.link-blocks div.link-blocks__text h3 {
    color: #000000;
}

section.link-blocks div.link-blocks__text p {
    margin-top: 1em;
}

section.link-blocks div.link-blocks__text p:last-of-type {
    margin-bottom: 0;
}

section.link-blocks div.link-blocks__text p a {
    border-bottom: 1px solid;
    text-decoration: none;
}

section.link-blocks div.link-blocks__blocks {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
}

section.link-blocks div.link-blocks__blocks.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

section.link-blocks div.link-blocks__blocks.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

section.link-blocks div.link-blocks__blocks.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

section.link-blocks div.link-blocks__blocks.columns-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2em;
    grid-row-gap: 2em;
}

section.link-blocks div.link-blocks__blocks div.link-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 4em 2em;
    width: 100%;
    min-width: 33.333333%;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.link-blocks div.link-blocks__blocks div.link-block.has-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

section.link-blocks div.link-blocks__blocks div.link-block.with-colour {
    background-color: #F1BF50;
    padding: 2em;
    color: #FFFFFF;
    border-radius: 10px;
}

section.link-blocks div.link-blocks__blocks div.link-block.no-colour {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0px;
}

section.link-blocks div.link-blocks__blocks div.link-block.no-colour span.title {
    color: #000000;
}

section.link-blocks div.link-blocks__blocks div.link-block.has-image img {
    vertical-align: top;
    max-width: 100%;
    margin-bottom: 2em;
}

section.link-blocks div.link-blocks__blocks div.link-block.has-image.with-colour img {
    border-radius: 20px;
}

section.link-blocks div.link-blocks__blocks div.link-block.with-colour.has-link:hover {
    background-color: #11ABFF;
}

section.link-blocks div.link-blocks__blocks div.link-block a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.link-blocks div.link-blocks__blocks div.link-block span.title {
    display: block;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.75em;
    line-height: 1.25em;
    box-sizing: border-box;
}

section.link-blocks div.link-blocks__blocks div.link-block p {
    margin: 1em 0 0 0;
}

@media screen and (max-width: 78.125em) {

    section.link-blocks div.link-blocks__blocks.columns-5 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 50em) {

    section.link-blocks div.link-blocks__blocks.columns-5,
    section.link-blocks div.link-blocks__blocks.columns-4,
    section.link-blocks div.link-blocks__blocks.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 37.5em) {

    section.accordion div.accordion__text {
        margin: 0 auto 2em auto;
    }

    section.link-blocks div.link-blocks__text {
        margin: 0 auto 2em auto;
    }

    section.link-blocks div.link-blocks__blocks.columns-5,
    section.link-blocks div.link-blocks__blocks.columns-4,
    section.link-blocks div.link-blocks__blocks.columns-3,
    section.link-blocks div.link-blocks__blocks.columns-2 {
        grid-template-columns: 100%;
    }

    section.link-blocks div.link-blocks__blocks div.link-block {
        padding: 2em;
    }

    section.link-blocks div.link-blocks__blocks div.link-block.has-image img {
        margin-bottom: 1em;
    }

    section.link-blocks div.link-blocks__blocks {
        grid-row-gap: 2em;
    }

}

/* Pricing */

section.pricing div.pricing__text {
    color: #000000;
}

section.pricing div.pricing__memberships {
    margin: 2em 0 4em 0;
}

section.pricing div.pricing__memberships div.membership {
    position: relative;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 1em;
}

section.pricing div.pricing__memberships div.membership:last-of-type {
    margin-bottom: 0;
}

section.pricing div.pricing__memberships div.membership {
    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;
    box-shadow: 1px 0 6px 1px rgba(0, 0, 0, 0.05);
    color: #000000;
}

section.pricing div.pricing__memberships div.membership div.membership__left {
    text-align: center;
    min-width: 300px;
    padding-left: 2em;
    color: #000000;
}

section.pricing div.pricing__memberships div.membership div.membership__left span.from {
    display: block;
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 0.75em;
    letter-spacing: 0.15em;
    margin-top: 1em;
    text-align: center;
}

section.pricing div.pricing__memberships div.membership div.membership__left span.from + div.membership__price {
    margin-top: 0;
}

section.pricing div.pricing__memberships div.membership div.membership__left div.membership__price span.from {
    margin-top: 0;
    margin-bottom: 2px;
    text-align: left;
}

section.pricing div.pricing__memberships div.membership div.membership__left div.membership__price {
    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;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 0.5em;
}

section.pricing div.pricing__memberships div.membership div.membership__left a.rm-btn {
    margin-top: 1.5em;
}

section.pricing div.pricing__memberships div.membership div.membership__right {
    border-left: 1px solid #E0E0E0;
    padding-left: 4em;
    margin-left: 4em;
    width: 100%;
}

section.pricing div.pricing__memberships div.membership span.membership__title,
section.pricing div.pricing__memberships div.membership div.membership__price span.price {
    display: block;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.75em;
    line-height: 1.25em;
}

section.pricing div.pricing__memberships div.membership div.membership__price span.price {
    color: #80BA57;
}

section.pricing div.pricing__memberships div.membership div.membership__price span.price.was {
    position: relative;
    font-size: 1.25em;
    color: #000000;
}

section.pricing div.pricing__memberships div.membership div.membership__price span.price.was:before {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    right: 0;
    border-top: 2px solid #EF0000;
}

section.pricing div.pricing__memberships div.membership span.benefits__title {
    display: block;
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 0.9em;
    letter-spacing: 0.15em;
    color: #000000;
}

section.pricing div.pricing__memberships div.membership ul.benefits__list {
    list-style-type: none;
    margin: 1em 0 0 0;
    padding: 0;
}

section.pricing div.pricing__memberships div.membership ul.benefits__list li.benefit {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0.75em;
}

section.pricing div.pricing__memberships div.membership ul.benefits__list li.benefit:last-of-type {
    margin-bottom: 0;
}

section.pricing div.pricing__memberships div.membership ul.benefits__list li.benefit span.icon {
    width: 100%;
    max-width: 30px;
    margin-right: 10px;
}

section.pricing div.pricing__memberships div.membership ul.benefits__list li.benefit span.text {
    margin-top: 4px;
    line-height: 1.4em;
}

section.pricing div.pricing__memberships div.membership div.membership__left {
    text-align: center;
    min-width: 300px;
    padding-left: 2em;
}

section.pricing div.pricing__bundles-text {
    max-width: 700px;
    margin: 0 auto 3em auto;
    color: #000000;
}

section.pricing div.pricing__bundles-text p:last-of-type {
    margin-bottom: 0;
}

section.pricing div.pricing__bundles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    margin-top: 2em;
}

section.pricing div.pricing__bundles div.bundle {
    padding: 2em;
    background-color: #F1BF50;
    border-radius: 10px;
    box-shadow: 1px 0 6px 1px rgba(0, 0, 0, 0.05);
}

section.pricing div.pricing__bundles div.bundle span.bundle__promotion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 0.9em;
    letter-spacing: 0.15em;
    text-align: center;
    background-color: #EF0000;
    color: #FFFFFF;
    border-radius: 35px;
    padding: 5px 20px;
    white-space: nowrap;
    margin-bottom: 1em;
}

section.pricing div.pricing__bundles div.bundle span.bundle__promotion svg {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

section.pricing div.pricing__bundles div.bundle div.title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

section.pricing div.pricing__bundles div.bundle span.bundle__title {
    display: block;
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.2em;
    line-height: 1.2em;
    letter-spacing: 0.15em;
    color: #000000;
    text-align: center;
    max-width: 200px;
}

section.pricing div.pricing__bundles div.bundle div.text {
    text-align: center;
    color: #000000;
    margin-top: 1em;
}

section.pricing div.pricing__bundles div.bundle span.bundle__price {
    display: block;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.4em;
    line-height: 1.4em;
    color: #000000;
    text-align: center;
    margin-top: 1em;
}

section.pricing div.pricing__bundles div.bundle span.bundle__saving {
    display: block;
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 0.9em;
    letter-spacing: 0.15em;
    color: #EF0000;
    text-align: center;
    margin-top: 0.25em;
}

section.pricing div.pricing__bundles div.bundle a.bundle__link {
    font-family: 'Fredoka One', sans-serif;
    display: block;
    margin: 1em auto 0 auto;
    padding: 0.75em 2em;
    border-radius: 40px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    background-color: #000000;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.pricing div.pricing__bundles div.bundle a.bundle__link:hover {
    background-color: #11abff;
}

@media screen and (max-width: 64em) {

    section.pricing div.pricing__memberships div.membership {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.pricing div.pricing__memberships div.membership div.membership__right {
        padding-left: 0;
        margin-left: 0;
        margin-top: 2em;
        border-left: none;
    }

    section.pricing div.pricing__bundles {
        grid-template-columns: 100%;
    }

}

@media screen and (max-width: 37.5em) {

    section.pricing div.pricing__memberships {
        margin: 2em 0;
    }

    section.pricing div.pricing__memberships div.membership div.membership__left a.rm-btn {
        margin-top: 1em;
    }

    section.pricing div.pricing__bundles-text {
        margin: 0 auto 2em auto;
    }

    section.pricing div.pricing__bundles-text p br {
        display: none;
    }

}

/* Membership Packages */

section.membership-packages div.membership-packages__text {
    max-width: 700px;
    margin: 0 auto 3em auto;
    color: #000000;
}

section.membership-packages div.membership-packages__blocks div.packages {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2em;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width: 50em) {

    section.membership-packages div.membership-packages__blocks div.packages {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

section.membership-packages div.membership-packages__blocks div.packages div.package {
    position: relative;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 10px;
    border: 10px solid #F1BF50;
    box-shadow: 1px 0 6px 1px rgba(0, 0, 0, 0.10);
    width: calc(25% - 2em);
}

section.membership-packages div.membership-packages__blocks div.packages div.package {
    border: 10px solid var(--package-colour);
}

@media screen and (max-width: 81.25em) {

    section.membership-packages div.membership-packages__blocks div.packages div.package {
        width: calc(50% - 2em);
    }

}

@media screen and (max-width: 50em) {

    section.membership-packages div.membership-packages__blocks div.packages div.package {
        width: 100%;
    }

}

section.membership-packages div.membership-packages__blocks div.packages div.package span.package__title {
    display: block;
    text-align: center;
    margin-bottom: 0.75em;
    font-size: 1.4em;
    line-height: 1.2em;
    font-family: "Fredoka One", cursive;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
}

section.membership-packages div.membership-packages__blocks div.packages div.package span.package__title {
    color: var(--package-colour);
}

section.membership-packages div.membership-packages__blocks div.packages div.package ul.package__tick-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 0 1.8em;
}

section.membership-packages div.membership-packages__blocks div.packages div.package ul.package__tick-list li {
    margin-bottom: 1em;
    line-height: 1.2em;
    font-family: "Fredoka One", cursive;
    font-weight: 500;
}

section.membership-packages div.membership-packages__blocks div.packages div.package ul.package__tick-list li:last-child {
    margin-bottom: 0;
}

section.membership-packages div.membership-packages__blocks div.packages div.package ul.package__tick-list li:before {
    content: '';
    height: 1.4em;
    width: 1.4em;
    display: block;
    float: left;
    margin-top: -2px;
    margin-left: -1.8em;
    background-image: url('images/tick-checkbox-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

section.membership-packages div.membership-packages__blocks div.packages div.package div.package__price span.price {
    display: block;
    text-align: center;
    font-size: 1.4em;
    line-height: 1.2em;
    font-family: "Fredoka One", cursive;
    font-weight: 500;
    margin-top: 1em;
}

section.membership-packages div.membership-packages__blocks div.packages div.package a.package__link {
    font-family: 'Fredoka One', sans-serif;
    display: block;
    margin: 1em auto 0 auto;
    padding: 0.75em 2em;
    border-radius: 40px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    background-color: #000000;
    color: #FFFFFF;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.membership-packages div.membership-packages__blocks div.packages div.package a.package__link:hover {
    background-color: #11abff;
}

/* Memberships */

section.memberships div.memberships__text {
    max-width: 700px;
    margin: 0 auto;
    color: #000000;
}

section.memberships.padding-top div.memberships__blocks {
    position: relative;
}

section.memberships.padding-top div.memberships__blocks:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
    background-color: #ffffff;
}

section.memberships div.memberships__blocks div.inner-blocks {
    position: relative;
    margin: 3em auto 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    z-index: 1;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership {
    position: relative;
    padding: 2em;
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #000000;
    color: #000000;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership img {
    display: block;
    margin: 0 auto 1em auto;
    max-width: 150px;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership span.membership__title {
    text-align: center;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership div.membership__price {
    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;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 0.5em;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership p.btn-wrapper {
    margin-top: 1.5em;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 10px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership p.btn-wrapper a.rm-btn {
    white-space: nowrap;
    min-width: 185px;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership span.from {
    display: block;
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 0.75em;
    letter-spacing: 0.15em;
    margin-top: 1em;
    text-align: center;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership span.from + div.membership__price {
    margin-top: 0;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership div.membership__price span.from {
    margin-top: 0;
    margin-bottom: 2px;
    text-align: left;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership span.membership__title,
section.memberships div.memberships__blocks div.inner-blocks div.membership div.membership__price span.price {
    display: block;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.75em;
    line-height: 1.25em;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership div.membership__price span.price {
    color: #80BA57;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership div.membership__price span.price.was {
    position: relative;
    font-size: 1.25em;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership div.membership__price span.price.was:before {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    right: 0;
    border-top: 2px solid #EF0000;
}

section.memberships div.memberships__blocks div.inner-blocks div.membership span.membership__age-range {
    display: block;
    text-transform: uppercase;
    font-family: 'Fredoka One', sans-serif;
    font-size: 0.9em;
    letter-spacing: 0.15em;
    margin-top: 1.5em;
    text-align: center;
    color: #000000;
}

section.memberships div.btn-wrapper {
    padding: 2em 0 4em 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 10px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

@media screen and (max-width: 75em) {

    section.memberships div.memberships__blocks div.inner-blocks {
        grid-template-columns: repeat(2, 1fr);
    }

    section.memberships.padding-top div.memberships__blocks:after {
        height: 25%;
    }

}

@media screen and (max-width: 37.5em) {

    section.memberships div.memberships__blocks div.inner-blocks {
        margin: 2em auto 0 auto;
    }

    section.memberships div.btn-wrapper {
        padding: 2em 0;
    }

    section.memberships div.memberships__blocks div.inner-blocks {
        grid-template-columns: 100%;
        grid-row-gap: 1em;
    }

    section.memberships.padding-top div.memberships__blocks:after {
        height: 12.5%;
    }

    section.memberships div.memberships__text p br {
        display: none;
    }

}

/* Benefits */

section.all-benefits div.all-benefits__text {
    max-width: 700px;
    margin: 0 auto;
    color: #000000;
}

section.all-benefits div.all-benefits__blocks {
    position: relative;
}

section.all-benefits div.all-benefits__blocks div.inner-blocks {
    position: relative;
    max-width: 1400px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 3em auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    z-index: 1;
}

section.all-benefits div.all-benefits__blocks div.benefit {
    position: relative;
    padding: 2em;
    padding-top: calc(2em + 50px);
    padding-bottom: calc(2em + 25px);
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #000000;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #000000;
}

section.all-benefits div.all-benefits__blocks div.benefit.no-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 2em;
    margin-top: 0;
}

section.all-benefits div.all-benefits__blocks div.benefit.no-link {
    padding-bottom: 2em;
    margin-bottom: 0;
}

section.all-benefits div.all-benefits__blocks div.benefit div.image-wrapper {
    position: absolute;
    top: -75px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 150px;
    width: 150px;
    overflow: hidden;
    background-color: white;
}

section.all-benefits div.all-benefits__blocks div.benefit div.image-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    padding: 10px;
}

section.all-benefits div.all-benefits__blocks div.benefit a.rm-btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

section.all-benefits div.all-benefits__blocks div.benefit h3 {
    font-size: 1.4em;
    line-height: 1.2em;
    color: #000000;
}

section.all-benefits div.all-benefits__blocks div.benefit h3,
section.all-benefits div.all-benefits__blocks div.benefit p {
    text-align: center;
}

section.all-benefits div.all-benefits__blocks div.benefit p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 75em) {

    section.all-benefits div.all-benefits__blocks div.inner-blocks {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 37.5em) {

    section.all-benefits div.all-benefits__blocks div.inner-blocks {
        padding-right: 15px;
        padding-left: 15px;
        margin: 2em auto 0 auto;
        grid-template-columns: 100%;
        grid-row-gap: 1em;
    }

    section.all-benefits div.all-benefits__blocks div.benefit {
        margin-bottom: 35px;   
    }

    section.all-benefits div.all-benefits__blocks div.benefit p br {
        display: none;
    }

}

/* Video */

section.video-block div.video-block__text {
    max-width: 800px;
    margin: 0 auto 3em auto;
    text-align: center;
}

section.video-block div.video-block__video {
    position: relative;
    padding-top: 56.25%;
}

section.video-block div.video-block__video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

@media screen and (max-width: 37.5em) {

    section.video-block div.video-block__text {
        margin: 0 auto 2em auto;
    }

}

/* Gallery */

section.gallery-block div.gallery-block__text {
    max-width: 800px;
    margin: 0 auto 3em auto;
    text-align: center;
}

section.gallery-block div.gallery-block__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
}

section.gallery-block div.gallery-block__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
}

section.gallery-block div.gallery-block__images div.image {
    position: relative;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
}

section.gallery-block div.gallery-block__images div.image:hover span.play-btn {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #11ABFF;
}

section.gallery-block div.gallery-block__images div.image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section.gallery-block div.gallery-block__images div.image span.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #E5007D;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

section.gallery-block div.gallery-block__images div.image span.play-btn svg {
    margin-left: 5px;
    margin-top: 0;
    width: 25px;
    height: 30px;
}

section.gallery-block div.gallery-block__images div.image span.play-btn svg path {
    fill: #ffffff;
}

@media screen and (max-width: 75em) {

    section.gallery-block div.gallery-block__images {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 37.5em) {

    section.gallery-block div.gallery-block__text {
        margin: 0 auto 2em auto;
    }

    section.gallery-block div.gallery-block__images {
        grid-template-columns: 100%;
    }

}

/* Columns */

section.columns div.columns-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

section.columns div.columns__left {
    width: 50%;
    padding-right: 4em;
}

section.columns div.columns__right {
    width: 50%;
}

@media screen and (max-width: 75em) {

    section.columns div.columns-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.columns div.columns__left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2em;
    }

    section.columns div.columns__right {
        width: 100%;
    }

}

@media screen and (max-width: 37.5em) {

    section.columns div.columns-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

}

/* Training Dates */

section.training-dates div.training-dates__text {
    max-width: 700px;
    margin: 0 auto 3em auto;
    padding-left: 30px;
    padding-right: 30px;
}

section.training-dates div.training-dates__text {
    max-width: 800px;
    margin: 0 auto 3em auto;
}

section.training-dates div.training-dates__slider {
    opacity: 0;
    visibility: hidden;
}

section.training-dates div.training-dates__slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

section.training-dates div.training-dates__slider div.month {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2em;
    box-shadow: 1px 0 6px 1px rgba(0, 0, 0, 0.05);
    color: #000000;
    margin: 0 1em;
}

section.training-dates div.training-dates__slider div.month div.month__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 10px;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.prev-btn {
    margin-right: 10px;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.prev-btn,
section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.next-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    background-color: #E5007D;
    padding: 15px;
    border-radius: 50%;
    outline: 0;
    z-index: 50;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.prev-btn:focus,
section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.next-btn:focus {
    outline: 0;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.prev-btn svg,
section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.next-btn svg {
    width: 23px;
    height: 20px;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.prev-btn svg {
    margin-left: -3px;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.next-btn svg {
    margin-right: -3px;
}

section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.prev-btn svg path,
section.training-dates div.training-dates__slider div.month div.month__title div.arrows button.next-btn svg path {
    fill: #ffffff;
}

section.training-dates div.training-dates__slider div.month div.month__dates {
    margin-top: 1em;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date {
    position: relative;
    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;
    background-color: #FBF3E4;
    border: 1px solid #000000;
    margin-bottom: 0.5em;
    border-radius: 10px;
    padding: 1em 0 1em 75px;
    overflow: hidden;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date:last-of-type {
    margin-bottom: 0;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__date {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 75px;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__date span.date__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__date span.date-day {
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.4em;
    line-height: 1em;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__date span.date-month {
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8em;
    line-height: 1em;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__title {
    width: 40%;
    padding-left: 1em;
    padding-right: 1em;
    margin-top: 5px;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__title span.title {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8em;
    line-height: 1em;
    margin-bottom: 0.25em;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__time {
    width: 30%;
    margin-top: 5px;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__time span.title {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8em;
    line-height: 1em;
    margin-bottom: 0.25em;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__price {
    width: 10%;
    margin-top: 5px;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__price span.title {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8em;
    line-height: 1em;
    margin-bottom: 0.25em;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 20%;
    padding-right: 1em;
}

section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__link .rm-btn {
    white-space: nowrap;
    min-width: 148px;
}

section.training-dates div.training-dates__slider ul.slick-dots {
    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;
    list-style-type: none;
    padding: 0;
    margin: 1.5em 0 auto 0;
    z-index: 997;
}
    
section.training-dates div.training-dates__slider ul.slick-dots li {
    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;
    width: 10px;
    height: 10px;
    margin: 0 25px 0 0;
}

section.training-dates div.training-dates__slider ul.slick-dots li:last-child {
    margin: 0;
}

section.training-dates div.training-dates__slider ul.slick-dots li:only-child {
    display: none;
} 

section.training-dates div.training-dates__slider ul.slick-dots li:nth-of-type(1n+10) {
    display: none;
}

section.training-dates div.training-dates__slider ul.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border-color: #E5007D;
    border: 1px solid #E5007D;
    background-color: transparent;
    border-radius: 50%;
    text-indent: -9999px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.training-dates div.training-dates__slider ul.slick-dots li button:focus {
    outline: none;
}

section.training-dates div.training-dates__slider ul.slick-dots li:hover button,
section.training-dates div.training-dates__slider ul.slick-dots li.slick-active button {
    background-color: #E5007D;
}

section.training-dates div.training-dates__slider ul.slick-dots li button:before {
    display: none;
}

@media screen and (max-width: 37.5em) {

    section.training-dates div.training-dates__text {
        margin: 0 auto 2em auto;
        padding-left: 15px;
        padding-right: 15px;
    }

    section.training-dates div.training-dates__slider div.month {
        margin: 0 0.5em;
        padding: 1.5em;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date {
        margin-bottom: 1em;
    }

}

@media screen and (max-width: 62.5em) {

    section.training-dates div.training-dates__slider div.month div.month__dates div.date {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__title {
        width: 100%;
        padding: 0 1em;
        margin-top: 0.5em;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__time {
        width: 100%;
        padding: 0 1em;
        margin-top: 0.5em;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__price {
        width: 100%;
        padding: 0 1em;
        margin-top: 0.5em;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__link {
        width: 100%;
        padding: 0 1em;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 0.5em;
    }

}

@media screen and (max-width: 37.5em) {

    section.training-dates div.training-dates__text {
        margin: 0 auto 2em auto;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date {
        padding: 75px 0 1em 0;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__date {
        height: 75px;
        width: 100%;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__title {
        margin-top: 1em;
        text-align: center;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__time {
        text-align: center;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__price {
        text-align: center;
    }

    section.training-dates div.training-dates__slider div.month div.month__dates div.date span.date__link .rm-btn {
        width: 100%;
    }

}

/* Large CTA Block */

section.large-cta-block div.cta-wrapper {
    margin: 0 auto;
    text-align: center;
}

section.large-cta-block div.cta-wrapper div.cta-wrapper__text {
    margin-bottom: 2em;
}

section.large-cta-block div.cta-wrapper div.cta-wrapper__link {
    margin-top: 2em;
}

/* CTA Block */

section.cta-block div.columns {
    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;
    max-width: 1000px;
    margin: 0 auto;
}

section.cta-block div.columns div.columns__text {
    width: 65%;
    color: #000000;
}

section.cta-block div.columns div.columns__text h2,
section.cta-block div.columns div.columns__text h3 {
    margin-bottom: 0;
}

section.cta-block div.columns div.columns__text p {
    margin: 1em 0 0 0;
}

section.cta-block div.columns div.columns__text p.btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    margin-top: 1.5em;
}

section.cta-block div.columns div.columns__image {
    width: 35%;
}

section.cta-block.image-left div.columns div.columns__image {
    order: 1;
}

section.cta-block.image-left div.columns div.columns__text {
    order: 2;
    padding-left: 4em;
}

section.cta-block.image-right div.columns div.columns__image {
    order: 2;
}

section.cta-block.image-right div.columns div.columns__text {
    order: 1;
    padding-right: 4em;
}

@media screen and (max-width: 37.5em) {

    section.cta-block div.columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section.cta-block div.columns div.columns__text {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    section.cta-block.image-left div.columns div.columns__text,
    section.cta-block.image-right div.columns div.columns__text {
        order: 2;
        padding-left: 0;
        padding-right: 0;
    }

    section.cta-block div.columns div.columns__text br {
        display: none;
    }

    section.cta-block div.columns div.columns__text p.btn-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 1em;
    }

    section.cta-block div.columns div.columns__image {
        width: 100%;
        text-align: center;
    }

    section.cta-block.image-left div.columns div.columns__image,
    section.cta-block.image-right div.columns div.columns__image {
        order: 1;
    }

    section.cta-block div.columns div.columns__image img {
        margin-bottom: 1em;
    }
    
}

/* Video Testimonials */

section.video-testimonials {
    position: relative;
    overflow: hidden;
    text-align: center;
}

section.video-testimonials div.video-testimonials__text {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 2em auto;
    color: #000000;
}

section.video-testimonials div.video-testimonials__text span.icon {
    display: block;
    margin: 0 auto 1em auto;
    width: 50px;
}

.ie section.video-testimonials div.video-testimonials__text span.icon {
   height: 50px;
}

section.video-testimonials div.video-testimonials__text span.icon svg path {
    fill: #F1BF50;
}

section.video-testimonials div.video-testimonials__text h2 {
    margin-bottom: 0;
}

section.video-testimonials div.video-testimonials__video {
    order: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 25%;
    margin: 0 auto;
    overflow: hidden;
}

section.video-testimonials div.video-testimonials__video:after {
    content: '';
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #3C515B;
    z-index: -1;
}

section.video-testimonials div.video-testimonials__video img.image {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100%;
    max-width: 800px;
    -o-object-fit: cover;
    object-fit: cover;
}

section.video-testimonials div.video-testimonials__video a.play-btn {
    background-color: #F1BF50;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.video-testimonials div.video-testimonials__video a.play-btn.pink {
    background-color: #E5007D;
}

section.video-testimonials div.video-testimonials__video a.play-btn:hover {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #11ABFF;
}

section.video-testimonials div.video-testimonials__video a.play-btn svg {
    margin-left: 5px;
    margin-top: 0;
    width: 25px;
    height: 30px;
}

section.video-testimonials div.video-testimonials__video a.play-btn svg path {
    fill: #ffffff;
}

section.video-testimonials div.video-testimonials__slider {
    opacity: 0;
    visibility: hidden;
    padding: 2em 0 4em 0;
    background-color: #3C515B;
}

section.video-testimonials div.video-testimonials__slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

section.video-testimonials div.video-testimonials__slider div.text-wrapper span.author {
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0;
    color: #4BC1F3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

section.video-testimonials div.video-testimonials__slider div.text-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

section.video-testimonials div.video-testimonials__slider div.text-wrapper p {
    font-family: 'Fredoka One', cursive;
    font-weight: 500;
    font-size: 1.8em;
    line-height: 1.2em;
    color: #ffffff;
}

section.video-testimonials div.video-testimonials__slider ul.slick-dots {
    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;
    list-style-type: none;
    padding: 0;
    margin: 1.5em 0 auto 0;
    z-index: 997;
}
    
section.video-testimonials div.video-testimonials__slider ul.slick-dots li {
    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;
    width: 10px;
    height: 10px;
    margin: 0 25px 0 0;
}

section.video-testimonials div.video-testimonials__slider ul.slick-dots li:last-child {
    margin: 0;
}

section.video-testimonials div.video-testimonials__slider ul.slick-dots li:only-child {
    display: none;
} 

section.video-testimonials div.video-testimonials__slider ul.slick-dots li:nth-of-type(1n+10) {
    display: none;
}

section.video-testimonials div.video-testimonials__slider ul.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border-color: #F1BF50;
    border: 1px solid #F1BF50;
    background-color: transparent;
    border-radius: 50%;
    text-indent: -9999px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.video-testimonials div.video-testimonials__slider ul.slick-dots li button:focus {
    outline: none;
}

section.video-testimonials div.video-testimonials__slider ul.slick-dots li:hover button,
section.video-testimonials div.video-testimonials__slider ul.slick-dots li.slick-active button {
    background-color: #F1BF50;
}

section.video-testimonials div.video-testimonials__slider ul.slick-dots li button:before {
    display: none;
}

@media screen and (max-width: 64em) {

    section.video-testimonials div.video-testimonials__video {
        padding-top: 50%;
    }

}

@media screen and (max-width: 37.5em) {

    section.video-testimonials div.video-testimonials__text br {
        display: none;
    }

    section.video-testimonials div.video-testimonials__slider {
        padding: 2em 0;
    }

    section.video-testimonials div.video-testimonials__slider ul.slick-dots {
        margin: 1em 0 0 0;
    }

    section.video-testimonials div.video-testimonials__slider div.text-wrapper p {
        font-size: 1.6em;
        line-height: 1.2em;
    }

    section.video-testimonials div.video-testimonials__slider div.text-wrapper p br {
        display: none;
    }

}

/* Team Members */

section.team-members div.team-members__text {
    position: relative;
    width: 100%;
    padding-top: 2em;
    padding-left: 1em;
    padding-right: 1em;
}

section.team-members div.team-members__text.no-border.light-blue-bg {
    background-color: #ffffff;
    padding-top: 0;
}

section.team-members div.team-members__text div.text-wrapper {
    position: relative;
    background-color: #ffffff;
    text-align: center;
    padding-top: 2em;
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

section.team-members div.team-members__text.no-border div.text-wrapper {
    padding-top: 0;
    border-radius: 0;
}

section.team-members div.team-members__text div.text-wrapper p:last-of-type {
    margin-bottom: 0;
}

section.team-members div.team-members__blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    max-width: 1200px;
    width: 90%;
    margin: 3em auto 0 auto;
}

section.team-members div.team-members__blocks.no-margin {
    margin: 0 auto;
}

section.team-members div.team-members__blocks div.block {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

section.team-members div.team-members__blocks div.block.cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #11abff;
    color: #ffffff;
    padding: 2em;
}

section.team-members div.team-members__blocks div.block.cta div.block__cta.align-left {
    text-align: left;
}

section.team-members div.team-members__blocks div.block.cta div.block__cta.align-center {
    text-align: center;
}

section.team-members div.team-members__blocks div.block.cta div.block__cta.align-right {
    text-align: right;
}

section.team-members div.team-members__blocks div.block.cta div.block__cta p:last-of-type {
    margin-bottom: 0;
}

section.team-members div.team-members__blocks div.block.cta div.block__cta img {
    width: auto;
    max-height: 75px;
}

section.team-members div.team-members__blocks div.block.cta a.rm-btn {
    margin-top: 0.5em;
}

section.team-members div.team-members__blocks div.block.cta a.rm-btn.pink:hover {
    background-color: #F1BF50;
}

section.team-members div.team-members__blocks div.block.team_member {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
}

section.team-members div.team-members__blocks div.block.team_member a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

section.team-members div.team-members__blocks div.block.team_member div.block__image img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

section.team-members div.team-members__blocks div.block.team_member div.block__image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 100%);
}

section.team-members div.team-members__blocks div.block.team_member div.block__text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2em;
    z-index: 1;
}

section.team-members div.team-members__blocks div.block.team_member div.block__text.text--black {
    color: #000000;
}

section.team-members div.team-members__blocks div.block.team_member div.block__text.text--white {
    color: #ffffff;
}

section.team-members div.team-members__blocks div.block.team_member div.block__text span.name {
    display: block;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.75em;
    line-height: 1.25em;
    margin-bottom: 0.25em;
}

section.team-members div.team-members__blocks div.block.team_member div.block__text span.job-title {
    display: block;
}

div.fancybox__content.block__profile {
    border-radius: 10px;
    padding: 2em;
    padding-top: 4em;
    max-width: 800px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

div.fancybox__content.block__profile div.profile-image {
    width: 30%;
}

div.fancybox__content.block__profile div.profile-text {
    width: 70%;
    padding-left: 2em;
    padding-right: 15px;
    overflow-y: auto;
    max-height: 221px;
    color: #000000;
}

div.fancybox__content.block__profile div.profile-text::-webkit-scrollbar-track {
    border: 1px solid black;
    background-color: #F5F5F5;
}

div.fancybox__content.block__profile div.profile-text::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

div.fancybox__content.block__profile div.profile-text::-webkit-scrollbar-thumb {
    background-color: #000000;  
}

div.fancybox__content.block__profile div.profile-text p:last-of-type {
    margin-bottom: 0;
}

div.fancybox__content.block__profile div.profile-text span.name {
    display: block;
    font-family: 'Fredoka One', sans-serif;
    font-size: 1.75em;
    line-height: 1.25em;
    margin-bottom: 0.25em;
}

div.fancybox__content.block__profile div.profile-text span.job-title {
    display: block;
    margin-bottom: 0.5em;
}

div.fancybox__content.block__profile button.is-close-btn {
    top: 15px !important;
    right: 15px !important;
    background-color: #E5007D;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

div.fancybox__content.block__profile button.is-close-btn:focus,
div.fancybox__content.block__profile button.is-close-btn:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

div.fancybox__content.block__profile button.is-close-btn:hover {
    background-color: #11ABFF;
}

div.fancybox__content.block__profile button.is-close-btn svg {
    width: 15px;
    height: 15px;
    stroke: #ffffff;
}

@media screen and (max-width: 75em) { 

    section.team-members div.team-members__blocks {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 62.5em) { 

    section.team-members div.team-members__blocks {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 37.5em) {

    section.team-members div.team-members__text br {
        display: none;
    }

    section.team-members div.team-members__blocks {
        margin: 2em auto 0 auto;
        grid-template-columns: 100%;
    }

    div.fancybox__content.block__profile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    div.fancybox__content.block__profile div.profile-image {
        width: 100%;
        margin-bottom: 1em;
    }

    div.fancybox__content.block__profile div.profile-text {
        width: 100%;
        padding-left: 0;
    }

}

/* Testimonials */

section.testimonials {
    background-color: #F5F5F5;
    position: relative;
    overflow: hidden;
    text-align: center;
}

section.testimonials div.wrapper {
    max-width: 1000px;
}

section.testimonials div.testimonial-slider {
    opacity: 0;
    visibility: hidden;
}

section.testimonials div.testimonial-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

section.testimonials div.testimonial-slider div.text-wrapper span.icon {
    display: block;
    margin: 0 auto;
    width: 50px;
}

.ie section.testimonials div.testimonial-slider div.text-wrapper span.icon {
   height: 50px;
}

section.testimonials div.testimonial-slider div.text-wrapper span.icon svg path {
    fill: #F1BF50;
}

section.testimonials div.testimonial-slider div.text-wrapper span.author {
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    margin-top: 1em;
    margin-bottom: 0;
    color: #4BC1F3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

section.testimonials div.testimonial-slider div.text-wrapper p {
    font-family: 'Fredoka One', cursive;
    font-weight: 500;
    margin-top: 1em;
    font-size: 1.8em;
    line-height: 1.2em;
    color: #000000;
}

section.testimonials div.testimonial-slider ul.slick-dots {
    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;
    list-style-type: none;
    padding: 0;
    margin: 1.5em 0 0 0;
    z-index: 997;
}
    
section.testimonials div.testimonial-slider ul.slick-dots li {
    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;
    width: 10px;
    height: 10px;
    margin: 0 25px 0 0;
}

section.testimonials div.testimonial-slider ul.slick-dots li:last-child {
    margin: 0;
}

section.testimonials div.testimonial-slider ul.slick-dots li:only-child {
    display: none;
} 

section.testimonials div.testimonial-slider ul.slick-dots li:nth-of-type(1n+10) {
    display: none;
}

section.testimonials div.testimonial-slider ul.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border-color: #000000;
    border: 1px solid #000000;
    background-color: transparent;
    border-radius: 50%;
    text-indent: -9999px;
    transition: all 0.3s ease-in-out;
}

section.testimonials div.testimonial-slider ul.slick-dots li:hover button,
section.testimonials div.testimonial-slider ul.slick-dots li.slick-active button {
    background-color: #000000;
}

section.testimonials div.testimonial-slider ul.slick-dots li button:before {
    display: none;
}

@media screen and (max-width: 37.5em) {

    section.testimonials div.testimonial-slider ul.slick-dots {
        margin: 1em 0 0 0;
    }

    section.testimonials div.testimonial-slider div.text-wrapper p {
        font-size: 1.6em;
        line-height: 1.2em;
    }

    section.testimonials div.testimonial-slider div.text-wrapper p br {
        display: none;
    }

}

/* Video Slider */

section.video-blocks div.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

@media screen and (max-width: 37.5em) {

    section.video-blocks div.content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

section.video-blocks div.video-blocks__text {
    color: #000000;
    margin-bottom: 3em;
    padding-right: 15px;
    padding-left: 15px;
}

@media screen and (max-width: 37.5em) {
    
    section.video-blocks div.video-blocks__text {
        margin-bottom: 2em;
    }
}

section.video-blocks div.video-blocks__videos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 2em;
    column-gap: 50px;
}

section.video-blocks div.video-blocks__videos div.video-block {
    position: relative;
    color: #000000;
    width: 100%;
    max-width: calc(25% - 37.5px);
}

@media screen and (max-width: 62.5em) {

    section.video-blocks div.video-blocks__videos div.video-block {
        max-width: calc(33.3333333% - 33.5px);
    }
}

@media screen and (max-width: 50em) {

    section.video-blocks div.video-blocks__videos div.video-block {
        max-width: calc(50% - 25.5px);
    }
}

@media screen and (max-width: 37.5em) {

    section.video-blocks div.video-blocks__videos div.video-block {
        max-width: unset;
    }
}

section.video-blocks div.video-blocks__videos div.video-block h3 {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.5em;
}

section.video-blocks div.video-blocks__videos div.video-block p {
    margin-top: 1em;
    margin-bottom: 0;
}

section.video-blocks div.video-blocks__videos div.video-block a {
    text-decoration: none;
    cursor: pointer;
}

section.video-blocks div.video-blocks__videos div.video-block a:hover span.play-btn {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);   
    background-color: #11ABFF;
}

section.video-blocks div.video-blocks__videos div.video-block span.play-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #E5007D;
    padding: 15px;
    border-radius: 50%;
}

section.video-blocks div.video-blocks__videos div.video-block span.play-btn svg {
    width: 30px;
    height: 30px;
    margin-left: 6px;
}

section.video-blocks div.video-blocks__videos div.video-block span.play-btn svg path {
    fill: #ffffff;
}

section.video-blocks div.video-blocks__videos div.video-block div.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 56.25%;
    height: 0;
    background-color: #ffffff;
}

section.video-blocks div.video-blocks__videos div.video-block div.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
