/* primary vars */
/* common */
/* mixins */
*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body,
html {
    height: 100%;
    width: 100%;
}

body {
    line-height: 1.2;
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    background: #fff;
    font-size: 18px;
    margin: 0;
    color: #333;
    font-weight: 400;
}

button,
input,
select,
textarea {
    outline: none;
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 18px;
    color: #000;
}

input,
select,
textarea {
    font-weight: 300;
}

select:-moz-focusring {
    text-shadow: 0 0 0 #000;
    color: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

.container {
    max-width: 1230px;
}

.img-fluid {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #102E52;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
}

.clearfix::after {
    content: " ";
    display: table;
    clear: both;
}

dl,
ol,
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ol {
    margin: 0 0 20px 25px;
    list-style-type: decimal;
    list-style-position: outside;
}

img {
    border: none;
    vertical-align: top;
}

table {
    border-collapse: collapse;
}

td,
th {
    padding: 10px 20px;
    border: 1px solid #000;
}

hr {
    height: 0;
    border: none;
    margin: 0 0 40px;
    background: #e6e6df;
    height: 1px;
}

p {
    margin: 0;
}

.hidden {
    overflow: hidden;
}

.row {
    margin: 0 -8px;
}
.row [class^='col-'] {
    padding-left: 8px;
    padding-right: 8px;
}

.btn-primary {
    text-decoration: none;
    background: #36B5CD;
    border: none;
    font-size: 16px;
    line-height: 1.12;
    font-weight: bold;
    border-radius: 60px;
    text-align: center;
    color: #fff;
    padding: 12px 20px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.btn-primary:hover {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
}
.btn-primary.c-purple {
    background: #612776;
}
.btn-primary.c-blue {
    background: #A5BFDE;
    color: #102E52;
}

.main {
    width: 100%;
    margin: 0 auto;
}

.fl-right {
    float: right;
    margin: 0 0 15px 15px;
}

.fl-left {
    float: left;
    margin: 0 15px 15px 0;
}

/* header */
.header {
    position: relative;
}
.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 28px 0 30px;
    position: relative;
}

.logo {
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.slogan {
    line-height: 1.38;
    font-size: 29px;
    font-weight: bold;
    color: #143B49;
    font-style: italic;
    margin-right: auto;
}
.slogan p {
    margin: 0;
}
.slogan span {
    text-transform: uppercase;
}

.social-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
}
.header-top .social-buttons {
    margin-left: auto;
}
.social-buttons-item {
    margin-right: 8px;
    padding: 0 !important;
}
.social-buttons-item::before {
    display: none;
}
.social-buttons-item:last-child {
    margin-right: 0;
}
.social-buttons-link {
    display: block;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    border: 1px solid #102E52;
}
.social-buttons-link:hover {
    opacity: 0.5;
}
.social-buttons-link.fb {
    background: url("../storage/img/i/icon-fb.svg") center no-repeat;
}
.social-buttons-link.yt {
    background: url("../storage/img/i/icon-yt.svg") center no-repeat;
}
.social-buttons-link.in {
    background: url("../storage/img/i/icon-in.svg") center no-repeat;
}

.h-phones {
    position: absolute;
    right: 0;
    top: 31px;
}
.h-phones_link {
    font-size: 20px;
    color: #1A1C21;
    position: relative;
    padding-left: 20px;
    margin: 0 6px;
    white-space: nowrap;
}
.h-phones_link:hover {
    text-decoration: none;
    opacity: 0.7;
}
.h-phones_link:first-child {
    margin-left: 0;
}
.h-phones_link::before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
    background: url("../storage/img/i/icon-phone.svg") no-repeat;
}

.navi {
    border-top: 1px solid rgba(154, 157, 172, 0.28);
    border-bottom: 1px solid rgba(154, 157, 172, 0.28);
}

.c-navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.c-navi-item {
    margin: 0 3px;
    position: relative;
}
.c-navi-link {
    font-size: 24px;
    line-height: 1.16;
    padding: 21px 0 22px;
    display: block;
}
.c-navi-link:hover {
    text-decoration: underline;
}
.active .c-navi-link {
    font-weight: bold;
}
.active .c-navi-link:hover {
    text-decoration: none;
}

/* mob navi */
.mobile-button {
    display: inline-block;
    vertical-align: middle;
    display: none;
    padding: 5px;
}
.mobile-button .inset {
    width: 40px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}
.mobile-button .inset svg {
    width: 40px;
    height: 40px;
}

.burger {
    width: 36px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.burger span {
    display: block;
}
.burger .line {
    width: 100%;
    height: 5px;
    background-color: #000;
}
.mobile-menu-header .burger .line {
    background: #fff;
}
.burger .line + .line {
    margin-top: 4px;
}

.w-mobile-buttons {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -20px;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 25px;
    height: 25px;
    content: "";
    cursor: pointer;
    float: right;
    margin: 0;
}
.close:after, .close:before {
    display: block;
    width: 25px;
    height: 1px;
    background-color: #fff;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 0;
}
.close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.close:hover:after, .close:hover:before {
    background-color: #000;
}

body._blocked {
    overflow: hidden;
}

.s-mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    width: 100vw;
    height: 100vh;
    z-index: 60;
    pointer-events: none;
    transition: ALL 0.2s ease;
    -webkit-transition: ALL 0.2s ease;
    -moz-transition: ALL 0.2s ease;
    -o-transition: ALL 0.2s ease;
}
.s-mobile-menu .burger {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 3px 5px;
}
.s-mobile-menu hr {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 1px;
    background-color: #0a0c0b;
}

.w-mobile-menu {
    position: fixed;
    top: 0;
    right: -330px;
    width: 320px;
    pointer-events: all;
    transition: ALL 0.2s ease;
    -webkit-transition: ALL 0.2s ease;
    -moz-transition: ALL 0.2s ease;
    -o-transition: ALL 0.2s ease;
    z-index: 20;
}

.s-mobile-menu._toggled .w-mobile-menu {
    right: 0;
}

.mobile-menu-background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    background-color: rgba(0, 0, 0, 0);
    z-index: 19;
}

.s-mobile-menu._toggled .mobile-menu-background {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: all;
}

.mobile-menu-header {
    background-color: #102E52;
    color: #fff;
    padding-top: 4px;
    border-bottom: 4px solid #fff;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    line-height: 24px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 56px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.w-mobile-menu .mobile-menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-menu-header .close {
    top: calc(50% - 12px);
    right: 4px;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.mobile-menu-header .close:after,
.mobile-menu-header .close:before {
    right: 7px;
}

.mobile-menu-body {
    padding-bottom: 20px;
    padding-top: 20px;
    height: calc(100vh - 56px);
    background-color: #102E52;
    overflow: auto;
}
.mobile-menu-body .c-navi {
    display: block;
    margin-bottom: 20px;
    margin-left: 0;
}
.mobile-menu-body .c-navi-item {
    margin: 0;
    padding: 0;
}
.mobile-menu-body .c-navi-link {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    border-radius: 0;
}
.mobile-menu-body .c-navi-link:hover {
    color: #fff;
}

/* content */
.content {
    position: relative;
}

/* H-titles */
h1 {
    font-size: 55px;
    color: #102E52;
    font-weight: bold;
}

h2 {
    font-size: 44px;
    font-weight: bold;
    color: #102E52;
    margin: 0;
    text-align: center;
}

h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.17;
    color: #102E52;
    margin: 0;
}

h4 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.17;
    color: #102E52;
    margin: 0;
}

.main-carousel {
    position: relative;
}

.m-carousel {
    position: relative;
}
.m-carousel-item {
    display: none;
}
.m-carousel-item:first-child {
    display: block;
}

.m-slide {
    background: #000;
    height: 470px;
}
.m-slide-item {
    position: relative;
}
.m-slide-item--text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.m-slide-item--ins {
    padding: 75px 0 0 390px;
}
.m-slide h1 {
    font-size: 55px;
    font-weight: bold;
    color: #102E52;
    line-height: 1.15;
    text-shadow: 0 0 3px rgba(16, 46, 82, 0.58);
}
.m-slide img {
    margin: 0 auto;
}

.events {
    padding: 78px 0 100px;
}
.events h2 {
    margin-bottom: 34px;
}
.events-carousel {
    margin-bottom: 38px;
}
.events-item {
    text-align: center;
}
.events-item__photo {
    height: 204px;
    border-radius: 10px 10px 0 0;
    display: block;
}
.events-item__wrap {
    border: 1px solid #C8CFD7;
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: #fff;
    padding: 17px 20px 32px;
}
.events-item__title {
    font-size: 20px;
    line-height: 1.15;
    font-weight: bold;
    text-align: center;
    height: 92px;
    overflow: hidden;
    margin-bottom: 14px;
}
.events-item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #36B5CD;
    font-size: 18px;
    line-height: 1.17;
    font-weight: bold;
    margin-bottom: 17px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.events-item__info span {
    display: block;
    margin: 0 10px;
}
.events-item__payment {
    color: #9A0900;
    font-weight: 700;
    margin-bottom: 5px;
}
.events-item__descr {
    color: #102E52;
    line-height: 1.15;
    margin-bottom: 27px;
}
.events-item__btns {
    margin-bottom: 13px;
}
.events-item__btns .btn-primary {
    padding-left: 35px;
    padding-right: 35px;
}
.events-item__more a {
    font-size: 16px;
    text-decoration: underline;
}
.events-item__more a:hover {
    text-decoration: none;
}

.online-courses {
    padding: 80px 0;
    background: #612776;
}
.online-courses h2 {
    color: #fff;
    margin-bottom: 35px;
}
.online-courses__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-radius: 10px;
    height: 574px;
    margin-bottom: 20px;
}
.online-courses__item-box {
    text-align: center;
    width: 100%;
    padding: 17px 20px 18px;
    background: #BD7381;
    border-radius: 0 0 10px 10px;
    line-height: 1.17;
}
.online-courses__item-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 14px;
}
.online-courses__item-more {
    display: block;
    color: #fff;
    text-decoration: underline;
}
.online-courses__item-more:hover {
    text-decoration: none;
}

.school {
    padding: 100px 0;
}
.school-carousel {
    margin-bottom: 44px;
}
.school-item {
    display: block;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
}
.school-item img {
    border-radius: 10px;
    width: 100% !important;
}
.school-item__box {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 17px;
    bottom: 17px;
    padding: 10px 10px 23px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.edication {
    padding: 100px 0;
    background: #29496F;
}
.edication .text-block {
    margin-bottom: 0;
}

.text-block {
    border-radius: 10px;
    background: #fff;
    padding: 60px 42px 45px 53px;
    line-height: 1.17;
    color: #102E52;
    margin-bottom: 63px;
    font-size: 24px;
}
.m-text .text-block {
    font-size: 18px;
    line-height: 1.15;
}
.text-block img {
    border-radius: 6px;
}
.text-block p {
    margin: 0 0 21px;
}
.text-block a {
    text-decoration: underline;
}
.text-block a:hover {
    text-decoration: none;
}
.text-block h2 {
    margin-bottom: 33px;
}
.text-block h3 {
    margin: 0 0 15px;
    font-size: 36px;
}
.course .text-block h3 {
    font-size: 36px;
}
.text-block h4 {
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 18px;
}
.text-block p + h3 {
    margin-top: 44px;
}
.m-text .text-block p + h3 {
    margin-top: 38px;
}
.text-block ul {
    line-height: 1.15;
    margin-bottom: 37px;
}
.m-text .text-block ul {
    margin: 0 0 20px;
    line-height: 1.4;
}
.text-block ul li {
    position: relative;
    padding-left: 22px;
}
.text-block ul li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #102E52;
    border-radius: 50%;
}
.m-text .text-block ul li::before {
    background: #9A0900;
    top: 8px;
}
.text-block ol {
    margin: 0 0 20px;
    list-style-type: none;
    counter-reset: list-number;
}
.text-block ol li {
    margin-bottom: 3px;
}
.text-block ol li:before {
    counter-increment: list-number;
    content: counter(list-number);
    font-size: 18px;
    font-weight: 700;
    margin-right: 18px;
    padding-top: 1px;
}
.text-block__table-wrap {
    margin-top: 46px;
    margin-bottom: 37px;
}
.text-block__table-wrap:first-child {
    margin-top: 0;
}
.text-block table {
    width: 100%;
    border-radius: 5px;
    border-style: hidden;
    -webkit-box-shadow: 0 0 0 1px #C9CFDD;
    box-shadow: 0 0 0 1px #C9CFDD;
}
.text-block table th {
    padding: 23px 10px 23px 30px;
    font-weight: 700;
    line-height: 2.5;
    background: #C2D3E9;
    border-color: #C2D3E9;
    border-top: none;
}
.text-block table th:first-child {
    border-radius: 5px 0 0 0;
}
.text-block table th:last-child {
    border-radius: 0 5px 0 0;
}
.text-block table td {
    padding: 14px 10px 14px 30px;
    border: none;
    border-left: 1px solid #C9CFDD;
    border-right: 1px solid #C9CFDD;
    vertical-align: top;
}
.text-block table tbody tr:nth-child(even) td {
    background: #F3F7FA;
}
.text-block table tr:last-child td {
    border-bottom: 1px solid #C9CFDD;
}
.text-block table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}
.text-block table tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

.advice {
    padding: 20px 0;
}
.advice__box {
    font-size: 44px;
    color: #102E52;
    line-height: 1.16;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    font-style: italic;
}

.feedback {
    padding: 80px 0 88px;
    background: #fff;
}
.feedback.purple {
    background: #612776;
}
.feedback.purple h2 {
    color: #fff;
}
.feedback h2 {
    margin-bottom: 28px;
}

.title-page {
    margin-bottom: 22px;
}
.title-page h1 {
    text-align: center;
    line-height: 1.14;
    font-size: 28px;
    color: #102E52;
    margin: 0;
}

.breadcrumbs {
    font-size: 16px;
    padding-top: 20px;
    margin-bottom: 17px;
    line-height: 1.125;
}
.breadcrumbs-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.breadcrumbs-item::after {
    content: "/";
    margin-right: 16px;
    margin-left: 12px;
    color: #102E52;
    position: relative;
}
.breadcrumbs-item:last-child::after {
    display: none;
}
.breadcrumbs-link {
    color: #102E52;
}
.breadcrumbs-page {
    color: #102E52;
}

.team {
    /*background: url("../storage/img/i/bg-team.jpg") center no-repeat;*/
    background: #29496F;
    background-size: cover;
    padding: 92px 0 50px;
}
.team .online-courses__item-box {
    background: #fff;
}
.team .online-courses__item-title, .team .online-courses__item-more {
    color: #102E52;
}
.team .row {
    margin-bottom: 100px;
}

.persons__item {
    border-radius: 20px;
    background: #fff;
    margin-bottom: 30px;
    padding: 20px;
}
.persons__item_one {
    padding: 30px;
}
.persons__img {
    display: block;
}
.persons__img img {
    border-radius: 20px;
}
.persons__column {
    line-height: 1.16;
    padding-left: 30px;
}
.persons__item_one .persons__column {
    padding-top: 20px;
}
.persons__name {
    color: #9A0900;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.14;
    margin-bottom: 33px;
}
.persons__name a {
    color: #9A0900;
}
.persons__title {
    font-weight: bold;
    font-size: 24px;
    color: #102E52;
    margin-bottom: 33px;
}
.persons__item_one .persons__title {
    font-size: 28px;
    margin-bottom: 26px;
}
.persons__descr {
    line-height: 1.17;
    font-size: 24px;
    color: #102E52;
}
.persons__descr p {
    margin: 0 0 28px;
}

.wrap-section {
    padding: 100px 0;
    background: #29496F;
}

.philosophy {
    position: relative;
    padding: 116px 0 50px;
}
.philosophy__content {
    position: relative;
    z-index: 1;
}
.philosophy__photos {
    margin-bottom: 76px;
}
.philosophy__photos img {
    border-radius: 10px;
}
.philosophy .text-block {
    padding: 0;
    color: #fff;
    background: none;
}
.philosophy .text-block h1,
.philosophy .text-block h2,
.philosophy .text-block h3,
.philosophy .text-block h4,
.philosophy .text-block a {
    color: #fff;
}
.philosophy .text-block ul li::before {
    background: #fff;
}
.philosophy__video {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}
.philosophy__video video {
    position: absolute;
    right: 0;
    top: 0;
    left: 50%;
    margin-left: -1250px;
    bottom: 0;
    height: 100%;
}

.trainings .row {
    margin-bottom: 70px;
}
.trainings .online-courses__item-box {
    background: #A5BFDE;
}
.trainings .online-courses__item-title, .trainings .online-courses__item-more {
    color: #102E52;
}

.not-found {
    text-align: center;
    padding: 21px 0;
    font-size: 24px;
    color: #102E52;
}
.not-found__text {
    font-size: 24px;
    line-height: 1.17;
    margin-bottom: 15px;
}
.not-found__num {
    font-size: 144px;
    line-height: 1;
    font-weight: 700;
}
.not-found__type {
    font-size: 48px;
    line-height: 1;
}

.payment-form {
    padding: 63px 0 35px;
    background: #29496F;
}
.payment-form h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 28px;
}
.payment-form__price {
    text-align: center;
    font-size: 24px;
    line-height: 1.17;
    margin: 0 0 20px;
    color: #36B5CD;
    font-weight: bold;
}
.payment-form .form-block-buttons {
    margin: 0;
}
.payment-form .form-block-buttons .btn-primary {
    color: #fff;
    top: 0;
}

.reviews {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    margin: 0 0 64px;
}

.course__wrap {
    margin-bottom: 20px;
}
.course__box {
    padding: 33px 20px 36px;
    border-radius: 10px;
    background: #fff;
    margin: 0 0 20px;
    text-align: center;
    color: #102E52;
}
.course__title {
    line-height: 1.15;
    font-weight: bold;
    margin-bottom: 17px;
}
.course__descr {
    margin-bottom: 26px;
}
.course__payment {
    color: #9A0900;
    font-weight: bold;
    margin-bottom: 15px;
}
.course__hint {
    font-size: 16px;
    margin-bottom: 35px;
}

.collapse-block {
    padding: 28px 0;
}
.collapse-block__item {
    background: #C2D3E9;
    padding: 10px 35px 10px 52px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.collapse-block__title {
    line-height: 1.14;
    font-size: 36px;
    font-weight: bold;
    position: relative;
    padding: 25px 60px 25px 0;
    cursor: pointer;
}
.collapse-block__content {
    display: none;
    font-size: 24px;
    line-height: 1.17;
    padding-bottom: 30px;
}
.collapse-block__content p {
    margin-bottom: 14px;
}
.collapse-block__item_opened .collapse-block__content {
    display: block;
}
.collapse-block__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -28px;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background: #39659F url(../storage/img/i/arrow-down.svg) center no-repeat;
}

.form-block {
    border-radius: 20px;
    background: #29496F;
    padding: 16px 15px 54px;
}
.purple .form-block {
    background: #BD7381;
}
.form-block--ins {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 20px;
    padding: 34px 34px 1px;
    display: block;
}
.form-block-row {
    margin-bottom: 34px;
    position: relative;
}
.form-block-inp {
    border: none;
    width: 100%;
    color: #000;
    border: 1px solid #fff;
    font-size: 16px;
    padding: 8px 10px 8px 28px;
    height: 50px;
    background: #fff;
    border-radius: 3px;
}
.form-block-inp:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.error .form-block-inp {
    border-color: #da7a7a;
    background: #fff4f4;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-block-tarea {
    border: none;
    width: 100%;
    color: #000;
    font-size: 16px;
    padding: 15px 10px 15px 28px;
    height: 160px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #fff;
    resize: none;
}
.error .form-block-tarea {
    border-color: #da7a7a;
    background: #fff4f4;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-block ::-webkit-input-placeholder {
    color: #999DAB;
    opacity: 1;
}
.form-block ::-moz-placeholder {
    color: #999DAB;
    opacity: 1;
}
.form-block :-ms-input-placeholder {
    color: #999DAB;
    opacity: 1;
}
.form-block :-moz-placeholder {
    color: #999DAB;
    opacity: 1;
}
.form-block-buttons {
    text-align: center;
    margin-top: -32px;
}
.form-block .btn-primary {
    padding-left: 45px;
    padding-right: 45px;
    font-size: 18px;
    position: relative;
    top: 22px;
}
.purple .form-block .btn-primary {
    background: #612776;
    color: #fff;
}

.m-carousel .carousel-buttons {
    position: absolute;
    z-index: 59;
    bottom: 54px;
    width: 100%;
    left: 0;
    right: 0;
}
.carousel-buttons--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.carousel-buttons--dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 58px;
}

.owl-dot {
    width: 11px;
    height: 11px;
    background: #E5ECF0;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    margin: 0 12px;
}
.owl-dot:hover, .owl-dot.active {
    background: #36B5CD;
}
.owl-next, .owl-prev {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    z-index: 100;
    border: none;
    cursor: pointer;
    display: block;
    border: 1px solid #36B5CD;
    background: #fff;
}
.owl-next:hover, .owl-prev:hover {
    opacity: 0.7;
}
.owl-next span, .owl-prev span {
    display: none;
}
.m-carousel .owl-next, .m-carousel .owl-prev {
    background: rgba(255, 255, 255, 0.7);
    border: none;
}
.owl-next::before, .owl-prev::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.owl-prev::before {
    background: url("../storage/img/i/arrow-prev.svg") center no-repeat;
}
.owl-next::before {
    background: url("../storage/img/i/arrow-next.svg") center no-repeat;
}

.owl-carousel .owl-item img {
    width: auto;
}

/* footer */
.footer {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-top: 26px;
}
.footer-bottom {
    background: #29496F;
    position: relative;
    padding: 15px 0;
}

.copyright {
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
}

.payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 3px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.developer {
    text-decoration: none;
    font-size: 14px;
    position: relative;
    color: #fff;
}
.developer a {
    color: #fff;
    text-decoration: underline;
}
.developer a:hover {
    text-decoration: none;
}
.developer span {
    position: relative;
    padding-left: 20px;
    display: inline-block;
    vertical-align: middle;
}
.developer span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background: url("../storage/img/i/studio.svg") no-repeat;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: All 0.6s ease;
    -webkit-transition: All 0.6s ease;
    -moz-transition: All 0.6s ease;
    -o-transition: All 0.6s ease;
    -webkit-backface-visibility: hidden;
}
.developer:hover span::after {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* media */
@media (max-width: 1100px) {
    /* header */
    /* content */
    /* footer */
}
@media (max-width: 992px) {
    /* header */
    .header-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .header .c-navi {
        display: none;
    }

    .slogan {
        font-size: 20px;
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .h-phones {
        position: relative;
        top: 0;
        right: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .mobile-button {
        display: block;
    }

    /* content */
    .m-slide {
        height: 350px;
    }
    .m-slide-item--text .container {
        height: 100%;
    }
    .m-slide-item--ins {
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 100%;
    }
    .m-slide-item--ins h1 {
        font-size: 30px;
    }

    /* footer */
    /*.footer .navi {*/
    /*  display: none;*/
    /*}*/

    .copyright {
        margin-bottom: 20px;
        text-align: center;
    }

    .payment {
        margin-bottom: 15px;
    }

    .developer {
        text-align: center;
    }
}
@media (max-width: 991px) {
    /* header */
    /* content */
    /* footer */
}
@media (max-width: 767px) {
    /* header */
    .header-wrap {
        padding: 10px 0;
    }

    .logo {
        margin: 0 auto 15px;
    }

    .slogan {
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .social-buttons {
        margin-right: auto;
    }

    /* content */
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    .m-slide {
        height: 250px;
    }

    .m-carousel .carousel-buttons {
        display: none;
    }

    .carousel-buttons--dots {
        padding: 0;
    }

    .events {
        padding: 50px 0;
    }

    .online-courses {
        padding: 50px 0;
    }

    .edication {
        padding: 50px 0;
    }

    .text-block {
        padding: 20px 10px;
        font-size: 18px;
    }
    .text-block .fl-right,
    .text-block .fl-left {
        float: none;
        margin: 0 auto 15px;
    }
    .text-block h3 {
        font-size: 22px;
    }
    .text-block__table-wrap {
        overflow: auto;
    }
    .text-block table th {
        line-height: 1.2;
        padding: 10px;
    }
    .text-block table td {
        padding: 10px;
    }
    .text-block img {
        width: 100%;
    }

    .school {
        padding: 50px 0;
    }

    .feedback {
        padding: 50px 0;
    }

    .form-block--ins {
        padding: 15px 15px 54px;
    }

    .wrap-section {
        padding: 50px 0;
    }

    .philosophy__video video {
        /*width: 3500px;*/
        margin-right: -1750px;
    }

    .collapse-block__item {
        padding: 0 15px;
    }
    .collapse-block__title {
        font-size: 26px;
        padding-right: 35px;
    }
    .collapse-block__arrow {
        width: 32px;
        height: 32px;
        margin-top: -14px;
    }

    .philosophy {
        padding: 20px 0;
    }
    .philosophy__photos {
        margin-bottom: 30px;
    }

    .persons__img {
        margin: 0 0 20px;
    }
    .persons__img img {
        margin: 0 auto;
    }
    .persons__column {
        padding-left: 0;
        padding-bottom: 20px;
    }
    .persons__name {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .persons__title {
        font-size: 22px;
    }
    .persons__item_one .persons__column {
        padding-top: 0;
    }
    .persons__descr {
        font-size: 18px;
    }

    /* footer */
}


/*LUTO 2021-09-02*/

.m-slide {
    background-position: left center !important;
}
.feedback.purple,
.online-courses {
    background: #29496F;
}
.online-courses__item-box {
    background: #ffffff;
}
.purple .form-block {
    background: #ffffff;
}
.form-block--ins {
    border-color: #ececec;
    border-color: #29496f;
}
.form-block--ins .form-block-tarea,
.form-block--ins .form-block-inp {
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    background: #ebeff4;
}
.form-block--ins .form-block-tarea:focus,
.form-block--ins .form-block-inp:focus {
    background: #fff;
}
.purple .form-block .btn-primary {
    background: #29496f;
}
.purple .form-block .btn-primary:hover {
    background: #4973a3;
}
.online-courses__item-title {
    color: #102E52;
}
.online-courses__item-more {
    color: #29496f;
}
@media (max-width: 1300px) {
    .m-slide .container {
        position: relative;
        height: 100%;
    }
    .m-slide-item--ins {
        padding: 80px 15px 125px 15px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .m-slide-item--ins h1 {
        background-color: rgba(255,255,255,0.7);
        padding: 10px;
    }
}
@media (max-width: 767px) {
    .m-slide-item--ins {
        height: auto;
        background: rgb(219 248 255 / 40%);
        padding: 15px 15px;
    }
    .m-slide-item--ins h1 {
        background-color: transparent;
        padding: 0;
    }
}
