@font-face {
    font-family: 'HelveticaNeue';

    src: url('../fonts/HelveticaNeueCyr-Roman.otf') format("opentype");
    src: url('../fonts/HelveticaNeueCyr-Roman.otf?iefix') format('opentype');

    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeue';

    src: url('../fonts/HelveticaNeueCyr-Bold.otf') format("opentype");
    src: url('../fonts/HelveticaNeueCyr-Bold.otf?iefix') format('opentype');

    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeue';

    src: url('../fonts/HelveticaNeueCyr-Light.otf') format("opentype");
    src: url('../fonts/HelveticaNeueCyr-Light.otf?iefix') format('opentype');

    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNeue';

    src: url('../fonts/HelveticaNeueCyr-LightItalic.otf') format("opentype");
    src: url('../fonts/HelveticaNeueCyr-LightItalic.otf?iefix') format('opentype');

    font-weight: 300;
    font-style: italic;
}

* {
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
    color: initial;
}

body, html {
    font-family: "HelveticaNeue", sans-serif;
    font-weight: 300;
    height: 100%;
    font-size: 18px;
}

body {
    color: #1f1f1f;
    overflow-x: hidden;
}

h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

h3 {
    font-size: 1.666666667rem;
    margin-bottom: 36px;
    letter-spacing: 4px;
}

p {
    color: #949494;
    margin-bottom: 30px;
    line-height: 1.5;
}

img {
    width: 100%;
    display: block;
}

input[type="date"]::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background: initial;
    cursor: pointer;
}

button {
    font-family: "HelveticaNeue", sans-serif;
    font-weight: 300;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.container {
    width: 100%;
    max-width: 1380px;
    padding: 0 15px;
    margin: auto;
}

.white-screen {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}

.blue-screen {
    padding-top: 120px;
    padding-bottom: 120px;
    color: white;
    background-color: #0085ab;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.white-text {
    color: #fff;
}

.grey-text {
    color: #949494;
}

.ta-center {
    text-align: center;
}

.no-margin {
    margin: 0 !important;
}

.bold {
    font-weight: bold;
}

.common-button {
    height: 40px;
    padding: 0 20px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1rem;
    border: none;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: .5s;
    white-space: nowrap;
    line-height: 1;
}
.common-button + .common-button {
    margin-left: 20px;
}
.common-button.bordered-white {
    border: 1px solid #fff;
    color: #fff;
    background-color: rgba(255, 255, 255, .15);
}
.common-button.bordered-white:hover {
    color: #ff1364;
    background-color: rgba(255, 255, 255, 1);
}
.common-button.bordered-white.hover-text-blue:hover {
    color: #007b9e;
    background-color: rgba(255, 255, 255, 1);
}
.common-button.bordered-blue {
    border: 1px solid #007b9e;
    color: #007b9e;
    background-color: #fff;
}
.common-button.bordered-blue:hover {
    color: #fff;
    background-color: #007b9e;
}
.common-button.pink {
    color: #fff;
    background: linear-gradient(90deg, #ff1364 0%, #f16190 51%, #ff1364 100%);
    background-size: 200% auto;
}
.common-button.pink:hover {
    background-position: right center;
}
.common-button.blue {
    color: #fff;
    background: linear-gradient(90deg, #007b9e 0%, #00aed2 51%, #007b9e 100%);
    background-size: 200% auto;
}
.common-button.blue:hover {
    background-position: right center;
}

.form-description-1 {
    margin-top: 3rem;
    margin-bottom: .5rem;
    opacity: .7;
    line-height: 1.5;
}
.form-description-2 {
    font-size: 1.666666667rem;
}

.form {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}
.form > * {
    margin-right: 20px;
}
.form > *:last-child {
    margin-right: 0;
}

.input-field {
    position: relative;
    width: 100%;
    max-width: 224px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-top: none;
    border-radius: 6px;
}

.input-field.invalid {
    border-color: #ff1364 !important;
}

.input-field .label {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.input-field .label:before {
    border-radius: 6px 0 0 0;
    display: block;
    content: "";
    flex: 0 0 10px;
    height: 2px;
    border-top: 1px solid rgba(255, 255, 255, .8);
}
.input-field .label:after {
    border-radius: 0 6px 0 0;
    display: block;
    content: "";
    flex: 2 0 0;
    height: 2px;
    border-top: 1px solid rgba(255, 255, 255, .8);
 }
.input-field.invalid .label:before,
.input-field.invalid .label:after {
    border-color: #ff1364 !important;
}
.input-field .label label {
    line-height: 1;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    overflow: hidden;
    flex: 0 0 auto;
    margin-top: -7px;
    text-align: center;
    padding: 0 10px;
}

.input-field input,
.input-field select {
    background: transparent;
    border: none;
    height: 40px;
    padding: 0 20px;
    color: #fff;
    border-collapse: separate;
    width: 100%;

    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
}

.input-field select {
    width: 100%;
}

.input-field.select-box:before {
    content: "\25BC";
    height: 10px;
    width: 10px;
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 10px;
}

.input-field.select-box.arrow-blue:before {
    color: #33b3cd;
}

.input-field select option {
    color: #fff;
    background-color: #009abc;
}

.input-field select.bg-white option {
    color: initial;
    background-color: #fff;
}

.input-field.dark {
    border-color: #949494;
}
.input-field.dark .label:before {
    border-color: #949494;
}
.input-field.dark .label:after {
    border-color: #949494;
}
.input-field.dark .label label {
    color: #949494;
}
.input-field.dark input,
.input-field.dark select {
    color: #949494;
}

.input-field.blue {
    border-color: #00a0c1;
}
.input-field.blue .label:before {
    border-color: #00a0c1;
}
.input-field.blue .label:after {
    border-color: #00a0c1;
}
.input-field.blue .label label {
    color: #00a0c1;
}
.input-field.blue input,
.input-field.blue select {
    color: #949494;
}

.fixed-header {
    position: absolute;
    padding: 20px 0;
    z-index: 1;
    width: 100%;
    transition: .3s;
    min-height: 80px;
    display: flex;
}

.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
}
.main-menu-mobile .main-logo {
    height: 60px;
}
.main-menu-mobile .main-logo img {
    height: 100%;
}
.main-menu-mobile .phone-icon img {
    width: 26px;
    filter: brightness(0) invert(1);
}

.main-menu .hide-with-closed-menu {
    display: none;
}

.main-menu > div {
    display: flex;
    align-items: center;
}

.main-menu .main-logo {
    height: 80px;
    margin-right: 38px;
}

.main-menu .main-logo img {
    height: 100%;
    color: #fff;
    width: auto;
}

.main-menu .menu-icon {
    margin-right: 42px;
}

.main-menu .menu-items {
    margin-right: 38px;
}
.main-menu .menu-items a {
    color: #fff;
    text-transform: uppercase;
    margin-right: 38px;
    transition: .3s;
    letter-spacing: 4px;
    white-space: nowrap;
}
.main-menu .menu-items a:hover {
    color: #ff1364;
}
.main-menu .menu-items a:last-child {
    margin-right: 0;
}

.main-menu .phones {
    margin-right: 38px;
}
.main-menu .phones div:first-child {
    color: #fff;
    margin-bottom: 12px;
}
.main-menu .phones a {
    color: #fff;
    text-transform: uppercase;
    transition: .3s;
}
.main-menu .phones a:hover {
    color: #ff1364;
}

.social {
    display: flex;
    align-items: center;
}
.social a img {
    color: #fff;
    filter: brightness(0) invert(1);
    opacity: .7;
    transition: .3s;
    width: auto;
}
.social a:first-child img {
    margin-right: 20px;
    height: 20px;
}
 .social a:last-child img {
    height: 30px;
}
.social a img:hover {
    opacity: 1;
}

.menu-toggle {
    border: none;
    cursor: pointer;
    position: relative;
    display: block;
    width: 30px;
    height: 26px;
    background: transparent;
    border-top: 4px solid;
    border-bottom: 4px solid;
    color: #fff;
    font-size: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.menu-toggle:before, .menu-toggle:after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.fixed-header.scrolled {
    position: fixed;
    background: linear-gradient(90deg, #007b9e 0%, #00aed2 51%, #007b9e 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
}

.fixed-header.scrolled .main-logo {
    display: none;
}

.fixed-header.scrolled .phones > div {
    display: inline-block;
    margin-bottom: 0 !important;
}

.fixed-header.scrolled .phones > div:first-child {
    margin-right: 30px;
}

button.active {
    border-color: transparent;
}
button.active:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
button.active:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.block-text {
    opacity: .7;
    margin-bottom: 30px;
    line-height: 1.5;
}

.note {
    opacity: .7;
    line-height: 1.5;
    margin-top: 30px;
    font-style: italic;
    font-size: 14px;
}

.not-full {
    max-width: 675px;
}
.not-full.right {
    float: right;
}

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    visibility:visible;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

.screen-1 {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.menu-mobile {
    position: fixed;
    max-width: 100%;
    height: 100%;
    overflow: auto;
    background: linear-gradient(90deg, #007b9e 0%, #00aed2 100%);
    z-index: 10;
    padding: 45px;
    text-align: center;
    transition: .5s;
    transform: translateX(-101%);
}
.menu-mobile.opened {
    transform: translateX(0%);
}
.menu-mobile a {
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    letter-spacing: 4px;
    display: block;
}
.menu-mobile li a {
    padding: 20px 0;
}
.menu-mobile .close {
    opacity: 1 !important;
}
.menu-mobile button {
    margin-top: 45px;
}
.menu-mobile .phones {
    margin-top: 60px;
}
.menu-mobile .social {
    display: block;
}
.menu-mobile .social a {
    display: inline-block;
    vertical-align: middle;
}

.screen-1 video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-height: 100%;
    min-width: 100%;
    filter: contrast(1.3);
}
.screen-1 .screen-1-mobile-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    display: none;
}

.screen-1 .video-dark-mask {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, transparent 100%);
    opacity: .6;
}

.screen-1 .content {
    position: absolute;
    top: calc(100px + (100% - 100px) * 0.5);
    transform: translateY(-50%);
}

.screen-1 .content .text-1 {
    font-size: 3rem;
    letter-spacing: 8px;
    opacity: .7;
}

.screen-1 .content .text-2 {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 16px;
}

.screen-2 .buttons {
    margin-top: 60px;
    margin-bottom: 54px;
}

.carousel-wrapper {
    display: flex;
}

.carousel-wrapper .navigation {
    width: 75px;
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: .7;
    user-select: none;
}
.carousel-wrapper .navigation.inactive {
    opacity: .1;
    pointer-events: none;
}
.carousel-wrapper .navigation:hover {
    opacity: 1;
}
.carousel-wrapper .navigation.left {
    padding-right: 40px;
}
.carousel-wrapper .navigation.right {
    padding-left: 40px;
}
.carousel-wrapper .arrow {
    width: 35px;
}

.screen-2 .carousel-advantages .advantage {
    padding: 0 20px;
    width: 240px;
}

.screen-2 .carousel-advantages img {
    height: 80px;
    margin-bottom: 40px;
}

.screen-2 .carousel-advantages .advantage-title {
    margin-bottom: 1rem;
    letter-spacing: 4px;
    min-height: 36px;
}

.screen-2 .carousel-advantages .grey-text {
    font-size: 14px;
    line-height: 1.25;
}

.screen-3 {
    background-image: url('../img/screen-3-bg.jpg');
}

.screen-3 .popup-openers a {
    cursor: pointer;
    text-decoration: underline;
    color: inherit;
}

.screen-4 .carousel-wrapper .navigation.left {
    padding-right: 20px;
}

.screen-4 .carousel-wrapper .navigation.right {
    padding-left: 20px;
}

.screen-4 .carousel-prices .item {
    width: 270px;
    height: 500px;
    margin: 40px 20px;
}

.screen-4 .carousel-prices .item + .item {
    margin-left: 20px;
}

.screen-4 .carousel-prices .item > div > div {
    box-shadow: 0 0 20px rgba(22, 20, 20, .1);
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.screen-4 .carousel-prices .item > div > div.flip-card-back {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem;
    background: linear-gradient(90deg, #007b9e 0%, #00aed2 100%) no-repeat center center;
    background-size: cover;
}

.screen-4 .carousel-prices .item > div > div.flip-card-back > div > div {
    margin-bottom: 20px;
}

.screen-4 .carousel-prices .item > div > div.flip-card-back > div .item-title {
    margin-bottom: 40px;
}

.screen-4 .carousel-prices .item img {
    margin-bottom: 30px;
}

.screen-4 .carousel-prices .item.for-sert,
.screen-4 .carousel-prices .item.for-sert .flip-card-front,
.screen-4 .carousel-prices .item.for-sert .flip-card-back {
    box-shadow: none !important;
}
.screen-4 .carousel-prices .item.for-sert .flip-card-front > *:not(.overflow-handler) {
    opacity: 0;
}
.screen-4 .carousel-prices .item .overflow-handler {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.screen-4 .carousel-prices .item .item-info {
    padding: 0 30px 15px;
}

.screen-4 .carousel-prices .item .item-title {
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 4px;
    line-height: 1.25;
    min-height: 44px;
}

.screen-4 .carousel-prices .item .item-info .time {
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 300;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 8px 0;
    font-size: 14px;
}

.screen-4 .carousel-prices .item .item-info .item-prices {
    display: table;
    font-weight: 300;
    line-height: 40px;
    width: 100%;
}

.screen-4 .carousel-prices .item .item-info .item-prices > div {
    display: table-row;
}

.screen-4 .carousel-prices .item .item-info .item-prices > div > span {
    display: table-cell;
    min-width: 16px;
}

.screen-4 .carousel-prices .item .item-info .item-prices > div > span:last-child {
    color: initial;
    font-weight: normal;
}

.screen-5-7 .text-1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: .7;
}

.screen-5-7 .text-2 {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 12px;
    text-shadow: 15px 15px 20px rgba(15, 20, 20, .15);
    margin-bottom: 40px;
}

.screen-5-7 .multiple-form > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.screen-5-7 .multiple-form .target-select {
    max-width: 466px;
}

.screen-5-7 .multiple-form .time-select {
    width: 192px;
}

.screen-5 {
    background-image: url('../img/screen-5-bg.jpg');
}

.screen-6 .carousel-instructors li {
    width: 560px;
    height: 340px;
    margin: 30px 20px;
    position: relative;
}

.screen-6 .carousel-instructors li .instructor-card {
    width: 100%;
    height: 100%;
}

.screen-6 .carousel-instructors .card-front {
    display: flex;
    height: 100%;
    box-shadow: 0 0 20px rgba(22, 20, 20, .1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.screen-6 .carousel-instructors .card-front .video-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 1s;
    border-radius: 6px;
    overflow: hidden;
}

.screen-6 .carousel-instructors .card-front .video-wrapper video {
    position: relative;
    left: 50%;
    top: 50%;
    height: 100%;
    filter: contrast(1.3);
    transform: translate(-50%, -50%);
}

.screen-6 .carousel-instructors .card-front:hover .video-wrapper {
    opacity: 1;
}

.screen-6 .carousel-instructors .card-front .item-image {
    height: 100%;
    transition: 1s;
}

.screen-6 .carousel-instructors .card-front:hover .item-image {
    opacity: 0;
}

.screen-6 .carousel-instructors .card-front .item-image img {
    width: auto;
    height: 100%;
}

.screen-6 .carousel-instructors .card-front .item-info {
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.screen-6 .carousel-instructors .card-front .item-info .item-title {
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 4px;
    line-height: 1.25;
    min-height: 44px;
    word-spacing: 9999999px;
}

.screen-6 .carousel-instructors .card-front .item-info .item-sub-title {
    margin-bottom: 14px;
    font-style: italic;
    font-weight: 300;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 8px 1rem;
    font-size: 14px;
    line-height: 18px;
}

.screen-6 .carousel-instructors .card-front .item-info .item-description {
    font-size: 14px;
    line-height: 18px;
}

.screen-6 .carousel-instructors .card-front .item-info .item-description > p {
    margin: 0;
}

.screen-7 {
    background-image: url('../img/screen-7-bg.jpg');
}

.screen-8 .carousel-reviews li {
    width: 560px;
    margin: 30px 20px;
    box-shadow: 0 0 20px rgba(22, 20, 20, .1);
    border-radius: 6px;
    overflow: hidden;
    padding: 30px;
    text-align: left;
}

.screen-8 .carousel-reviews li .review-title {
    margin-bottom: 30px;
}

.screen-8 .carousel-reviews li .review-info {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 18px;
    line-height: 18px;
}

.screen-8 .carousel-reviews li .play-review-video {
    font-size: 14px;
    color: #007b9e;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.screen-8 .carousel-reviews li .play-review-video .play-video-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #007b9e;
    position: relative;
    transition: .3s;
    margin-right: 10px;
}

.screen-8 .carousel-reviews li .play-review-video .play-video-icon img {
    width: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%);
    transition: .3s;
}

.screen-8 .carousel-reviews li .play-review-video:hover {
    text-decoration: underline;
}

.screen-8 .carousel-reviews li .play-review-video:hover .play-video-icon {
    border-width: 10px;
}

.screen-8 .carousel-reviews li .play-review-video:hover .play-video-icon img {
    filter: brightness(0) invert(1);
}

.screen-8 .carousel-reviews li p {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 144px;
}

.screen-8 .carousel-reviews li .read-more {
    display: flex;
    cursor: pointer;
    white-space: nowrap;
}

.screen-8 .carousel-reviews li .read-more:hover {
    text-decoration: underline;
}

.screen-8 .carousel-reviews li .read-more img {
    width: 15px;
    margin-left: 10px;
    filter: brightness(0);
}

.screen-8 .carousel-reviews li .read-more:hover img {
    animation: read-more 1s ease infinite;
}

.screen-9 {
    background-image: url('../img/screen-9-bg.jpg');
}

.screen-9 .multiple-form {
    margin-top: 2rem;
}

.screen-9 .multiple-form > div:first-child .input-field {
    max-width: calc(50% - 10px);
}

.screen-9 .multiple-form > div:last-child .input-field {
    max-width: 234px;
}

.screen-9 .multiple-form .time-select {
    width: 100%;
}

.screen-10 {
    padding-bottom: 60px;
}

.screen-10 .contacts-and-form {
    display: flex;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 50px;
    margin-top: 50px;
}

.screen-10 .contacts-and-form > div {
    width: calc(50% - 15px);
}

.screen-10 .contact-info > div + div {
    margin-top: 30px;
}

.screen-10 .contact-info .img-wrapper {
    width: 30px;
    display: inline-block;
    margin-right: 20px;
}

.screen-10 .contact-info .img-wrapper img {
    height: 30px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.screen-10 .contact-info .icons {
    display: flex;
    margin-top: 20px;
}

.screen-10 .contact-info button {
    width: 40px;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.screen-10 .contact-info .icons img {
    width: 20px;
    transition: .3s;
}

.screen-10 .contact-info .icons img:hover {
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .3));
}

.screen-10 .contact-form .screen-10-form {
    margin-top: 40px;
    color: #949494;
}

.screen-10 .contact-form .screen-10-form > div:first-child {
    display: flex;
    justify-content: space-between;
}

.screen-10 .contact-form .screen-10-form > div:first-child .input-field {
    max-width: none;
    width: calc(50% - 11px);
}

.screen-10 .contact-form .screen-10-form .input-field {
    margin-bottom: 22px;
}

.screen-10 .contact-form .screen-10-form .textarea-input {
    max-width: none;
    width: 100%;
}

.screen-10 .contact-form .screen-10-form .textarea-input textarea {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 4px;
    resize: vertical;
    min-height: 80px;
    padding: 20px;
}

.screen-10 .contact-form .screen-10-form .form-10-button {
    text-align: right;
}

.screen-10 .search-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
    background-image: url('../img/social.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 20px rgba(22, 20, 20, .1);
}

.screen-10 .search-us .title {
    text-transform: uppercase;
    font-size: 30px;
}

.screen-10 .search-us .links {
    display: flex;
    align-items: center;
}

.screen-10 .search-us .links > span {
    margin-right: 22px;
}

.screen-10 .search-us .links > a:first-of-type {
    margin-right: 28px;
}

.screen-10 .search-us img {
    width: auto;
    transition: .3s;
}

.screen-10 .search-us img:hover {
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .3));
}

footer {
    background: linear-gradient(90deg, #007b9e, #00aed2);
    padding: 30px 0;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    position: relative;
}

footer a {
    color: #fff;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

footer .container > div {
    display: flex;
}

footer .footer-texts > div {
    margin-right: 60px;
}

footer button {
    margin-right: 60px;
}

footer .to-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    filter: drop-shadow(0 0 20px rgba(22, 20, 20, .2));
    transition: .3s;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    cursor: pointer;
}

footer .to-top:hover {
    filter: drop-shadow(0 0 20px rgba(22, 20, 20, .4));
}

footer .to-top img {
    height: 30px;
}

#map {
    width: 100%;
    height: 450px;
    background-color: grey;
    overflow: hidden;
}

.call {
    position: fixed;
    right: -150px;
    bottom: 40px;
    box-shadow: 0 0 0 rgba(0, 123, 158, 0.4);
    transition: .5s cubic-bezier(0, 0, 0.54, 1.66);
    cursor: pointer;
}

.call.visible {
    right: 40px;
}

.call .shadow-emitter {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s infinite;
}

.call .shadow-emitter:last-child {
    animation-delay: .75s;
}

.call a {
    z-index: 10;
}

.popup {
    display: none;
    z-index: 100;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.popup .popup-shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, .3);
    cursor: pointer;
}

.popup .popup-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 30px 60px 60px;
    border-radius: 6px;
    z-index: 10;
    background-color: #fff;
    max-height: 90%;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
}

.popup .popup-content .popup-content-scroll-area {
    flex: 1;
    padding-right: 25px;
    overflow-y: auto;
}

.popup .popup-content .popup-content-scroll-area::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.popup .popup-content .popup-content-scroll-area::-webkit-scrollbar-track {
    background-color: #efefef;
    border-radius: 5px;
    width: 10px;
    height: 10px;
}

.popup .popup-content .popup-content-scroll-area::-webkit-scrollbar-thumb {
    background-color: #d3d3d3;
    outline: 1px solid slategrey;
    border-radius: 5px;
    width: 10px;
    height: 10px;
}

.close {
    position: absolute;
    top: 25px;
    right: 27px;
    width: 24px;
    height: 24px;
    opacity: 0.3;
    cursor: pointer;
    transition: .3s;
}
.close:hover {
    opacity: 1;
}

.close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 24px;
    width: 2px;
    background-color: #333;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}
.close.white:before,
.close.white:after {
    background-color: #fff !important;
}

.popup .popup-content.full-width {
    width: 100%;
}

.popup .popup-content-header {
    padding-right: 25px;
}

.popup .title {
    font-size: 30px;
    margin: 60px 0 40px;
}

.popup .sub-title {
    font-style: italic;
    margin-top: 20px;
    display: block;
    color: initial;
}

.popup .title .sub-title {
    margin-top: 10px;
    font-size: initial;
    color: #949494;
}

.popup .images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.popup .images img {
    width: 250px;
    border-radius: 6px;
}

.popup .images .img-block {
    width: 240px;
    height: 180px;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0,123,158, 0.4);
        box-shadow: 0 0 0 0 rgba(0,123,158, 0.4);
        background-color: rgba(0,123,158, 0.4);
    }
    90% {
        -moz-box-shadow: 0 0 0 40px rgba(0,123,158, 0);
        box-shadow: 0 0 0 40px rgba(0,123,158, 0);
        background-color: rgba(0,123,158, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0,123,158, 0);
        box-shadow: 0 0 0 0 rgba(0,123,158, 0);
        background-color: rgba(0,123,158, 0);
    }
}

@keyframes read-more {
    0% { margin-left: 10px; }
    100% { margin-left: 20px; }
}

.zapis-popup .popup-content {
    max-width: 900px;
    background: linear-gradient(90deg, #00a0c1 0%, #02c0e0 100%) no-repeat center center;
}

@media (max-width: 1400px) {
    .zapis-popup h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .zapis-popup .form-description-1 {
        margin-top: 0;
    }
}

.zapis-popup .popup-content .bg-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    background-image: url('../img/zapis-popup-bg.png');
    background-repeat: no-repeat;
    background-size: calc(100% - 340px);
    background-position: right center;
    z-index: -1;
}

.zapis-popup .popup-content > * {
    max-width: 390px;
}

.zapis-popup .common-form .form-description-1 {
    margin-bottom: 40px;
}

.zapis-popup .common-form .input-field {
    max-width: none;
}

.zapis-popup .common-form .input-field + .input-field {
    margin-top: 24px;
}

.zapis-popup .common-form button {
    margin-top: 20px;
}

.zapis-popup .close:before,
.zapis-popup .close:after {
    background-color: #fff !important;
}

.contact-us-popup {
    z-index: 1000;
}

.contact-us-popup .form > .input-field {
    max-width: none;
    width: calc(50% - 10px);
}

.contact-us-popup button {
    margin-top: 20px;
}

.otziv-popup h4 {
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.otziv-popup .meta {
    margin-bottom: 30px;
    font-style: italic;
    line-height: 18px;
    font-size: 14px;
}

.otziv-popup p {
    font-size: 16px;
}

.otziv-popup .otziv-video-wrapper {
    max-width: 600px;
    margin: auto;
}

.otziv-popup .otziv-video {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.otziv-popup .otziv-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.raspisanie-popup .popup-content {
    height: 100%;
    width: 100%;
    max-height: none;
    max-width: none;
    border-radius: 0;
}

.raspisanie-popup .popup-content .popup-content-header {
    padding: 0;
}

.raspisanie-popup .filters {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 40px;
    max-width: 800px;
}

.raspisanie-popup .filters .input-field {
    width: calc(50% - 10px);
    max-width: none;
}

.raspisanie-popup .filters .input-field {
    width: calc(50% - 10px);
    max-width: none;
}

.raspisanie-popup table {
    border-collapse: unset;
    width: 100%;
}

.raspisanie-popup table thead th {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    top: 0;
    color: #949494;
    background-color: #eefcff;
    border-bottom: 1px solid #363634;
    text-transform: uppercase;
}

.raspisanie-popup table tbody th {
    position: -webkit-sticky; /* for Safari */
    position: sticky;
    left: 0;
    color: #949494;
    background-color: #eefcff;
    vertical-align: middle;
}

.raspisanie-popup table thead th:first-child {
    left: 0;
    z-index: 1;
}

.raspisanie-popup table td,
.raspisanie-popup table th {
    background-color: #fff;
    padding: 20px;
    /*box-shadow: 0 0 0 1px #363634;*/
    vertical-align: top;
    font-size: 16px;
    font-weight: 300;
    border-left: 1px solid #363634;
    border-top: 1px solid #363634;
}

.raspisanie-popup table td:last-child,
.raspisanie-popup table th:last-child {
    border-right: 1px solid #363634;

}

.raspisanie-popup table tbody tr:first-child > * {
    border-top: none;
}

.raspisanie-popup table tbody tr:last-child > * {
    border-bottom: 1px solid #363634;
}

.raspisanie-popup table td {
    /*min-width: 190px;*/
}

.raspisanie-popup table .flex {

}

.raspisanie-popup .table-description {
    margin-top: 30px;
    font-size: .8rem;
}

.raspisanie-popup .r-item {
    transition: .3s;
    opacity: 1;
}
.raspisanie-popup .r-item.hidden {
    opacity: 0;
}
.raspisanie-popup .r-item + .r-item {
    margin-top: 2rem;
}

.raspisanie-popup .r-item .napravlenie {
    font-weight: bold;
    margin-bottom: 6px;
    white-space: nowrap;
}

.raspisanie-popup .r-item .description {
    font-style: italic;
    color: #949494;
    font-size: 12px;
    margin-bottom: 6px;
}

.raspisanie-popup .r-item .time {
    font-weight: normal;
    margin-bottom: 6px;
}

.raspisanie-popup .r-item .days {
    color: #fff;
    padding: 5px;
    margin-bottom: 20px;
    font-size: 12px;
    display: inline-block;
    border-radius: 6px;
    text-transform: uppercase;
}

.raspisanie-popup .r-item .instructor-desc {
    font-style: italic;
    color: #949494;
    font-size: 12px;
    margin-bottom: 6px;
}

.raspisanie-popup .r-item .instructor-name {
    font-weight: normal;
    margin-bottom: 20px;
    font-size: 14px;
}

.raspisanie-popup .r-item button {
    font-size: 14px;
    padding: 0 10px;
    height: 32px;
}

.raspisanie-popup .r-item .promo {
    color: #ff1364;
    font-style: italic;
    font-size: 12px;
    margin-top: 8px;
}

.video-popup .popup-content {
    width: 90%;
    max-width: 1000px;
    padding: 0;
}

.video-popup .popup-content .popup-content-scroll-area {
    padding: 0;
}

.video-popup .video-wrapper {
    max-width: 1000px;
    margin: auto;
}

.video-popup .video {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.video-popup .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.napravlenie-popup .title {
    margin-top: 0;
}

.form-success-popup .popup-content {
    display: block;
    width: 700px;
    background-image: url("../img/seal.png");
    background-repeat: no-repeat;
    background-position: right 80%;
    background-size: auto 80%;
}
.form-success-popup h2 {
    max-width: 350px;
}
.form-success-popup p {
    max-width: 390px;
    margin-bottom: 0;
}

.napravleniya-popup .popup-content {
    max-width: 900px;
    width: 100%;
}

.mobile-navigation {
    display: none;
}

.raspisanie-popup .mobile-version {
    display: none;
}
.raspisanie-popup .mobile-version .day-selectors {
    border: 1px solid #979797;
    display: inline-flex;
}
.raspisanie-popup .mobile-version .day-selectors > div {
    padding: 17px 15px;
    font-size: 16px;
    line-height: 16px;
    color: #949494;
    background-color: #eefcff;
    cursor: pointer;
    text-transform: uppercase;
}
.raspisanie-popup .mobile-version .day-selectors > div:not(:last-child) {
    border-right: 1px solid #979797;
}
.raspisanie-popup .mobile-version .day-selectors > div.active {
    color: #fff;
    background-color: #009abc;
}
.raspisanie-popup .mobile-version .days .day:not(.active) {
    display: none;
}
.raspisanie-popup .mobile-version .days .day > div {
    padding: 20px 0;
    margin-top: 0 !important;
    border-bottom: 1px solid #979797;
}

.checkbox-wrapper {
	margin: .5rem 0;
	font-size: 14px;
	opacity: .7;
}
.checkbox-wrapper.different-margin {
	margin: 1.5rem 0 0;
}
input[type="checkbox"] {
	width: 0;
	margin: 0;
}
input[type="checkbox"] + label {
	cursor: pointer;
}
input[type="checkbox"] + label:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 2px solid currentColor;
	border-radius: 2px;
	vertical-align: middle;
	margin-right: .5rem;
	font-size: 14px;
	text-align: center;
	position: relative;
	top: -2px;
}
input[type="checkbox"]:checked + label:before {
	content: "✔";
}
.checkbox-wrapper a {
	color: inherit !important;
	text-decoration: underline;
}
.checkbox-wrapper.invalid input[type="checkbox"] + label {
	color: #ff1364;
}
.checkbox-wrapper.invalid input[type="checkbox"] + label:before {
	border-color: #ff1364;
}

@media (max-width: 1344px) {
    .main-menu .menu-items a {
        letter-spacing: 2px;
        font-size: 16px;
        margin-right: 20px;
    }
}


@media (max-width: 1100px) {
    .fixed-header.scrolled .phones > div {
        display: block;
        margin: 0 !important;
    }

    .screen-1 {
        background-image: url("/templates/v-oblakah/img/first-screen-mobile.jpg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .screen-1 .video-dark-mask {
        background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 100%);
        opacity: .5;
    }

    .screen-3,
    .screen-5-7 {
        background: linear-gradient(90deg, #007b9e 0%, #00aed2 100%);
    }

    .not-full {
        float: none !important;
        max-width: none !important;
    }

    .popup:not(.video-popup) .popup-content {
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: unset !important;
        width: 100%;
        height: 100%;
    }

    .main-menu .menu-items a {
        margin-right: 24px;
    }

}

@media (max-width: 990px) {
    .main-menu {
        display: none;
    }
    .main-menu-mobile {
        display: flex;
    }
    .main-menu-mobile .main-logo {
        display: block !important;
    }

    .screen-10 .contacts-and-form{
        display: block;
    }

    .screen-10 .contacts-and-form > div {
        width: 100%;
    }

    .screen-10 .contact-info .icons {
        margin-bottom: 40px;
    }
}

@media (max-width: 990px) {
    footer .container,
    footer .container div {
        display: block !important;
        margin-right: 0 !important;
        text-align: center;
    }

    footer button {
        margin-right: 0 !important;
    }

    footer .container div.social {
        display: flex !important;
        justify-content: center;
    }

    footer .container > * > * {
        margin-bottom: 30px;
    }
}

@media (max-width: 841px) {
    .popup .images {
        justify-content: center;
    }

    .popup .images .img-block {
        margin: 10px;
    }

    .raspisanie-popup .filters {
        display: none;
    }
    .raspisanie-popup .table-wrapper {
        display: none;
    }

    .call {
        display: none;
    }

    .screen-4 .carousel-prices .item .item-title {
        min-height: unset;
    }
    .screen-4 .carousel-prices .item .item-info .item-prices > div {
        height: 40px;
    }

    .otziv-popup h4 {
        font-size: 20px;
    }
}

@media (max-width: 641px) {
    body {
        text-align: center;
        font-size: 14px;
    }

    .menu-toggle {
        width: 20px;
        border-top: 3px solid;
        border-bottom: 3px solid;
        height: 20px;
    }
    .menu-toggle:before,
    .menu-toggle:after {
        height: 3px;
    }

    .main-menu-mobile .phone-icon img {
        width: 20px;
    }

    .screen-1 .content {
        right: 15px;
        left: 15px;
    }
    .screen-1 .content .text-1 {
        font-size: 20px;
        line-height: 25px;
    }
    .screen-1 .content .text-2 {
        font-size: 30px;
    }

    .form-description-1 {
        margin-bottom: 0;
        margin-top: 40px;
    }
    .form-description-2 {
        font-size: 18px;
    }

    .form {
        flex-direction: column;
    }
    .form > * {
        margin-right: auto !important;
        margin-top: 20px;
    }
    .form > *:first-child {
        margin-top: 0;
    }

    .input-field {
        max-width: 290px;
        margin-left: auto;
        margin-right: auto;
    }

    h2 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        line-height: 18px;
        margin-bottom: 24px;
    }

    .white-screen {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .screen-2 .buttons {
        margin-top: 30px;
        margin-bottom: 36px;
    }

    .common-button {
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .common-button + .common-button {
        margin-top: 20px;
    }

    .screen-2 .carousel-advantages .advantage-title {
        font-size: 18px;
    }
    .screen-2 .carousel-advantages .grey-text {
        font-size: 12px;
    }

    .blue-screen {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .screen-4 .carousel-prices .item .item-title {
        font-size: 18px;
    }

    .screen-5-7 .text-1 {
        font-size: 30px;
        line-height: 36px;
    }
    .screen-5-7 .text-2 {
        font-size: 50px;
    }

    .carousel-wrapper .navigation {
        padding: 0 !important;
    }
    .carousel-wrapper .navigation img {
        margin: auto;
    }

    .screen-8 .carousel-reviews li {
        padding: 15px;
        text-align: center;
        width: 505px;
    }
    .screen-8 .carousel-reviews li .play-review-video {
        margin-bottom: 18px;
    }
    .screen-8 .carousel-reviews li .play-review-video,
    .screen-8 .carousel-reviews li .read-more {
        display: inline-flex;
        align-items: center;
    }
    .screen-8 .carousel-reviews li p {
        min-height: 0;
        font-size: 12px;
        line-height: 16px;
    }
    .screen-8 .carousel-reviews li .review-info {
        font-size: 12px;
    }
    .screen-8 .carousel-reviews li .review-title {
        margin-bottom: 18px;
    }

    .screen-10 {
        padding-bottom: 40px !important;
    }
    .screen-10 .contact-info .img-wrapper {
        display: block;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 14px;
    }
    .screen-10 .contacts-and-form > div {
        text-align: center;
    }
    .screen-10 .contact-info button {
        margin-top: 0;
    }
    .screen-10 .contact-info .icons {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    .screen-10 .contact-form .screen-10-form > div:first-child {
        display: block;
    }
    .screen-10 .contact-form .screen-10-form .input-field {
        width: 100% !important;
    }
    .screen-10 .search-us {
        display: block;
    }
    .screen-10 .search-us .title {
        margin-bottom: 18px;
        font-size: 18px;
    }
    .screen-10 .search-us .links {
        display: block;
    }
    .screen-10 .search-us .links > span {
        display: block;
        margin-right: 0;
        margin-bottom: 14px;
    }
    .screen-10 .search-us .links > a {
        margin: 0 !important;
        display: inline-block;
        padding: 0 14px;
    }
    .screen-10 .search-us .links > a + a {
        margin-top: 10px !important;
    }

    footer {
        padding-top: 40px;
        font-size: 12px;
        line-height: 16px;
    }
    footer .container div.social {
        margin-bottom: 0;
    }

    .screen-4 .carousel-prices .item {
        height: auto;
    }

    .screen-6 .carousel-instructors .card-front .item-info .item-description {
        display: none;
    }

    .carousel-wrapper {
        display: block;
    }
    .mobile-navigation {
        display: flex;
        justify-content: center;
    }
    .screen-2 .mobile-navigation {
        margin-top: 20px;
    }
    .carousel-wrapper > .navigation {
        display: none;
    }
    .screen-4 .carousel-prices .item {
        margin: 30px 10px !important;
        box-shadow: 0 0 8px rgba(22, 20, 20, .1);
    }
    .screen-4 .carousel-prices .item > div > div {
        box-shadow: 0 0 8px rgba(22, 20, 20, .1);
    }
    .screen-6 .carousel-instructors li {
        margin: 30px 10px !important;
        box-shadow: 0 0 8px rgba(22, 20, 20, .1);
    }
    .screen-8 .carousel-reviews li {
        margin: 30px 10px !important;
        box-shadow: 0 0 8px rgba(22, 20, 20, .1);
    }
    .screen-6 .carousel-instructors .card-front {
        box-shadow: 0 0 8px rgba(22, 20, 20, .1);
    }

    .popup .popup-content {
        padding: 20px 10px 20px 20px;
    }
    .popup .popup-content .popup-content-scroll-area {
        padding-right: 5px;
    }

    .fixed-header {
        padding: 10px 0;
    }

    .zapis-popup .popup-content .bg-image {
        display: none;
    }

    .contact-us-popup .form > .input-field {
        width: 100%;
    }

    .popup .popup-content .popup-content-scroll-area::-webkit-scrollbar {
        display: none;
    }

    .popup.raspisanie-popup .popup-content {
        padding: 20px 0 20px 0;
    }
    .popup.raspisanie-popup .popup-content .popup-content-scroll-area {
        padding: 0;
    }
    .raspisanie-popup .mobile-version {
        display: block;
    }
    .raspisanie-popup .table-description {
        padding: 0 15px;
    }

    .form-success-popup .popup-content {
        background-size: auto 40%;
    }

    .close {
        right: 13px;
    }
}

@media (max-width: 481px) {
    .screen-6 .carousel-instructors li {
        height: 200px;
    }
    .screen-6 .carousel-instructors .card-front .item-info .item-sub-title {
        border-top: none;
        border-bottom: none;
        margin-bottom: 0;
    }
    .screen-6 .carousel-instructors .card-front .video-wrapper video {
        width: 100%;
        height: auto;
    }
    .screen-6 .carousel-instructors .card-front .item-info .item-title {
        margin-bottom: 0;
        min-height: 0;
    }
}

@media (max-width: 460px) {
    .screen-6 .carousel-instructors .card-front .item-info {
        padding: 10px;
    }
    .screen-6 .carousel-instructors li {
        height: 160px;
    }
    .screen-6 .carousel-instructors .card-front .item-info .item-sub-title {
        font-size: 12px;
        padding: 8px;
    }
}

@media (max-width: 360px) {
    .raspisanie-popup .mobile-version .day-selectors > div {
        padding: 13px 10px;
    }
}

@media (max-width: 360px) {
    .screen-1 .content .text-1 {
        font-size: 16px;
        line-height: 20px;
    }
    .screen-1 .content .text-2 {
        font-size: 24px;
    }

    .screen-5-7 .text-2 {
        font-size: 40px;
    }

    .screen-6 .carousel-instructors li {
        height: 140px;
    }

    .form-description-1 {
        margin-top: 20px;
    }
}

#jvlabelWrap {
    bottom: -40px !important;
}
