@charset "UTF-8";

@font-face {
    font-family: "All Round Gothic";
    src: url("../fonts/AllRoundGothicW03Book.ttf");
    src: url("../fonts/AllRoundGothicW03Book.ttf") format("ttf");
    src: url("../fonts/AllRoundGothicW03Book.woff") format("woff")
}

@font-face {
    font-family: "AllRoundGothicDemiBold";
    src: url("../fonts/AllRoundGothicW01Demi.ttf")
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    list-style: none
}

body {
    margin: 0;
    padding: 0;
    line-height: 1
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
ul {
    margin: 0;
    padding: 0
}

a {
    color: inherit;
    text-decoration: none
}

li {
    list-style: none
}

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

input, textarea, button {
    outline: none
}

textarea {
    resize: none
}

html {
    scroll-behavior: smooth
}

body, textarea {
    font-family: "All Round Gothic";
    letter-spacing: 1px;
    overflow-x: hidden
}

input:where([type="checkbox"], [type="radio"]) {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin: calc(0.75em - 11px) 0.25rem 0 0;
    border: 2px solid #93d500;
    border-radius: 4px;
    background: #fff no-repeat center center;
}
input[type="checkbox"]:checked {
    background-image: url('../images/checkbox.svg');
}
input[type="radio"]:checked {
    background-image: url('../images/radio.svg');
}
@media (max-width:1200px) {
    input:where([type="checkbox"], [type="radio"]) {
        width: 20px;
        height: 20px;
    }
}
@media (max-width:991px) {
    input:where([type="checkbox"], [type="radio"]) {
        width: 18px;
        height: 18px;
    }
    input[type="checkbox"]:checked {
        background-size: 12px 12px
    }
    input[type="radio"]:checked {
        background-size: 8px 8px
    }    
}
@media (max-width:768px) {
    input:where([type="checkbox"], [type="radio"]) {
        width: 16px;
        height: 16px;
    }
    input[type="checkbox"]:checked {
        border-radius: 3px;
        background-size: 11px 11px
    }
}
@media (max-width:550px) {
    input:where([type="checkbox"], [type="radio"]) {
        width: 14px;
        height: 14px;
    }
    input[type="checkbox"]:checked {
        background-size: 9px 9px
    }
    input[type="radio"]:checked {
        background-size: 4px 4px
    }    
}

input[type="radio"] {
    border-radius: 100%;
}
input:where([type="checkbox"], [type="radio"]):where(:active:not(:disabled), :focus) {
    border-color: #93d500;
    outline: none;
}
input:where([type="checkbox"], [type="radio"]):disabled {
    background: #eee;
}

.container {
    margin: 0 auto
}

.bolder {
    font-family: "AllRoundGothicDemiBold";
    font-weight: normal !important
}

button[type="submit"] {
    cursor: pointer
}

.btn {
    display: inline-block;
    width: auto;
/*    text-transform: uppercase;*/
    font-weight: 700;
    color: #fff !important;
    background-color: #93d500;
    padding: 0.35em 2em;
    border-radius: 1em;
}
.btn.black {
    color: #93d500 !important;
    background-color: #000
}


.header {
    padding-top: 2.0833vw;
    padding-bottom: 2.7vw;
    width: 100%;
    z-index: 20;
    background-color: #fff
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear
}

.header.fixed.active {
    padding-top: 0vw;
    padding-bottom: 1vw;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
}

.header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__nav ul li:not(:first-child) {
    margin-left: 4.1vw
}

.header__nav ul li.homemenu a {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    color: transparent !important;
    padding: 0 !important;
    margin-bottom: 4px;
    width: 9vw;
    height: 10vw
}

.homemenu span {
    display: none;
}

.header__nav ul a {
    color: #545659;
    font-size: 23.91px;
    line-height: 1.38;
    font-weight: 700;
    text-transform: lowercase;
    -webkit-transition: color 0.5s;
    transition: color 0.5s
}

.header__nav ul a:hover {
    color: #93d500
}

.header__btn,
.header__nav-logo,
.header__nav-mobile {
    display: none;
    cursor: pointer
}

@media (max-width:991px) {
    .header {
        padding-top: 1vw;
        padding-bottom: 1vw
    }
    .header__wrapper {
        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
    }
    .header__btn,
    .header__nav-logo,
    .header__nav-mobile {
        display: block
    }
    .header__btn {
        position: absolute;
        left: 10px
    }
    .header__btn img {
        width: 4vw;
        height: 4vw;
        -o-object-fit: contain;
        object-fit: contain
    }
    .header__nav-logo img {
        margin-bottom: 4px;
        height: 14vw;
        width: auto;
        -o-object-fit: contain;
        object-fit: contain
    }
    .header__btn-close {
        display: block;
        position: absolute;
        width: 30px;
        height: 30px;
        z-index: 20;
        right: 0px;
        top: 20px;
        font-size: 30px;
        color: #545659;
        font-weight: 900
    }
    .header__nav {
        display: none
    }
    .header__nav-mobile {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 10;
        top: 0px;
        bottom: 0%;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 20px;
        padding-left: 10px;
        -webkit-transition: -webkit-transform 0.6s linear;
        transition: -webkit-transform 0.6s linear;
        transition: transform 0.6s linear;
        transition: transform 0.6s linear, -webkit-transform 0.6s linear
    }
    .header__nav-mobile ul li:not(:first-child) {
        margin-top: 30px
    }
    .header__nav-mobile ul li a {
        font-size: 22px;
        text-transform: lowercase
    }
    .header__nav-mobile.opened {
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@media (max-width:550px) {
    .header__btn img {
        width: 6vw;
        height: 6vw;
        -o-object-fit: contain;
        object-fit: contain
    }
    .header__nav-logo img {
        height: 20vw;
        width: auto
    }
}

.footer {
    padding: 4vw 0;
    background-color: #54565a
}

.footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 6vw
}

.footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #fff
}

.footer__nav-logo .logo-list {
    display: flex;
    justify-content: space-evenly
}

.footer__nav-logo a img {
    height: 7vw
}

@media (max-width:991px) {
    .footer__nav-logo a img {
        height: 11vw
    }
}

@media (max-width:599px) {
    .footer__nav-logo a img {
        height: 18vw
    }
}

.footer__nav-logo .copyright {
    text-align: center;
    font-weight: 500;
    font-size: 0.8vw;
    margin-top: 1vw
}

@media (max-width:991px) {
    .footer__nav-logo .copyright {
        font-size: 1.5vw;
        margin-top: 3vw
    }
}

@media (max-width:599px) {
    .footer__nav-logo .copyright {
        font-size: 2.6vw;
        margin-top: 4vw
    }
}

.footer__nav nav {
    margin-left: 7vw
}

.footer__nav nav ul {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 32vw;
    height: 100%
}

.footer__nav nav ul li {
    width: 15vw;
    margin: 0 0 0.5vw
}

.footer__nav nav ul a {
    font-size: 1.25vw;
    line-height: 1.38;
    font-weight: 700;
    text-transform: lowercase;
    -webkit-transition: color 0.5s;
    transition: color 0.5s
}

@media (max-width:991px) {
    .footer__nav nav ul a {
        font-size: 2.2vw
    }
}

@media (max-width:599px) {
    .footer__nav nav ul a {
        font-size: 3.2vw
    }
}

.footer__nav nav ul a:hover {
    color: #93d500
}

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

.footer__nav-social ul li:not(:first-child) {
    margin-left: 15px
}

.footer__nav-social ul li img {
    width: 3.6458vw
}

@media (max-width:991px) {
    .footer__nav-social ul li img {
        width: 5.6458vw
    }
}

@media (max-width:599px) {
    .footer__nav-social ul li img {
        width: 8.6458vw
    }
}

@media (max-width:991px) {
    .footer {
        padding: 50px 0;
        background-color: #54565a
    }
    .footer__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0
    }
    .footer__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .footer__nav nav {
        margin-left: 0;
        margin-bottom: 20px
    }
    .footer__nav nav ul {
        width: auto
    }
    .footer__nav nav ul li {
        width: auto
    }
    .footer__nav nav ul li:not(:first-child) {
        margin-left: 20px
    }
    .footer__nav-social {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        margin-bottom: 20px
    }
    .footer__nav-social ul {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
    .footer__nav-social ul li:not(:first-child) {
        margin-left: 15px
    }
}

@media (max-width:550px) {
    .footer__nav nav ul {
        flex-direction: column
    }
    .footer__nav nav ul li {
        margin-left: 0 !important
    }
}

/*---------start pages style ----------*/
.slick-arrow {
    cursor: pointer
}

.info__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media (max-width:991px) {
    .info__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.banner-wrap {
    width: 100%
}
.banner-wrap img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 50vw
}
@media (max-width:550px) {
    .banner-wrap img {
        max-height: unset
    }
}

.affiliations_slider, .photo-gallery {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.affiliations_slider div {
    margin: 0 auto
}

.affiliations_slider .slick-list {
    margin: 0 2.5vw
}

.affiliations_slider .slick-arrow, .photo-gallery .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3.125vw;
    background-color: transparent;
    outline: none;
    border: none;
    z-index: 2
}

.affiliations_slider .slick-next, .photo-gallery .slick-next {
    right: 0
}

.affiliations_slider .slick-prev, .photo-gallery .slick-prev {
    left: 0
}

@media (max-width:1430px) {
    .affiliations_slider .slick-prev, .photo-gallery .slick-prev {
        left: 0
    }
}

@media (max-width:1300px) {
    .affiliations_slider .slick-arrow, .photo-gallery .slick-arrow {
        width: 4.125vw
    }
    .affiliations_slider .slick-list {
        margin: 0 3vw
    }
}

@media (max-width:991px) {
    .affiliations_slider .slick-arrow, .photo-gallery .slick-arrow {
        width: 6.125vw
    }
    .affiliations_slider .slick-list {
        margin: 0 4vw
    }
}

@media (max-width:550px) {
    .affiliations_slider .slick-arrow, .photo-gallery .slick-arrow {
        width: 10.125vw
    }
    .affiliations_slider .slick-list {
        margin: unset
    }
}

/*   Jobs page   */
.jobs-page {
    padding: 0;
    margin-bottom: 6vw;
    color: #54565a
}

.jobs-page .container {
    padding: 0 20vw 0;
}

.jobs-page h2 {
    font-size: 1.5vw;
    text-decoration: underline;
    text-align: center;
    margin: 4vw auto 4vw;
    color: #93d500;
}

.jobs-page p, .jobs-page li {
    font-size: 1.2vw;
    line-height: 1.2
}

.jobs-page p.title {
    font-weight: bold
}
.jobs-page .text {
    margin-top: 0.5vw;
    margin-bottom: 3vw
}
.jobs-page li {
    margin-left: 1vw;
    list-style: circle;
}

.jobs-page .btn-links {
    margin: 6vw auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-around;
    height: 100%;
    text-align: center;
    text-transform: uppercase
}

.jobs-page .btn-links a {
    font-family: "All Round Gothic";
    font-size: 1.35vw;
    padding: 0.4vw 0;
    width: 16vw;
    margin: 1vw 0;
    line-height: 1.3;
    cursor: pointer;
    background-color: #93d500;
    border: none;
    color: #fff
}

.jobs-page p, .jobs-page ul, .jobs-page ol{
    margin-top: 0.5vw;
    margin-bottom: 3vw
}

.jobs-page h3 {
    font-size: 1.2vw;
    line-height: 1.2;
    font-weight: bold
}

@media (max-width:991px) {
    .jobs-page {
        margin-bottom: 8vw;
    }
    .jobs-page h2 {
        font-size: 2.5vw;
        margin: 5vw auto 4vw;
    }
    .jobs-page .container {
        padding: 0 3vw 0;
    }
    .jobs-page p, .jobs-page li {
        font-size: 2vw;
    }
    .jobs-page li {
        margin-left: 2vw
    }
    .jobs-page .btn-links {
        width: 62vw
    }
    .jobs-page .btn-links a {
        font-size: 2.2vw;
        width: 25vw;
        line-height: 1.4
    }
    .jobs-page p, .jobs-page ul, .jobs-page ol, .jobs-page h3{
        font-size: 2vw;
    }
}

@media (max-width:550px) {
    .jobs-page {
        margin-bottom: 10vw
    }
    .jobs-page h2 {
        font-size: 3.5vw
    }
    .jobs-page p, .jobs-page li {
        font-size: 2.8vw
    }
    .jobs-page li {
        margin-left: 3vw
    }
    .jobs-page .btn-links {
        width: 100%;
        margin-top: 8vw
    }
    .jobs-page .btn-links a {
        font-size: 3vw;
        width: 35vw;
        line-height: 2
    }
    .jobs-page p, .jobs-page ul, .jobs-page ol, .jobs-page h3{
        font-size: 2.8vw
    }
}
/*   /Jobs page   */

.subscribe {
    position: relative;
    color: #54565a;
    width: 50vw;
    border: 0.2vw solid #545659;
    border-radius: 2vw;
    margin: 6vw auto; 
    padding: 2.5vw;
    text-align: center
}

.subscribe h2 {
    font-size: 2vw;
    color: #93d500
}

.subscribe form {
    margin-top: 2vw
}

.subscribe .form-heading {
    margin: 2.5vw auto;
    font-size: 1.5vw;
    line-height: 1.35
}

.subscribe button {
    font-family: "All Round Gothic";
    width: 22vw;
    background-color: #93d500;
    border: none;
    color: #fff;
    font-size: 1.3vw;
    text-transform: uppercase;
    padding: 0.5vw 0;
    cursor: pointer;
    border-radius: 0.9em
}

@media (max-width:991px) {
    .subscribe {
        margin: 8vw auto;
        width: 60vw;
        border-width: 0.35vw;
        padding: 4vw 3vw
    }
    .subscribe form {
        margin-top: 3vw
    }
    .subscribe h2 {
        font-size: 3vw
    }
    .subscribe .form-heading {
        margin: 3.5vw auto;
        font-size: 2vw
    }
    .subscribe button {
        width: 34vw;
        font-size: 2.2vw;
        padding: 0.75vw 0
    }
}

@media (max-width:550px) {
    .subscribe {
        margin: 11vw auto;
        width: 90vw;
        border-width: 0.5vw;
        padding: 6vw 3vw
    }
    .subscribe form {
        margin-top: 6vw
    }
    .subscribe h2 {
        font-size: 4.5vw
    }
    .subscribe .form-heading {
        margin: 5vw auto;
        font-size: 3vw
    }
    .subscribe button {
        width: 55vw;
        font-size: 3.3vw;
        padding: 1.5vw 0
    }
}

.header.fixed + .under-header {
    padding-top: 15vw
}
.header.fixed + .under-header.content {
    padding-top: 12vw
}

.franchise-contact-inner {
    position: relative;
    margin: 0 auto
}
.franchise-contact-inner video {
    object-fit: cover;
    width: 100%
}

section.content {
    margin: 5vw 0
}
section.content picture img {
    object-fit: cover;
    width: 100%
}
section.content .text-block {
    padding: 3vw 15vw 0;
    text-align: center
}
section.content .text-block:first-child {
    padding-top: 0
}
section.content .text-block:last-child {
    padding-bottom: 0
}
section.content .text-block h2 {
    color: #93d500;
    font-size: 2.3vw;
    margin-bottom: 2.5vw;
    text-align: center !important
}
section.content .text-block p {
    margin-bottom: 2vw;
    font-size: 1.2vw;
    line-height: 1.6;
    color: #54565a;
    font-weight: 700
}

section.content .inner-container {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

@media (max-width: 991px) {
    section.content {
        margin: 7vw 0
    }
    .header.fixed + .under-header {
        padding-top: 16.5vw
    }
    .header.fixed + .under-header.content {
        padding-top: 13.5vw
    }
    section.content .text-block {
        padding: 4vw 5vw 2vw
    }
    section.content .text-block h2 {
        font-size: 3.2vw;
        margin-bottom: 3vw
    }
    section.content .text-block p {
        font-size: 2.2vw
    }
    section.content .inner-container {
        flex-direction: column
    }
    section.content .inner-container .side-image {
        width: 100%
    }
    section.content .inner-container .text-block {
        width: 100%;
        padding: 3vw 5vw
    }
}

@media (max-width:550px) {
    section.content {
        margin: 9vw 0
    }
    .header.fixed + .under-header {
        padding-top: 22.5vw
    }
    .header.fixed + .under-header.content {
        padding-top: 19.5vw
    }
    section.content .text-block {
        padding: 4vw
    }
    section.content .text-block h2 {
        font-size: 5vw;
        margin: 1vw auto 4vw
    }
    section.content .text-block p {
        font-size: 3.3vw
    }
    section.content .inner-container .text-block {
        padding: 5vw 4vw
    }
}

/**     Categories page */
.categories-page {
    padding-top: 13vw
}

.categories-page .container {
    width: 64%
}

.categories-page h1 {
    font-size: 2vw;
    text-decoration: underline;
    text-align: center;
    margin: 0 auto 4vw;
    color: #93d500
}

.categories-page .cat-item {
    display: flex;
    align-items: center;
    margin-bottom: 3vw
}

.categories-page .cat-item img {
    margin-right: 2vw;
    width: 18vw;
    height: auto
}

.categories-page .cat-item .entry-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-self: normal;
    font-size: 1.2vw;
    line-height: 1.2;
    color: #54565a
}

.categories-page .cat-item .entry-content .entry-title {
    font-size: 1.4vw;
    font-weight: 900;
    color: #93d500
}

.categories-page .cat-item .entry-content a {
    font-style: italic;
    text-decoration: underline;
    color: #93d500
}

@media (max-width:991px) {
    .categories-page .container {
        width: 84%
    }
    .categories-page h1 {
        font-size: 3vw;
        margin-bottom: 6vw;
    }
    .categories-page .cat-item {
        margin-bottom: 5vw
    }
    .categories-page .cat-item img {
        margin-right: 4vw;
        width: 27vw;
    }
    .categories-page .cat-item .entry-content {
        font-size: 1.6vw
    }
    .categories-page .cat-item .entry-content .entry-title {
        font-size: 2vw
    }
}

@media (max-width:550px) {
    .categories-page .container {
        width: 95%
    }
    .categories-page h1 {
        font-size: 4vw;
        margin-bottom: 8vw
    }
    .categories-page .cat-item {
        margin-bottom: 7vw
    }
    .categories-page .cat-item img {
        width: 32vw
    }
    .categories-page .cat-item .entry-content {
        font-size: 2.5vw
    }
    .categories-page .cat-item .entry-content .entry-title {
        font-size: 3vw
    }
}
/****  /Categories page  *****/

/***    KU academy          ***/
.academy-programs .info__wrapper {
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: stretch
}
.academy-programs .mosaic-item {
    width: 49vw;
    padding: 0.5vw 0;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
.location-maps .mosaic-item {
    width: 45vw;
    margin-top: 2vw
}
.location-maps .info__wrapper {
    align-items: flex-end
}
.academy-programs .mosaic-item .mosaic-background {
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 32vw
}
.academy-programs .mosaic-item .mosaic-info {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    padding: 1.5vw 0;
    text-align: center;
    background-color: #93d500
}
.academy-programs .mosaic-item .mosaic-info.fixed-height {
    padding: 0;
    height: 5vw
}
.academy-programs .mosaic-item .mosaic-info.bottom {
    background-color: #fff;
    padding-top: 2.5vw
}
.academy-programs .mosaic-item .mosaic-info .title {
    font-size: 1.5vw;
    font-weight: bold;
    color: #000
}
.location-maps .mosaic-item .mosaic-info .title {
    font-size: 2.3vw;
    text-transform: uppercase
}
.academy-programs .mosaic-item .mosaic-info .sub-title {
    font-size: 1.2vw;
    margin-top: 0.4vw;
    color: #000;
    font-style: italic
}
.inscription-float {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    align-content: space-around;
    justify-content: center;
}
.inscription-float a {
    color: #fff;
    font-size: 3.5vw;
    font-weight: bold !important;
    text-transform: uppercase;
    text-shadow: -2px 0 #54565a, 0 2px #54565a, 2px 0 #54565a, 0 -2px #54565a;
/*    -webkit-text-stroke: 1px #54565a;*/
    transition: 0.7s
}
.academy-programs .mosaic-item:hover .inscription-float a, .program-short .banner-wrap:hover .inscription-float a {
    transform: scale(1.05);
    transition: 0.7s
}
.academy-programs .mosaic-item .short-desc, .program-short .short-desc {
    width: 85%;
    margin: 2vw auto;
    font-size: 1.2vw;
    line-height: 1.5;
    color: #54565a
}
.academy-programs .mosaic-item .btn, .program-short .btn {
    align-self: center;
    font-size: 1.7vw
}

.reg-tryouts {
    text-align: center;
    padding: 1vw 0
}
.reg-tryouts a {
    font-size: 2vw
}

.partnership .list_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap
}
.partnership a:not(:last-child) {
    margin-right: 2vw
}
.partnership img {
    width: auto;
    max-width: 200px
}

.affiliations_slider a {
    margin: 2vw !important;
    height: 300px;
}

.subscribe input {
    display: block;
    border: 1px solid #93d500;
    padding: 0.45vw 1vw;
    margin: 1vw auto;
    color: #54565a;
    font-size: 1vw;
    width: 20vw
}

.subscribe input, .subscribe textarea {
    font-family: "All Round Gothic";
    font-weight: 700
}

@media (max-width:991px) {
    .academy-programs .info__wrapper {
        align-items: center
    }
    .academy-programs .mosaic-item {
        width: 99vw;
        margin-bottom: 3vw
    }
    .academy-programs .mosaic-item:last-child {
        margin-bottom: 0
    }
    .academy-programs .mosaic-item .mosaic-background {
        height: 60vw
    }
    .academy-programs .mosaic-item .mosaic-info {
        padding: 2vw 0
    }
    .location-maps .mosaic-item .mosaic-info {
        padding: 3vw 0
    }
    .academy-programs .mosaic-item .mosaic-info.bottom {
        padding-top: 4vw
    }
    .academy-programs .mosaic-item .mosaic-info.fixed-height {
        padding: 2vw 0;
        height: auto
    }
    .academy-programs .mosaic-item .mosaic-info .title {
        font-size: 2.5vw
    }
    .location-maps .mosaic-item .mosaic-info .title {
        font-size: 4.5vw
    }
    .academy-programs .mosaic-item .mosaic-info .sub-title {
        font-size: 2vw;
        margin-top: 0.6vw
    }
    .inscription-float a {
        font-size: 5.5vw
    }
    .academy-programs .mosaic-item .short-desc, .program-short .short-desc {
        width: 95%;
        margin: 2.5vw auto;
        font-size: 2.2vw
    }
    .academy-programs .mosaic-item .btn, .program-short .btn {
        font-size: 2.7vw
    }

    .reg-tryouts {
        padding: 2vw 0
    }
    .reg-tryouts a {
        font-size: 3vw
    }
    
    .partnership a:not(:last-child) {
        margin-right: 3vw
    }
    .partnership img {
        max-width: 150px
    }

    .affiliations_slider a {
        height: 250px
    }

    .subscribe input {
        width: 30vw;
        font-size: 1.7vw;
        padding: 0.5vw 1vw;
        margin: -0.5vw auto 2vw;
    }
}

@media (max-width:550px) {
    .academy-programs .mosaic-item {
        margin-bottom: 5vw
    }
    .location-maps .mosaic-item .mosaic-background {
        height: 90vw
    }
    .academy-programs .mosaic-item .mosaic-info {
        padding: 2.5vw 0
    }
    .location-maps .mosaic-item .mosaic-info {
        padding: 4.5vw 0;
    }
    .academy-programs .mosaic-item .mosaic-info.bottom {
        padding-top: 6vw
    }
    .academy-programs .mosaic-item .mosaic-info.fixed-height {
        padding: 2.5vw 0
    }
    .academy-programs .mosaic-item .mosaic-info .title {
        font-size: 3.5vw
    }
    .location-maps .mosaic-item .mosaic-info .title {
        font-size: 5.6vw
    }
    .academy-programs .mosaic-item .mosaic-info .sub-title {
        font-size: 3vw;
        margin-top: 0.9vw
    }
    .inscription-float a {
        font-size: 7vw
    }
    .academy-programs .mosaic-item .short-desc, .program-short .short-desc {
        margin: 3.5vw auto;
        font-size: 3.3vw
    }
    .academy-programs .mosaic-item .btn, .program-short .btn {
        font-size: 4vw
    }
    
    .reg-tryouts {
        padding: 3vw 0
    }
    .reg-tryouts a {
        font-size: 4.2vw
    }

    .partnership .list_wrap {
        flex-direction: column
    }
    .partnership a:not(:last-child) {
        margin-bottom: 4vw;
        margin-right: 0
    }
    .partnership img {
        max-width: 120px
    }

    .affiliations_slider a {
        height: 200px
    }

    .subscribe input {
        width: 50vw;
        font-size: 2.5vw;
        padding: 0.85vw 1.5vw;
        margin: 0 auto 3vw
    }
}
/***    /KU academy         **/

/***    KU program          **/
section.ku-program {
    margin-top: 0 !important
}
.header.fixed + section.ku-program {
    margin-top: 13vw !important
}

.ku-program .side-image {
    width: 55vw;
}
.ku-program .details {
    width: 45vw;
    padding: 0 5vw;
    text-align: left
}
.ku-program .details h3 {
    color: #93d500;
    font-size: 2vw
}
.ku-program .details h3:not(:first-child) {
    margin-top: 3vw
}
.ku-program .details .list {
    margin: 1.2vw 0
}
.ku-program .details .list p {
    display: flex;
    justify-content: space-between;
    font-size: 1.1vw;
    color: #54565a;
    margin: 0.8vw 0
}
.ku-program .details .list .name {
    font-weight: bold;
    font-size: 1vw
}

@media (max-width:991px) {
    .header.fixed + section.ku-program {
        margin-top: 15vw !important
    }
    .ku-program .details {
        width: 66%;
        text-align: center
    }
    .ku-program .details h3 {
        margin-top: 4vw;
        font-size: 3vw
    }
    .ku-program .details .list {
        margin: 1.8vw 0
    }
    .ku-program .details .list p {
        font-size: 1.6vw;
        margin: 1.3vw 0
    }
    .ku-program .details .list .name {
        font-size: 1.5vw
    }
}

@media (max-width:550px) {
    .header.fixed + section.ku-program {
        margin-top: 21vw !important
    }
    .ku-program .details {
        width: 100%
    }
    .ku-program .details h3 {
        margin-top: 5vw;
        font-size: 4.5vw
    }
    .ku-program .details .list {
        margin: 2.5vw 0
    }
    .ku-program .details .list p {
        font-size: 2.6vw;
        margin: 2vw 0
    }
    .ku-program .details .list .name {
        font-size: 2.5vw
    }
}
/***    /KU program         **/

/***    KU clinic          **/
.ku-clinic .details {
    width: 42vw;
    text-align: center;
    margin: 0 auto;
}
.ku-clinic .details .list {
    margin: 0 0 1.4vw
}
.ku-clinic .details .list p {
    display: flex;
    justify-content: space-between;
    font-size: 1.2vw;
    color: #54565a;
    font-weight: bold;
    margin: 1vw 0
}

@media (max-width:991px) {
    section.content.ku-clinic .text-block h2 {
        margin-bottom: 0
    }
    .ku-clinic .details {
        width: 65vw
    }
    .ku-clinic .details .list {
        margin: 0 0 2vw
    }
    .ku-clinic .details .list p {
        font-size: 2vw;
        margin: 1.6vw 0
    }
}

@media (max-width:550px) {
    .ku-clinic .details {
        width: 90vw
    }
    .ku-clinic .details .list {
        margin: 0 0 3vw
    }
    .ku-clinic .details .list p {
        font-size: 3vw;
        margin: 2.4vw 0
    }
}
/***    /KU clinic         **/

/*      Tryouts     */
.container.tryouts {
    width: 42vw;
    color: #54565a;
}

.tryouts .form-block {
    transition: background-color 200ms cubic-bezier(0,0,0.2,1);
    border: 1px solid #dadce0;
    border-radius: 0.8vw;
    margin: 1.5vw 0 0 0;
    padding: 2vw;
    page-break-inside: avoid;
    word-wrap: break-word
}

.tryouts .form-block .head {
    background-color: #93d500;
    border-top-left-radius: 0.8vw;
    border-top-right-radius: 0.8vw;
    height: 0.8vw;
    left: -1px;
    position: absolute;
    top: -1px;
    width: calc(100% + 2px);
}

.tryouts a {
    color: #93d500
}

.tryouts .intro-text {
    position: relative;
    line-height: 1.5;
    font-size: 1vw
}

.tryouts .intro-text h2 {
    font-size: 2.1vw;
    margin-bottom: 2vw;
    text-align: center !important;
}

.tryouts .intro-text div:not(.head) {
    margin-top: 1vw
}

.tryouts .form-block .form-input-text {
    font-size: 1.2vw;
    font-weight: bold
}

.tryouts .form-block input[type="text"],
.tryouts .form-block input[type="date"],
.tryouts .form-block input[type="email"],
.tryouts .form-block input[type="tel"] {
    border: none;
    border-bottom: 2px solid #dadce0;
    margin-top: 1vw;
    font-size: 1vw;
    padding: 0.3vw;
    color: #54565a;
}

.tryouts .form-block span label {
    display: block;
    margin-top: 1vw;
    font-size: 1vw;
    font-weight: bold;
    cursor: pointer;
}

.tryouts .form-block input[type="radio"],
.tryouts .form-block input[type="checkbox"],
.tryouts .form-block label .wpcf7-list-item-label
{
    vertical-align: middle
}

.tryouts .form-btn {
    display: flex;
    justify-content: space-between;
}

.tryouts .form-btn button {
    background-color: #93d500;
    border: none;
    color: #fff;
    text-transform: uppercase;
    padding: 0.3vw;
    font-size: 1.2vw;
    width: 15vw;
    margin: 3vw 1vw 4vw;
    border-radius: 0.35vw;
    cursor: pointer;
}

.tryouts.signup {
    margin-bottom: 4vw;
}

@media (max-width:991px) {
    .container.tryouts {
        width: 80vw
    }
    .tryouts .intro-text h2 {
        font-size: 3.3vw;
    }
    .tryouts .intro-text div:not(.head) {
        margin-top: 1.5vw
    }
    .tryouts .form-block {
        border-radius: 1.2vw;
        padding: 3vw;
        margin-top: 3vw
    }
    .tryouts .form-block .head {
        border-top-left-radius: 1.2vw;
        border-top-right-radius: 1.2vw;
        height: 1.2vw
    }
    .tryouts .intro-text {
        font-size: 1.8vw
    }
    .tryouts .form-block .form-input-text {
        font-size: 2vw
    }
    .tryouts .form-block input[type="text"],
    .tryouts .form-block input[type="date"],
    .tryouts .form-block input[type="email"],
    .tryouts .form-block input[type="tel"] {
        width: 50%;
        margin-top: 2vw;
        font-size: 1.8vw;
        padding: 0.5vw;
    }
    .tryouts .form-block input[type="date"] {
        width: 30%
    }
    .tryouts .form-block span label {
        margin-top: 2vw;
        font-size: 1.8vw
    }
    .tryouts .form-btn button {
        padding: 0.5vw;
        font-size: 1.8vw;
        width: 25vw;
        margin: 5vw 1vw 6vw;
        border-radius: 0.5vw;
    }

    .tryouts.signup {
        margin-bottom: 6vw;
    }
}

@media (max-width:550px) {
    .container.tryouts {
        width: 96vw
    }
    .tryouts .intro-text h2 {
        font-size: 5.3vw;
        margin-bottom: 4vw
    }
    .tryouts .intro-text div:not(.head) {
        margin-top: 2vw
    }
    .tryouts .form-block {
        border-radius: 1.8vw;
        padding: 5vw;
        margin-top: 5vw
    }
    .tryouts .form-block .head {
        border-top-left-radius: 1.8vw;
        border-top-right-radius: 1.8vw;
        height: 1.8vw
    }
    .tryouts .intro-text {
        font-size: 2.8vw
    }
    .tryouts .form-block .form-input-text {
        font-size: 3.5vw
    }
    .tryouts .form-block input[type="text"],
    .tryouts .form-block input[type="date"],
    .tryouts .form-block input[type="email"],
    .tryouts .form-block input[type="tel"] {
        width: 90%;
        margin-top: 3vw;
        font-size: 3vw;
        padding: 1vw
    }
    .tryouts .form-block input[type="date"] {
        width: 50%
    }
    .tryouts .form-block span label {
        margin-top: 3vw;
        font-size: 3vw
    }
    .tryouts .form-btn button {
        padding: 1.5vw;
        font-size: 3vw;
        font-weight: bold;
        width: 35vw;
        margin: 8vw 2vw 10vw;
        border-radius: 1vw;
    }

    .tryouts.signup {
        margin-bottom: 8vw;
    }
}
/*      /Tryouts     */

.green-background {
    background-color: #93d500;
}

/*  Programs Info Page         */
.photo-gallery {
    margin: 5vw 0
}
.photo-gallery .slick-list {
    margin: 0 2.5vw
}
.photo-gallery .photo-wrap {
    margin: 0 1vw
}
.photo-gallery .photo-wrap div {
    height: 21.5vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

@media (max-width:1300px) {
    .photo-gallery .photo-wrap div {
        height: 29vw
    }
    .photo-gallery .photo-wrap {
        margin: 0 1.2vw
    }
    .photo-gallery .slick-list {
        margin: 0 3vw
    }
}

@media (max-width:991px) {
    .photo-gallery {
        margin: 7vw 0
    }
    .photo-gallery .photo-wrap {
        margin: 0 2vw
    }
    .photo-gallery .photo-wrap div {
        height: 42vw
    }
    .photo-gallery .slick-list {
        margin: 0 4vw;
    }
}

@media (max-width:550px) {
    .photo-gallery {
        margin: 11vw 0 9vw
    }
    .photo-gallery .photo-wrap {
        margin: 0 5vw
    }
    .photo-gallery .photo-wrap div {
        height: 78vw
    }
    .photo-gallery .slick-list {
        margin: 0 6vw;
    }
}
/*  /Programs Info Page         */

/*   Contact Page   */
.contact {
    width: 44vw
}
.subscribe.contact .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.subscribe.contact .form-row:not(:first-child) {
    margin-top: 1.5vw
}
.subscribe.contact .label {
    text-align: right;
    font-weight: 900;
    line-height: normal;
    margin-right: 1vw;
    font-size: 0.9375vw;
    width: 12vw
}
.subscribe.contact input, .subscribe.contact .selectbox, .subscribe.contact textarea {
    display: block;
    border: 1px solid #93d500;
    padding: 0.45vw 1vw;
    margin: 0;
    font-size: 0.9375vw;
    color: #54565a;
    width: 21vw
}
.subscribe.contact button, .newsletter.contact button {
    font-family: "All Round Gothic";
    background-color: #93d500;
    border: none;
    border-radius: unset;
    color: #fff;
    text-transform: uppercase;
    padding: 0.5vw 1vw;
    font-size: 1.2vw;
    width: 21vw
}
.subscribe.contact .selectbox .trigger {
    right: 0.35vw;
    background-size: 1vw
}
.subscribe.contact .selectbox .select .text {
    background: transparent;
    font-weight: bold
}
.subscribe.contact .selectbox .dropdown {
    top: 2vw;
    width: 21vw;
    margin-left: calc(-1vw - 1px);
    font-weight: 700;
    background: #fff
}
.subscribe.contact .selectbox li {
    padding: 0.45vw 1vw;
    background: #9da0a259
}
.subscribe.contact .selectbox li.selected, .subscribe.contact .selectbox li:hover {
    background: #fff
}

@media (max-width:991px) {
    .contact {
        width: 65vw
    }
    .subscribe.contact .form-row:not(:first-child) {
        margin-top: 2.5vw
    }
    .subscribe.contact .label {
        margin-right: 1.5vw;
        font-size: 1.7vw;
        width: 18vw
    }
    .subscribe.contact input, .subscribe.contact .selectbox, .subscribe.contact textarea {
        padding: 0.75vw 1.3vw;
        font-size: 1.7vw;
        width: 33vw
    }
    .subscribe.contact button, .newsletter.contact button {
        padding: 0.75vw 1.5vw;
        font-size: 1.8vw;
        width: 33vw
    }
    .subscribe.contact .selectbox .trigger {
        right: 0.5vw;
        background-size: 1.6vw
    }
    .subscribe.contact .selectbox .dropdown {
        top: 3.5vw;
        width: 33vw;
        margin-left: calc(-1.3vw - 1px);
    }
    .subscribe.contact .selectbox li {
        padding: 0.75vw 1.3vw
    }
}

@media (max-width:550px) {
    .contact {
        width: 95vw
    }
    .subscribe.contact .form-row:not(:first-child) {
        margin-top: 3.5vw
    }
    .subscribe.contact .label {
        margin-right: 2.5vw;
        font-size: 3.2vw;
        width: 31vw
    }
    .subscribe.contact input, .subscribe.contact .selectbox, .subscribe.contact textarea {
        padding: 1vw 2vw;
        font-size: 3.2vw;
        width: 51vw
    }
    .subscribe.contact button, .newsletter.contact button {
        padding: 1.2vw 2.2vw;
        font-size: 3.3vw;
        width: 51vw
    }
    .subscribe.contact .selectbox .trigger {
        right: 1vw;
        background-size: 2.5vw
    }
    .subscribe.contact .selectbox .dropdown {
        top: 5.8vw;
        width: 51vw;
        margin-left: calc(-2vw - 1px);
    }
    .subscribe.contact .selectbox li {
        padding: 1vw 2vw
    }
}
/*   /Contact Page   */

/*   Thank-You Page   */
.thanks {
    margin: 5% auto;
    text-align: center;
}
.thanks h1 {
    font-size: 3vw;
    font-weight: bold;
    line-height: 2;
    color: #93d500;
}
.thanks p {
    font-size: 1.2vw;
    padding-top: 2vw;
    font-weight: bold;
    color: #54565a;
}
.thanks .btn {
    background-color: #93d500;
    border: none;
    color: #fff;
    font-size: 2vw;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 5px;
    margin: 3vw 0;
}

@media (max-width:991px) {
    .thanks h1 {
        font-size: 4vw;
    }
    .thanks p {
        font-size: 2vw;
    }
    .thanks .btn {
        font-size: 3vw;
        margin: 4vw 0;
    }
}

@media (max-width:550px) {
    .thanks h1 {
        font-size: 6vw;
    }
    .thanks p {
        font-size: 3vw;
        padding-top: 4vw;
        line-height: 1.5;
    }
    .thanks .btn {
        font-size: 4vw;
        margin: 6vw 0;
    }
}
/*   /Thank-You Page   */

/*      Location Landing      */
section.program-short {
    text-align: center
}
section.program-short .banner-wrap {
    position: relative
}
section.program-short .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly
}
/*      /Location Landing     */

section.content.instagram-feed {
    margin: 4vw 0
}
@media (max-width:991px) {
    section.content.instagram-feed {
        margin: 6vw 0
    }
}
@media (max-width:550px) {
    section.content.instagram-feed {
        margin: 7vw 0
    }
}

section.content.instagram-feed + section.subscribe {
    margin: 5vw auto 6vw
}
@media (max-width:1300px) {
    section.content.instagram-feed + section.subscribe {
        margin: 5vw auto 7vw
    }
}
@media (max-width:991px) {
    section.content.instagram-feed + section.subscribe {
        margin: 6vw auto 8.5vw
    }
}
@media (max-width:991px) {
    section.content.instagram-feed + section.subscribe {
        margin: 6vw auto 9vw
    }
}
@media (max-width:550px) {
    section.content.instagram-feed + section.subscribe {
        margin: 7vw auto 11vw
    }
}

.grid-gallery .gallery-wrap {
    width: 70vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}
.grid-gallery .grid-item {
    width: 34vw;
    margin: 1vw 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 21.25vw
}

@media (max-width:991px) {
    .grid-gallery .gallery-wrap {
        width: 90vw
    }
    .grid-gallery .grid-item {
        width: 43vw;
        margin: 2vw 0;
        height: 26.875vw
    }
}

@media (max-width:550px) {
    .grid-gallery .gallery-wrap {
        width: 96vw;
        flex-direction: column
    }
    .grid-gallery .grid-item {
        width: 100%;
        margin: 3vw 0;
        height: 60vw
    }
}

/*   Our Locations   */
.location-maps .mosaic-item .mosaic-info a.btn {
    transition: 0.7s
}
.location-maps .mosaic-item:hover .mosaic-info a.btn {
    transform: scale(1.05);
    transition: 0.7s
}
.map-info-list {
    padding: 0 1vw
}
.map-info-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.8vw
}
.map-info-list-item img {
    margin-right: 1vw;
    width: 1.75vw;
    -o-object-fit: contain;
    object-fit: contain
}
.map-info-list-item span {
    font-size: 1.25vw;
    font-weight: 900;
    line-height: 1.2;
    text-align: left
}
.map-info-location-img {
    height: 2.5vw
}
@media screen and (max-width:991px) {
    .map-info-list {
        padding: 1vw 2vw
    }
    .map-info-list-item {
        margin-top: 2vw
    }
    .map-info-list-item img {
        margin-right: 1.5vw;
        width: 4vw
    }
    .map-info-list-item .map-info-location-img {
        height: 5.5vw
    }
    .map-info-list-item span {
        font-size: 2.5vw
    }
}
@media (max-width:550px) {
    .map-info-list {
        padding: 1vw 2vw
    }
    .map-info-list-item {
        margin-top: 3vw
    }
    .map-info-list-item img {
        margin-right: 2vw;
        width: 5vw
    }
    .map-info-list-item .map-info-location-img {
        height: 8.5vw
    }
    .map-info-list-item span {
        font-size: 3.5vw
    }
}
/*   /Our Locations   */

/*  Custom pop-up        */
.modal {
    z-index: 9999;
    display: none;
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
.modal.active {
    display: block
}
.modal-inner-wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 3vw;
    border: 0.2vw solid #545659;
    background: #fff;
    border-radius: 2vw
}
.modal-inner-wrap .info-wrap {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center
}
.modal-inner-wrap .controls {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 2vw
}
.modal-inner-wrap .note {
    font-size: 1.2vw;
    margin: 1vw 0;
}
.modal-inner-wrap .controls .btn {
    font-size: 1.2vw
}
.modal-inner-wrap .controls .control {
    cursor: pointer
}

@media (max-width:991px) {
    .modal-inner-wrap {
        border-width: 0.32vw;
        padding: 4vw 2vw;
    }
    .modal-inner-wrap .note {
        font-size: 1.7vw;
        margin: 1.5vw 0;
    }
    .modal-inner-wrap .controls {
        margin-top: 3vw
    }
    .modal-inner-wrap .controls .btn {
        font-size: 1.8vw
    }
}

@media (max-width:550px) {
    .modal {
        width: 96%
    }
    .modal-inner-wrap {
        border-width: 0.48vw;
        padding: 6vw 2vw
    }
    .modal-inner-wrap .note {
        font-size: 3vw;
        margin: 2.5vw 0;
    }
    .modal-inner-wrap .controls {
        margin-top: 5vw
    }
    .modal-inner-wrap .controls .btn {
        font-size: 3.5vw
    }
}
/*  /Custom pop-up       */

#overlay {
    z-index: 999;
    background: #545659;
    opacity: 0.25;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    display: none;
}

/*   Regular text page content   */
.post-content {
    padding: 0 15vw 0;
    color: #545659;
    margin: 0 auto;
    text-align: center
}
.post-content p, .post-content li {
    font-size: 1.2vw;
    line-height: 1.6
}
.post-content li {
    margin: 0.7vw 0 0 1vw;
    list-style: disc;
    list-style-position: inside
}
.post-content p, .post-content ul, .post-content ol {
    margin-top: 0.5vw;
    margin-bottom: 2.5vw
}
.post-content h3 {
    font-size: 1.5vw;
    line-height: 1.6;
    font-weight: bold;
    margin: 1vw 0
}

@media (max-width:991px) {
    .post-content {
        padding: 0 3vw 0
    }
    .post-content p, .post-content li {
        font-size: 2.2vw
    }
    .post-content li {
        margin: 1vw 0 0 2vw
    }
    .post-content p, .post-content ul, .post-content ol {
        margin-top: 0.75vw;
        margin-bottom: 3.5vw
    }
    .post-content h3 {
        font-size: 2.8vw;
        margin: 1.5vw 0
    }
}

@media (max-width:550px) {
    .post-content p, .post-content li {
        font-size: 3.3vw
    }
    .post-content li {
        margin: 1.7vw 0 0 3vw
    }
    .post-content p, .post-content ul, .post-content ol {
        margin-top: 1.5vw;
        margin-bottom: 5vw
    }
    .post-content h3 {
        font-size: 4vw;
        margin: 2.5vw 0
    }
}
/*   /Regular text page content   */

.wpcf7-not-valid-tip {
    margin: 0.5vw 0
}
@media (max-width:550px) {
    .wpcf7-not-valid-tip {
        margin: 1vw 0
    }
}

/*     Newsletter signup      */
.newsletter {
    color: #54565a;
    margin: 6vw auto;
    text-align: center
}
.newsletter h2 {
    font-size: 3vw;
    color: #93d500
}
.newsletter .form-heading {
    margin: 3.5vw auto;
    font-size: 1.2vw;
    line-height: 1.5
}
.newsletter.contact .form-row {
    text-align: left;
    margin-top: 1.5vw
}
.newsletter.contact .label {
    font-weight: 900;
    line-height: normal;
    font-size: 1vw
}
.newsletter.contact input:where([type="text"], [type="email"], [type="tel"]) {
    width: 100%;
    border: 1px solid #93d500;
    margin-top: 0.5vw;
    font-size: 1vw;
    padding: 0.35vw 0.7vw;
    color: #54565a
}
.newsletter .wpcf7-checkbox .wpcf7-list-item,
.newsletter .wpcf7-radio .wpcf7-list-item {
    display: block;
    margin-top: 1vw;
    font-size: 1vw
}
.newsletter.contact button {
    font-size: 1.4vw;
    margin-top: 3vw;
    width: 100%
}

@media (max-width: 991px) {
    .newsletter {
        margin: 8vw auto
    }
    .newsletter h2 {
        font-size: 4vw
    }
    .newsletter .form-heading {
        margin: 5vw auto;
        font-size: 2vw
    }
    .newsletter.contact .form-row {
        margin-top: 2.5vw
    }
    .newsletter.contact .label {
        font-size: 1.7vw
    }
    .newsletter.contact input:where([type="text"], [type="email"], [type="tel"]) {
        margin-top: 1.7vw;
        font-size: 1.7vw;
        padding: 0.6vw 1vw
    }
    .newsletter .wpcf7-checkbox .wpcf7-list-item,
    .newsletter .wpcf7-radio .wpcf7-list-item {
        display: block;
        margin-top: 1.7vw;
        font-size: 1.7vw
    }
    .newsletter.contact button {
        font-size: 2.2vw;
        margin-top: 4.5vw
    }
}

@media (max-width: 768px) {
    .newsletter.contact {
        width: 90%;
        margin: 10vw auto
    }
    .newsletter h2 {
        font-size: 5vw
    }
    .newsletter .form-heading {
        margin: 6vw auto;
        font-size: 3.7vw
    }
    .newsletter.contact .form-row {
        margin-top: 3.5vw
    }
    .newsletter.contact .label {
        font-size: 3.2vw
    }
    .newsletter.contact input:where([type="text"], [type="email"], [type="tel"]) {
        margin-top: 2.2vw;
        font-size: 3.2vw;
        padding: 0.9vw 1.7vw
    }
    .newsletter .wpcf7-checkbox .wpcf7-list-item,
    .newsletter .wpcf7-radio .wpcf7-list-item {
        display: block;
        margin-top: 3.5vw;
        font-size: 3.2vw
    }
    .newsletter.contact button {
        font-size: 4vw;
        margin-top: 6vw
    }
}

@media (max-width: 550px) {
    .newsletter {
        margin: 11vw auto
    }
    .newsletter h2 {
        font-size: 6vw
    }
    .newsletter .form-heading {
        margin: 7vw auto;
        font-size: 4vw
    }
    .newsletter.contact .form-row {
        margin-top: 4vw
    }
    .newsletter.contact .label {
        font-size: 3.4vw
    }
    .newsletter.contact input:where([type="text"], [type="email"], [type="tel"]) {
        margin-top: 2.5vw;
        font-size: 3.4vw;
        padding: 1vw 2vw
    }
    .newsletter .wpcf7-checkbox .wpcf7-list-item,
    .newsletter .wpcf7-radio .wpcf7-list-item {
        display: block;
        margin-top: 4vw;
        font-size: 3.4vw
    }
    .newsletter.contact button {
        font-size: 4.5vw;
        margin-top: 7vw
    }
}

/*    /Newsletter signup      */
