@charset "UTF-8";
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
}

body.sitepage a {
    color: inherit;
    text-decoration: none
}

li {
    list-style: none
}

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

input, textarea, button {
    outline: none
}

html { 
    scroll-behavior: smooth
}

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

.container {
    margin: 0 auto
}

@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")
}

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

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

.header {
    padding-top: 2.0833vw;
    padding-bottom: 2.7vw;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: #fff;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear
}

.header.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: end;
    -ms-flex-align: end;
    align-items: flex-end
}

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

.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-mobile {
    display: none;
    cursor: pointer
}

.header__nav-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 2vw
}

.header__nav-logo img {
    width: 17.1875vw;
    height: 6.5vw;
    -o-object-fit: contain;
    object-fit: contain
}

@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-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 {
        width: 20.1875vw;
        height: 10.5vw
    }
    .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 {
        width: 30.1875vw;
        height: 10.5vw
    }
}

.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 7vw
}

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

.footer__nav-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
}

.footer__nav-logo a img {
    width: 21vw;
    margin: 0 auto 1vw
}

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

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

.footer__nav-logo a div {
    color: #fff;
    font-weight: 500;
    font-size: 0.8vw
}

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

@media (max-width:599px) {
    .footer__nav-logo a div {
        font-size: 2.4vw;
        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 {
    color: #fff;
    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;
    height: 3.6458vw
}

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

@media (max-width:599px) {
    .footer__nav-social ul li img {
        width: 8.6458vw;
        height: 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
    }
}

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

.hero__inner {
    position: relative
}

.hero__slider {
    position: relative
}

.hero__slider .slick-track {
    height: 46vw;
}

@media (max-width:550px) {
    .hero__slider .slick-track {
        height: 90vw
    }
}

.slick-arrow {
    cursor: pointer
}

.hero__slider .slick-arrow, .fran_img-slider .slick-arrow {
    width: 3.5vw;
    height: 3.5vw;
    position: absolute;
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    outline: none
}

@media (max-width:991px) {
    .hero__slider .slick-arrow, .fran_img-slider .slick-arrow {
        width: 5vw;
        height: 5vw
    }
}

@media (max-width:550px) {
    .hero__slider .slick-arrow, .fran_img-slider .slick-arrow {
        width: 7vw;
        height: 7vw
    }
}

.hero__slider .slick-next {
    right: 0
}

.hero__slider .slick-prev {
    left: 0
}

.hero__slide {
    position: relative;
    width: 100%
}

.hero__slide .hero__slide-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hero__content {
    position: absolute;
    top: 15vw;
    left: 24vw;
    width: 22vw
}

@media (max-width:991px) {
    .hero__content {
        width: 35.5vw;
        top: 18vw;
        left: 15vw
    }
}

@media (max-width:550px) {
    .hero__content {
        width: 50.5vw;
        top: 38vw
    }
}

.hero__content h1 {
    color: #fff;
    font-size: 2.5vw;
    line-height: 1.3;
    margin-bottom: 1.2vw
}

.hero__content h1 strong {
    color: #93d500;
    font-size: 2.9vw
}

@media (max-width:991px) {
    .hero__content h1 strong {
        font-size: 3.7vw
    }
}

@media (max-width:550px) {
    .hero__content h1 strong {
        font-size: 5.7vw
    }
}

@media (max-width:991px) {
    .hero__content h1 {
        font-size: 3.1vw
    }
}

@media (max-width:550px) {
    .hero__content h1 {
        font-size: 4.2vw
    }
}

.hero__content a {
    color: #fff;
    padding: 0.3vw 0.6vw;
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 1.4vw
}

@media (max-width:991px) {
    .hero__content a {
        font-size: 2.4vw;
        top: 1.5vw
    }
}

@media (max-width:550px) {
    .hero__content a {
        padding: 0.7vw 1vw;
        font-size: 4.4vw;
        top: 2.5vw
    }
}

.hero__content a::before {
    content: "";
    position: absolute;
    width: 98%;
    height: 93%;
    background-color: #93d500;
    top: 1px;
    left: 1px;
    z-index: -1
}

.hero__arrow {
    position: absolute;
    bottom: -1.6vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: arrowDown 2.5s infinite;
    animation: arrowDown 2.5s infinite;
    cursor: pointer
}

.hero__arrow img {
    width: 3.125vw;
    height: 2.7vw
}

@media (max-width:991px) {
    .hero__arrow img {
        width: 5.125vw;
        height: 3.7vw
    }
}

@media (max-width:550px) {
    .hero__arrow img {
        width: 6.125vw;
        height: 4.7vw
    }
}

.hero-franchise .hero__inner {
    position: relative;
    margin: 0 auto
}

.hero-franchise .hero__bg img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hero-franchise .hero__description {
    position: absolute;
    top: 12vw;
    left: 26.5vw
}

@media (max-width:991px) {
    .hero-franchise .hero__description {
        left: 25vw
    }
}

@media (max-width:550px) {
    .hero-franchise .hero__description {
        top: 10vw;
        left: 9vw
    }
}

.hero-franchise .hero__description h1 {
    color: #fff;
    font-size: 3.2vw
}

@media (max-width:991px) {
    .hero-franchise .hero__description h1 {
        font-size: 3.5vw
    }
}

@media (max-width:550px) {
    .hero-franchise .hero__description h1 {
        font-size: 5vw
    }
}

@-webkit-keyframes arrowDown {
    0% {
        bottom: -30px
    }
    50% {
        bottom: 0px
    }
    to {
        bottom: -30px
    }
}

@keyframes arrowDown {
    0% {
        bottom: -30px
    }
    50% {
        bottom: 0px
    }
    to {
        bottom: -30px
    }
}

.info {
    padding-top: 5vw;
    padding-bottom: 5.2083vw
}

.info__inner {
    margin: 0 auto;
    position: relative
}

.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
    }
}

.info__content {
    padding-right: 5vw;
    padding-left: 7vw;
    width: 43vw
}

@media (max-width:991px) {
    .info__content {
        width: 100%;
        padding-right: 2vw;
        padding-left: 3vw
    }
}

.info__content h2 {
    font-size: 3.125vw;
    line-height: 1.25;
    color: #93d500;
    margin-bottom: 2.1875vw
}

@media (max-width:1600px) {
    .info__content h2 {
        font-size: 3.5vw
    }
}

@media (max-width:991px) {
    .info__content h2 {
        font-size: 4vw
    }
}

@media (max-width:550px) {
    .info__content h2 {
        font-size: 5vw
    }
}

.info__content p, .franchise-info__content p {
    font-size: 1.2vw;
    line-height: 1.6;
    color: #54565a;
    font-weight: 700
}

@media (max-width:991px) {
    .info__content p, .franchise-info__content p {
        font-size: 2.25vw
    }
}

@media (max-width:550px) {
    .info__content p, .franchise-info__content p {
        font-size: 3.25vw
    }
}

.info__content p:not(:first-child) {
    margin-bottom: 2.5vw
}

.info__img img {
    width: 57vw
}

@media (max-width:991px) {
    .info__img img {
        width: 100%;
        height: 100%
    }
}

.info__img-slider {
    width: 57vw
}

@media (max-width:991px) {
    .info__img-slider {
        width: 100%
    }
}

.info__img-slider .slick-arrow{
    position: absolute;
    top: 50%;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: transparent;
    outline: none;
    border: none
}

.info__img-slider .slick-arrow img {
    width: 30px;
    height: 30px
}

.info__img-slider .slick-next, .fran_img-slider .slick-next {
    right: 0
}

.info__img-slider .slick-prev, .fran_img-slider .slick-prev {
    left: 0
}

@media (max-width:991px) {
    .info__img-slider img, .fran_img-slider img {
        width: 100%;
        height: 100%
    }
}

#info-younger .info__content {
    padding-right: 3vw;
    padding-left: 5vw;
}

#info-younger .info__content p, #info-elder .info__content p {
    font-size: 1.1vw;
}

@media (max-width:991px) {
    #info-younger .info__content p, #info-elder .info__content p {
        font-size: 2vw;
    }
}

@media (max-width:991px) {
    #info-younger .info__content p, #info-elder .info__content p {
        font-size: 3vw;
    }
}

#info-elder {
    padding-top: 0;
}

#info-elder .info__img-slider {
    /*left: 10px*/
}

@media (max-width:991px) {
    #info-elder .info__img-slider {
        /*left: 0*/
    }
}

#info-elder .info__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

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

#info-elder .info__content {
    margin-right: 0;
    padding-left: 2vw;
    padding-right: 4vw
}

@media (max-width:991px) {
    #info-younger .info__content, #info-elder .info__content  {
        padding-left: 4vw;
        padding-right: 3vw
    }
}

@media (max-width:550px) {
    #info-younger .info__content, #info-elder .info__content  {
        padding-left: 5vw;
        padding-right: 4vw
    }
}

.programs__inner {
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 51vw
}

@media (max-width:991px) {
    .programs__inner {
        height: 60vw
    }
}

@media (max-width:550px) {
    .programs__inner {
        height: 90vw
    }
}

.programs__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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 15vw;
    bottom: 10vw
}

.programs__content {
    width: 100%;
    text-align: center
}

.programs__content h2 {
    font-size: 1.9271vw;
    line-height: 1.13;
    color: #94d600;
    margin-bottom: 3.125vw
}

.programs__content h4 {
    font-size: 2vw;
    line-height: 1.13;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4.1667vw
}

.programs__choice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.programs__choice-card {
    padding: 0.9375vw 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 10vw;
    height: 10vw;
    background-color: #000000;
    border-radius: 100%;
    cursor: pointer;
    position: relative
}

.programs__choice-card:first-child {
    top: 2vw;
    left: -7vw
}

.programs__choice-card:first-child::after {
    content: "";
    position: absolute;
    width: 5vw;
    height: 5vw;
    top: -4.5vw;
    right: -6.5vw;
    background-image: url(../images/program_circle_left.png);
    background-size: contain;
    background-repeat: no-repeat
}

.programs__choice-card:nth-child(2) {
    top: 3.5vw;
    right: -8vw
}

.programs__choice-card:nth-child(2)::after {
    content: "";
    position: absolute;
    width: 5vw;
    height: 5vw;
    top: -5vw;
    right: 10vw;
    background-image: url(../images/programs-circle.svg);
    background-size: contain;
    background-repeat: no-repeat
}

.programs__choice-card::before {
    content: "";
    position: absolute;
    width: 13.6vw;
    height: 13.6vw;
    top: -1.4vw;
    right: -2.15vw;
    background-image: url(../images/outline1.png);
    background-size: contain;
    background-repeat: no-repeat
}

.programs__choice-card:nth-child(2)::before {
    top: -1.4vw;
    right: -1.3vw;
    background-image: url(../images/outline2.png);
}

.programs__choice-card-title {
    color: #94d600;
    font-size: 1.2vw;
    margin-bottom: 1.6vw
}

.programs__choice-card-age {
    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;
    color: #94d600;
    font-size: 2.8vw
}

.programs__choice-card-age strong {
    font-size: 1.3021vw
}

.programs .join-offer {
    position: absolute;
    top: 10%;
    left: 6%
}

.programs .join-offer .title {
    width: 40vw;
    color: #fff;
    font-size: 2.65vw;
    line-height: 1.3
}

.programs .join-offer .btn {
    display: inline-block;
    font-size: 1.8vw;
    font-weight: 700;
    padding: 0.4vw 2.5vw;
    width: auto;
    margin-top: 3vw;
    cursor: pointer;
    background-color: #93d500;
    color: #fff;
    line-height: 1.5;
    border: 1px solid #93d500;
    border-radius: 1.3vw;
    opacity: 0.9
}

@media (max-width:991px) {
    .programs__wrapper {
        right: 10vw
    }
    .programs__content h4 {
        font-size: 3vw
    }
    .programs__choice {
        margin-top: 10px
    }
    .programs__choice-card {
        padding: 0.9375vw 0 0 0;
        width: 13.49vw;
        height: 13.49vw;
        background-color: #000000;
        border-radius: 100%;
        cursor: pointer;
        position: relative
    }
    .programs__choice-card:first-child::after {
        width: 5vw;
        height: 5vw;
        top: -6vw;
        right: -4.5vw
    }
    .programs__choice-card:nth-child(2)::after {
        width: 5vw;
        height: 5vw;
        top: -6.5vw;
        right: 14.5vw
    }
    .programs__choice-card::before {
        width: 18.7vw;
        height: 18.7vw;
        right: -3.1vw;
        top: -2.1vw
    }
    .programs__choice-card:nth-child(2)::before {
        top: -2vw;
        right: -2.15vw
    }
    .programs__choice-card-title {
        font-size: 2.5vw;
        margin-top: 0.5vw
    }
    .programs__choice-card-age {
        font-size: 3.6vw
    }
    .programs__choice-card-age strong {
        font-size: 2vw
    }
    .programs .join-offer {
        top: 8%;
        left: 5%
    }
    .programs .join-offer .title {
        width: 60vw;
        font-size: 3.2vw
    }
    .programs .join-offer .btn {
        font-size: 2.6vw;
        padding: 0.5vw 3vw;
        margin-top: 4vw
    }
}

@media (max-width:550px) {
    .programs__wrapper {
        right: 15vw;
        bottom: 15vw
    }
    .programs__content h4 {
        font-size: 4.5vw
    }
    .programs__choice-card {
        padding: 2vw 0 0 0;
        width: 16.5vw;
        height: 16.5vw
    }
    .programs__choice-card-title {
        font-size: 3vw
    }
    .programs__choice-card-age {
        font-size: 4vw
    }
    .programs__choice-card-age strong {
        font-size: 2.8vw
    }
    .programs__choice-card:first-child {
        top: 3vw
    }
    .programs__choice-card:first-child::after {
        width: 6vw;
        height: 6vw;
        right: -5vw;
        top: -7.5vw
    }
    .programs__choice-card:nth-child(2)::after {
        width: 6vw;
        height: 6vw;
        top: -7vw;
        right: 17vw
    }
    .programs__choice-card::before {
        width: 22.7vw;
        height: 22.7vw;
        right: -3.8vw;
        top: -2.6vw
    }
    .programs__choice-card:nth-child(2) {
        top: 4vw;
        right: -10vw
    }
    .programs__choice-card:nth-child(2)::before {
        top: -2.5vw;
        right: -2.5vw;
    }
    .programs .join-offer .title {
        width: 70vw;
        font-size: 4.5vw
    }
    .programs .join-offer .btn {
        font-size: 3.6vw;
        padding: 1vw 5vw;
        margin-top: 5vw
    }
}

.contact__footer,
.contact__header {
    width: 100%
}

.contact__footer img,
.contact__header img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.contact__title {
    font-size: 40px;
    line-height: 1;
    color: #54565a;
    font-weight: 800;
    max-width: 925px;
    text-align: center;
    margin: 3.6458vw auto
}

.contact__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: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-bottom: 3.6458vw
}

.contact__form-descr {
    border: 4px solid #545659;
    border-radius: 50px;
    padding-left: 33px;
    padding-right: 10%;
    position: relative;
    width: 28%;
    left: 5%;
    height: auto;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contact__form-descr p {
    /*width: 150px;*/
    color: #545659;
    font-weight: 700;
    font-size: 1.6vw;
    text-transform: uppercase
}

@media (max-width:1280px) {
    .contact__form-descr p {
        font-size: 2vw;
        text-align: center
    }
}

@media (max-width:991px) {
    .contact__form-descr p {
        font-size: 3vw;
    }
}

@media (max-width:600px) {
    .contact__form-descr p {
        font-size: 4vw;
    }
}

@media (min-width:1921px) {
    .contact__form-descr p {
        font-size: 1.3vw;
    }
}

.contact__form-descr p span {
    display: block;
    margin-bottom: 0.3vw;
}

.contact__form {
    width: 35%;
    border: 4px solid #545659;
    border-radius: 50px;
    padding: 20px 44px 20px 37px;
    position: relative;
    height: auto;
    z-index: 2;
    left: -5%;
    background-color: #fff
}

.contact__form-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.contact__form-input input {
    display: block;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    color: #545659;
    font-weight: 500;
    font-size: 18px;
    border: 1px solid #93d500;
    padding: 5px 13px
}

@media (max-width:1600px) {
    .contact__form-input input {
        font-size: 16px
    }
}

.contact__form-input:not(:first-child) {
    margin-top: 10px
}

.contact__form-input-text {
    text-align: right;
    color: #545659;
    font-weight: 900;
    line-height: 33px;
    font-size: 18px;
    width: 220px;
    margin-right: 10px
}

@media (max-width:1600px) {
    .contact__form-input-text {
        font-size: 16px
    }
}

.contact__form-btn {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.contact__form-btn button {
    width: 102%;
    background-color: #93d500;
    border: none;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase
}

.contact__form.form-search {
    width: 35%;
    left: 0;
    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
}

@media (max-width:1500px) {
    .contact__form.form-search {
        width: 40%
    }
}

@media (max-width:991px) {
    .contact__form.form-search {
        width: 65%
    }
}

@media (max-width:720px) {
    .contact__form.form-search {
        padding: 20px 44px 20px 37px;
        width: 80%
    }
}

@media (max-width:550px) {
    .contact__form.form-search {
        padding: 10px 20px;
        border-radius: 7.6042vw;
        width: 90%
    }
}

.contact__form.form-search .form-search__input {
    width: 100%;
    text-align: center
}

.contact__form.form-search .form-search__input input {
    width: 100%;
    border: 1px solid #93d500;
    padding: 5px;
    color: #54565a;
    font-size: 1.1458vw
}

@media (max-width:991px) {
    .contact__form.form-search .form-search__input input {
        font-size: 2.1458vw
    }
}

@media (max-width:550px) {
    .contact__form.form-search .form-search__input input {
        font-size: 3vw
    }
}

.contact__form.form-search .form-search__input input::-webkit-input-placeholder {
    color: #54565a;
    font-size: 1.1458vw
}

.contact__form.form-search .form-search__input input::-moz-placeholder {
    color: #54565a;
    font-size: 1.1458vw
}

.contact__form.form-search .form-search__input input:-ms-input-placeholder {
    color: #54565a;
    font-size: 1.1458vw
}

.contact__form.form-search .form-search__input input::-ms-input-placeholder {
    color: #54565a;
    font-size: 1.1458vw
}

.contact__form.form-search .form-search__input input::placeholder {
    color: #54565a;
    font-size: 1.1458vw
}

@media (max-width:991px) {
    .contact__form.form-search .form-search__input input::-webkit-input-placeholder {
        font-size: 2.1458vw
    }
    .contact__form.form-search .form-search__input input::-moz-placeholder {
        font-size: 2.1458vw
    }
    .contact__form.form-search .form-search__input input:-ms-input-placeholder {
        font-size: 2.1458vw
    }
    .contact__form.form-search .form-search__input input::-ms-input-placeholder {
        font-size: 2.1458vw
    }
    .contact__form.form-search .form-search__input input::placeholder {
        font-size: 2.1458vw
    }
}

@media (max-width:550px) {
    .contact__form.form-search .form-search__input input::-webkit-input-placeholder {
        font-size: 3vw
    }
    .contact__form.form-search .form-search__input input::-moz-placeholder {
        font-size: 3vw
    }
    .contact__form.form-search .form-search__input input:-ms-input-placeholder {
        font-size: 3vw
    }
    .contact__form.form-search .form-search__input input::-ms-input-placeholder {
        font-size: 3vw
    }
    .contact__form.form-search .form-search__input input::placeholder {
        font-size: 3vw
    }
}

.contact__form.form-search .form-search__input-text {
    color: #54565a;
    font-size: 1.5625vw;
    font-weight: 600;
    margin-bottom: 10px
}

@media (max-width:991px) {
    .contact__form.form-search .form-search__input-text {
        font-size: 3.5625vw
    }
}

@media (max-width:550px) {
    .contact__form.form-search .form-search__input-text {
        font-size: 6vw
    }
}

.contact__form.form-search .contact__form-btn {
    width: 100%;
    display: block
}

.contact__form.form-search .contact__form-input-text {
    width: 100%
}

.contact__form.form-search .contact__form-btn button {
    width: 100%;
    padding: 10px;
    font-size: 1.3021vw
}

@media (max-width:991px) {
    .contact__form.form-search .contact__form-btn button {
        font-size: 2.3021vw
    }
}

@media (max-width:550px) {
    .contact__form.form-search .contact__form-btn button {
        font-size: 3vw
    }
}

@media (max-width:1280px) {
    .contact__form.form-search {
        margin-top: 0px
    }
    .contact__wrapper {
        -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
    }
    .contact__form-descr {
        width: 60%;
        left: 0;
        height: auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 20px 10px 112px
    }
    .contact__form {
        width: 60%;
        left: 0;
        margin-top: -92px
    }
}

@media (max-width:850px) {
    .contact__form-descr {
        width: 90%
    }
    .contact__form {
        width: 90%
    }
}

@media (max-width:600px) {
    .contact__title {
        font-size: 28px
    }
    .contact__form {
        padding: 10px 20px 20px 5px
    }
    .contact__form-input-text {
        font-size: 13px
    }
    .contact__form-input input {
        font-size: 13px
    }
    .contact__form-btn button {
        font-size: 16px
    }
    .contact__form-descr p {
        font-size: 16px
    }
}

@media (max-width:400px) {
    .contact__title {
        font-size: 23px
    }
    .contact__form-input-text {
        font-size: 12px
    }
    .contact__form-input input {
        font-size: 12px
    }
}

@media (max-width:300px) {
    .contact__title {
        font-size: 20px
    }
    .contact__form-input-text {
        font-size: 11px
    }
    .contact__form-input input {
        font-size: 11px
    }
}

.testimonials {
    padding-top: 5.2vw;
    padding-bottom: 3.64vw;
    overflow: hidden
}

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

.testimonials__slider div, .affiliations_slider div {
    margin: 0 auto
}

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

.testimonials__slider .slick-arrow, .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
}

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

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

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

.testimonials__slide.even {
    width: 15.1042vw;
    height: 15.1042vw;
    position: relative
}

.testimonials__slide.even::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0.5729vw;
    width: 105%;
    height: 105%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 182.25 164.39'%3E%3Cg data-name='Слой 2'%3E%3Cpath d='M182.18 164.2c-1.57-2.09-15.72-18.36-26.52-30.73a35.29 35.29 0 0 0 12.18-26.7V35.38A35.38 35.38 0 0 0 132.46 0H35.38A35.38 35.38 0 0 0 0 35.38v71.39a35.38 35.38 0 0 0 35.38 35.38h97.08a35.46 35.46 0 0 0 9.61-1.33c19.11 11.76 41.6 25.37 40.11 23.38Z' style='fill:%2394d600' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

.testimonials__slide.even::after {
    content: "";
    position: absolute;
    top: -0.5208vw;
    left: 0.1563vw;
    width: 105%;
    height: 105%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 183.91 166.05'%3E%3Cg data-name='Слой 2'%3E%3Cpath d='M183 165c-1.57-2.09-15.72-18.36-26.52-30.74a35.29 35.29 0 0 0 12.18-26.7V36.21A35.39 35.39 0 0 0 133.28.83H36.21A35.38 35.38 0 0 0 .83 36.21v71.38A35.38 35.38 0 0 0 36.21 143h97.07a35.48 35.48 0 0 0 9.62-1.34C162 153.4 184.5 167 183 165Z' style='fill:none;stroke:%23000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.66px' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

.testimonials__slide .testimonials__slide-text {
    font-size: 0.7vw;
    font-weight: bolder
}
.testimonials__slide.even .testimonials__slide-text {
    margin-top: 1.0417vw;
    margin-left: 0.5208vw;
    width: 100%;
    padding: 1.3vw 2vw 0vw 1vw
}

.testimonials__slide.odd {
    width: 15.1042vw;
    height: 15.1042vw;
    position: relative
}

.testimonials__slide.odd::before {
    content: "";
    position: absolute;
    top: -0.5208vw;
    width: 105%;
    height: 105%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 176.78 159.94'%3E%3Cg data-name='Слой 2'%3E%3Cpath d='M164 16a44.54 44.54 0 0 0-47.82-10.33A43.27 43.27 0 0 0 53.26 31a21.41 21.41 0 0 0-25.72 24.45 41.54 41.54 0 0 0-7.64 64.35c.48.49 1 1 1.48 1.42L0 159.94l40.22-28.78a41.75 41.75 0 0 0 18.74 0 16.19 16.19 0 0 0 1.7 2 16.7 16.7 0 0 0 13.49 4.92q1.17 1.44 2.49 2.79a38.1 38.1 0 0 0 65.28-26.65 28.24 28.24 0 0 0 28.83-44.62A44.55 44.55 0 0 0 164 16Z' style='fill:%2354565a' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

.testimonials__slide.odd::after {
    content: "";
    position: absolute;
    top: -1.0417vw;
    left: -0.7813vw;
    width: 105%;
    height: 105%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 178.44 161.59'%3E%3Cg data-name='Слой 2'%3E%3Cpath d='M164.84 16.82A44.54 44.54 0 0 0 117 6.5a43.27 43.27 0 0 0-62.91 25.35 21.39 21.39 0 0 0-25.72 24.43 42 42 0 0 0-7.13 5.61 41.53 41.53 0 0 0-.51 58.73c.48.49 1 1 1.47 1.42L.83 160.77 41.05 132a41.71 41.71 0 0 0 18.73 0 17.27 17.27 0 0 0 1.71 2A16.66 16.66 0 0 0 75 138.91c.78 1 1.6 1.9 2.49 2.8a38.1 38.1 0 0 0 65.28-26.65 28.25 28.25 0 0 0 28.83-44.63 44.55 44.55 0 0 0-6.76-53.61Z' style='fill:none;stroke:%23000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.66px' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain
}

.testimonials__slide.odd .testimonials__slide-text {
    margin-top: 1.0417vw;
    margin-left: 0.5208vw;
    width: 100%;
    padding: 3vw 2vw 0vw 2.7vw;
    color: #fff
}

.testimonials__slide-text {
    position: relative;
    height: 15.625vw;
    width: 9.375vw;
    line-height: 1.2;
    color: #000;
    z-index: 2
}

@media (max-width:1300px) {
    .testimonials__slider .slick-arrow, .affiliations_slider .slick-arrow, .photo-gallery .slick-arrow {
        width: 4.125vw
    }
    .testimonials__slide.even {
        width: 25.1042vw;
        height: 25.1042vw
    }
    .testimonials__slide .testimonials__slide-text {
        font-size: 1.15vw
    }
    .testimonials__slide.odd {
        width: 25.1042vw;
        height: 25.1042vw
    }
    .testimonials__slide.even .testimonials__slide-text {
        padding: 3vw 3vw 0vw 1vw
    }
    .testimonials__slide.odd .testimonials__slide-text {
        padding: 4.6vw 4vw 0vw 5.2vw
    }
    .testimonials__slider .slick-list, .affiliations_slider .slick-list {
        margin: 0 3vw
    }
}

@media (max-width:991px) {
    .testimonials__slider .slick-arrow, .affiliations_slider .slick-arrow, .photo-gallery .slick-arrow {
        width: 6.125vw
    }
    .testimonials__slide.even {
        width: 40.1042vw;
        height: 40.1042vw
    }
    .testimonials__slide .testimonials__slide-text {
        font-size: 1.8vw
    }
    .testimonials__slide.even .testimonials__slide-text {
        padding: 5vw 7vw 0vw 3vw
    }
    .testimonials__slide.odd {
        width: 40.1042vw;
        height: 40.1042vw
    }
    .testimonials__slide.odd .testimonials__slide-text {
        padding: 8vw 4vw 0vw 8vw;
    }
    .testimonials__slider .slick-list, .affiliations_slider .slick-list {
        margin: 0 4vw
    }
}

@media (max-width:550px) {
    .testimonials__slider .slick-arrow, .affiliations_slider .slick-arrow, .photo-gallery .slick-arrow {
        width: 10.125vw
    }
    .testimonials__slide.even {
        width: 80.1042vw;
        height: 80.1042vw
    }
    .testimonials__slide.even::after,
    .testimonials__slide.even::before {
        left: 3vw;
        right: 0
    }
    .testimonials__slide.even .testimonials__slide-text {
        font-size: 4vw;
        padding: 7vw 6vw 0vw 9.5vw
    }
    .testimonials__slide.odd {
        width: 80.1042vw;
        height: 80.1042vw
    }
    .testimonials__slide.odd::after,
    .testimonials__slide.odd::before {
        left: -2vw;
        right: 0
    }
    .testimonials__slide.odd .testimonials__slide-text {
        font-size: 4vw;
        padding: 17vw 8vw 0vw 14vw
    }
    .testimonials__slider .slick-list, .affiliations_slider .slick-list {
        margin: unset
    }
}

.about {
    padding-bottom: 5.2vw
}

.about__wrapper {
    padding: 53px 48px 54px;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.about__content {
    max-width: 735px;
    background-color: rgba(84, 86, 90, 0.96);
    border-radius: 89px;
    padding: 55px 67px 63px 66px
}

.about__content h2 {
    color: #fff;
    font-size: 37px;
    line-height: 1.3;
    margin-bottom: 20px
}

.about__content h2 strong {
    color: #93d500;
    font-size: 47px
}

.about__content .about__content-text {
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
    font-weight: 900
}

.about__content .about__content-text:not(:first-child) {
    margin-top: 30px
}

@media (max-width:850px) {
    .about {
        padding-bottom: 10.41vw
    }
    .about__wrapper {
        padding: 5.52vw 5vw 5.625vw;
        height: 75vh
    }
    .about__content {
        max-width: 735px;
        border-radius: 4.63vw;
        padding: 5.72vw 6.97vw 6.56vw 6.87vw
    }
    .about__content h2 {
        font-size: 3.85vw;
        margin-bottom: 2.08vw
    }
    .about__content h2 strong {
        font-size: 4.89vw
    }
    .about__content .about__content-text {
        font-size: 2.5vw
    }
    .about__content .about__content-text:not(:first-child) {
        margin-top: 3.125vw
    }
}

@media (max-width:420px) {
    .about {
        padding-bottom: 11.41vw
    }
    .about__wrapper {
        padding: 6.52vw 6vw 6.625vw
    }
    .about__content {
        border-radius: 5.63vw;
        padding: 6.72vw 7.97vw 7.56vw 7.87vw
    }
    .about__content h2 {
        font-size: 4.85vw;
        margin-bottom: 3.08vw
    }
    .about__content h2 strong {
        font-size: 5.89vw
    }
    .about__content .about__content-text {
        font-size: 3.5vw
    }
    .about__content .about__content-text:not(:first-child) {
        margin-top: 4.125vw
    }
}

.franchise-description {
    padding-top: 2vw
}

.franchise-description__body {
    padding: 40px 0;
    margin-top: 2vw;
    background-color: #54565a
}

.franchise-description__body-text {
    max-width: 46.875vw;
    margin: 0 auto;
    text-align: center;
    color: #93d500;
    line-height: 1.5;
    font-size: 1.2vw
}

@media (max-width:991px) {
    .franchise-description__body-text {
        max-width: 80%;
        font-size: 2.35vw
    }
}

@media (max-width:550px) {
    .franchise-description__body-text {
        max-width: 90%;
        font-size: 3.9vw
    }
}

.franchise-info {
    padding: 4vw 0
}

.franchise-info__inner {
    position: relative;
    /*max-width: 1920px;*/
    margin: 0 auto;
    overflow: hidden
}

.franchise-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) {
    .franchise-info__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.franchise-info__img {
    width: 57vw
}

@media (max-width:991px) {
    .franchise-info__img {
        width: 100%
    }
}

.franchise-info__content {
    margin-left: 2vw;
    width: 36vw
}

@media (max-width:991px) {
    .franchise-info__content {
        width: 100%;
        margin: 0 0 3vw;
        padding-left: 4vw;
        padding-right: 3vw
    }
}

.franchise-info__content h3 {
    color: #93d500;
    font-size: 2.1vw;
    line-height: 1.4;
    margin-bottom: 1.5vw
}

@media (max-width:991px) {
    .franchise-info__content h3 {
        font-size: 3vw
    }
}

@media (max-width:550px) {
    .franchise-info__content h3 {
        font-size: 4.25vw
    }
}

.franchise__form {
    position: relative;
    height: auto;
    z-index: 2;
    left: 0;
    width: 37vw;
    background-color: transparent;
    border: 0.2vw solid #fff;
    border-radius: 2.6vw;
    padding: 1.5vw 2vw 1.5vw 1vw
}

.franchise__form-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.franchise__form-input:not(:first-child) {
    margin-top: 1vw
}

.franchise__form input, .franchise__form .selectbox {
    display: block;
    border: 1px solid #93d500;
    padding: 0.25vw 0.7vw;
    background-color: transparent;
    color: #fff;
    font-size: 0.9375vw;
    width: 21vw
}

.franchise__form .selectbox {
    font-size: 1vw;
}

.franchise__form-input-text {
    text-align: right;
    font-weight: 900;
    line-height: normal;
    margin-right: 1vw;
    color: #fff;
    font-size: 0.9375vw;
    width: 11vw
}

.franchise__form-btn {
    margin-top: 1vw;
    display: flex;
    align-items: center;
    text-align: center;
}

.franchise__form-btn button {
    background-color: #93d500;
    border: none;
    color: #fff;
    text-transform: uppercase;
    padding: 0.25vw 0.7vw;
    font-size: 1.145vw;
    width: 21vw
}

.franchise__form .selectbox .trigger {
    right: 0.35vw;
    background-size: 1vw
}
.franchise__form .selectbox .select .text {
    background: transparent;
    font-weight: bold
}
.franchise__form .selectbox .dropdown {
    top: 1.6vw;
    width: 21vw;
    margin-left: calc(-0.7vw - 1px);
    font-weight: 900;
    background: #000
}
.franchise__form .selectbox li {
    padding: 0.25vw 0.7vw
}
.franchise__form .selectbox li.selected, .franchise__form .selectbox li:hover {
    background: #9da0a259
}

.franchise-contact__inner {
    position: relative;
    /*max-width: 1920px;*/
    margin: 0 auto
}

.franchise-contact__bg img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:991px) {
    .franchise-contact__bg img {
        height: 70vw
    }
}

@media (max-width:550px) {
    .franchise-contact__bg img {
        height: 160vw
    }
}

.franchise-contact__wrapper {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15vw;
    width: 36vw
}

.franchise-contact__title {
    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;
    margin-bottom: 10px
}

.franchise-contact__title img {
    width: 10vw;
    margin-right: 2.6vw
}

.franchise-contact__title div {
    color: #93d500;
    font-size: 1vw;
    line-height: 1.4;
    max-width: 15.625vw
}

@media (max-width:991px) {
    .franchise__form {
        width: 60vw
    }
    .franchise__form-input:not(:first-child), .franchise__form-btn {
        margin-top: 1.5vw
    }
    .franchise__form input, .franchise__form .selectbox, .franchise__form-btn button {
        font-size: 1.75vw;
        padding: 0.5vw 1vw;
        width: 35vw
    }
    .franchise__form .selectbox {
        font-size: 1.9vw;
    }
    .franchise__form-input-text {
        font-size: 1.75vw;
        width: 19vw
    }
    .franchise__form .selectbox .dropdown {
        top: 3.05vw;
        margin-left: calc(-1vw - 1px);
        width: 35vw
    }
    .franchise__form .selectbox li {
        padding: 0.5vw 1vw
    }
    .franchise__form .selectbox .trigger {
        background-size: 1.4vw
    }
    .franchise-contact__wrapper {
        left: 5vw;
        width: 60vw
    }
    .franchise-contact__title img {
        width: 20vw
    }
    .franchise-contact__title div {
        font-size: 2vw;
        max-width: 30.625vw
    }
}

@media (max-width:550px) {
    .franchise__form {
        width: 90vw;
        padding: 4vw 2vw;
    }
    .franchise__form-input:not(:first-child), .franchise__form-btn {
        margin-top: 2vw
    }
    .franchise__form .selectbox .trigger {
        background-size: 2vw
    }
    .franchise__form input, .franchise__form .selectbox, .franchise__form-btn button {
        font-size: 3.2vw;
        padding: 1vw;
        width: 49vw
    }
    .franchise__form .selectbox {
        font-size: 3.4vw;
    }
    .franchise__form-input-text {
        font-size: 3.2vw;
        width: 34vw;
        margin-right: 2vw
    }
    .franchise__form .selectbox .dropdown {
        top: 5.85vw;
        width: 49vw
    }
    .franchise__form .selectbox li {
        padding: 1vw
    }
    .franchise-contact__wrapper {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 90vw
    }
    .franchise-contact__title img {
        width: 30vw
    }
    .franchise-contact__title div {
        font-size: 3.5vw;
        max-width: 50.625vw
    }
}

#studio-search-wait-loader .form-search__input-text {
    font-size: 1.5vw;
}

.wait-loader {
    height: 125px;
    padding-top: 70px
}

@media (max-width:991px) {
    #studio-search-wait-loader .form-search__input-text {
        font-size: 2.5vw;
    }
}

@media (max-width:550px) {
    #studio-search-wait-loader .form-search__input-text {
        font-size: 4vw;
        text-align: center;
        line-height: 1.5
    }
    .wait-loader {
        height: 100px;
        padding-top: 40px
    }
}

.cssload-container{
    position:relative;
}

.cssload-whirlpool,
.cssload-whirlpool::before,
.cssload-whirlpool::after {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgb(84, 86, 90);
    border-left-color: rgb(147,213,0);
    border-radius: 1623px;
    -o-border-radius: 1623px;
    -ms-border-radius: 1623px;
    -webkit-border-radius: 1623px;
    -moz-border-radius: 1623px;
}

.cssload-whirlpool {
    margin: -41px 0 0 -41px;
    height: 81px;
    width: 81px;
    animation: cssload-rotate 1150ms linear infinite;
    -o-animation: cssload-rotate 1150ms linear infinite;
    -ms-animation: cssload-rotate 1150ms linear infinite;
    -webkit-animation: cssload-rotate 1150ms linear infinite;
    -moz-animation: cssload-rotate 1150ms linear infinite;
}

.cssload-whirlpool::before {
    content: "";
    margin: -37px 0 0 -37px;
    height: 72px;
    width: 72px;
    animation: cssload-rotate 1150ms linear infinite;
    -o-animation: cssload-rotate 1150ms linear infinite;
    -ms-animation: cssload-rotate 1150ms linear infinite;
    -webkit-animation: cssload-rotate 1150ms linear infinite;
    -moz-animation: cssload-rotate 1150ms linear infinite;
}

.cssload-whirlpool::after {
    content: "";
    margin: -47px 0 0 -47px;
    height: 91px;
    width: 91px;
    animation: cssload-rotate 2300ms linear infinite;
    -o-animation: cssload-rotate 2300ms linear infinite;
    -ms-animation: cssload-rotate 2300ms linear infinite;
    -webkit-animation: cssload-rotate 2300ms linear infinite;
    -moz-animation: cssload-rotate 2300ms linear infinite;
}

@keyframes cssload-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes cssload-rotate {
    100% {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes cssload-rotate {
    100% {
        -ms-transform: rotate(360deg);
    }
}

@-webkit-keyframes cssload-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes cssload-rotate {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@media (max-width:550px) {
    .cssload-whirlpool,
    .cssload-whirlpool::before,
    .cssload-whirlpool::after {
        border-radius: 1623px;
        -o-border-radius: 1623px;
        -ms-border-radius: 1623px;
        -webkit-border-radius: 1623px;
        -moz-border-radius: 1623px;
    }

    .cssload-whirlpool {
        margin: -31px 0 0 -31px;
        height: 61px;
        width: 61px;
    }

    .cssload-whirlpool::before {
        margin: -28px 0 0 -28px;
        height: 54px;
        width: 54px;
    }

    .cssload-whirlpool::after {
        margin: -35px 0 0 -35px;
        height: 68px;
        width: 68px;
    }
}

.invisible {
    display: none !important;
}

.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;
    }
}

/* Privacy Policy Page */
.pr-policy {
    padding: 18vw 20vw 4vw;
    background-color: #54565a;
    margin-bottom: 1vw
}

.pr-policy .main-text {
    color: #fff;
    text-align: justify;
    line-height: 1.3;
    font-size: 0.8vw;
    padding-top: 2.5vw
}

.pr-policy .heading {
    text-align: center;
    color: #93d500;
    font-weight: 900
}

.pr-policy h2 {
    text-transform: uppercase;
    font-size: 1.4vw
}

.pr-policy h3 {
    text-transform: uppercase;
    font-size: 1vw;
    margin: 0.4vw auto 0.3vw
}

.pr-policy .rights-sign {
    font-size: 0.75vw;
    vertical-align: top
}

.pr-policy .expl {
    font-size: 0.9vw
}

.pr-policy .main-text p {
    margin-bottom: 0.5vw
}

@media (max-width:991px) {
    .pr-policy {
        padding: 16vw 10vw 4vw
    }

    .pr-policy .main-text {
        font-size: 1.4vw;
        padding-top: 3vw
    }

    .pr-policy h2 {
        font-size: 2vw
    }

    .pr-policy h3 {
        font-size: 1.5vw;
        margin: 0.6vw auto 0.5vw
    }

    .pr-policy .rights-sign {
        font-size: 1vw
    }

    .pr-policy .expl {
        font-size: 1.4vw
    }

    .pr-policy .main-text p {
        margin-bottom: 0.7vw
    }
}

@media (max-width:550px) {
    .pr-policy {
        padding: 16vw 5vw 4vw
    }

    .pr-policy .main-text {
        font-size: 2vw
    }

    .pr-policy h2 {
        font-size: 3vw
    }

    .pr-policy h3 {
        font-size: 2.3vw;
        margin: 1vw auto 0.8vw
    }

    .pr-policy .rights-sign {
        font-size: 1.5vw
    }

    .pr-policy .expl {
        font-size: 2vw
    }

    .pr-policy .main-text p {
        margin-bottom: 1vw
    }
}

/* Testimonials Page, Jobs pages */
.testimonials-page, .jobs-page {
    margin-bottom: 6vw;
    color: #54565a
}
.jobs-page {
    padding-top: 0
}

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

.testimonials-page .heading-text {
    padding: 1.5vw 20vw 1.5vw;
    font-size: 1.3vw;
    line-height: 1.3;
    text-align: center;
    color: #93d500;
    background-color: #54565a;
}

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

.testimonials-page .testimonials-list {
    margin: 0 auto;
    width: 90%
}

.testimonials-page .testimonial-item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3vw
}

.testimonials-page .testimonial-item img {
    margin-right: 2vw;
    width: 6vw
}

.testimonials-page .testimonial-item .content, .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;
}

.testimonials-page .testimonial-item .content .author {
    font-weight: bold
}

.send-review-form {
    color: #54565a;
    font-size: 1.25vw;
}

.send-review-form form {
    width: 50vw;
    margin: 0 auto;
    border: 0.25vw solid #545659;
    border-radius: 2vw;
    padding: 1vw 2vw;
    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;
}

.send-review-form .form-header {
    text-align: center;
    margin-bottom: 2vw
}

.send-review-form h3 {
    font-weight: 900;
    font-size: 2vw;
    margin: 1vw 0
}

.send-review-form .subtitle {
    font-size: 1.5vw;
}

.send-review-form .input-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0.5vw
}

.send-review-form .input-wrap .label {
    text-align: right;
    font-size: 1.25vw;
    padding-top: 0.26vw;
    margin-right: 1vw;
    width: 10vw
}

.send-review-form input {
    display: block;
    width: 22vw;
    font-weight: 500;
    font-size: 1.1vw;
    border: 1px solid #93d500;
    padding: 0.25vw 0.7vw;
    font-family: "All Round Gothic";
    color: #54565a;
}

.send-review-form select {
    cursor: pointer;
}

.send-review-form select option {
    font-family: "All Round Gothic" !important;
    color: #54565a !important;
    cursor: pointer;
}

.send-review-form textarea {
    width: 22vw;
    border: 1px solid #93d500;
    padding: 0.25vw 0.7vw;
    font-size: 1vw;
    font-family: "All Round Gothic";
    color: #54565a;
    background-color: #fff;
    font-weight: 500;
    resize: none;
}

.send-review-form button {
    width: 22vw;
    background-color: #93d500;
    border: none;
    color: #fff;
    font-size: 1vw;
    text-transform: uppercase;
    padding: 0.25vw 0
}

.send-review-form .selectbox {
    width: 22vw;
    padding: 0.25vw 0 0.25vw 0.7vw;
}
.send-review-form .selectbox .trigger {
    right: 0.35vw
}
.send-review-form .selectbox .select .text {
    font-size: 1.1vw
}
.send-review-form .selectbox .dropdown {
    top: 1.6vw;
    padding: 0;
    margin-left: calc(-0.7vw - 1px);
    font-size: 1.1vw;
    color: #54565a;
    background: #fff;
    width: 22vw;
}
.send-review-form .selectbox li {
    padding: 0.25vw 0.7vw;
    background: #9da0a259
}
.send-review-form .selectbox li.selected, .send-review-form .selectbox li:hover {
    background: #fff
}
.send-review-form .selectbox li.selected {
    font-weight: bold
}

.review-contacts {
    margin: 6vw auto 5vw
}

.review-contacts p {
    text-align: center;
    color: #93d500;
    font-size: 1.3vw;
    font-weight: bold
}

.review-contacts .contacts {
    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;
}

.review-contacts .contacts a {
    margin: 2vw 3vw 0;
}

.jobs-page .btn-links {
    /*width: 45vw;*/
    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
}

@media (max-width:991px) {
    .testimonials-page, .jobs-page {
        margin-bottom: 8vw;
    }
    .testimonials-page .heading-text {
        padding: 3vw;
        font-size: 2vw;
    }
    .testimonials-page h2, .jobs-page h2, .locations-page h2 {
        font-size: 2.5vw;
        margin: 5vw auto 4vw;
    }
    .testimonials-page .container, .jobs-page .container {
        padding: 0 3vw 0;
    }
    .testimonials-page .testimonial-item img {
        width: 10vw;
        margin-right: 3vw;
    }
    .testimonials-page .testimonial-item .content, .jobs-page p, .jobs-page li {
        font-size: 2vw;
    }
    .jobs-page li {
        margin-left: 2vw
    }

    .send-review-form {
        font-size: 2vw;
    }
    .send-review-form form {
        width: 75vw;
        border-width: 0.35vw;
        border-radius: 3vw;
        padding: 2vw;
    }
    .send-review-form .form-header {
        margin-bottom: 3vw;
    }
    .send-review-form h3 {
        font-size: 3vw;
        margin: 1.5vw 0 2vw;
    }
    .send-review-form .subtitle {
        font-size: 2.3vw;
    }
    .send-review-form .input-wrap {
        margin-top: 1vw;
    }
    .send-review-form .input-wrap .label {
        font-size: 2vw;
        padding-top: 0.65vw;
        margin-right: 2vw;
        width: 14vw;
    }
    .send-review-form input {
        width: 36vw;
        font-size: 1.8vw;
        padding: 0.5vw 1vw
    }
    .send-review-form .selectbox {
        width: 36vw;
        padding: 0.5vw 0 0.5vw 1vw;
    }
    .send-review-form .selectbox .select .text {
        font-size: 1.8vw;
    }
    .send-review-form .selectbox .trigger {
        right: 0.5vw;
    }
    .send-review-form .selectbox .trigger {
        top: 0.3vw;
        width: 60%;
        height: 60%;
    }
    .send-review-form .selectbox .dropdown {
        top: 2.8vw;
        margin-left: calc(-1vw - 1px);
        font-size: 1.8vw;
        width: 36vw;
    }
    .send-review-form .selectbox li {
        padding: 0.5vw 1vw;
    }
    .send-review-form textarea {
        width: 36vw;
        padding: 0.5vw 1vw;
        font-size: 1.8vw;
    }
    .send-review-form button {
        width: 36vw;
        font-size: 2vw;
        padding: 0.5vw 0;
    }

    .review-contacts {
        margin: 8vw auto 7vw;
    }
    .review-contacts p {
        font-size: 2.3vw;
        padding: 1vw 3vw;
    }
    .review-contacts .contacts a {
        margin: 3vw 5vw 0;
    }
    .review-contacts .contacts a img {
        width: 90%
    }

    .jobs-page .btn-links {
        width: 62vw
    }
    .jobs-page .btn-links a {
        font-size: 2.2vw;
        width: 25vw;
        line-height: 1.4
    }
}

@media (max-width:550px) {
    .testimonials-page, .jobs-page {
        margin-bottom: 10vw
    }
    .testimonials-page .heading-text {
        font-size: 3vw
    }
    .testimonials-page h2, .jobs-page h2 {
        font-size: 3.5vw
    }
    .testimonials-page .testimonial-item {
        margin-bottom: 4vw
    }
    .testimonials-page .testimonial-item img {
        width: 12vw;
        margin-right: 3vw
    }
    .testimonials-page .testimonial-item .content, .jobs-page p, .jobs-page li {
        font-size: 2.8vw
    }
    .jobs-page li {
        margin-left: 3vw
    }

    .send-review-form {
        font-size: 2vw
    }
    .send-review-form form {
        width: 92vw;
        border-width: 0.5vw;
        padding: 3vw
    }
    .send-review-form .form-header {
        margin-bottom: 3vw
    }
    .send-review-form h3 {
        font-size: 5vw;
        margin: 2vw 0 3vw
    }
    .send-review-form .subtitle {
        font-size: 3.5vw
    }
    .send-review-form .input-wrap {
        margin-top: 2vw
    }
    .send-review-form .input-wrap .label {
        font-size: 3vw;
        padding-top: 1vw;
        width: 20vw
    }
    .send-review-form input {
        width: 50vw;
        font-size: 2.8vw;
        padding: 0.75vw 1vw
    }
    .send-review-form .selectbox {
        width: 50vw;
        padding: 0.75vw 0 0.75vw 1vw
    }
    .send-review-form .selectbox .select .text {
        font-size: 2.8vw
    }
    .send-review-form .selectbox .trigger {
        right: 0.5vw
    }
    .send-review-form .selectbox .trigger {
        top: 0.75vw;
        width: 51%;
        height: 51%
    }
    .send-review-form .selectbox .dropdown {
        top: 4.3vw;
        font-size: 2.8vw;
        width: 50vw
    }
    .send-review-form .selectbox li {
        padding: 0.75vw 1vw
    }
    .send-review-form textarea {
        width: 50vw;
        padding: 0.75vw 1vw;
        font-size: 2.8vw
    }
    .send-review-form button {
        width: 50vw;
        font-size: 3vw;
        padding: 0.75vw 0
    }

    .review-contacts {
        margin: 10vw auto 8vw
    }
    .review-contacts p {
        font-size: 3.5vw;
        padding: 1vw 3vw
    }
    .review-contacts .contacts a {
        margin: 4vw 5vw 0
    }
    .review-contacts .contacts a img {
        width: 80%
    }

    .jobs-page .btn-links {
        width: 100%;
        margin-top: 8vw
    }
    .jobs-page .btn-links a {
        font-size: 3vw;
        width: 35vw;
        line-height: 2
    }
}

/**   Page FAQ   */
.faq-header .faq-back {
    width: 100%
}

.faq-header .faq-back img {
    object-fit: cover;
    width: 100%
}

.qu-list-wrap {
    margin: 5vw auto
}

.qu-list-wrap .qa-list {
    padding: 0 25vw
}

.qu-list-wrap .qa-list .qa-item {
    margin-bottom: 3vw
}

.qu-list-wrap .qa-list .qa-item p {
    font-size: 1.2vw;
    line-height: 1.2;
    margin: 0 0 1vw
}

.qu-list-wrap .qa-list .qa-item p.question {
    font-weight: bold
}
.qu-list-wrap .qa-list .qa-item p.question::before {
    content: "Q: "
}

.qu-list-wrap .qa-list .qa-item p.answer {
    font-style: italic
}
.qu-list-wrap .qa-list .qa-item p.answer::before {
    content: "A: ";
    font-weight: bold;
    font-style: normal
}

@media (max-width:991px) {
    .qu-list-wrap {
        margin: 6vw auto
    }
    .qu-list-wrap .qa-list {
        padding: 0 10vw
    }
    .qu-list-wrap .qa-list .qa-item {
        margin-bottom: 4vw
    }
    .qu-list-wrap .qa-list .qa-item p {
        font-size: 2vw;
        line-height: 1.5;
        margin: 0 0 1.2vw
    }
}

@media (max-width:550px) {
    .qu-list-wrap {
        margin: 7vw auto
    }
    .qu-list-wrap .qa-list {
        padding: 0 5vw
    }
    .qu-list-wrap .qa-list .qa-item {
        margin-bottom: 5vw
    }
    .qu-list-wrap .qa-list .qa-item p {
        font-size: 3vw;
        line-height: 1.5;
        margin: 0 0 1.5vw
    }
}

/**   Page Jobs/Careers   */
.careers-header .careers-back {
    width: 100%
}

.careers-header .careers-back img {
    object-fit: cover;
    width: 100%
}

.careers-intro, .job-positions {
    margin: 4vw auto 0;
    padding: 0 20vw;
    text-align: center;
    color: #54565a
}

.careers-intro h1 {
    font-size: 3vw;
    margin-bottom: 2vw
}

.careers-intro p {
    font-size: 1.2vw;
    line-height: 1.2;
    margin-bottom: 1.5vw
}

.job-positions .job  {
    margin-bottom: 2vw
}

.job-positions h4 {
    font-size: 1.6vw;
    color: #93d500
}

.job-positions p {
    font-size: 1.3vw;
    line-height: 1.3;
    margin-top: 0.7vw
}

.reasons-to-work, .perks, .find-job {
    margin: 6vw auto 0;
    text-align: center
}

.reasons-to-work h2, .find-job h2 {
    font-size: 2vw;
    color: #54565a
}

.reasons-to-work ul {
    font-size: 1.5vw;
    color: #93d500;
    margin-top: 2vw
}

.reasons-to-work li {
    margin-top: 1vw;
    list-style-type: disc
}

.perks h2 {
    font-size: 2vw;
    text-decoration: underline;
    color: #93d500
}

.perks ul {
    font-size: 1.5vw;
    color: #54565a;
    margin-top: 2vw
}

.perks li {
    margin-top: 1vw;
    list-style-type: disc
}

.find-job {
    color: #54565a;
    width: 50vw;
    margin: 5vw auto;
    border: 0.2vw solid #545659;
    border-radius: 2vw;
    padding: 2vw;
}

.find-job h2 {
    color: #93d500
}

.find-job form {
    margin-top: 2vw
}

.find-job .label {
    margin: 2vw auto 1.5vw;
    font-size: 1.5vw
}

.find-job .selectbox {
    width: 20vw;
    padding: 0.35vw 0 0.35vw 1vw
}
.find-job .selectbox .trigger {
    right: 0.35vw
}
.find-job .selectbox .select .text {
    font-size: 1.2vw
}
.find-job .selectbox .dropdown {
    top: 2vw;
    padding: 0;
    margin-left: calc(-1vw - 1px);
    font-size: 1.2vw;
    color: #54565a;
    background: #fff;
    width: 20vw
}
.find-job .selectbox li {
    padding: 0.35vw 1vw;
    background: #9da0a259
}
.find-job .selectbox li.selected, .find-job .selectbox li:hover {
    background: #fff
}
.find-job .selectbox li.selected {
    font-weight: bold
}

.find-job button {
    width: 20vw;
    background-color: #93d500;
    border: none;
    color: #fff;
    font-size: 1.2vw;
    text-transform: uppercase;
    padding: 0.35vw 0;
    cursor: pointer
}

.find-job .vacancy-list  {
    margin: 1.5vw 0;
    font-size: 1.1vw
}
.find-job .vacancy-list div {
    padding: 0.2vw 0;
    font-weight: bold
}

@media (max-width:991px) {
    .careers-intro, .job-positions {
        margin: 6vw auto 0;
        padding: 0 10vw
    }
    .careers-intro h1 {
        font-size: 4vw;
        margin-bottom: 2.5vw;
    }
    .careers-intro p {
        font-size: 1.8vw;
        line-height: 1.4
    }
    .job-positions .job {
        margin-bottom: 3vw;
    }
    .job-positions h4 {
        font-size: 2.3vw
    }
    .job-positions p {
        font-size: 2vw;
        line-height: 1.4;
        margin-top: 1vw
    }
    .reasons-to-work, .perks, .find-job {
        margin: 7vw auto 0
    }
    .reasons-to-work h2, .perks h2, .find-job h2 {
        font-size: 3vw
    }
    .reasons-to-work ul, .perks ul {
        font-size: 2vw;
        margin-top: 3vw
    }
    .reasons-to-work li, .perks li {
        margin-top: 1.5vw
    }
    .find-job {
        margin-bottom: 6vw;
        width: 60vw;
        border-width: 0.35vw
    }
    .find-job .label {
        margin: 3vw auto 2.5vw;
        font-size: 2vw
    }
    .find-job button {
        width: 30vw;
        font-size: 2vw;
        padding: 0.5vw 0
    }
    .find-job .selectbox {
        width: 30vw;
        padding: 0.5vw 0 0.5vw 1vw
    }
    .find-job .selectbox .select .text {
        font-size: 2vw
    }
    .find-job .selectbox .trigger {
        right: 0.5vw
    }
    .find-job .selectbox .trigger {
        top: 0.5vw;
        width: 60%;
        height: 60%
    }
    .find-job .selectbox .dropdown {
        top: 3vw;
        margin-left: calc(-1vw - 1px);
        font-size: 2vw;
        width: 30vw
    }
    .find-job .selectbox li {
        padding: 0.5vw 1vw
    }
    .find-job .vacancy-list {
        margin: 2.5vw 0;
        font-size: 1.5vw
    }
    .find-job .vacancy-list div {
        padding: 0.4vw 0
    }
}

@media (max-width:550px) {
    .careers-intro, .job-positions {
        margin: 7vw auto 0;
        padding: 0 3vw;
    }
    .careers-intro h1 {
        font-size: 4.5vw;
        margin-bottom: 3.5vw;
    }
    .careers-intro p {
        font-size: 2.8vw;
        margin-bottom: 2.5vw
    }
    .job-positions .job {
        margin-bottom: 5vw
    }
    .job-positions h4 {
        font-size: 3.3vw
    }
    .job-positions p {
        font-size: 3vw;
        margin-top: 2vw
    }
    .reasons-to-work, .perks, .find-job {
        margin: 8vw auto 0
    }
    .reasons-to-work h2, .perks h2, .find-job h2 {
        font-size: 3.6vw
    }
    .reasons-to-work ul, .perks ul {
        font-size: 3vw;
        margin-top: 4vw
    }
    .reasons-to-work li, .perks li {
        margin-top: 2.5vw
    }
    .find-job {
        width: 90vw;
        border-width: 0.5vw;
        padding: 3vw
    }
    .find-job .label {
        margin: 4vw auto 3.5vw;
        font-size: 3vw
    }
    .find-job button {
        width: 50vw;
        font-size: 3vw;
        padding: 0.7vw 0
    }
    .find-job .selectbox {
        width: 50vw;
        padding: 0.75vw 0 0.75vw 2vw
    }
    .find-job .selectbox .select .text {
        font-size: 3vw
    }
    .find-job .selectbox .trigger {
        right: 1vw
    }
    .find-job .selectbox .trigger {
        top: 0.6vw;
        width: 60%;
        height: 60%
    }
    .find-job .selectbox .dropdown {
        top: 4.5vw;
        margin-left: calc(-2vw - 1px);
        font-size: 3vw;
        width: 50vw
    }
    .find-job .selectbox li {
        padding: 0.75vw 2vw
    }
    .find-job .vacancy-list {
        margin: 3.5vw 0;
        font-size: 2.6vw
    }
    .find-job .vacancy-list div {
        padding: 0.6vw 0
    }
    .find-job {
        margin-bottom: 7vw
    }
}

.locations-page .locations-list {
    margin: 0 auto;
    width: 40%
}

.locations-page .location-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3vw
}

.locations-page .location-item img {
    margin-right: 2vw;
    width: 15vw
}

.location-item .properties a {
    color: #54565a;
    display: flex;
    align-items: center;
    margin-bottom: 1.5vw
}

.location-item .properties a.name {
    margin-top: 1vw;
    font-size: 1.4vw;
    font-weight: 900;
    color: #93d500
}

.location-item .properties a img {
    margin-right: 0.5vw;
    width: 2vw;
    object-fit: contain
}

.location-item .properties a span {
    font-size: 1.2vw;
    font-weight: 900;
    /*max-width: 18vw;*/
    /*word-wrap: break-word*/
}

@media (max-width:991px) {
    .locations-page .locations-list {
        width: 60%
    }
    .locations-page .location-item {
        margin-bottom: 4vw
    }
    .locations-page .location-item img {
        margin-right: 3vw;
        width: 22vw
    }
    .location-item .properties a {
        margin-bottom: 2.2vw
    }
    .location-item .properties a.name {
        margin-top: 1.5vw;
        font-size: 2vw
    }
    .location-item .properties a img {
        margin-right: 0.8vw;
        width: 3vw
    }
    .location-item .properties a span {
        font-size: 1.8vw
    }
}

@media (max-width:550px) {
    .locations-page h2 {
        font-size: 5vw;
        margin: 7vw auto 6vw
    }
    .locations-page .locations-list {
        width: 90%
    }
    .locations-page .location-item {
        margin-bottom: 6vw;
        flex-direction: column;
        justify-content: center
    }
    .locations-page .location-item img {
        margin-right: 0;
        width: 100%
    }
    .location-item .properties a {
        margin-bottom: 3vw;
        justify-content: center
    }
    .location-item .properties a.name {
        margin-top: 2vw;
        font-size: 5vw
    }
    .location-item .properties a img {
        margin-right: 1.5vw;
        width: 4.5vw
    }
    .location-item .properties a span {
        font-size: 4vw
    }
}

/**    Franchise 2     */
.franchise-contact-inner {
    position: relative;
    margin: 0 auto
}
.franchise-contact-inner video {
    object-fit: cover;
    width: 100%
}
.franchise-contact-form {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center
}
.franchise-contact-form h1 {
    width: 30vw;
    color: #fff;
    font-size: 3vw;
    line-height: 1.3
}
.franchise-contact-form .franchise__form {
    background-color: #54565a;
    opacity: 0.8
}

section.content {
    margin: 3vw 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 h2 {
    color: #93d500;
    font-size: 2.3vw;
    margin-bottom: 2.5vw;
    text-align: center !important
}
section.content .text-block p {
    margin-bottom: 2.5vw;
    font-size: 1.2vw;
    line-height: 1.6;
    color: #54565a;
    font-weight: 700
}
section.content .text-block h4 {
    color: #93d500;
    font-size: 1.7vw;
    margin: 1vw auto 2.5vw
}
section.content .text-block.text-justified p {
    text-align: justify
}
section.content .statistics {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center
}
section.content .statistics li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
section.content .statistics .highlighted {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10vw;
    height: 10vw;
    border-radius: 100%;
    position: relative;
    background-color: #54565a;
    color: #fff;
    font-size: 2.4vw;
    margin: 3vw 3vw 2vw 0
}
section.content .statistics .highlighted sup {
    font-size: 1.5vw
}
section.content .statistics .highlighted strong {
    display: block;
    font-size: 3.3vw;
    font-family: "AllRoundGothicDemiBold"
}
section.content .statistics .highlighted::before {
    content: "";
    position: absolute;
    width: 13.2vw;
    height: 13.2vw;
    top: -1.1vw;
    right: -1.6vw;
    background-image: url(../images/g_outline.png);
    background-size: contain;
    background-repeat: no-repeat
}
section.content .statistics .regular {
    width: 15vw;
    text-align: left;
    color: #54565a;
    font-weight: bold;
    font-size: 1.6vw;
    line-height: 1.2
}
section.content .statistics.dynamic {
    align-items: flex-start
}
section.content .statistics.dynamic li {
    flex-direction: column
}
section.content .statistics.dynamic .highlighted {
    margin-right: 0
}
section.content .statistics.dynamic .regular {
    width: 13vw;
    margin-top: 1.5vw;
    text-align: center
}

section.content.franch-owner, section.content.franch-opport {
    margin-top: 6vw
}
section.content.franch-cost {
    margin-top: 0
}
section.content .inner-container {
    display: flex;
    align-items: center;
    justify-content: flex-start
}
section.franch-owner .side-image {
    width: 55vw;
}
section.franch-owner .text-block {
    width: 45vw;
    padding: 2vw;
    text-align: left
}
section.franch-owner .text-block ul {
    font-size: 1.4vw;
    color: #54565a;
    margin: 0 0 2vw 2vw
}
section.franch-owner .text-block li {
    margin-top: 1vw;
    list-style-type: disc
}

section.franch-opport .text-block {
    text-align: left;
}
section.franch-opport .text-block ul {
    font-size: 1.2vw;
    color: #54565a;
    padding: 0 4vw
}
section.franch-opport .text-block li {
    margin-top: 1vw;
    list-style-type: disc
}

section.exclusive-area {
    background-color: #54565a
}
section.exclusive-area .side-image {
    width: 60vw;
}
section.exclusive-area .text-block {
    width: 40vw;
    padding: 0vw 5vw 0 7vw
}
section.exclusive-area .text-block p {
    color: #fff;
    font-size: 1.4vw
}

section.franch-cost .text-block ul {
    font-size: 1.2vw;
    color: #54565a;
    text-align: left;
    margin-left: 27vw
}
section.franch-cost .text-block li {
    margin-top: 1vw;
    list-style-type: disc
}
section.franch-cost .get-guide-link {
    margin: 2vw auto;
    font-size: 1.3vw;
    font-weight: bold;
    color: #93d500;
    position: relative
}
section.franch-cost .get-guide-link a {
    position: absolute;
    transform: rotate(180deg);
    /*-webkit-animation: arrowDown 2.5s infinite;*/
    /*animation: arrowDown 2.5s infinite;*/
    cursor: pointer
}
section.franch-cost .get-guide-link a img {
    margin-right: 1vw;
    width: 1.2vw;
    height: 1.2vw
}
section.content .btn-links {
    margin: 0 auto 2vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly
}
section.content .btn-links.between-sections {
    margin: 0 auto;
    padding: 2vw 0 0
}
section.content .btn-links a {
    display: inline-block;
    font-size: 1.35vw;
    font-weight: 700;
    padding: 0.4vw 2.5vw;
    width: auto;
    margin-bottom: 3vw;
    cursor: pointer;
    background-color: #93d500;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.5;
    border: 1px solid #93d500;
    border-radius: 1.3vw
}
section.content .btn-links.between-sections a {
    margin: 0
}

section.content .has-subheading {
    margin-bottom: 0 !important
}

section.content .programs-badges.statistics li {
    width: 18vw;
    margin: 2.5vw 0
}

section.content .programs-badges.statistics li div {
    color: #54565a;
    font-weight: bold
}

section.content .programs-badges.statistics li img
,section.single-prog .prog-logo img {
    height: 12vw
}

section.content .programs-badges.statistics li .prog-name {
    font-size: 1.6vw;
    margin: 1.5vw auto 1vw
}

section.content .programs-badges.statistics li .age-info {
    font-size: 1.3vw
}

section.content .programs-badges.statistics li .prog-link {
    font-size: 1.1vw;
    padding: 0.2vw 2vw;
    width: auto;
    margin-top: 1vw;
    cursor: pointer;
    background-color: #93d500;
    color: #fff;
    line-height: 1.5;
    border: 1px solid #93d500;
    border-radius: 1.3vw;
    transition: 0.5s
}

section.content .programs-badges.statistics li:hover .prog-link {
    transform: scale(1.1);
    transition: 0.8s;
}

section.content .inv_text {
    margin: 4vw 0;
    text-align: center;
    font-size: 1.5vw;
    line-height: 1.5;
    color: #54565a
}

@media (max-width:1200px) {
    section.content .inv_text {
        font-size: 1.8vw
    }
    section.content .text-block p {
        font-size: 1.6vw
    }
    section.content .programs-badges.statistics li img
    ,section.single-prog .prog-logo img {
        height: 15vw
    }
}

@media (max-width: 991px) {
    section.content .inv_text {
        margin: 4vw 0 3vw;
        font-size: 2.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 .text-block h4 {
        margin: 1.5vw 0 3vw;
        font-size: 2.7vw
    }
    section.content .statistics .highlighted {
        width: 13vw;
        height: 13vw;
        font-size: 3vw;
        margin: 4vw 4vw 2vw 0
    }
    section.content .statistics .highlighted::before {
        width: 17.2vw;
        height: 17.2vw;
        top: -1.5vw;
        right: -2.05vw
    }
    section.content .statistics .highlighted strong {
        font-size: 4.5vw
    }
    section.content .statistics .highlighted sup {
        font-size: 2.4vw
    }
    section.content .statistics .regular {
        font-size: 2.5vw;
        width: 25vw
    }
    section.content .statistics.dynamic .regular {
        margin-top: 2vw;
        width: 18vw
    }

    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
    }

    section.franch-owner .text-block ul {
        font-size: 2.3vw;
        margin: 0 0 2vw 15vw
    }
    section.franch-owner .text-block p {
        text-align: center
    }

    section.franch-opport .text-block ul, section.franch-cost .text-block ul {
        font-size: 2.2vw;
        line-height: 1.5
    }

    section.franch-cost .text-block ul {
        margin-left: 33vw
    }

    section.exclusive-area .inner-container {
        flex-direction: column-reverse
    }

    section.franch-cost .get-guide-link {
        margin: 3vw auto;
        font-size: 2.3vw
    }
    section.franch-cost .get-guide-link a img {
        width: 2vw;
        height: 2vw
    }
    section.content .btn-links {
        margin-bottom: 4vw
    }
    section.content .btn-links a {
        font-size: 2.2vw;
        padding: 0.5vw 3vw;
        border-radius: 2vw
    }

    section.content .programs-badges.statistics li {
        width: 32vw;
        margin: 3.2vw 0
    }
    section.content .programs-badges.statistics li img
    ,section.single-prog .prog-logo img {
        height: 20vw
    }
    section.content .programs-badges.statistics li .prog-name {
        font-size: 2.75vw;
        margin: 2vw auto 1.5vw
    }
    section.content .programs-badges.statistics li .age-info {
        font-size: 2.2vw
    }
    section.content .programs-badges.statistics li .prog-link {
        font-size: 2vw;
        padding: 0.4vw 2.5vw;
        margin-top: 2vw;
        border-radius: 2vw
    }

    section.content .btn-links.between-sections {
        padding: 0
    }
}

@media (max-width:700px) {
    section.content .programs-badges.statistics li {
        width: 36vw;
        margin: 4vw 0
    }
    section.content .programs-badges.statistics li img
    ,section.single-prog .prog-logo img {
        height: 30vw
    }
    section.content .programs-badges.statistics li .prog-name {
        font-size: 3.2vw;
        margin: 3vw auto 2vw
    }
    section.content .programs-badges.statistics li .age-info {
        font-size: 2.7vw
    }
    section.content .programs-badges.statistics li .prog-link {
        font-size: 2.4vw;
        padding: 0.5vw 2.5vw;
        margin-top: 2.8vw;
        border-radius: 2.4vw;
    }
}

@media (max-width:550px) {
    .franchise-contact-form {
        display: block;
        position: relative;
        top: unset;
        transform: unset;
        padding-bottom: 4vw;
        background-color: #54565a
    }
    .franchise-contact-form h1 {
        width: 100%;
        padding: 4vw 5vw;
        text-align: center;
        font-size: 5vw;
        line-height: 1.3
    }
    .franchise-contact-form .franchise__form {
        opacity: 1;
        margin: 0 auto
    }
    section.content .inv_text {
        margin: 6vw 0;
        font-size: 3.6vw
    }
    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 .text-block h4 {
        margin: 2vw auto 4vw;
        font-size: 4vw
    }
    section.content .statistics {
        flex-direction: column
    }
    section.content .statistics.dynamic {
        flex-direction: row
    }
    section.content .statistics li {
        margin: 6vw 0
    }
    section.content .statistics.dynamic li {
        margin: 6vw 0 4vw
    }
    section.content .statistics .highlighted {
        width: 18vw;
        height: 18vw;
        font-size: 4vw;
        margin: 1vw 6vw 0 0
    }
    section.content .statistics .highlighted::before {
        width: 23.8vw;
        height: 23.8vw;
        top: -2vw;
        right: -3vw
    }
    section.content .statistics .highlighted strong {
        font-size: 5.6vw
    }
    section.content .statistics .highlighted sup {
        font-size: 3.2vw
    }
    section.content .statistics .regular {
        font-size: 3.6vw;
        width: 40vw
    }
    section.content .statistics.dynamic .regular {
        margin-top: 4vw;
        width: 40vw
    }

    section.content .inner-container .text-block {
        padding: 5vw 4vw
    }

    section.franch-owner .text-block ul {
        font-size: 3.4vw;
        margin: 0 0 4vw 10vw
    }

    section.franch-opport .text-block ul, section.franch-cost .text-block ul {
        font-size: 3.4vw
    }
    section.franch-cost .text-block ul {
        margin-left: 25vw
    }

    section.franch-cost .get-guide-link {
        margin: 4vw auto;
        font-size: 3.5vw
    }
    section.franch-cost .get-guide-link a img {
        width: 3vw;
        height: 3vw
    }
    section.content .btn-links {
        margin-bottom: 8vw
    }
    section.content .btn-links a {
        font-weight: bold;
        font-size: 3vw;
        padding: 0.6vw 5vw;
        line-height: 1.7;
        border-radius: 2.8vw
    }

    section.content .programs-badges.statistics li {
        width: 50vw;
        margin: 5vw 0
    }
    section.content .programs-badges.statistics li img
    ,section.single-prog .prog-logo img {
        height: 45vw
    }
    section.content .programs-badges.statistics li .prog-name {
        font-size: 4.6vw;
        margin: 4.5vw auto 3vw
    }
    section.content .programs-badges.statistics li .age-info {
        font-size: 3.7vw
    }
    section.content .programs-badges.statistics li .prog-link {
        font-size: 3.3vw;
        padding: 0.8vw 3vw;
        margin-top: 3vw;
        border-radius: 3.4vw
    }

    section.content .btn-links.between-sections {
        margin: 6vw auto
    }
}

/*      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;
    }
}

/**     Categories page */
.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  *****/

/*    Single program page */
section.content .subhead-text {
    margin: 1vw auto 2.5vw;
    font-size: 1.3vw;
    font-weight: 700;
    color: #54565a
}

section.single-prog .prog-logo {
    display: inline-block;
    margin-bottom: 2vw
}

.photo-gallery {
    margin: 5vw 0
}
.photo-gallery.titled {
    margin-top: 0 !important
}

.photo-gallery .slick-list {
    margin: 0 2.5vw
}

.photo-gallery .photo-wrap {
    margin: 0 1vw
}

.photo-gallery .photo-wrap div {
    height: 14vw;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

.testimonials.content {
    padding: 2vw 0 0
}

.testimonials.content .text-block {
    padding-top: 0
}

.program-testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1vw 0
}

.program-testimonials .testimonials__item-wrap {
    margin: 0 6vw
}

.program-testimonials .testimonials__slide {
    width: 18vw;
    height: 18vw
}

.program-testimonials .testimonials__slide .testimonials__slide-text {
    font-size: 0.9vw
}

.program-testimonials .testimonials__slide.odd .testimonials__slide-text {
    padding-left: 3.3vw
}

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

    .program-testimonials .testimonials__slide {
        width: 26vw;
        height: 26vw
    }
    .program-testimonials .testimonials__slide .testimonials__slide-text {
        font-size: 1.15vw
    }
    .program-testimonials .testimonials__slide.odd .testimonials__slide-text {
        padding: 5.1vw 4vw 0vw 5.3vw
    }
}

@media (max-width:1200px) {
    section.content .subhead-text {
        margin: 1.2vw auto 2.5vw;
        font-size: 1.5vw
    }
}

@media (max-width:991px) {
    section.content .subhead-text {
        margin: 1.5vw auto 3vw;
        font-size: 2.4vw
    }
    section.single-prog .prog-logo {
        margin-bottom: 2.5vw
    }
    .photo-gallery {
        margin: 7vw 0
    }
    .photo-gallery .photo-wrap {
        margin: 0 2vw
    }
    .photo-gallery .photo-wrap div {
        height: 30vw
    }
    .photo-gallery .slick-list {
        margin: 0 4vw;
    }

    .testimonials.content {
        padding: 3vw 0 0
    }
    .program-testimonials .testimonials__slide {
        width: 37vw;
        height: 37vw
    }
    .program-testimonials .testimonials__slide .testimonials__slide-text {
        font-size: 1.7vw
    }
    .program-testimonials .testimonials__slide.even .testimonials__slide-text {
        padding: 3vw 5vw 0vw 3vw
    }
    .program-testimonials .testimonials__slide.odd .testimonials__slide-text {
        padding: 8vw 4vw 0vw 8vw
    }
}

@media (max-width:700px) {
    .program-testimonials {
        flex-direction: column
    }
    .program-testimonials .testimonials__item-wrap {
        margin: 0 auto 2vw
    }
    .program-testimonials .testimonials__slide {
        width: 50vw;
        height: 50vw
    }
    .program-testimonials .testimonials__slide .testimonials__slide-text {
        font-size: 2.45vw
    }
    .program-testimonials .testimonials__slide.even .testimonials__slide-text {
        padding: 3vw 5vw 0vw 4vw
    }
    .program-testimonials .testimonials__slide.odd .testimonials__slide-text {
        padding: 11vw 6vw 0vw 11vw
    }
}

@media (max-width:550px) {
    section.content .subhead-text {
        margin: 2vw auto 4vw;
        font-size: 3.5vw
    }
    section.single-prog .prog-logo {
        margin-bottom: 3vw
    }
    .photo-gallery {
        margin: 11vw 0 9vw
    }
    .photo-gallery .photo-wrap {
        margin: 0 5vw
    }
    .photo-gallery .photo-wrap div {
        height: 50vw
    }
    .photo-gallery .slick-list {
        margin: 0 6vw;
    }

    .testimonials.content {
        padding: 4vw 0 0
    }
    .program-testimonials .testimonials__slide {
        width: 77vw;
        height: 77vw
    }
    .program-testimonials .testimonials__slide .testimonials__slide-text {
        font-size: 3.6vw
    }
    .program-testimonials .testimonials__slide.even .testimonials__slide-text {
        padding: 6vw 6vw 0vw 9.5vw
    }
    .program-testimonials .testimonials__slide.odd .testimonials__slide-text {
        padding: 17vw 8vw 0vw 14vw
    }
}
/*    /Single program page */