@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i');

.up {
    text-transform: uppercase;
}

.none {
    text-decoration: none;
}

.un {
    text-decoration: underline;
}

.in {
    display: inline-block;
}

.vam {
    vertical-align: middle;
}

.rel {
    position: relative;
}

.bl {
    display: block;
}

.abs {
    position: absolute;
}

.tr {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.try {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.trx {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.l {
    font-weight: 300;
}

.reg {
    font-weight: 400;
}

.med {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

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

body {
    background: #fff;
    overflow-x: hidden;
}

body,
th,
td {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #333333;
}

body,
form,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

img,
table {
    border: none;
}

table {
    border-collapse: collapse;
}

table td {
    padding: 0;
}

a {
    color: #333333;
    cursor: pointer;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
}

a:hover {
    color: #A439D0;
}

a:hover {
    text-decoration: none;
}

a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

input,
textarea,
button,
select {
    margin: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

textarea {
    resize: vertical;
}

button,
input[type='submit'] {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: pointer;
    border: 0;
}

.an {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

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

section,
header,
footer,
nav,
main {
    display: block;
}

iframe {
    border: none;
}

.clear {
    clear: both;
}

.wrap {
    margin: 0 auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex.center {
    justify-content: center;
}

.ajax_loading {
    height: 60px;
    background: url('../img/loading.svg') no-repeat center center;
    background-size: contain;
    margin: 10px 0;
}

.button-default {
    display: inline-block;
    font-weight: 500;
    line-height: 25px;
    font-size: 18px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    max-width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
}

.button-default:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
    color: #000;
}

.header {
    padding: 20px 0;
    position: relative;
}

.header.inner {
    border-bottom: 1px solid #DDDDDD;
}

.header#menu {
    background: #fff;
    z-index: 8 !important;
}

.header .container {
    position: relative;
}

.header .menu-button {
    position: absolute;
    width: 30px;
    height: 100%;
    left: 15px;
    top: 0;
    background: #ffffff url('../img/menu-button.png') no-repeat center;
    display: none;
    cursor: pointer;
}

.header .menu-button.active {
    background: #ffffff url('../img/menu-button2.png') no-repeat center;
}

.header ul {
    padding: 8px 0 0 0;
    margin: 0;
    list-style: none;
}


.header ul li {
    display: inline-block;
    margin-right: 70px;
    position: relative;
}

.header ul li:last-child {
    margin-right: 0;
}

.header ul li:hover a,
.header ul li a.active,
.header ul li.active a {
    color: #A439D0;
    position: relative;
    text-decoration: none;
}

.header ul li:hover a:after {
    /*
    content: "";
    position: absolute;
    width: 64px;
    height: 4px;
    background: #9B51E0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -34px;
    z-index: 3;*/
}

.header ul li:hover ul li a {
    color: #333;
}

.header ul li:hover .sub {
    display: block;
    text-align: left;
}

.header ul li a {
    font-size: 15px;
}

.header ul.course-page-menu li {
    margin: -16px 0;
}

.header ul.course-page-menu li a {
    padding: 16px 25px;
}

.header.fixed-course-menu {
    padding: 0;
    border-width: 0;
    position: fixed;
    top: 0;
    z-index: 10;
    background: #fff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.header.fixed-course-menu.active .logo img {
    max-width: 225px;
}

.header.fixed-course-menu.active {
    padding: 5px 0;
    border-width: 1px 0;
    max-height: 300px;
}

.header ul.top-level > li > a:hover {
    /*position: relative;*/
    /*border-bottom: 4px solid #9B51E0;*/
    /*outline: 4px solid #9B51E0;*/
}

.header ul.top-level > li:hover a:after,
.header ul.top-level > li.active a:after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    background: #9b51e0;
    width: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -2px;

    /*border-right: 28px solid #fff;
    border-left: 28px solid #fff;*/
}

.fixed-course-menu a:active,
.fixed-course-menu a:focus {
    text-decoration: none;
    color: #333;
}

.fixed-course-menu ul > li:hover a:after,
.fixed-course-menu ul > li a.active:after {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    background: #9b51e0;
    width: 100%;
    left: 0;
    bottom: -3px;
    border-right: 28px solid #fff;
    border-left: 28px solid #fff;
}

/*
.header ul li a.active:after {
    content: "";
    position: absolute;
    width: 64px;
    height: 4px;
    background: #9B51E0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
}*/

.header ul.top-level {
    text-align: center;
}

.header ul.top-level > li {
    margin: -56px 0;
    padding: 0;
}

.header ul.top-level > li > a {
    display: inline-block;
    padding: 28px 35px;
}

.header ul li .sub {
    position: absolute;
    left: -100px;
    top: 100%;
    padding-top: 2px;
    z-index: 999;
    display: none;
}

.header ul li .sub.small {
    left: -40px;
}

.header ul li .sub.small ul {
    width: 190px;
}

.header ul li .sub ul {
    width: 410px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    -webkit-box-shadow: 0px 12px 34px rgba(42, 22, 81, 0.3);
    box-shadow: 0px 12px 34px rgba(42, 22, 81, 0.3);
    border-radius: 4px;
    padding: 5px 0;
}

.header ul li .sub ul li {
    display: block;
    margin: 0;
    padding: 0;
}

.header ul li .sub ul li:hover {
    background: #EEEEEE;
}

.header ul li .sub ul li a {
    display: block;
    padding: 6px 20px;
    font-size: 16px;
}

.header ul li .sub ul li a:after {
    display: none !important;
}

.header ul li .sub ul li a span {
    display: block;
    font-size: 12px;
    opacity: 0.5;
}

.header ul li .sub ul li a div {
    display: table-cell;
    vertical-align: top;
}

.header ul li .sub ul li a div .image {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    margin: 2px 10px 0 0;
    display: block;
}

.header .phone {
    font-size: 18px;
    padding-top: 6px;
    font-weight: 500;
}

.header .phone img {
    margin-right: 4px;
}

.header .lk {
    padding-top: 8px;
}

.header .lk a {
    font-size: 12px;
}

.header .lk a img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.header .button {
    font-size: 15px;
    width: 160px;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    background: #fecd0a;
    text-align: center;
}

.header .button:hover {
    -webkit-box-shadow: 0px 5px 10px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 5px 10px rgba(254, 205, 10, 0.32);
}


.header .top-level, .header .phone, .header .lk {
    margin-top: 15px;
}

.mobile-menu {
    position: absolute;
    width: 100%;
    z-index: 10;
    background: #fff;
    display: none;
}

.mobile-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu ul li:nth-child(5) {
    display: none;
}

.mobile-menu ul li:nth-child(6) {
    display: none;
}

.mobile-menu ul li a {
    display: block;
    font-size: 18px;
    padding: 20px 80px;
    border-bottom: 1px solid #DDDDDD;
}

.mobile-menu ul li a:hover {
    color: #A439D0;
}

.mobile-menu ul li a.link {
    background: url('../img/menu.png') no-repeat 25px 50%;
}

.mobile-menu ul li a.link.active {
    color: #A439D0;
    background: url('../img/menu2.png') no-repeat 25px 50%;
}

.mobile-menu ul li .phone {
    font-weight: 500;
    white-space: nowrap;
    font-size: 18px;
}

.mobile-menu ul li .phone img {
    margin-right: 4px;
}

.mobile-menu ul li .lk {
    white-space: nowrap;
}

.mobile-menu ul li .lk a {
    font-size: 18px;
}

.mobile-menu ul li .lk a img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.mobile-menu ul li .sub {
    display: none;
}

.mobile-menu ul li ul {
    border-bottom: 1px solid #DDDDDD;
    padding: 10px 0;
}

.mobile-menu ul li ul li:hover {
    background: #EEEEEE;
}

.mobile-menu ul li ul li a {
    font-size: 16px;
    padding: 6px 40px;
    border-bottom: none;
}

.mobile-menu ul li ul li a span {
    display: block;
    font-size: 12px;
    opacity: 0.5;
}

.mobile-menu ul li ul li a div {
    display: table-cell;
    vertical-align: top;
}

.mobile-menu ul li ul li a div .image {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    margin: 2px 10px 0 0;
    display: block;
}

.index-top-form {
/*    height: 500px;*/
    padding: 70px 0 60px 0;
    background: url('../img/index-top-form.jpg') center bottom;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.index-top-form .block-name {
    font-size: 32px;
    font-weight: 500;
    padding-bottom: 40px;
}

.index-top-form form {
    padding: 0 100px;
}

.index-top-form form .name {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

.index-top-form form .name.n1 {
    width: 42%;
    padding-left: 15px;
}

.index-top-form form .name.n3 {
    width: 28%;
    padding-left: 5px;
}

.index-top-form form .content {
    background: #fff;
    border-radius: 4px;
    color: #333;
    margin-bottom: 60px;
}

.index-top-form form .content .name {
    display: none;
}

.index-top-form form .content .bootstrap-select {
    width: 42% !important;
}

.index-top-form form .content .bootstrap-select .btn-default {
    width: 100% !important;
    border: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 60px;
    font-size: 16px;
    padding: 0 15px;
    outline: none !important;
    background: #ffffff url('../img/select.png') no-repeat right;
}

.index-top-form form .content .bootstrap-select .btn-default .bs-caret {
    display: none;
}

.index-top-form form .content .level {
    padding-top: 18px;
    cursor: pointer;
    padding-bottom: 18px;
}

.index-top-form form .content .level span {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
}

.index-top-form form .content .level span.n {
    opacity: .5;
    margin-top: -2px;
}

.index-top-form form .content .level span.n.active {
    opacity: 1;
}

.index-top-form form .content .level span.checkbox {
    width: 45px;
    height: 24px;
    background: #FECD0A;
    border-radius: 30px;
    margin: 0 12px;
    position: relative;
}

.index-top-form form .content .level span.checkbox.active {
    background: #8E3CCB;
}

.index-top-form form .content .level span.checkbox.active:before {
    left: 23px;
}

.index-top-form form .content .level span.checkbox:before {
    content: "";
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.index-top-form form .content .select {
    width: 28%;
    margin-top: 19px;
}

.index-top-form form .content .select .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.index-top-form form .content .select .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    opacity: .5;
    font-weight: 400;
    margin-right: 30px;
}

.index-top-form form .content .select .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #BABABA;
    border-radius: 4px;
}

.index-top-form form .content .select .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.index-top-form form .content .select .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.index-top-form form .content .select .checkbox:checked + label {
    opacity: 1;
}

.index-top-form form .content .select .checkbox:checked + label:after {
    opacity: 1;
}

.index-top-form form .but {
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    height: 60px;
    border-radius: 30px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.index-top-form form .but:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
    -webkit-box-shadow: 0px 15px 30px #5E2E8A;
    box-shadow: 0px 15px 30px #5E2E8A;
}

.index-top-form .bottom-text {
    font-size: 18px;
    padding-top: 30px;
}

.index-top-form .bottom-text a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.index-top-form select[name=category] {
    width: 42%; 
    display: inline-block !important; 
    visibility: hidden;
}

.price-page {
    text-align: center;
}

.price-page.course-p.web {
    padding-top: 80px;
}

.price-page.course-p .block-name {
    padding: 0 0 20px 0;
}

.price-page.art-page {
    background: -webkit-gradient(linear, left top, left bottom, from(#a244db), to(#6828ec));
    background: linear-gradient(180deg, #a244db 0%, #6828ec 100%);
    padding-bottom: 10px;
}

.price-page.art-page .block-name {
    color: #fff;
    padding: 65px 0 40px;
}

.price-page.art-page .item {
    margin-bottom: 40px;
}

.price-page.art-page .item .name {
    padding: 20px;
    border-bottom: 1px solid rgba(231, 202, 243, 0.4);
}

.price-page .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    text-align: center;
    padding: 80px 0 60px;
}

.price-page .top-text {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #333333;
    opacity: 0.5;
    margin-bottom: 70px;
}

.price-page .border {
    border-bottom: 1px solid #CCCCCC;
}

.price-page .list .item {
    margin: 20px 20px 80px 20px;
}

.price-page .element .item {
    margin: 20px 0 40px 0;
}

.price-page .element:nth-child(3n+1) {
    clear: left;
}

.price-page .item {
    margin-bottom: 75px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 4px solid transparent;
}

.price-page .item:hover {
    border: 4px solid #9B51E0;
    -webkit-box-shadow: 0px 12px 34px rgba(53, 28, 75, 0.3);
    box-shadow: 0px 12px 34px rgba(53, 28, 75, 0.3);
}

.price-page .item:hover .content .button {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 138, 1, 0.3)), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, rgba(255, 138, 1, 0.3) 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
    -webkit-box-shadow: 0px 15px 30px rgba(155, 81, 224, 0.3);
    box-shadow: 0px 15px 30px rgba(155, 81, 224, 0.3);
}

.price-page .item img {
    display: inline-block;
    max-width: 100%;
}

.price-page .item .image {
    padding: 0 10px;
    border-bottom: 1px solid rgba(231, 202, 243, 0.4);
    height: 125px;
    line-height: 125px;
    overflow: hidden;

}

.price-page .item .image img {
    vertical-align: middle;
}

.price-page .item .name {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    padding: 20px 20px 10px 20px;
    color: #333;
}

.price-page .item .name.b {
    padding: 20px;
    border-bottom: 1px solid rgba(231, 202, 243, 0.4);
}

.price-page .item .tag {
    position: relative;
}

.price-page .item .tag:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(231, 202, 243, 0.4);
    left: 0;
    top: 10px;
}

.price-page .item .tag span {
    font-weight: 500;
    line-height: 19px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #FFFFFF;
    position: relative;
    padding: 3px 10px;
}

.price-page .item .tag span.pink {
    background: #BB6BD9;
}

.price-page .item .tag span.blue {
    background: #2D9CDB;
}

.price-page .item .tag span.red {
    background: #EB5757;
}

.price-page .item .tag span img {
    vertical-align: middle;
    margin: -2px 4px 0 0;
}

.price-page .item .content {
    padding: 20px 20px 40px 20px;
}

.price-page .item .content p {
    line-height: 22px;
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 20px;
}

.price-page .item .content .price {
    font-weight: 500;
    color: #000;
    line-height: 30px;
    font-size: 24px;
    margin: 30px 0;
}

.price-page .item .content .price span {
    font-size: 36px;
}

.price-page .item .content .button {
    display: inline-block;
    font-weight: 500;
    line-height: 25px;
    font-size: 18px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    max-width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
}

.price-page .item .content .button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
    color: #000;
}

.price-page .item .content .button:hover img {
    display: inline-block;
}

.price-page .item .content .button img {
    margin-left: 6px;
    display: none;
}

.price-page .bottom-link {
    margin-bottom: 120px;
}

.price-page .bottom-link a {
    font-size: 16px;
    background: url('../img/plus.svg') no-repeat right;
    padding: 4px 40px 4px 0;
}

.price-page .bottom-link a:hover {
    background: url('../img/plus3.svg') no-repeat right;
}

.price-page .bottom-link a:hover {
    color: #A439D0;
}

.price-page .bottom-link a.to-all {
    background: url('../img/plus4.svg') no-repeat right;

}

.price-page .bottom-link a.to-all:hover {
    background: url('../img/plus5.svg') no-repeat right;
}

.index-images-block .item {
    margin: 0 100px 90px 100px;
    position: relative;
}

.index-images-block .item.other {
    margin: 0 160px 90px 160px;
}

.index-images-block .item.other img {
    float: none;
}

.index-images-block .item.other .text {
    left: auto;
    right: 0;
    width: 48%;
}

.index-images-block .item.no_b_m {
    margin-bottom: 0;
}

.index-images-block .item img {
    float: right;
    max-width: 49%;
}

.index-images-block .item .text {
    position: absolute;
    left: 0;
    top: 40px;
    width: 40%;
}

.index-images-block .item .text .name {
    font-weight: 500;
    line-height: 39px;
    font-size: 28px;
    margin-bottom: 5px;
}

.index-images-block .item .text p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    opacity: 0.5;
}

.clients-page {
    text-align: center;
    margin-bottom: 90px;
}

.clients-page.inner {
    padding: 60px 0 80px;
}

.clients-page.inner .block-name {
    margin-bottom: 80px;
}

.clients-page .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 20px;
}

.clients-page p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    opacity: 0.5;
    margin-bottom: 90px;
}

.clients-page .list {
    padding: 0 30px;
}

.clients-page .item {
    height: 70px;
    line-height: 70px;
    padding: 0 10px;
    display: none;
}

.clients-page .item img {
    vertical-align: middle;
    display: inline-block;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    -webkit-filter: grayscale(1);
    opacity: .4;
    max-height: 100%;
    max-width: 80%;
}

.clients-page .item img:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: none;
    -webkit-filter: grayscale(0);
    opacity: 1;
}

.clients-page .slick-prev,
.clients-page .slick-next {
    position: absolute;
    padding: 0;
    font-size: 0;
    z-index: 2;
    width: 32px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
    -webkit-transition: none;
    transition: none;
}

.clients-page .slick-prev {
    left: 0px;
    background: url('../img/prev.svg');
}

.clients-page .slick-prev:hover {
    background: url('../img/nexth.svg');
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.clients-page .slick-next {
    right: 0px;
    background: url('../img/next.svg');
}

.clients-page .slick-next:hover {
    background: url('../img/nexth.svg');
}

.clients-page .bottom-link {
    padding: 50px 0 100px;
}

.clients-page .bottom-link a {
    font-size: 16px;
    background: url('../img/plus.svg') no-repeat right;
    padding: 4px 40px 4px 0;
}

.clients-page .bottom-link a:hover {
    background: url('../img/plus3.svg') no-repeat right;
}

.clients-page .bottom-link a:hover {
    color: #A439D0;
}

.index-ways {
    background: -webkit-gradient(linear, left top, left bottom, from(#a244db), to(#6828ec));
    background: linear-gradient(180deg, #a244db 0%, #6828ec 100%);
    padding-bottom: 30px;
    text-align: center;
}

.index-ways .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    color: #FFFFFF;
    padding: 85px 0 70px;
}

.index-ways .item {
    margin-bottom: 50px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 30px 0;
}

.index-ways .item:hover .image {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.index-ways .item .image {
    margin-bottom: 20px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.index-ways .item .image .i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.index-ways .item .name {
    display: table-cell;
    height: 50px;
    line-height: 50px;
    width: 1000px;
    padding: 0 10px;
}

.index-ways .item .name a {
    font-weight: 500;
    vertical-align: middle;
    line-height: 120%;
    display: inline-block;
    font-size: 18px;
}

.index-ways .ml {
    margin-left: 140px;
}

.reviews-page {
    background: #81CF3F;
}

.reviews-page.inner {
    background: #F2F2F2;
}

.reviews-page.inner .block-name {
    color: #333;
}

.reviews-page.inner2 {
    padding: 0 150px 100px 150px;
    background: none;
}

.reviews-page.inner2 .item {
    padding: 40px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px dashed #BDBDBD;
}

.reviews-page .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    color: #FFFFFF;
    padding: 65px 0;
    text-align: center;
}

.reviews-page .feed-text {
    max-height: 101px;
    overflow: hidden;
}

.reviews-page .slick-list {
    -webkit-box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.1);

    background: #fff;
}

.reviews-page .item {
    background: #FFFFFF;
    padding: 35px 140px;
    display: none;
}

.reviews-page .item .reviews-course{
    display: inline-block;
    margin-bottom: 15px;
    color: #2F80ED;
}

.reviews-page .item .reviews-course:hover{
    color: #A439D0;
}

.reviews-page.all-feeds .item {
    display: block;
}

.reviews-page .item:hover .content .from {
    color: #A439D0;
}

.reviews-page .item img {
    display: inline-block;
}

.reviews-page .item .avatar {
    float: left;
    text-align: center;
}

.reviews-page .item .thumb-container {
    display: inline-block;
    width: 167px;
    height: 167px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

.reviews-page .item .thumb-container img {
    position: absolute;
    top: 0;
    left: -999px;
    right: -999px;
    height: 100%;
    margin: auto;
}

.reviews-page .item .avatar .social {
    padding-top: 20px;
}

.reviews-page .item .avatar .social a {
    margin: 0 10px;
}

.reviews-page .item .content {
    margin-left: 250px;
    padding-top: 5px;
}

.reviews-page .item .content .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 10px;
}

.reviews-page .item .content .company {
    line-height: 21px;
    font-size: 15px;
    opacity: 0.5;
    margin-bottom: 10px;
}

.reviews-page .item .content p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 25px;
}

.reviews-page .item .content .from {
    float: right;
    line-height: 25px;
    font-size: 18px;
    color: #2F80ED;
}

.reviews-page .item .content .more {
    display: inline-block;
    margin-top: 4px;
    width: 44px;
    height: 26px;
    background: url('../img/more.png');
}

.reviews-page .item .content .more:hover {
    background: url('../img/more2.png');
}

.reviews-page .slick-prev,
.reviews-page .slick-next {
    position: absolute;
    padding: 0;
    font-size: 0;
    z-index: 2;
    width: 32px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
    -webkit-transition: none;
    transition: none;
}

.reviews-page .slick-prev {
    left: 30px;
    background: url('../img/prev.svg');
}

.reviews-page .slick-prev:hover {
    background: url('../img/nexth.svg');
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.reviews-page .slick-next {
    right: 30px;
    background: url('../img/next.svg');
}

.reviews-page .slick-next:hover {
    background: url('../img/nexth.svg');
}

.reviews-page .bottom-link {
    padding: 60px 0 40px;
    text-align: center;
}

.reviews-page .bottom-link a {
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
}

.reviews-page .bottom-link a:hover {
    text-decoration: none;
}

.reviews-page .bottom-link a img {
    margin-left: 6px;
}

.reviews-page .bottom-button {
    margin-top: 20px;
}

.blog-page {
    text-align: center;
}

.blog-page.inner {
    background: #F2F2F2;
    padding-bottom: 30px;
}

.blog-page.inner .block-name {
    padding: 70px 0 40px;
}

.blog-page .block-name {
    font-size: 32px;
    font-weight: 500;
    padding: 85px 0 40px;
}

.blog-page p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    opacity: 0.5;
    margin-bottom: 30px;
}

.blog-page .item {
    text-align: left;
    margin: 30px 20px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.blog-page .element .item {
    margin: 30px 5px;
}

.blog-page .element:nth-child(3n+1) {
    clear: left;
}

.blog-page .item:hover .image:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #9B51E0;
    left: 0;
    bottom: 0;
}

.blog-page .item:hover .content {
    border: 4px solid #9B51E0;
    border-top: 0;
    border-radius: 0 0 4px 4px;
}

.blog-page .item img {
    display: inline-block;
}

.blog-page .item .image {
    position: relative;
    height: 154px;
    overflow: hidden;
    border-radius: 4px;

}

.blog-page .item .image img {
    width: 100%;
    position: absolute;
    z-index: 2;
    top: -999px;
    bottom: -999px;
    left: 0px;
    margin: auto;

}

.blog-page .item .image .date {
    line-height: 21px;
    font-size: 15px;
    color: #909090;
    position: absolute;
    right: 20px;
    top: 20px;
    background: #fff;
    border-radius: 30px;
    padding: 5px 10px;
    z-index: 2;
}

.blog-page .item .content {
    padding: 20px;
    border: 4px solid transparent;
    border-top: 0;
}

.blog-page .item .content .name {
    line-height: 25px;
    font-size: 18px;
    opacity: 0.8;
    display: block;
    margin-bottom: 20px;
}

.blog-page .item .content .time {
    line-height: 25px;
    font-size: 15px;
    color: #ccc;
}

.blog-page .item .content .time img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.blog-page .item .content .time span {
    color: #000;
}

.blog-page .bottom-link {
    padding: 25px 0 130px;
}

.blog-page .bottom-link a {
    font-size: 16px;
    background: url('../img/plus.svg') no-repeat right;
    padding: 4px 40px 4px 0;
}

.blog-page .bottom-link a:hover {
    background: url('../img/plus3.svg') no-repeat right;
    color: #A439D0;
}

.blog-page .bottom-link a.to-all {
    background: url('../img/plus4.svg') no-repeat right;

}

.blog-page .bottom-link a.to-all:hover {
    background: url('../img/plus5.svg') no-repeat right;
}

.blog-item-big .image,
.blog-item .image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.blog-list .element:nth-child(2n-1) {
    clear: left;
}

.subscribe-block {
    background: linear-gradient(102.6deg, #4801ff 0%, #7918f2 47.98%, #ac32e4 100%);
    text-align: center;
    color: #fff;
    padding: 0 0 30px 0;
    position: relative;
    overflow: hidden;
}

.subscribe-block:after {
    content: "";
    position: absolute;
    width: 604px;
    height: 286px;
    background: url('../img/subscribe.png');
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.subscribe-block .block-name {
    font-size: 32px;
    font-weight: 500;
    padding: 30px 0 20px;
}

.subscribe-block p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    margin-bottom: 40px;
}

.subscribe-block form {
    color: #333;
    position: relative;
    z-index: 2;
}

.subscribe-block form input[type='email'] {
    width: 461px;
    height: 48px;
    border-radius: 4px;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin-right: 10px;
    font-weight: 700;
}

.subscribe-block form button {
    width: 121px;
    height: 48px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    font-size: 16px;
}

.subscribe-block form button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), #fecd0a;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), #fecd0a;
    -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
}

.subscribe-block form ::-webkit-input-placeholder {
    font-weight: 400;
}

.subscribe-block form :-ms-input-placeholder {
    font-weight: 400;
}

.subscribe-block form ::-moz-placeholder {
    font-weight: 400;
}

.subscribe-block form :-moz-placeholder {
    font-weight: 400;
}

.subscribe-block form div {
    padding-top: 25px;
}

.subscribe-block form div .checkbox {
    display: inline-block;
    z-index: -1;
    opacity: 0;
    margin-right: -20px;
}

form div .checkbox.agree {
    display: inline-block;
    opacity: 1;
    margin-right: 5px;
}

.subscribe-block form div .checkbox + label {
    position: relative;
    padding: 0 0 0 24px;
    cursor: pointer;
    font-weight: 400;
    line-height: 17px;
    font-size: 12px;
    color: #FFFFFF;
}

.subscribe-block form div .checkbox + label:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url('../img/checkbox.png');
}

.subscribe-block form div .checkbox:checked + label:before {
    background: url('../img/checkbox-active.png');
}

.subscribe-block a {
    color: #fff;
    text-decoration: underline;
}

.subscribe-block a:hover {
    text-decoration: none;
}

.subscribe-block .success-block {
    color: #fff;
    font-size: 18px;
}

.subscribe-block .success-block .email {
    font-size: 32px;
    display: inline-block;
    margin: 10px 0;
    font-weight: 400;
}

.subscribe-block .success-block .success-message {
    display: inline-block;
    padding-left: 30px;
    line-height: 30px;
    background: url('../img/subscriber-success.svg') no-repeat left center;
}

.bottom-menu {
    background: #3D4A6E;
    padding: 30px 0 5px;
}

.bottom-menu p {
    line-height: 22px;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.bottom-menu ul {
    padding: 0;
    margin: 0 0 20px 0;
    list-style: none;
}

.bottom-menu ul li a {
    font-size: 12px;
    color: #FFFFFF;
    opacity: 0.6;
}

.bottom-menu ul li a:hover {
    opacity: 1;
}

.footer {
    padding: 30px 0;
    background: #323C5A;
    color: #fff;
}

.footer .contacts .item {
    margin-bottom: 25px;
}

.footer .contacts .item div {
    display: table-cell;
    vertical-align: top;
    line-height: 18px;
    font-size: 12px;
}

.footer .contacts .item div img {
    margin: 1px 10px 0 0;
}

.footer .contacts .item div a {
    opacity: .6;
    color: #fff;
}

.footer .contacts .item div a:hover {
    opacity: 1;
}

.footer .social a {
    margin-right: 15px;
}

.footer .social a:last-child {
    margin-right: 0;
}

.footer .social a:hover img:first-child {
    display: none;
}

.footer .social a:hover img:last-child {
    display: inline-block;
}

.footer .social a img:last-child {
    display: none;
}

.footer .copy {
    line-height: 18px;
    font-size: 12px;
}

.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: url('../img/to-top.svg') no-repeat center center;
    color: #aeaeae;
    opacity: 0.7;
    border-radius: 50%;
    position: fixed;
    left: 15px;
    bottom: 15px;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    transition: transform 0.2s;
    transform: translateY(200px);
}

.scroll-to-top.visible {
    transform: translateY(0);
}

.scroll-to-top:hover {
    opacity: 1;
}


.popup {
    position: fixed;
    width: 120%;
    height: 100%;
    left: -10%;
    top: 0;
    overflow-y: scroll;
    z-index: 12;
    background: rgba(1, 1, 1, 0.5);
    display: none;
}

.popup .window {
    position: absolute;
    top: 100px;
    margin-bottom: 100px;
    width: 460px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    border-radius: 4px;
    text-align: center;
    padding: 30px 30px 50px 30px;
}

.popup .window.small {
    width: 316px;
}

.popup .window.course {
    width: 844px;
    padding: 20px;
    border-radius: 0;
}

.popup .window.course-f {
    width: 1140px;
    padding: 0;
}

.popup .window.success {
    width: 576px;
}

.popup .window .close {
    position: absolute;
    opacity: 1;
    width: 16px;
    height: 16px;
    right: 15px;
    top: 15px;
    background: url('../img/close.png');
}

.popup .window .block-name {
    line-height: 39px;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
}

.popup .window form input {
    width: 100%;
    height: 48px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.popup .window form button {
    width: 250px;
    height: 60px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    font-weight: 500;
    font-size: 18px;
    border-radius: 30px;
}

.popup .window form button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.popup .window form .forget {
    padding: 40px 0;
    font-size: 15px;
}

.popup .window form .forget a {
    color: #2F80ED;
}

.popup .window form .forget a:hover {
    color: #A439D0;
}

.popup .window form .auth {
    position: relative;
    margin: 0 -30px;
    margin-bottom: 40px;
    padding: 0 30px;
}

.popup .window form .auth:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ddd;
    left: 0;
    top: 12px;
}

.popup .window form .auth span {
    padding: 0 20px;
    background: #fff;
    position: relative;
}

.popup .window form .auth a {
    opacity: 0.6;
    font-size: 18px;
}

.popup .window form .social {
    margin-bottom: 30px;
}

.popup .window form .social.no_m {
    margin-bottom: 0;
}

.popup .window form .social img {
    margin: 0 10px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 50%;
}

.popup .window form .social img:hover {
    opacity: .8;
}

.popup .window form .bottom-text {
    line-height: 25px;
    font-size: 15px;
}

.popup .window form .bottom-text a {
    color: #2F80ED;
}

.popup .window form .agree {
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}

.popup .window form .agree .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.popup .window form .agree .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    opacity: .5;
    font-weight: 400;
    margin-right: 30px;
}

.popup .window form .agree .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #BABABA;
    border-radius: 4px;
}

.popup .window form .agree .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.popup .window form .agree .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.popup .window form .agree .checkbox:checked + label {
    opacity: 1;
}

.popup .window form .agree .checkbox:checked + label:after {
    opacity: 1;
}

.popup .window form .steps .item,
.popup .window .steps .item {
    position: relative;
    margin-bottom: 60px;
}

.popup .window form .steps .item:last-child:after,
.popup .window .steps .item:last-child:after {
    display: none;
}

.popup .window form .steps .item:after,
.popup .window .steps .item:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 21px;
    background: url('../img/arrow2.png');
    bottom: -40px;
    left: 40px;
}

.popup .window form .steps .item .icon,
.popup .window .steps .item .icon {
    width: 96px;
    height: 96px;
    background: #DD81FF;
    line-height: 96px;
    border-radius: 50%;
}

.popup .window form .steps .item .text,
.popup .window .steps .item .text {
    position: absolute;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 120px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
    font-weight: 300;
    line-height: 26px;
    font-size: 16px;
    color: #161616;
    opacity: 0.8;
}

.popup .window form .steps .item .text span,
.popup .window .steps .item .text span {
    font-weight: 500;
}

.cookie-block {
    text-align: center;
    width: 320px;
    padding: 40px;
    border-radius: 3px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #fff;
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.cookie-block p {
    line-height: 21px;
    font-size: 15px;
    opacity: 0.6;
    padding: 20px 0;
}

.cookie-block button {
    width: 160px;
    height: 48px;
    background: #fecd0a;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    font-weight: 500;
    font-size: 16px;
    border-radius: 30px;
}

.cookie-block button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.cookie-block a {
    color: #2f80ed;
    text-decoration: underline;
}

.cookie-block a:hover {
    color: #9b51e0;
}

.navi {
    padding: 20px 0 40px;
    line-height: 17px;
    font-size: 12px;
    color: #BDBDBD;
}

.navi a {
    color: #2F80ED;
}

.navi .fa {
    color: #333;
    margin: 0 4px;
}

.top-page-links {
    margin-bottom: 50px;
}

.top-page-links a {
    line-height: 28px;
    font-size: 20px;
    color: #2F80ED;
}

.top-page-links a:hover {
    color: #8E3CCB;
}

.top-page-links a:hover span {
    border: 1px solid #8E3CCB;
}

.top-page-links a span {
    width: 26px;
    height: 26px;
    border: 1px solid #2F80ED;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin: -2px 8px 0 0;
    position: relative;
}

.top-page-links a span.r {
    margin: -2px 0 0 8px;
}

.top-page-links a span .fa {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

h1 {
    text-align: center;
    font-weight: 500;
    line-height: 55px;
    font-size: 40px;
    margin: 0 0 -35px;
}

h1.no_m {
    margin-bottom: 70px;
}

h1 span {
    position: relative;
}

h1 span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: -10px;
    background: linear-gradient(161.73deg, #4801ff 0%, #7918f2 47.98%, #ac32e4 100%);
}

.wys-text,
.wys-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
}

.wys-text:after {
    content: '';
    display: block;
    clear: both;
}

.wys-text:after {
    content: '';
    display: block;
    clear: both;
}

.wys-text h1,
.wys-text h2,
.wys-text h3 {
    margin-top: 20px;
    margin-bottom: 25px;
}

.wys-text img {
    max-width: 100%;
    height: auto;
}

.wys-text p {
    margin: 10px 0;
    padding: 5px 0;

}

.wys-text table
{
    width: 100%!important;
    max-width: 100%;
}

.wys-text table td,
.wys-text table th
{
    width: auto!important;
    max-width: 100%;
    padding: 10px 15px;
    border: 1px solid #eaeaea;
}

.wys-text table:not(.not-hovered) tr:hover
{
    background: #eaeaea;
}


.wys-text table td ul
{
    padding-left: 20px;
}

.wys-text table td p
{
    margin: 5px 0;
}

.wys-text ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wys-text ul li {
    position: relative;
    padding-left: 40px;
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.wys-text ul li::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #9B51E0;
    left: 0;
    top: 14px;
}

.wys-text a {
    color: #2f80ed;
    text-decoration: underline;
}

.wys-text a:hover {
    color: #9b51e0;
}

.wys-text .price-item {
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 4px solid transparent;
    text-align: center;
    max-width: 330px;
    float: right;
    z-index: 1;
    position: relative;
    margin-bottom: 20px;
    margin-left: 25px;
    background: #fff;
}


.wys-text .price-item:hover {
    border: 4px solid #9B51E0;
    -webkit-box-shadow: 0px 12px 34px rgba(53, 28, 75, 0.3);
    box-shadow: 0px 12px 34px rgba(53, 28, 75, 0.3);
}

.wys-text .price-item.left {
    float: left;
    margin-left: 0;
    margin-right: 25px;
}


.wys-text .price-item img {
    display: inline-block;
}

.wys-text .price-item .image {
    padding: 0 10px;
    border-bottom: 1px solid rgba(231, 202, 243, 0.4);
    height: 125px;
    line-height: 125px;
}

.wys-text .price-item .image img {
    vertical-align: middle;
}

.wys-text .price-item .n {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    padding: 20px;

}

.wys-text .price-item .tag {
    position: relative;
}

.wys-text .price-item .tag:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(231, 202, 243, 0.4);
    left: 0;
    top: 10px;
}

.wys-text .price-item .tag span {
    font-weight: 500;
    line-height: 19px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #FFFFFF;
    position: relative;
    top: -4px;
    padding: 3px 10px;
}

.wys-text .price-item .tag span.pink {
    background: #BB6BD9;
}

.wys-text .price-item .tag span.blue {
    background: #2D9CDB;
}

.wys-text .price-item .tag span.red {
    background: #EB5757;
}

.wys-text .price-item .tag span img {
    vertical-align: middle;
    margin: -2px 4px 0 0;
}

.wys-text .price-item .content {
    padding: 20px 20px 40px 20px;
}

.wys-text .price-item .content p {
    line-height: 22px;
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 20px;
}

.wys-text .price-item .content .price {
    font-weight: 500;
    color: #000;
    line-height: 30px;
    font-size: 24px;
    margin: 30px 0;
}

.wys-text .price-item .content .price span {
    font-size: 36px;
}

.wys-text .price-item .content .button {
    font-weight: 500;
    display: inline-block;
    line-height: 60px;
    font-size: 18px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    height: 60px;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
}

.wys-text .price-item .content .button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}


.wys-text .price-item .content .button img {
    display: none;
    margin-left: 6px;
}


.wys-text .price-item .content .button:hover img {
    display: inline;
}

.blog-tags {
    padding: 0 145px;
    margin-bottom: 40px;
    text-align: center;
}

.blog-tags a,
.tags a {
    display: inline-block;
    font-size: 15px;
    padding: 6px 12px;
    margin-bottom: 10px;
    border-radius: 28px;
    background: #bb6bd9;
    margin-right: 5px;
    margin-left: 5px;
    color: #fff;
}

.blog-tags a:hover,
.blog-tags a.active,
.tags a:hover,
.tags a.active {
    color: #ac70d9;
    background: #f5eefc;
}

.blog-tags a.show-hide-button,
.tags a.show-hide-button {
    display: inline-block;
    width: 44px;
    height: 26px;
    background: url('../img/more.png') no-repeat;
    margin-top: 15px;
}

.blog-tags a.show-hide-button:hover,
.tags a.show-hide-button:hover {
    background-image: url('../img/more2.png');
}

.blog-item {
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
}

/*
.blog-item:hover .content {
    border: 4px solid #9B51E0;
    border-top: 0;
}
*/

.blog-item .image {
    height: 200px;
    position: relative;
    border-radius: 4px;
}

.blog-item .image .link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.blog-item .image .date {
    line-height: 21px;
    font-size: 15px;
    color: #909090;
    position: absolute;
    right: 20px;
    top: 20px;
    background: #fff;
    border-radius: 30px;
    padding: 5px 10px;
}

.blog-item .content {
    padding: 24px 20px 30px 20px;
    background: #EEEEEE;
    border: 4px solid transparent;
    border-top: 0;
    margin-top: -4px;
}

.blog-item .content .name {
    display: block;
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.blog-item .content p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 15px;
}

.blog-item .content .time {
    line-height: 25px;
    font-size: 15px;
    color: #999;
}

.blog-item .content .time img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.blog-item .content .time span {
    color: #000;
}

.blog-item-big {
    margin-bottom: 40px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    padding: 0 0 0 52%;
    position: relative;
}

/*
.blog-item-big:hover .content {
    border: 4px solid #9b51e0;
    border-left: 0;
}
*/

.blog-item-big:hover .content .name,
.blog-item:hover .content .name {
    color: #9b51e0;
}

.blog-item-big .image {
    position: absolute;
    width: 52%;
    height: 100%;
    left: 0;
    top: 0;
}

.blog-item-big .image .link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.blog-item-big .image .date {
    line-height: 21px;
    font-size: 15px;
    color: #909090;
    position: absolute;
    right: 20px;
    top: 20px;
    background: #fff;
    border-radius: 30px;
    padding: 5px 10px;
}

.blog-item-big .content {
    padding: 34px 30px 34px 10%;
    border: 4px solid transparent;
    border-left: 0;
}

.blog-item-big .name {
    display: block;
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.blog-item-big p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 20px;
}

.blog-item-big .time {
    line-height: 25px;
    font-size: 15px;
    color: #999;
}

.blog-item-big .time img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.blog-item-big .time span {
    color: #000;
}

.bottom-button {
    text-align: center;
    padding: 20px 0 60px;
}

.bottom-button a {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    background: #FECD0A;
    width: 250px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
}

.bottom-button a:hover {
    color: #333;
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.pages {
    text-align: center;
    margin-bottom: 120px;
}

.pages a {
    display: inline-block;
    font-size: 24px;
    padding: 4px 16px;
    border-radius: 4px;
    margin: 0 6px;
}

.pages a:hover,
.pages a.active {
    background: rgba(155, 81, 224, 0.1);
    color: #9B51E0;
}

.pages a .fa {
    font-size: 32px;
    vertical-align: middle;
    margin-top: -6px;
}

.pages span {
    margin: 0 6px;
    font-size: 24px;
}

.bottom-page-blocks {
    padding-bottom: 30px;
    margin-top: 30px;
}

.bottom-page-blocks.p_t {
    padding-top: 100px;
}

.bottom-page-blocks .item {
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 30px 20px;
    position: relative;
}

.bottom-page-blocks .item:hover {
    -webkit-box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 15px 34px rgba(0, 0, 0, 0.3);
}

.bottom-page-blocks .item:hover .name div .image {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.bottom-page-blocks .item.item1 {
    background: url('../img/bottom-block1.png') no-repeat right;
}

.bottom-page-blocks .item.item1 .name div .image {
    background: #FECD0A;
}

.bottom-page-blocks .item.item2 {
    background: url('../img/bottom-block2.png') no-repeat right;
}

.bottom-page-blocks .item.item2 .name div .image {
    background: #9E2BE8;
}

.bottom-page-blocks .item.item3 {
    background: url('../img/bottom-block3.png') no-repeat right;
}

.bottom-page-blocks .item.item3 .name div .image {
    background: #EA66A1;
}

.bottom-page-blocks .item .link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}

.bottom-page-blocks .item .name {
    padding-right: 20px;
    margin-bottom: 20px;
}

.bottom-page-blocks .item .name div {
    display: table-cell;
    vertical-align: middle;
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
}

.bottom-page-blocks .item .name div .image {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
    margin-right: 20px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.bottom-page-blocks .item .name div .image img {
    vertical-align: middle;
}

.bottom-page-blocks .item p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.article-top-image {
    /*height: 492px;*/
    padding-bottom: 60px;
    color: #fff;
    position: relative;
}

.article-top-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(1, 1, 1, 0.3);
}

.article-top-image .header {
    position: relative;
    z-index: 2;
}

.article-top-image .header.inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.article-top-image .header.active {
    background: #fff;
    border-bottom: 1px solid #DDDDDD;
}

.article-top-image .header.active .logo a img:nth-child(1) {
    display: none;
}

.article-top-image .header.active .logo a img:nth-child(2) {
    display: inline-block;
}

.article-top-image .header .menu-button {
    background: url('../img/menu-button-w.svg') no-repeat center;
}

.article-top-image .header .menu-button.active {
    background: url('../img/menu-button2.png') no-repeat center;
}

.article-top-image .header .logo a img:nth-child(1) {
    display: inline-block;
}

.article-top-image .header .logo a img:nth-child(2) {
    display: none;
}

.article-top-image .header ul li a {
    color: #fff;
}

.article-top-image .header .phone {
    color: #fff;
}

.article-top-image .header .phone a {
    color: #fff;
}

.article-top-image .header .lk a {
    color: #fff;
}

.article-top-image .back-link {
    padding: 20px 0 85px;
    font-size: 12px;
    position: relative;
/*    z-index: 2;*/
}

.article-top-image .back-link a {
    color: #fff;
}

.article-top-image .text {
    text-align: center;
    padding: 0 280px;
    position: relative;
    /*z-index: 2;*/
}

.article-top-image .text .name,
.article-top-image .text .name h1 {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 20px;
}

.article-top-image .text p {
    line-height: 32px;
    font-size: 20px;
    opacity: 0.8;
}

.article-page {
    padding: 15px 150px;
}

.article-page .name {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.article-page .name span,
.article-page .name a {
    font-size: 15px;
    color: #999;
}

.article-page .name a:hover {
    color: #A439D0;
}

.article-page .name a:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: none;
    -webkit-filter: grayscale(0);
}

.article-page .name span img,
.article-page .name a img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
    width: 42px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    -webkit-filter: grayscale(1);
}

.article-page .name .time {
    line-height: 25px;
    font-size: 15px;
    color: #999;
    padding-top: 5px;
}

.article-page .name .time img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.article-page .name .time span {
    color: #000;
}

.article-page p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 30px;
}

.article-page h2 {
    font-weight: 500;
    line-height: 39px;
    font-size: 28px;
    margin-bottom: 30px;
}

.wys-text blockquote {
    padding: 0;
    border-left: 0;
    border: 1px solid #FECD0A;
    border-radius: 4px;
    padding: 40px 30px;
    position: relative;
    margin-bottom: 35px;
}

.wys-text blockquote:before {
    content: "";
    position: absolute;
    width: 47px;
    height: 48px;
    left: -10px;
    top: -10px;
    background: url('../img/quotel.png');
}

.wys-text blockquote:after {
    content: "";
    position: absolute;
    width: 47px;
    height: 48px;
    right: -10px;
    bottom: -10px;
    background: url('../img/quoter.png');
}

.wys-text blockquote p {
    font-style: italic;
    line-height: 32px;
    font-size: 20px;
}

.wys-text blockquote a {
    color: #2F80ED;
}

.article-page ul {
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
}

.article-page ul li {
    position: relative;
    padding-left: 40px;
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 15px;
}

.article-page ul li:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #9B51E0;
    left: 0;
    top: 14px;
}



.article-page .screen-block {
    padding: 40px 0 20px;
}

.article-page .screen-block img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.article-page .screen-block .n {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    padding: 40px 0 10px;
}

.article-page .tags {
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-page .tags .n {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 15px;
}

.comments {
    margin-bottom: 80px;
    margin-top: 20px;
}

.comments .comment_send_message {
    font-size: 16px;
    margin-top: 10px;
    padding-left: 20px;
}

.comments .n {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 10px;
}

.comments .item {
    border-bottom: 1px solid #DDDDDD;
    padding: 30px 0;
}

.comments .item:last-child {
    border-bottom: 0;
}

.comments .item .author {
    margin-bottom: 20px;
}

.comments .item .author .author-name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
}

.comments .item .author a img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.comments .item .date {
    line-height: 22px;
    font-size: 16px;
    opacity: 0.6;
    padding-top: 4px;
}

.comments .item .is_answer {
    margin-right: 15px;
    line-height: 22px;
    font-size: 16px;
    opacity: 0.6;
}

.comments .item p {
    margin-bottom: 20px;
}

.comments .item .reply {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #2F80ED;
    border-bottom: 1px dashed #2F80ED;
}

.comments form {
    width: 454px;
}

.comments form .n {
    margin-bottom: 30px;
}

.comments .comment-form {
    margin-top: 20px;
}

.comments form input {
    width: 100%;
    height: 48px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 0 10px;
}

.comments form textarea {
    width: 100%;
    height: 96px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px;
}

.comments form button {
    font-weight: 500;
    font-size: 18px;
    background: #FECD0A;
    width: 250px;
    height: 60px;
    border-radius: 30px;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
}

.comments form button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.comments .children {
    padding-left: 40px;
}

.comments .leave_comment {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #2F80ED;
    border-bottom: 1px dashed #2F80ED;
}

.highlighted {
    background: #e2ffd6;
    outline: 10px solid #e2ffd6;
}

.create-video-block {
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    background: #F2F2F2;
    padding: 40px 0;
}

.create-video-block .content {
    padding: 0 150px;
}

.article-share {
    background: #F2F2F2;
    padding: 20px 0;
}

.article-share .content {
    padding: 0 150px;
    line-height: 21px;
    font-size: 15px;
}

.article-share .content a {
    margin-left: 15px;
}

.gloss-page {
    padding-bottom: 50px;
}

.gloss-page .letters {
    padding: 0 100px 20px 100px;
    background: #fff;
    text-align: center;
    z-index: 8 !important;
}

.gloss-page .letters .list {
    margin-bottom: 10px;
}

.gloss-page .letters .list a {
    display: inline-block;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 4px;
    margin: 0 -1px;
    text-transform: uppercase;
}

.gloss-page .letters .list a:hover {
    background: rgba(155, 81, 224, 0.1);
    color: #9B51E0;
}

.gloss-page .letters .list a.active {
    color: #fff;
    background: #BB6BD9;
}

.gloss-page .letter {
    margin-bottom: 40px;
    padding: 0 150px;
}

.gloss-page .letter .name {
    font-weight: 500;
    line-height: 39px;
    font-size: 28px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #BDBDBD;
    margin-bottom: 15px;
}

.gloss-page .letter .item {
    padding: 15px 0;
}

.gloss-page .letter .item a:hover {
    color: #9B51E0;
}

.gloss-page .letter .item a:hover span {
    border: 1px solid #9B51E0;
}

.gloss-page .letter .item a {
    display: inline-block;
    font-weight: 500;
    font-size: 28px;
    color: #2F80ED;
    margin-bottom: 10px;
}

.gloss-page .letter .item a span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    width: 26px;
    height: 26px;
    border: 1px solid #2F80ED;
    border-radius: 50%;
    line-height: 14px;
    text-align: center;
}

.gloss-page .letter .item a span .fa {
    font-size: 16px;
}

.gloss-page .letter .item p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.videos-page .item {
    margin-bottom: 40px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.videos-page .item:hover .name {
    color: #9B51E0;
}

.videos-page .item .name {
    display: block;
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    color: #2F80ED;
    padding: 20px;
}

.videos-page .item a:hover .video {
    opacity: 0.7;
}

.videos-page .item .video {
    height: 260px;
    display: block;
    background-size: cover;
    background-position: center;
    position: relative;
}

.videos-page .item .video:after {
    content: '';
    display: inline-block;
    width: 66px;
    height: 66px;
    background: url('../img/play.png');
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -33px 0 0 -33px;
}

.videos-page .item .date {
    display: inline-block;
    line-height: 21px;
    font-size: 15px;
    color: #909090;
    position: absolute;
    right: 20px;
    top: 20px;
    background: #fff;
    border-radius: 30px;
    padding: 5px 10px;
}

.videos-page .item .content {
    padding: 20px;
}

.videos-page .item .content p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 20px;
}

.videos-page .item .content .time {
    line-height: 25px;
    font-size: 15px;
    color: #999;
}

.videos-page .item .content .time img {
    vertical-align: middle;
    margin: -2px 6px 0 0;
}

.videos-page .item .content .time span {
    color: #000;
}

.faq-page {
    padding: 0 150px 60px 150px;
}

.faq-page .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    text-align: center;
    padding: 60px 0;
}

.faq-page .item {
    margin-bottom: 25px;
    background: #F2F2F2;
}

.faq-page .item:hover,
.faq-page .item.active {
    background: #FFE684;
}

.faq-page .item.active .name:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-page .item .name {
    line-height: 28px;
    font-size: 20px;
    cursor: pointer;
    padding: 30px 100px 30px 30px;
    position: relative;
}

.faq-page .item .name:after {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    background: url('../img/faq.png');
    right: 30px;
    top: 26px;
}

.faq-page .item .text {
    padding: 10px 30px 30px 30px;
    display: none;
}

.faq-page .item .text {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 25px;
}

.faq-page .item .text p.med {
    font-weight: 500;
}

.faq-page .bottom-link {
    text-align: center;
    padding: 40px 0 20px 0;
}

.faq-page .bottom-link a {
    font-size: 16px;
    color: #2F80ED;
    /*border-bottom: 1px solid #2F80ED;*/
    text-decoration: underline;
}

.faq-page .bottom-link a:hover {
    text-decoration: none;
}

.faq-page .bottom-link img {
    margin-left: 8px;
}

.faq-form {
    background: #F2F2F2;
}

.faq-form .content {
    padding: 60px 294px;
    text-align: center;
}

.faq-form .content .block-name {
    font-weight: 500;
    line-height: 39px;
    font-size: 28px;
    margin-bottom: 40px;
}

.faq-form .content .block-name img {
    margin-bottom: 20px;
}

.faq-form .content form input[type='text'],
.faq-form .content form input[type='email'] {
    width: 100%;
    height: 48px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 0 15px;
}

.faq-form .content form textarea {
    width: 100%;
    height: 96px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
}

.faq-form .content form .agree {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.faq-form .content form .agree .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.faq-form .content form .agree .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    opacity: .5;
    font-weight: 400;
    margin-right: 30px;
}

.faq-form .content form .agree .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #BABABA;
    border-radius: 4px;
}

.faq-form .content form .agree .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.faq-form .content form .agree .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.faq-form .content form .agree .checkbox:checked + label {
    opacity: 1;
}

.faq-form .content form .agree .checkbox:checked + label:after {
    opacity: 1;
}

.faq-form .content form button {
    font-weight: 500;
    font-size: 18px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    height: 60px;
    border-radius: 30px;
}

.faq-form .content form button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}
.subscribe-description{
    font-weight: 500;
    font-size: 28px;
    line-height: 39px;
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 15px;
}
.subscribe-form img{
    width: 128px;
    height: 96px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}


.teachers-page {
    padding-bottom: 50px;
}

.teachers-page .item {
    margin-bottom: 40px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 25px;
    text-align: center;
    border: 4px solid transparent;
}

.teachers-page .item:hover {
    border: 4px solid #9B51E0;
}

.teachers-page .item:hover .name {
    color: #9B51E0;
}

.teachers-page .item:hover .photo img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: none;
    -webkit-filter: grayscale(0);

}

.teachers-page .item .photo {
    margin-bottom: 20px;
}

.teachers-page .item .photo img {
    width: 202px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    -webkit-filter: grayscale(1);
    border-radius: 50%;
}

.teachers-page .item .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 20px;
}

.teachers-page .item p {
    line-height: 22px;
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 20px;
}

.teachers-page .item .tag {
    line-height: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.4;
    background: rgba(223, 223, 223, 0.7);
    margin-bottom: 20px;
    padding: 10px;
}

.teachers-page .item .links a {
    display: block;
    line-height: 22px;
    font-size: 16px;
    color: #2F80ED;
    margin-bottom: 16px;
}

.teachers-page .item .links a:hover {
    color: #9B51E0;
}

.teachers-page .item .links a:last-child {
    margin-bottom: 0;
}

.teacher-page {
    padding: 0 150px 40px 150px;
}

.teacher-page .avatar {
    text-align: center;
    margin-bottom: 40px;
}

.teacher-page .avatar .thumb-container {
    display: inline-block;
    width: 360px;
    height: 360px;
    border-radius: 100%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.teacher-page .avatar img {

}

.teacher-page .avatar div {
    padding-top: 10px;
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.teacher-page ul {
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
}

.teacher-page ul li {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
    background: url('../img/li.png') no-repeat 0 4px;
}

.teacher-page ul li:before {
    display: none;
}

.teacher-page h2 {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 20px;
}

.teacher-page p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 30px;
}

.default-page .page-wrapper {
    padding: 0 150px 60px 150px;
}

.default-page h1 {
    margin: 0;
    position: relative;
}

.default-page h1 span {
    display: inline-block;
    position: static;
}

.title-wrapper {
    text-align: center;
    margin: 15px 0 50px 0;
}

.title-wrapper h1 {
    display: inline-block;
    position: relative;
}

.title-wrapper h1:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: -10px;
    background: linear-gradient(161.73deg, #4801ff 0%, #7918f2 47.98%, #ac32e4 100%);
    max-width: 740px;
    left: 0;
    right: 0;
    margin: 0 auto;
}


.about-top-text {
    padding: 0 150px 70px 150px;
}

.about-top-text .name {
    text-align: center;
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-top-text p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    margin-bottom: 20px;
    color: #161616;
    opacity: 0.8;
}

.about-facts {
    background: #F2F2F2;
    text-align: center;
}

.about-facts .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
}

.about-facts .item {
    margin-bottom: 60px;
}

.about-facts .item.item1 .icon {
    background: #DD81FF;
}

.about-facts .item.item2 .icon {
    background: #FF6F6F;
}

.about-facts .item.item3 .icon {
    background: #65C7FE;
}

.about-facts .item.item4 .icon {
    background: #4DD788;
}

.about-facts .item .icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    line-height: 96px;
    display: inline-block;
}

.about-facts .item .icon img {
    vertical-align: middle;
}

.about-facts .item .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    padding: 30px 0 20px;
}

.about-facts .item p {
    line-height: 22px;
    font-size: 16px;
    color: #161616;
    opacity: 0.6;
}

.about-page.silver {
    background: #F2F2F2;
    padding-bottom: 30px;
}

.about-page .how {
    text-align: center;
    padding-bottom: 30px;
}

.about-page .how .name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 80px 0 40px;
}

.about-page .how .select {
    cursor: pointer;
}

.about-page .how .select span {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    vertical-align: middle;
}

.about-page .how .select span.n {
    opacity: .5;
    margin-top: -2px;
}

.about-page .how .select span.n.active {
    opacity: 1;
}

.about-page .how .select span.checkbox {
    width: 58px;
    height: 30px;
    background: #BB6BD9;
    border-radius: 30px;
    margin: 0 12px;
    position: relative;
}

.about-page .how .select span.checkbox.active {
    background: #FECD0A;
}

.about-page .how .select span.checkbox.active:before {
    left: 30px;
}

.about-page .how .select span.checkbox:before {
    content: "";
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.about-page .text {
    padding: 0 150px 10px 150px;
}

.about-page .text.type-description {
    display: none;
}


.about-page .text.type-description.active {
    display: block;
}

.about-page .text.p_t {
    padding: 35px 150px 10px 150px;
}

.about-page .text h2 {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.about-page .text p {
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.about-page .photos .item {
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*
    height: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;*/
}

.about-page .photos .item img {
    width: 100%;
}

.about-page .photos .slick-prev,
.about-page .photos .slick-next {
    position: absolute;
    padding: 0;
    font-size: 0;
    z-index: 2;
    width: 32px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
}

.about-page .photos .slick-prev {
    left: 40px;
    background: url('../img/prev2.svg');
}

.about-page .photos .slick-next {
    right: 40px;
    background: url('../img/next2.svg');
}

.about-page .team {
    background: #F2F2F2;
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.about-page .team .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
}

.about-page .team .item {
    margin-bottom: 50px;
    display: inline-block;
}

.about-page .team .item img {
    max-width: 100%;
}

.about-page .team .item .name {
    font-weight: 500;
    line-height: 33px;
    font-size: 24px;
    padding: 20px 0 2px;
}

.about-page .team .item p {
    line-height: 22px;
    font-size: 16px;
    color: #333333;
    opacity: 0.6;
}

.about-page .team .ml {
    margin-left: 140px;
}

.about-page .team .bottom-link {
    padding: 25px 0 50px;
}

.about-page .team .bottom-link a {
    font-size: 16px;
    background: url('../img/plus.svg') no-repeat right;
    padding: 4px 40px 4px 0;
}

.about-page .team .bottom-link a:hover {
    background: url('../img/plus3.svg') no-repeat right;
    color: #A439D0;
}

.about-page .team .bottom-link a.to-all {
    background: url('../img/plus4.svg') no-repeat right;

}

.about-page .team .bottom-link a.to-all:hover {
    background: url('../img/plus5.svg') no-repeat right;
}


.about-page .gallery {
    padding-bottom: 20px;
}

.about-page .gallery .item {
    margin-bottom: 10px;
    border: 4px solid transparent;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.about-page .gallery .col {
    padding-right: 5px;
    padding-left: 5px;
}

.about-page .gallery .item:hover {
    border: 4px solid #9B51E0;
}

.about-page .gallery .item img {

    display: none;
}

.about-page .gallery .item a {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.about-page .advantages {
    background: #F2F2F2;
    padding-bottom: 10px;
}

.about-page .advantages .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
    text-align: center;
}

.about-page .advantages .content {
    padding: 0 150px;
}

.about-page .advantages ul {
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
}

.about-page .advantages ul li {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
    background: url('../img/li.png') no-repeat 0 4px;
}

.about-page .bottom-image {
    height: 400px;
    background: url('../img/about2.jpg') center;
    background-size: cover;
}

.course-top-info-bg {
    /*background: url('../img/course-top-info.png') no-repeat top center;*/
    padding-bottom: 50px;
}

.course-top-info {
    padding: 0 96px 40px 96px;
}

.course-top-info .name {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: rgba(1, 1, 1, 0.5);
    border-left: 4px solid #9B51E0;
    padding-left: 15px;
    margin-bottom: 30px;
}

.course-top-info .name h1 {
    display: block;
    color: #333;
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: left;
}

.course-top-info .but {
    display: inline-block;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    color: #333;
    font-size: 18px;
    /*margin-right: 25px;*/
    margin-right: 0;
}

.course-top-info .but:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.course-top-info .open-link {
    padding: 30px 0 0 25px;
}

.course-top-info .openn {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #2F80ED;
    opacity: 0.8;
    border-bottom: 1px dashed #2F80ED;
}

.course-top-info .openn:hover {
    color: #A439D0;
    border-bottom: 1px dashed #A439D0;
}

.course-top-info .video {
    margin: 40px 0 20px 0;
    padding-top: 30px;
    background: url('../img/browser_options.png') no-repeat 10px 11px #f6f6f6;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.course-top-info .video img {
    width: 100%;
}

.course-top-info .video .play:after {
    content: '';
    display: inline-block;
    width: 66px;
    height: 66px;
    background: url('../img/play.png');
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -11px 0 0 -33px;
}

.course-top-info .video .play:hover {
    opacity: 0.7;
}

.course-top-info .form {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0 20px;
}

.course-top-info .form .item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.course-top-info .form .item:last-child {
    border-bottom: 0;
}

.course-top-info .form .ask {
    position: absolute;
    width: 22px;
    height: 22px;
    background: url('../img/ask.svg');
    right: 0;
    top: 20px;
}

.course-top-info .form .ask:hover,
.course-top-info .form .ask:active {
    background: url('../img/ask2.svg');
}

.course-top-info .form .ask:hover .text,
.course-top-info .form .ask:active .text {
    display: block;
}

.course-top-info .form .ask .text {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #F2F2F2;
    border: 1px solid #DDDDDD;
    -webkit-box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 12px 34px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    width: 220px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    line-height: 18px;
    font-size: 13px;
    color: #000000;
    margin-top: 5px;
    display: none;
}

.course-top-info .form label {
    display: block;
    margin: 0 0 15px 0;
    font-weight: 400;
    line-height: 18px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
}

.course-top-info .form .bootstrap-select {
    width: 140px !important;
    border: 0 !important;
    border-bottom: 1px dashed #2F80ED !important;
    border-bottom: 1px dashed #2F80ED;
    position: relative;
    z-index: 5 !important;
}

.course-top-info .form .bootstrap-select.open {
    opacity: 1;
    border-bottom: 0 !important;
}

.course-top-info .form .bootstrap-select * {
    outline: none !important;
}

.course-top-info .form .bootstrap-select .caret {
    right: -12px !important;
}

.course-top-info .form .bootstrap-select button {
    font-weight: 300;
    line-height: 28px;
    font-size: 20px;
    color: #2F80ED;
    background: none;
    border: 0;
    padding: 0;
}

.course-top-info .form .bootstrap-select .dropdown-menu {
    z-index: 5;
    background: #fff !important;
    opacity: 1 !important;
    border-bottom: 0 !important;
}
.course-top-info .form .select,
.course-type-select .form .select  {
    cursor: pointer;
}

.course-type-select .form .row .select  {
    margin-top: 10px;
}
.course-top-info .form .select span,
.course-type-select .form .select span {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

.course-top-info .form .select span.n,
.course-type-select .form .select span.n {
    opacity: .5;
    margin-top: -2px;
}

.course-top-info .form .select span.n.active,
.course-type-select .form .select span.n.active {
    opacity: 1;
}

.course-top-info .form .select span.checkbox,
.course-type-select .form .select span.checkbox {
    width: 58px;
    height: 30px;
    background: #BB6BD9;
    border-radius: 30px;
    margin: 0 12px;
    position: relative;
}

.course-top-info .form .select span.checkbox.active,
.course-type-select .form .select span.checkbox.active {
    background: #FECD0A;
}

.course-top-info .form .select span.checkbox.active:before,
.course-type-select .form .select span.checkbox.active:before {
    left: 30px;
}

.course-top-info .form .select span.checkbox:before,
.course-type-select .form .select span.checkbox:before {
    content: "";
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}


.course-top-info .form .date {
    font-weight: 300;
    line-height: 28px;
    font-size: 20px;
}

.course-top-info .form .price {
    font-weight: 300;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
}

.course-top-info .form .price .fa {
    font-size: 18px;
    font-weight: 100;
    color: #333;
}

.course-top-info .form .price span {
    font-weight: 300;
    line-height: 22px;
    font-size: 16px;
    text-decoration: line-through;
    margin-right: 15px;
    color: #000000;
    opacity: 0.4;
}

.course-top-info .form .price span .fa {
    font-size: 14px;
}

.course-top-info .form .author:hover div img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: none;
    -webkit-filter: grayscale(0);
}

.course-top-info .form .author div {
    display: table-cell;
    vertical-align: middle;
    line-height: 18px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.4);
}

.course-top-info .form .author div img {
    margin-right: 10px;
    width: 58px;
    border-radius: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    -webkit-filter: grayscale(1);
}

.course-top-info .form .author div span {
    display: block;
    font-weight: 300;
    line-height: 28px;
    font-size: 20px;
    color: #000000;
}

.course-town {
    font-size: 16px;
}

.about-course {
    background: #F2F2F2;
    text-align: center;
}

.about-course .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
}

.about-course .item {
    margin-bottom: 60px;
}

.about-course .item.item1 .icon {
    background: #DD81FF;
}

.about-course .item.item2 .icon {
    background: #FF6F6F;
}

.about-course .item.item3 .icon {
    background: #65C7FE;
}

.about-course .item.item4 .icon {
    background: #4DD788;
}

.about-course .item.item5 .icon {
    background: #FFD554;
}

.about-course .item .icon {
    display: inline-block;
    width: 96px;
    height: 96px;
    line-height: 96px;
    border-radius: 50%;
}

.about-course .item .icon img {
    vertical-align: middle;
}

.about-course .item .image {
    height: 120px;
}

.about-course .item img {
    /*max-width: 100px;*/
    max-height: 100%;
}

.about-course .item .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    padding: 20px 0;
}

.about-course .item p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.about-course .ml {
    margin-left: 16%;
}

.course-slider {
    padding-bottom: 60px;
}

.course-slider.silver {
    background: #F2F2F2;
}

.course-slider .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
    text-align: center;
}

.course-slider .list {
    padding: 0 100px;
}

.course-slider .list .row {
    align-items: center;
    display: flex;
}

.course-slider .list img {
    width: 100%;
}

.course-slider .list .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    padding: 0px 0 20px 0;
}

.course-slider .list p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.course-slider .list .slick-prev,
.course-slider .list .slick-next {
    position: absolute;
    padding: 0;
    font-size: 0;
    z-index: 2;
    width: 32px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
    -webkit-transition: none;
    transition: none;
}

.course-slider .list .slick-prev {
    left: 30px;
    background: url('../img/prev.svg');
}

.course-slider .list .slick-prev:hover {
    background: url('../img/nexth.svg');
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.course-slider .list .slick-next {
    right: 30px;
    background: url('../img/next.svg');
}

.course-slider .list .slick-next:hover {
    background: url('../img/nexth.svg');
}

.course-result {
    background: #F2F2F2;
    text-align: center;
    padding-bottom: 30px;
}

.course-result.white {
    background: #fff;
}

.course-result .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
}

.course-result .item {
    margin-bottom: 40px;
}

.course-result .item .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 30px;
}

.course-result .item .image {
    height: 120px;
}

.course-result .item .image img {
    vertical-align: middle;
    max-height: 100%;
}

.course-result .item p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-top: 30px;
}

.course-program {
    background: #3D4A6E;
}

.course-program .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.course-program .list {
    padding-right: 196px;
    position: relative;
}

.course-program .list.pdf-only {
    padding-right: unset;
}

.course-program .list .item {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 25px;
}

.course-program .list .item:hover .name {
    background: #E5E5E5;
}

.course-program .list .item .name {
    cursor: pointer;
    height: 122px;
    overflow: hidden;
    position: relative;
}

.course-program .list .item .name.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.course-program .list .item .name:after {
    position: absolute;
    content: "";
    width: 32px;
    height: 32px;
    background: url('../img/faq.png');
    right: 30px;
    top: 40px;
}

.course-program .list .item .name .link {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 80px 0 120px;
}

.course-program .list .item .name .date {
    position: absolute;
    width: 136px;
    height: 136px;
    background: #9E2BE8;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    left: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: 700;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
}

.course-program .list .item .name .date span {
    display: block;
    font-size: 28px;
    padding-top: 30px;
}

.course-program .list .item .content {
    padding: 20px 65px 20px 114px;
    position: relative;
    display: none;
}

.course-program .list .item .content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    position: relative;
}

.course-program .list .item .content ul:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 9px;
    left: 19px;
    bottom: 0;
    /*background: #fff;*/
    z-index: 3;
}

.course-program .list .item .content ul li {
    line-height: 19px;
    font-size: 14px;
    margin-bottom: 50px;
    padding-left: 56px;
    min-height: 40px;
    position: relative;
}

.course-program .list .item .content ul li:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background: url('../img/li2.png');
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.course-program .list .item .content ul li:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100px;
    background: #EBD3F4;
    /*top: 0;*/
    left: 19px;
}

.course-program .list .item .content ul li:last-child {
    margin-bottom: 0;
}

.course-program .list .item .content .video {
    position: relative;
    margin: 40px 0 30px 55px;
    display: inline-block;
}

.course-program .list .item .content .video img {
    border-radius: 4px;
    width: 100%;
}

.course-program .list .item .content .video .play:after {
    content: '';
    display: inline-block;
    width: 66px;
    height: 66px;
    background: url('../img/play.png');
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -33px 0 0 -33px;
}

.course-program .list .item .content .video .play:hover {
    opacity: 0.7;
}

.course-program .list .item .content .author {
    width: 216px;
    background: #EEEEEE;
    border-radius: 4px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 12px;
    cursor: pointer;
    float: right;
}

.course-program .list .item .content .author:hover {
    -webkit-box-shadow: rgba(1, 1, 1, 0.2) 0 0 20px;
    box-shadow: rgba(1, 1, 1, 0.2) 0 0 20px;
    color: #333;
}

.course-program .list .item .content .author div {
    display: table-cell;
    vertical-align: middle;
    font-size: 12px;
}

.course-program .list .item .content .author div img {
    margin-right: 10px;
    width: 58px;
    border-radius: 50%;
}

.course-program .list .item .content .author div .n {
    display: block;
    font-weight: 500;
    line-height: 22px;
    font-size: 16px;
    color: #9B51E0;
}

.course-program .list .item .content .author div p {
    line-height: 18px;
    font-size: 13px;
    color: #333333;
    opacity: 0.6;
}

.course-program .list .pdf {
    position: absolute;
    right: 0;
    top: 0;
    width: 160px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #FECD0A;
    border-radius: 4px;
    text-align: center;
    padding: 20px 10px 30px 10px;
}

.course-program .list .pdf.pdf-only {
    position: relative;
    margin: 0 auto;
}

.course-program .list .pdf:hover {
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
}

.course-program .list .pdf .link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.course-program .list .pdf .icon {
    width: 132px;
    height: 132px;
    border: 1px solid #000000;
    line-height: 132px;
    border-radius: 50%;
    display: inline-block;
}

.course-program .list .pdf .icon img {
    vertical-align: middle;
}

.course-program .list .pdf a {
    display: block;
    line-height: 24px;
    font-size: 16px;
    padding: 20px 0 2px;
}

.course-program .list .pdf p {
    line-height: 24px;
    font-size: 16px;
    color: #000000;
    opacity: 0.4;
}

.course-program .bottom-link {
    padding: 40px 0 60px;
    text-align: center;
}

.course-program .bottom-link a {
    font-size: 20px;
    color: #fff;
}

.course-program .bottom-link a:hover span {
    border-bottom: 1px solid transparent;
}

.course-program .bottom-link a span {
    border-bottom: 1px dashed #fff;
}

.course-program .bottom-link img {
    margin-left: 6px;
}

.course-help {
    text-align: center;
    padding-bottom: 30px;
}

.course-help .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0;
}

.course-help .item {
    margin-bottom: 40px;
}

.course-help .item .icon {
    display: inline-block;
    width: 96px;
    height: 96px;
    line-height: 96px;
    border-radius: 50%;
    background: #DD81FF;
}

.course-help .item .icon img {
    vertical-align: middle;
}

.course-help .item .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    padding: 20px 0;
}

.course-help .item p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.course-teachers {
    background: #F2F2F2;
    text-align: center;
}

.course-teachers .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0 40px;
}

.course-teachers .item {
    padding: 0 20px;
    margin-top: 20px;
    display: none;

}

.course-teachers .item:hover img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: none;
    -webkit-filter: grayscale(0);
}

.course-teachers .item:hover .name a {
    color: #A439D0;
}

.course-teachers .item img {
    width: 200px;
    display: inline-block;
    border-radius: 50%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
    -webkit-filter: grayscale(1);
}

.course-teachers .item .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    padding: 20px 0;
}

.course-teachers .item p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    padding-right: 30px;
    padding-left: 30px;
}

.course-teachers .slick-prev,
.course-teachers .slick-next {
    position: absolute;
    padding: 0;
    font-size: 0;
    z-index: 2;
    width: 32px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
    -webkit-transition: none;
    transition: none;
}

.course-teachers .slick-prev {
    left: 30px;
    background: url('../img/prev.svg');
}

.course-teachers .slick-prev:hover {
    background: url('../img/nexth.svg');
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.course-teachers .slick-next {
    right: 30px;
    background: url('../img/next.svg');
}

.course-teachers .slick-next:hover {
    background: url('../img/nexth.svg');
}

.slick-disabled {
    opacity: 0.2;
    cursor: default;
}


.course-teachers .bottom-link {
    padding: 80px 0 60px;
}

.course-teachers .bottom-link a {
    font-size: 16px;
    color: #2F80ED;
    text-decoration: underline;
    /*border-bottom: 1px solid #2F80ED;*/
}

.course-teachers .bottom-link a:hover {
    /*border-bottom: 1px solid transparent;*/
    text-decoration: none;
    /*color: #A439D0;*/
}

.course-teachers .bottom-link img {
    margin-left: 8px;
}

.course-resume {
    background: #3D4A6E;
    padding-bottom: 160px;
}

.course-resume .block-name {
    text-align: center;
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    color: #FFFFFF;
    padding: 60px 0 15px;
}

.course-resume .top-text {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #FFFFFF;
    opacity: 0.5;
}

.course-resume .resume {
    background: #fff;
    border-left: 12px solid #FECD0A;
}

.course-resume .resume .name {
    border-bottom: rgba(196, 196, 196, 0.4);
    padding: 20px 86px;
    border-bottom: 1px solid rgba(196, 196, 196, 0.4);
}

.course-resume .resume .name .n div {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    color: #999;
}

.course-resume .resume .name .n div img {
    margin-right: 20px;
}

.course-resume .resume .name .n div span {
    display: block;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.course-resume .resume .name .price {
    font-size: 16px;
    color: #999;
    padding-top: 5px;
}

.course-resume .resume .name .price span {
    display: block;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.course-resume .resume .content {
    padding: 30px 86px;
}

.course-resume .resume .content .n,
.course-resume .resume .content h2 {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 20px;
}

.course-resume .resume .content .n.b {
    border-bottom: 1px solid rgba(196, 196, 196, 0.4);
    padding-bottom: 10px;
}

.course-resume .resume .content ul {
    padding: 0;
    margin: 20px 0 40px 0;
    list-style: none;
}

.course-resume .resume .content ul:after {
    content: '';
    display: block;
    clear: both;
}

.course-resume .resume .content ul li {
    font-weight: 300;
    line-height: 22px;
    font-size: 16px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 10px;
    width: 45%;
    margin-right: 4%;
    display: inline-block;
    float: left;
}

.course-resume .resume .content ul li:last-child {

}

.course-resume .resume .content ul li:before {
    content: '•';
    display: inline;
    color: #9B51E0;
    margin-right: 5px;
}

.course-resume .resume .content .tech-item {
    height: 100px;
    line-height: 100px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.course-resume .resume .content .tech-item.active {
    border: 1px solid #9B51E0;
    -webkit-box-shadow: rgba(1, 1, 1, 0.4) 0 0 20px;
    box-shadow: rgba(1, 1, 1, 0.4) 0 0 20px;
}

.course-resume .resume .content .tech-item img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.course-resume .resume .content p {
    font-weight: 300;
    line-height: 22px;
    font-size: 16px;
    color: #000000;
    opacity: 0.8;
}

.course-resume .resume .content .doc-img img {
    width: 100px;
}

.course-resume .resume .content .img:hover {
    -webkit-box-shadow: rgba(1, 1, 1, 0.3) 0 0 20px;
    box-shadow: rgba(1, 1, 1, 0.3) 0 0 20px;
}

.course-resume .resume .content a.button {
    display: inline-block;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 30px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    float: right;
    margin-top: 50px;
}

.course-resume .resume .content a.button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.course-form.in_popup .container {
    padding: 0;
}

.course-form.in_popup .form {
    border: 0;
}

.course-form .block-name {
    text-align: center;
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    padding: 60px 0 15px;
}

.course-form .top-text {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
}

.course-form .top-text a {
    color: #2F80ED;
    border-bottom: 1px dashed #2F80ED;
}

.course-form .form {
    background: #F5F5F5;
    border: 1px solid #C9C9C9;
    border-radius: 4px;
    overflow: hidden;
}

.course-form .form .left-block {
    float: left;
    background: #BB6BD9;
    width: 40%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px;
    text-align: center;
}

.course-form .form .left-block .select {
    background: #fff;
    border-radius: 4px;
    padding: 30px 0;
    position: relative;
    cursor: pointer;
    margin-bottom: 50px;
}

.course-form .form .left-block .select .item {
    width: 50%;
    opacity: .5;
}

.course-form .form .left-block .select .item.active {
    opacity: 1;
}

.course-form .form .left-block .select .item.active .badge {
    background: #eb5757;
}

.course-form .form .left-block .select .item .image {
    height: 32px;
    line-height: 32px;
}

.course-form .form .left-block .select .item .image img {
    vertical-align: middle;
}

.course-form .form .left-block .select .item .badge {
    font-weight: 400;
    text-transform: uppercase;
    padding: 2px 10px;
    display: inline-block;
    margin: 10px 0 5px;
}

.course-form .form .left-block .select .item span {
    display: block;
    font-weight: 500;
    padding: 10px 0 5px;
    font-size: 20px;
}

.course-form .form .left-block .select .item p {
    line-height: 18px;
    font-size: 13px;
    color: #333333;
    opacity: 0.6;
}

.course-form .form .left-block .select .checkbox {
    width: 58px;
    height: 30px;
    background: #BB6BD9;
    border-radius: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.course-form .form .left-block .select .checkbox.active {
    background: #FECD0A;
}

.course-form .form .left-block .select .checkbox.active:before {
    left: 30px;
}

.course-form .form .left-block .select .checkbox:before {
    content: "";
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.course-form .form .left-block .old {
    line-height: 33px;
    font-size: 24px;
    text-decoration: line-through;
    color: #FFFFFF;
    opacity: 0.6;
}

.course-form .form .left-block .old .fa {
    font-size: 21px;
}

.course-form .form .left-block .price {
    font-weight: 500;
    line-height: 30px;
    font-size: 18px;
    color: #FFFFFF;
    margin: 30px 0 35px;
}

.course-form .form .left-block .price span {
    font-size: 48px;
}

.course-form .form .left-block .price .fa {
    font-size: 43px;
    margin-left: 5px;
}

.course-form .form .left-block .timer {
    margin-bottom: 45px;
}

.course-form .form .left-block .timer p {
    line-height: 35px;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.course-form .form .left-block .timer .list .item {
    display: inline-block;
    margin: 0 10px;
    font-size: 13px;
    position: relative;
}

.course-form .form .left-block .timer .list .item:last-child:after {
    display: none;
}

.course-form .form .left-block .timer .list .item:after {
    content: ":";
    position: absolute;
    font-size: 18px;
    color: #FFFFFF;
    opacity: 0.6;
    right: -14px;
    top: 14px;
}

.course-form .form .left-block .timer .list .item span {
    display: block;
    margin: 0 auto 10px auto;
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 24px;
}

.course-form .form .left-block .bottom-link a {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #FFFFFF;
    border-bottom: 1px dashed #fff;
}

.course-form .form .left-block .bottom-link a:hover {
    border-bottom: 0;
}

.course-form .form .left-block .promo {
    display: none;
}

.course-form .form .left-block .promo input.promo-code {
    width: 66%;
    height: 48px;
    border-radius: 4px;
    border: 0;
    font-size: 16px;
    padding: 0 15px;
    margin-right: 10px;
}

.course-form .form .left-block .promo input.promo-code.disabled {
    width: 100%;
    background: transparent;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
}

.course-form .promo-code-summ {
    color: #fff;
}

.course-form .promo-code-error {
    text-align: left;
    color: #fff;
}

.course-form .form .left-block .promo button {
    width: 30%;
    height: 48px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    font-size: 16px;
}

.course-form .form .left-block .promo button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.course-form .form .left-block .promo p {
    width: 100%;
    margin-top: 15px;
    font-weight: 300;
    line-height: 21px;
    font-size: 15px;
    color: #FFFFFF;
    text-align: left;
}

.course-form .form .right-block {
    width: 60%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px;
}

.course-form .form .right-block p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 10px;
    text-align: left;
}

.course-form .form .right-block select {
    width: 100%;
    height: 48px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    padding: 0 12px;
    margin-bottom: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none !important;
    background: #ffffff url('../img/select3.png') no-repeat right;
}

.course-form .form .right-block .bootstrap-select {
    width: 100% !important;
    margin-bottom: 30px;
}

.course-form .form .right-block .bootstrap-select .btn-default {
    width: 100% !important;
    border: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 48px;
    font-size: 16px;
    padding: 0 15px;
    outline: none !important;
    background: #ffffff url('../img/select3.png') no-repeat right;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
}

.course-form .form .right-block .bootstrap-select .btn-default .bs-caret {
    display: none;
}

.course-form .form .right-block input[type='text'],
.course-form .form .right-block input[type='email'] {
    width: 100%;
    height: 48px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.course-form .form .right-block .select {
    margin-bottom: 30px;
    text-align: left;
}

.course-form .form .right-block .select .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.course-form .form .right-block .select .checkbox + label {
    position: relative;
    padding: 0 0 0 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    margin-right: 30px;
}

.course-form .form .right-block .select .checkbox + label:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #DDDDDD;
    /*border-radius: 50%;*/
}

.course-form .form .right-block .select .checkbox + label:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    width: 10px;
    height: 10px;
    background: #333;
    /*border-radius: 50%;*/
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.course-form .form .right-block .select .checkbox:checked + label {
    opacity: 1;
}

.course-form .form .right-block .select .checkbox:checked + label:after {
    opacity: 1;
}

.course-form .form .right-block .upload {
    text-align: left;
    margin: -20px 0 30px;
}

.course-form .form .right-block .upload a {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #2F80ED;
    opacity: 0.8;
}

.course-form .form .right-block .upload a img {
    margin-right: 6px;
}

.course-form .form .right-block textarea {
    width: 100%;
    height: 96px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 30px;
}

.course-form .form .right-block .button {
    text-align: center;
    margin-bottom: 30px;
}

.course-form .form .right-block .button button {
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 294px;
    height: 70px;
    border-radius: 40px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.course-form .form .right-block .button button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.course-form .form .right-block .agree {
    position: relative;
    margin-right: -10px;
    text-align: left;
}

.course-form .form .right-block .agree .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.course-form .form .right-block .agree .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    opacity: .5;
    font-weight: 400;
    margin-right: 30px;
}

.course-form .form .right-block .agree .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #BABABA;
    border-radius: 4px;
}

.course-form .form .right-block .agree .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.course-form .form .right-block .agree .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.course-form .form .right-block .agree .checkbox:checked + label {
    opacity: 1;
}

.course-form .form .right-block .agree .checkbox:checked + label:after {
    opacity: 1;
}

.agree label a {
    color: #2F80ED;
    text-decoration: underline;
}

.agree label a:hover {
    text-decoration: none;
}

.course-bottom-image {
    text-align: center;
    padding-top: 90px;
}

.course-bottom-image .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.course-bottom-image p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    opacity: 0.5;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.course-bottom-image button {
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    height: 60px;
    border-radius: 30px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.course-bottom-image button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.course-bottom-image img {
    width: 100%;
    margin-top: -100px;
}

.course-popup .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px !important;
}

.course-popup p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #8E3CCB;
    text-align: center;
    margin-bottom: 20px;
}

.course-popup table {
    width: 100%;
    border: 1px solid rgba(231, 202, 243, 0.7);
}

.course-popup table thead tr td {
    line-height: 28px;
    font-size: 20px;
    background: #FFE684;
    padding: 10px;
}

.course-popup table tbody tr:nth-child(2n-1) {
    background: #F2F2F2;
}

.course-popup table tbody tr:first-child td {
    font-weight: 500;
    line-height: 21px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    opacity: 1;
}

.course-popup table tbody tr td {
    border: 1px solid rgba(231, 202, 243, 0.7);
    padding: 20px;
    text-align: left;
    line-height: 22px;
    font-size: 16px;
    opacity: .6;
}

.course-popup table tbody tr td:first-child {
    opacity: 1;
}

.webinar-recommend-items {
	padding-top: 40px;
}

.webinar-form {
    background: #BB6BD9;
}

.webinar-form .block-name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    padding: 60px 0 40px;
}

.webinar-form form {
    width: 552px;
    margin: 0 auto;
    padding-bottom: 40px;
    text-align: center;
}

.webinar-form form input[type='text'],
.webinar-form form input[type='email'] {
    width: 100%;
    height: 48px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 0 15px;
}

.webinar-form form textarea {
    width: 100%;
    height: 96px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
}

.webinar-form form .agree {
    text-align: left;
    margin-top: 40px;
    position: relative;
    padding-left: 36px;
}

.webinar-form form .agree a {
    color: #fff;
}

.webinar-form form .agree .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.webinar-form form .agree .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-right: 30px;
}

.webinar-form form .agree .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #fff;
    border-radius: 4px;
}

.webinar-form form .agree .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.webinar-form form .agree .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.webinar-form form .agree .checkbox:checked + label {
    opacity: 1;
}

.webinar-form form .agree .checkbox:checked + label:after {
    opacity: 1;
}

.webinar-form form button {
    font-weight: 500;
    font-size: 18px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 294px;
    height: 70px;
    border-radius: 40px;
    margin-top: 20px;
}

.webinar-form form button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.docs-page {
    padding-bottom: 40px;
}

.docs-page p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    padding: 0 140px 65px 140px;
}

.docs-page .item {
    margin-bottom: 50px;
    text-align: center;
}

.docs-page .item img {
    max-width: 100%;
    margin-bottom: 15px;
}

.docs-page .item a {
    display: block;
    font-weight: 500;
    line-height: 25px;
    font-size: 18px;
    padding: 0 30px;
    margin-top: 25px;
}

.reviews-form {
    background: #F2F2F2;
    padding-bottom: 65px;
}

.reviews-form.teacher-p {
    display: none;
}

.reviews-form .block-name {
    font-weight: 500;
    line-height: 39px;
    font-size: 28px;
    text-align: center;
    padding: 60px 0 50px;
}

.reviews-form form {
    width: 552px;
    margin: 0 auto;
}

.reviews-form p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 10px;
}

.reviews-form p.soc img {
    width: 48px;
    margin-left: 15px;
}

.reviews-form input[type='text'],
.reviews-form input[type='email'] {
    width: 100%;
    height: 48px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 0 15px;
}

.reviews-form .bootstrap-select {
    width: 100% !important;
    margin-bottom: 25px;
}

.reviews-form .bootstrap-select .btn-default {
    width: 100% !important;
    border: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 48px;
    font-size: 16px;
    padding: 0 15px;
    outline: none !important;
    background: #ffffff url('../img/select3.png') no-repeat right;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
}

.reviews-form .bootstrap-select .btn-default .bs-caret {
    display: none;
}

.reviews-form textarea {
    width: 100%;
    height: 96px;
    margin-bottom: 25px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
}

.reviews-form .agree {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.reviews-form .agree .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.reviews-form .agree .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    opacity: .5;
    font-weight: 400;
    margin-right: 30px;
}

.reviews-form .agree .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #BABABA;
    border-radius: 4px;
}

.reviews-form .agree .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.reviews-form .agree .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.reviews-form .agree .checkbox:checked + label {
    opacity: 1;
}

.reviews-form .agree .checkbox:checked + label:after {
    opacity: 1;
}

.reviews-form .but {
    font-weight: 500;
    font-size: 18px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 250px;
    height: 60px;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
}

.reviews-form .but:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.partners-page {
    padding: 0 150px;
}

.partners-page .item {
    margin-bottom: 50px;
}

.partners-page .item .image {
    text-align: center;
}

.partners-page .item .image a {
    display: inline-block;
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #2F80ED;
    opacity: 0.8;
}

.partners-page .item .image a:hover {
    color: #A439D0;
}

.partners-page .item .content {
    padding-top: 10px;
}

.partners-page .item .content .name {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 10px;
}

.partners-page .item .content p {
    line-height: 22px;
    font-size: 16px;
    opacity: 0.6;
}

.contacts-page .item {
    margin-bottom: 20px;
}

.contacts-page .item div {
    display: table-cell;
    vertical-align: top;
}

.contacts-page .item div img {
    margin-right: 20px;
}

.contacts-page .item div .adress {
    line-height: 25px;
    font-size: 18px;
}

.contacts-page .item div .adress a {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.contacts-page .item div .adress a img {
    vertical-align: middle;
    width: 20px;
    margin-left: 5px;
}

.contacts-page .item div .phone {
    line-height: 25px;
    font-size: 18px;
}

.contacts-page .item div .phone a:hover,
.contacts-page .item div .phone a {
    color: #333;
}

.contacts-page .item div a {
    line-height: 25px;
    font-size: 18px;
    color: #2F80ED;
}

.contacts-page .item div a:hover {
    color: #A439D0;
}

.contacts-page .social {
    padding-top: 30px;
}

.contacts-page .social a {
    display: inline-block;
    margin-right: 15px;
}

.contacts-page .social a img {
    display: inline-block;
}

.contacts-page .social a:hover {
    opacity: 0.7;
}

.contacts-page .social p {
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
}

.contacts-page .map {
    height: 400px;

    margin-bottom: 80px;
}

/*
.contacts-page .map .ymaps-2-1-68-svg-icon {
  background: url('../img/map.png');
  width: 90px!important;
  height: 98px!important;
  margin: -50px 0 0 -45px;
}
*/
.contacts-page .how .name {
    font-weight: 500;
    line-height: 44px;
    font-size: 32px;
    margin-bottom: 30px;
}

.contacts-page .how .select {
    cursor: pointer;
    margin-bottom: 20px;
}

.contacts-page .how .select span {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    vertical-align: middle;
}

.contacts-page .how .select span.n {
    opacity: .5;
    margin-top: -2px;
}

.contacts-page .how .select span.n.active {
    opacity: 1;
}

.contacts-page .how .select span.checkbox {
    width: 58px;
    height: 30px;
    background: #BB6BD9;
    border-radius: 30px;
    margin: 0 12px;
    position: relative;
}

.contacts-page .how .select span.checkbox.active {
    background: #FECD0A;
}

.contacts-page .how .select span.checkbox.active:before {
    left: 30px;
}

.contacts-page .how .select span.checkbox:before {
    content: "";
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contacts-page .how p {
    font-weight: 300;
    line-height: 29px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.contacts-page .how p {
    display: none;
}

.contacts-page .how p.active {
    display: block;
}

.contacts-page .video {
    margin-bottom: 100px;
}

.contacts-page .video .v {
    position: relative;
    margin-bottom: 30px;
}

.contacts-page .video .v:after {
    content: '';
    display: inline-block;
    width: 66px;
    height: 66px;
    background: url('../img/play.png');
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -33px 0 0 -33px;
}

.contacts-page .video .play:hover .v img {
    opacity: 0.7;
}

.contacts-page .video .v img {
    max-width: 100%;
}

.contacts-page .video a {
    /*line-height: 22px;
  font-size: 16px;
  color: #2F80ED;
  */
}

.contacts-page .video a:hover {
    color: #A439D0;
}

.contacts-page .video a img {
    vertical-align: middle;
    margin-right: 6px;
}

.contacts-page .contacts-video-block.invisible {
    display: none;
}

.contacts-page .video-section {
    padding-bottom: 30px;
}

.error-page-top-text {
    padding: 0 150px 40px 150px;
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    color: #161616;
    opacity: 0.8;
}

.error-page {
    background: #FEE188;
}

.error-page .container {
    padding: 20px 0 60px;
    position: relative;
}

.error-page img {
    position: absolute;
    left: 0px;
    bottom: 0;
}

.error-page .content {
    text-align: center;
    padding: 0 170px 0 48%;
}

.error-page .content .name {
    font-weight: 500;
    line-height: normal;
    font-size: 240px;
    color: #FFFFFF;
}

.error-page .content p {
    font-weight: 500;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 30px;
}

.error-page .content .button {
    background: #BB6BD9;
    display: inline-block;
    width: 250px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.error-page .content .button:hover {
    -webkit-box-shadow: 0px 15px 30px #D3A92B;
    box-shadow: 0px 15px 30px #D3A92B;
}

.subscribe-page {
    text-align: center;
    padding-bottom: 30px;
}

.subscribe-page .name {
    font-weight: 500;
    line-height: 39px;
    font-size: 28px;
    margin-bottom: 20px;
}

.subscribe-page p {
    font-weight: 300;
    line-height: 25px;
    font-size: 18px;
    text-align: center;
    color: #161616;
    opacity: 0.8;
    margin-bottom: 30px;
}

.online-test-block {

}

.online-test-block input[type='text'],
.online-test-block input[type='email'] {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 25px;
}

.online-test-block .agree {
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}

.online-test-block .agree .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.online-test-block .agree .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    opacity: .5;
    font-weight: 400;
    margin-right: 30px;
}

.online-test-block .agree .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #BABABA;
    border-radius: 4px;
}

.online-test-block .agree .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.online-test-block .agree .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.online-test-block .agree .checkbox:checked + label {
    opacity: 1;
}

.online-test-block .agree .checkbox:checked + label:after {
    opacity: 1;
}



.online-test-block .button {
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 294px;
    height: 70px;
    border-radius: 40px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    display: inline-block;
}

.online-test-block .button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.form-block {
    margin-top: 20px;
}

.form-block input[type='text'],
.form-block input[type='email'] {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 25px;
}

.form-block textarea {
    width: 100%;
    height: 96px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    padding: 0 15px;
    margin-bottom: 25px;
}

.form-block .agree {
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}

.form-block .agree .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.form-block .agree .checkbox + label {
    position: relative;
    padding: 0 0 0 27px;
    cursor: pointer;
    font-size: 16px;
    opacity: .5;
    font-weight: 400;
    margin-right: 30px;
}

.form-block .agree .checkbox + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #BABABA;
    border-radius: 4px;
}

.form-block .agree .checkbox + label:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 6px;
    background: url('../img/radio.png');
    opacity: 0;
    -webkit-transition: .2s;
    transition: .2s;
}

.form-block .agree .checkbox:checked + label:before {
    background: #FECD0A;
    border: 0;
}

.form-block .agree .checkbox:checked + label {
    opacity: 1;
}

.form-block .agree .checkbox:checked + label:after {
    opacity: 1;
}



.form-block .button {
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    width: 294px;
    height: 70px;
    border-radius: 40px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    display: inline-block;
}

.form-block .button:hover {
    background: -webkit-gradient(linear, left bottom, left top, from(#ff8a01), to(rgba(255, 255, 255, 0))), #fecd0a;
    background: linear-gradient(0deg, #ff8a01 0%, rgba(255, 255, 255, 0) 100%), #fecd0a;
}

.sitemap-submenu {
    padding-left: 25px;
}

.youtube-block
{
    cursor: pointer;
    background: #eaeaea;
    position: relative;
    overflow: hidden;
    display: block;
}

.youtube-block.contacts-video {
    background: transparent;
}

.youtube-block:after
{
    content: '';
    display: inline-block;
    position: absolute;
    background: url('../images/play.png') no-repeat left top;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 80px;
    height: 80px;
    text-align: center;
}

.youtube-block.no-play:after {
    display: none;
}

.youtube-block.played
{
    background: transparent;
}

.youtube-block.played:after
{
    display: none;
}

.youtube-block img
{
    opacity: 0.7;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.youtube-block:hover img
{
    opacity: 1;
}

.youtube-block iframe
{
    border: none;
}


.only_tablet {
    display: none;
}

.only_mobile {
    display: none;
}

.slick-slide, .slick-slide *{ outline: none !important; } /*Hide blue border around item on click*/



#order-success-result .window.success{
    padding: 0px 0px 50px 0px;
}
#order-success-result .close{
    color: white;
    filter: brightness(0) invert(1);
}
#order-success-result .block-name{
    padding: 20px 15px 20px 15px;
    background-color: #BB6BD9;
    color: white;
    text-align: left;
    margin-bottom: 0;
}
#order-success-result .block-desc{
    padding: 30px;
    text-align: left;
    font-size: 18px;
}
#order-success-result .block-desc-item{
    padding-bottom: 3px;
}
#order-success-result .title{
    color: #777;
    padding-right: 10px;
}
#order-success-result .title-text {
    font-weight: 600;
    padding: 10px;
    margin-top: 20px;
}
#order-success-result a.title-text {
    display: inline-block;
    border-bottom: 1px dashed #2F80ED;
    font-weight: 100;
    padding: 0;
    margin-top: 0px;
    color: #2F80ED;
}
#order-success-result .kurs-format {
    padding-left: 22px;
}
#order-success-result form{
    padding: 20px;
}
#order-success-result .block-bottom{
    padding: 20px 15px 20px 15px;
    font-size: 18px;
    display: inline-block;
}
#order-success-result .sub-title{
    color: #777;
    font-size: 14px;
}
#order-success-result .form-social {
    padding-top: 30px;
    display: none;
}
#order-success-result .block-social-callback img {
    padding: 0px 5px 2px 5px;
    width: 50px;
}
#order-success-result .block-social-callback a.active img {
    border-bottom: 2px solid #BB6BD9;
}
#order-success-result .block-social-callback input {
    width: 261px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #DDDDDD;
    font-size: 16px;
    padding: 0 15px;
    margin-right: 10px;
    font-weight: 700;
}
#order-success-result .block-social-callback button {
    width: 121px;
    height: 48px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    font-size: 16px;
}
#order-success-result form {
    padding-top: 20px;
}
#order-success-result .checkbox.agree {
    display: inline-block;
    opacity: 1;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    bottom: -4px;
}
#order-success-result label {
    font-size: 15px;
    margin-bottom: 20px;
}
#order-success-result label a {
    color: #2f80ed;
    text-decoration: underline;
}
#order-success-result label a:hover {
    color: #BB6BD9;
    text-decoration: underline;
}
#order-success-form button {
    width: 250px;
    height: 60px;
    background: #FECD0A;
    -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
    font-weight: 500;
    font-size: 18px;
    border-radius: 30px;
}
#order-success-result .prop {
    color: #BB6BD9;
    font-size: 18px;
    padding-top: 30px;
}
#order-success-result .block-desc .block-desc-item .title,
#order-success-result .block-desc .block-desc-item .title-text {
    display: table-cell;
}
#order-success-result .ajax_error{
    color: red;
}
#order-success-result .oferta-modal{
    width: 100%;
    height: 250px;
    padding: 30px 10px;
}
.block-succes-result{
    display: none;
}
.block-succes-result .sub-title{
    padding: 10px;
}
.block-succes-result .sub-title p{
    padding-top: 10px;
    font-size: 16px;
}
.block-succes-result .title-text {
    margin-top: 0px;
    font-size: 20px;
    color: #BB6BD9;
}



@media (max-width: 1200px) {
    .header ul.top-level > li > a {
        padding: 28px 16px;
    }

    .index-top-form form {
        padding: 0;
    }

    .index-top-form form .content select {
        width: 38%;
    }

    .index-top-form form .name.n1 {
        width: 38%;
    }

    .index-images-block .item,
    .index-images-block .item.other {
        margin: 0 0 80px 0;
    }

    .index-ways .ml {
        margin-left: 0;
    }

    .blog-item-big .name {
        line-height: 28px;
        font-size: 20px;
    }

    .article-top-image .text {
        padding: 0 80px;
    }

    .article-page {
        padding: 15px 0px;
    }

    .create-video-block .content {
        padding: 0;
    }

    .article-share .content {
        padding: 0;
    }

    .gloss-page .letters {
        padding: 0 25px 20px 25px;
    }

    .gloss-page .letter {
        padding: 0 60px;
    }

    .faq-page {
        padding: 0 0 60px 0;
    }

    .faq-form .content {
        padding: 60px 85px;
    }

    .teacher-page {
        padding: 0 60px 50px 60px;
    }

    .default-page .page-wrapper {
        padding: 0 65px 80px 65px;
    }

    .about-top-text {
        padding: 0 65px 80px 65px;
    }

    .about-page .text {
        padding: 0 65px 10px 65px;
    }

    .about-page .team .ml {
        margin-left: 0;
    }

    .about-page .text.p_t {
        padding: 50px 65px 10px 65px;
    }

    .about-page .advantages .content {
        padding: 0 65px;
    }

    .course-top-info {
        padding: 0 0 40px 0;
    }

    .course-slider .list .name {
        padding-top: 0;
    }

    .course-resume .resume .content {
        padding: 30px 56px;
    }

    .course-resume .resume .name {
        padding: 20px 56px;
    }

    .course-form .form .left-block,
    .course-form .form .right-block {
        width: 100%;
    }

    .partners-page {
        padding: 0;
    }

    .popup .window.course-f {
        width: 960px;
    }

    /*
    .header ul.course-page-menu li {
        margin-right: 20px;
    }
    */

    .header ul.course-page-menu li a {
        padding: 16px 10px;
    }

    .price-page .item .name {
        font-size: 16px;
        line-height: 22px;
        padding: 20px 40px 10px 40px;
    }

    .price-page .item .content p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .price-page .item .content .price span {
        font-size: 32px;
    }

    .blog-item-big {
        padding: 0;
    }

    .blog-item-big .image {
        width: 100%;
        position: relative;
        height: 200px;
    }

    .blog-item-big .content {
        padding: 24px 20px 30px 20px;
        margin-top: -4px;
        border: 4px solid transparent;
    }

    .blog-item-big:hover .content {
        border-left: 4px solid #9b51e0;
    }
}

@media (max-width: 991px) {
    .header ul {
        display: none;
    }

    .header ul.course-page-menu {
        display: block;
    }

    .header ul.course-page-menu li a {
        padding: 16px 5px;
        font-size: 14px;
    }

    /*
    .header ul.course-page-menu li {
        margin-right: 10px;
    }

    .header ul.course-page-menu li a {
        font-size: 14px;
    }
    */

    .header .button {
        width: 120px;
    }

    .header .menu-button {
        display: block;
    }

    .header#menu .logo {
        padding-left: 70px;
    }

    .header .logo {
        padding-left: 100px;
    }

    .index-top-form form .content .bootstrap-select {
        width: 28% !important;
    }

    .index-top-form form .content .select {
        width: 32%;
    }

    .index-top-form form .name.n1 {
        width: 22%;
    }

    .index-top-form form .name.n2 {
        width: 24%;
    }

    .index-top-form form .name.n3 {
        width: 32%;
    }

    .index-top-form form .content .level {
        border-left: 1px solid #e6e6e6;
        border-right: 1px solid #e6e6e6;
        padding: 18px 10px 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .reviews-page .item {
        padding: 35px 85px;
    }

    .reviews-page .item .content {
        margin-left: 185px;
        padding-top: 0;
    }

    .footer .social {
        position: absolute;
        top: 90px;
        left: 68%;
    }

    .footer .container {
        position: relative;
    }

    .blog-tags {
        padding: 0;
    }

    .bottom-page-blocks .item {
        height: 288px;
    }

    .bottom-page-blocks .item .name div {
        display: block;
        line-height: 25px;
        font-size: 18px;
    }

    .bottom-page-blocks .item .name div .image {
        margin: 0 0 10px 0;
    }

    .bottom-page-blocks .item p {
        line-height: 22px;
        font-size: 16px;
    }

    .bottom-page-blocks .item .name {
        margin-bottom: 10px;
    }

    .error-page-top-text {
        padding: 0 70px 50px 70px;
    }

    .error-page img {
        left: -100px;
    }

    .error-page .content .name {
        font-size: 200px;
    }

    .error-page .content {
        padding: 0 0 0 48%;
    }

    /*
    .wys-text .price-item {
        display: none;
    }
    */

    .no_tablet {
        display: none;
    }

    .videos-page .item .name {
        line-height: 22px;
        font-size: 16px;
    }

    .videos-page .item .content p {
        margin-bottom: 10px;
        line-height: 22px;
        font-size: 16px;
    }

    .teacher-page .avatar img {
        width: 200px;
    }

    .course-top-info .name h1 {
        line-height: 34px;
        font-size: 24px;
    }

    .course-top-info .but {
        display: block;
    }

    .course-top-info .openn {
        display: inline-block;
        margin: 30px 0 0 20px;
    }

    .about-course .item .name {
        line-height: 25px;
        font-size: 18px;
    }

    .about-course .item p {
        line-height: 26px;
        font-size: 16px;
    }

    .course-slider .list .name {
        padding: 20px 0 10px;
        text-align: center;
    }

    .course-slider .list p {
        line-height: 26px;
        font-size: 16px;
    }

    .course-result .item p {
        line-height: 26px;
        font-size: 16px;
    }

    .about-page .text .name {
        text-align: center;
        line-height: 44px;
        font-size: 24px;
    }

    .course-program .list {
        padding-right: 0;
    }

    .course-program .list .pdf {
        top: -100px;
        width: auto;
        padding: 5px 10px;
        text-align: left;
    }

    .course-program .list .pdf .icon {
        display: none;
    }

    .course-program .list .pdf a {
        padding: 0;
    }

    .course-program .block-name {
        padding: 60px 0 40px;
        text-align: left;
        line-height: 33px;
        font-size: 24px;
    }

    .course-program .list .item .content {
        padding: 20px 20px 20px 20px;
    }

    .course-program .list .item .content .author {
        right: 20px;
    }

    .course-help .block-name {
        line-height: 33px;
        font-size: 24px;
    }

    .course-help .item .name {
        line-height: 25px;
        font-size: 18px;
    }

    .course-help .item p {
        line-height: 26px;
        font-size: 16px;
    }

    .course-resume .resume .name {
        padding: 20px 40px;
    }

    .course-resume .resume .name .price {
        text-align: right;
    }

    .course-resume .resume .content {
        padding: 30px 40px;
    }

    .course-form .form .left-block .select {
        margin-bottom: 25px;
    }

    .course-form .form .left-block .old {
        font-size: 18px;
    }

    .course-form .form .left-block .price {
        margin: 20px 0;
    }

    .course-form .form .left-block .price span {
        font-size: 28px;
    }

    .course-form .form .left-block .timer {
        margin-bottom: 25px;
    }

    .course-form .form .left-block .timer p {
        font-size: 18px;
    }

    .course-form .form .left-block .timer .list .item {
        font-size: 10px;
    }

    .course-form .form .left-block .timer .list .item span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }

    .docs-page {
        padding: 0 0 40px 0;
    }

    .docs-page .item a {
        padding: 0 15px;
        line-height: 22px;
        font-size: 16px;
    }

    .reviews-page.inner2 {
        padding: 0 0 60px 0;
    }

    .contacts-page .map {
        height: 320px;
        margin-top: 50px;
    }

    .contacts-page .video {
        margin-top: 40px;
    }

    .contacts-page .video .v img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
    }

    .popup .window.course {
        width: 700px;
    }

    .popup .window.course-f {
        width: 700px;
    }

    .price-page .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .clients-page .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .index-ways .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .reviews-page .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .blog-page .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .subscribe-block .block-name {
        font-size: 32px;
    }

    .faq-form .content .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .about-facts .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .about-page .team .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .about-page .advantages .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .about-course .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .course-slider .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .course-result .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .course-program .block-name {
        font-size: 32px;
    }

    .course-help .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .course-teachers .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .course-resume .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .course-form .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .course-bottom-image .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .faq-page .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .webinar-form .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    .reviews-form .block-name {
        line-height: 44px;
        font-size: 32px;
    }

    h1 {
        line-height: 44px;
        font-size: 32px;
    }

    .about-page .team .item img {
        max-width: 160px;
    }

    .contacts-page .item {
        padding: 0 40px;
    }

    .contacts-page .social {
        padding: 30px 40px 0 40px;
    }

    .only_tablet {
        display: block;
    }

    .course-slider .list img {
        display: block;
        margin: 0 auto;
    }

    .course-slider .list {
        padding: 0 50px;
    }

    .course-resume {
        padding-bottom: 80px;
    }

    .course-top-info .form .btn-group.open {
        margin: 0;
    }

    .course-top-info .open-link {
        padding: 0;
    }

    .course-slider .list .row {
        display: block;
    }

    .course-slider .list .slick-next {
        right: 0;
    }

    .course-slider .list .slick-prev {
        left: 0;
    }

    .course-resume .resume .content .tech-item {
        max-height: 250px;
    } 

    .cookie-block {
        text-align: center;
        width: 100%;
        padding: 20px;
        right: 0px;
        bottom: 0px;
        z-index: 5;
    }

    .cookie-block p {
        line-height: 18px;
        font-size: 13px;
        opacity: 0.6;
        padding: 10px 0;
    }

    .cookie-block button {
        width: 160px;
        height: 48px;
        background: #fecd0a;
        -webkit-box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
        box-shadow: 0px 15px 30px rgba(254, 205, 10, 0.32);
        font-weight: 500;
        font-size: 14px;
        border-radius: 30px;
    }


}

@media (max-width: 767px) {
    .header {
        padding: 15px 0;
    }

    .header .phone {
        display: none;
    }

    .header .lk {
        display: none;
    }

    .header .logo {
        padding-top: 2px;
        padding-left: 80px;
    }

    .header .logo img {
        width: 183px;
    }

    .index-top-form {
        height: auto;
        padding-bottom: 30px;
    }

    .index-top-form .block-name {
        font-size: 24px;
        padding: 20px 0;
    }

    .index-top-form form .name {
        display: none;
    }

    .index-top-form form .content {
        background: none;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .index-top-form form .content .bootstrap-select {
        width: 100% !important;
        font-size: 16px;
    }

    .index-top-form form .content .bootstrap-select .btn-default {
        height: 50px;
        padding: 0 10px;
        background: #ffffff url('../img/select3.png') no-repeat right;
    }

    .index-top-form form .content .select .checkbox + label:before {
        top: 16px;
    }

    .index-top-form form .content .select .checkbox + label:after {
        top: 22px;
    }

    .index-top-form form .content .level {
        width: 100%;
        height: 50px;
        font-size: 16px;
        line-height: 50px;
        border-radius: 4px;
        padding: 0;
        margin-top: 0;
        background: #fff;
    }

    .index-top-form form .content .select {
        width: 100%;
        height: 50px;
        font-size: 16px;
        line-height: 50px;
        border-radius: 4px;
        background: #fff;
        margin-top: 0;
    }

    .index-top-form form .content .select .radio + label:before {
        top: 8px;
    }

    .index-top-form form .content .select .radio + label:after {
        top: 14px;
    }

    .index-top-form form .content .name {
        display: block;
        width: 100%;
        margin: 15px 0 10px;
        padding: 0 0 0 10px !important;
    }

    .index-top-form form .but {
        font-size: 16px;
        width: 160px;
        height: 44px;
    }

    .index-top-form .bottom-text {
        font-size: 16px;
    }

    .price-page .block-name {
        line-height: 28px;
        font-size: 20px;
        padding: 50px 0 20px;
    }

    .price-page .item .name {
        line-height: 23px;
        font-size: 17px;
    }

    .price-page .item .content {
        padding: 20px 10px 40px 10px;
    }

    .price-page .item .content p {
        line-height: 21px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .price-page .item .content .price {
        font-size: 18px;
    }

    .price-page .item .content .price span {
        font-size: 24px;
    }

    .price-page .item .content button {
        font-size: 16px;
        width: 200px;
        height: 48px;
    }

    .price-page .slick-dots {
        padding: 0;
        margin: -50px 0 30px 0;
        list-style: none;
        z-index: 3;
        position: relative;
    }

    .price-page .slick-dots li {
        display: inline-block;
        margin: 0 10px;
    }

    .price-page .slick-dots li button {
        padding: 0;
        font-size: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #DDDDDD;
    }

    .price-page .slick-dots li.slick-active button {
        background: #fff;
        border: 1px solid #8E3CCB;
    }

    .price-page .bottom-link {
        margin-bottom: 80px;
    }

    .index-images-block .item {
        text-align: center;
        margin-bottom: 50px;
    }

    .index-images-block .item img {
        float: none;
        display: block;
        margin: 0 auto;
        max-width: 100%;
        width: auto;
    }

    .index-images-block .item .text,
    .index-images-block .item.other .text {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        width: auto;
        margin-top: 30px;
    }

    .index-images-block .item .text p {
        font-size: 16px;
    }

    .index-images-block .item .text .name {
        font-size: 18px;
        line-height: 25px;
    }

    .clients-page {
        padding-bottom: 50px;
    }

    .clients-page .block-name {
        line-height: 33px;
        font-size: 20px;
    }

    .clients-page p {
        line-height: 22px;
        font-size: 16px;
        margin-bottom: 50px;
    }

    .clients-page .bottom-link {
        display: none;
    }

    .index-ways .block-name {
        line-height: 28px;
        font-size: 20px;
        padding: 45px 0;
    }

    .index-ways .item {
        padding: 15px 0;
        margin-bottom: 20px;
    }

    .index-ways .item .image img {
        max-width: 80%;
    }

    .index-ways .item .name {
        height: 30px;
        line-height: 30px;
        padding: 0;
    }

    .index-ways .item .name a {
        font-size: 12px;
    }

    .reviews-page .block-name {
        line-height: 28px;
        font-size: 20px;
        padding: 40px 0 20px;
    }

    .reviews-page .item {
        padding: 30px 15px;
    }

    .reviews-page .item .avatar {
        float: none;
    }

    .reviews-page .item .content {
        margin: 20px 0 0 0;
    }

    .reviews-page .item .content .name {
        text-align: center;
    }

    .reviews-page .item .content .company {
        text-align: center;
    }

    .reviews-page .slick-prev,
    .reviews-page .slick-next {
        top: 100px;
        margin: 0;
    }

    .reviews-page .slick-prev {
        left: 15px;
    }

    .reviews-page .slick-next {
        right: 15px;
    }

    .reviews-page .bottom-link {
        padding: 40px 0;
    }

    .blog-page .block-name {
        line-height: 28px;
        font-size: 20px;
        padding: 50px 0 20px;
    }

    .blog-page .slick-dots {
        padding: 0;
        margin: 0px 0 30px 0;
        list-style: none;
        z-index: 3;
        position: relative;
    }

    .blog-page .slick-dots li {
        display: inline-block;
        margin: 0 10px;
    }

    .blog-page .slick-dots li button {
        padding: 0;
        font-size: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #DDDDDD;
    }

    .blog-page .slick-dots li.slick-active button {
        background: #fff;
        border: 1px solid #8E3CCB;
    }

    .blog-page .bottom-link {
        padding: 25px 0 50px;
    }

    .subscribe-block {
        padding: 0 0 15px 0;
    }

    .subscribe-block .block-name {
        font-size: 20px;
        padding: 15px 0;
    }

    .subscribe-block p {
        line-height: 21px;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .subscribe-block form input[type='email'] {
        width: 90%;
        margin: 0 0 10px 0;
    }

    .subscribe-block form div {
        position: relative;
        margin-top: 15px;
        padding: 0 0 0 30px;
        text-align: left;
    }

    .subscribe-block form div input {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin: 0;
    }
    .subscribe-description{
        font-size: 18px;
        line-height: 22px;
    }
    .bottom-menu p {
        line-height: 25px;
        font-size: 18px;
    }

    .bottom-menu ul li {
        margin-bottom: 10px;
    }

    .bottom-menu ul li a {
        font-size: 15px;
    }

    .footer {
        padding: 20px 0 80px;
    }

    .footer .logo {
        margin-bottom: 20px;
    }

    .footer .contacts .item div {
        line-height: 22px;
        font-size: 15px;
    }

    .footer .copy {
        line-height: 22px;
        font-size: 15px;
    }

    .footer .social {
        left: 15px;
    }

    .popup .window,
    .popup .window.small,
    .popup .window.course,
    .popup .window.course-f,
    .popup .window.success {
        width: 300px;
        padding: 30px 20px 50px 20px;
    }

    .popup .window form .auth {
        margin: 0 -20px 40px -20px;
        padding: 0 20px;
    }

    .navi {
        padding-bottom: 20px;
    }

    h1 {
        margin-bottom: 30px;
        line-height: 44px;
        font-size: 24px;
    }

    .top-page-links a {
        font-size: 15px;
    }

    .blog-tags {
        /*height: 80px;*/
        overflow: hidden;
        margin-bottom: 10px;
    }

    .blog-tags.opened {
        height: auto;
        margin-bottom: 30px;
    }

    .tags-link {
        display: block;
        width: 44px;
        height: 26px;
        background: url('../img/more.png');
        margin-bottom: 30px;
    }

    .blog-item .image {
        height: 184px;
    }

    .blog-item .content {
        padding: 15px 10px 20px 10px;
    }

    .blog-item .content .name {
        line-height: 25px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-item .content p {
        line-height: 24px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .blog-item-big {
        padding: 0;
    }

    .blog-item-big .image {
        position: relative;
        width: auto;
        height: 184px;
        left: auto;
        top: auto;
    }

    .blog-item-big .content {
        padding: 15px 10px 20px 10px;
    }

    .blog-item-big .content .name {
        line-height: 25px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-item-big .content p {
        line-height: 24px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .bottom-button a {
        font-size: 16px;
        width: 160px;
        /* height: 44px; */
    }

    .pages {
        margin-bottom: 50px;
    }

    .pages a {
        font-size: 20px;
        padding: 4px 10px;
        margin: 0 4px;
    }

    .bottom-page-blocks .item {
        height: auto;
    }

    .error-page-top-text {
        padding: 0 0 50px 0;
    }

    h1 span {
        display: block;
    }

    h1 span:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 188px;
    }

    .error-page img {
        display: none;
    }

    .error-page .content .name {
        font-size: 160px;
    }

    .error-page .content {
        padding: 0;
    }

    .article-top-image .text {
        padding: 0;
    }

    .article-top-image .text .name {
        line-height: 33px;
        font-size: 24px;
    }

    .article-top-image .text p {
        line-height: 22px;
        font-size: 16px;
    }

    .article-top-image {
        /*height: 430px;*/
    }

    .article-page p {
        line-height: 24px;
        font-size: 15px;
    }

    .article-page h2 {
        line-height: 33px;
        font-size: 20px;
    }

    .article-page blockquote p {
        line-height: 24px;
        font-size: 15px;
    }

    .article-page ul li {
        line-height: 24px;
        font-size: 15px;
    }

    .create-video-block {
        line-height: 24px;
        font-size: 15px;
    }

    .article-share .content a {
        display: inline-block;
        margin: 10px 15px 0 0;
    }

    .article-page .tags a {
        margin-bottom: 10px;
    }

    .comments form {
        width: auto;
    }

    .bottom-page-blocks.p_t {
        padding-top: 50px;
    }

    .gloss-page .letters {
        padding: 0 0 20px 0;
        position: relative !important;
    }

    .gloss-page .letter {
        padding: 0;
    }

    .gloss-page .letter .item a {
        line-height: 25px;
        font-size: 18px;
    }

    .gloss-page .letter .item a span {
        line-height: 20px;
    }

    .gloss-page .letter .item p {
        line-height: 24px;
        font-size: 15px;
    }

    .gloss-page .letters .list {
        height: 40px;
        position: relative;
        overflow: hidden;
        padding-right: 40px;
    }

    .gloss-page .letters .list.opened {
        height: auto;
        padding-right: 0;
    }

    .gloss-page .letters .list .more {
        position: absolute;
        width: 44px;
        height: 26px;
        background: url('../img/more.png');
        right: 0;
        top: 4px;
    }

    .top-page-links {
        margin-bottom: 30px;
    }

    .faq-page .item .name {
        padding: 20px 60px 20px 20px;
        line-height: 22px;
        font-size: 16px;
    }

    .faq-page .item .name:after {
        right: 20px;
        top: 15px;
    }

    .faq-page .item .text {
        padding: 10px 20px 30px 20px;
    }

    .faq-page .item .text p {
        line-height: 21px;
        font-size: 15px;
    }

    .faq-form .content {
        padding: 40px 20px;
    }

    .faq-form .content .block-name {
        line-height: 33px;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .faq-form .content form .agree label {
        line-height: 21px;
        font-size: 15px;
    }

    .teacher-page {
        padding: 0 0 50px 0;
    }

    .teacher-page .avatar div {
        line-height: 21px;
        font-size: 15px;
    }

    .teacher-page ul li {
        line-height: 21px;
        font-size: 15px;
        min-height: 28px;
    }

    .teacher-page p {
        line-height: 21px;
        font-size: 15px;
    }

    .about-top-text {
        padding: 0 0 50px 0;
    }

    .about-top-text .name {
        font-size: 20px;
    }

    .about-top-text p {
        line-height: 24px;
        font-size: 15px;
    }

    .wys-text,
    .wys-text p {
        font-size: 15px;
        line-height: 24px;
    }

    .default-page .page-wrapper {
        padding: 0 0 50px 0;
    }

    .about-facts .block-name {
        padding: 40px 0;
        line-height: 28px;
        font-size: 20px;
    }

    .about-facts .item .name {
        padding: 15px 0;
        line-height: 25px;
        font-size: 18px;
    }

    .about-facts .item p {
        line-height: 21px;
        font-size: 15px;
    }

    .about-facts .item {
        margin-bottom: 30px;
    }

    .about-page .how .name {
        padding: 40px 0 20px;
        line-height: 33px;
        font-size: 20px;
    }

    .about-page .how .select span {
        font-size: 15px;
    }

    .about-page .text {
        padding: 0 0 10px 0;
    }

    .about-page .text p {
        line-height: 24px;
        font-size: 15px;
    }

    .about-page .team .block-name {
        padding: 40px 0 20px;
        line-height: 33px;
        font-size: 20px;
    }

    .about-page .team .item .name {
        line-height: 24px;
        font-size: 15px;
    }

    .about-page .team .item p {
        font-size: 15px;
    }

    .about-page .team .item {
        margin-bottom: 30px;
    }

    .about-page .team .item img {
        width: 160px;
    }

    .about-page .text.p_t {
        padding: 40px 0 10px 0;
    }

    .about-page .text .name {
        text-align: center;
        line-height: 28px;
        font-size: 20px;
    }

    .about-page .gallery .item {
        margin-bottom: 0;
    }

    .about-page .advantages .block-name {
        padding: 40px 0 20px;
        line-height: 33px;
        font-size: 20px;
    }

    .about-page .advantages .content {
        padding: 0;
    }

    .about-page .advantages ul li {
        line-height: 21px;
        min-height: 28px;
        font-size: 15px;
        padding-top: 4px;
    }

    .about-page .bottom-image {
        height: 200px;
    }

    .course-top-info .name h1 {
        line-height: 26px;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .course-top-info .name {
        line-height: 21px;
        font-size: 15px;
    }

    .about-course .block-name {
        padding: 40px 0 20px;
        line-height: 33px;
        font-size: 20px;
    }

    .about-course .ml {
        margin-left: 0;
    }

    .course-slider .block-name {
        padding: 40px 0 20px;
        line-height: 33px;
        font-size: 20px;
    }

    .course-slider .list {
        padding: 0;
    }

    .course-slider .list img {
        display: block;
        width: 200px;
        margin: 0 auto;
    }

    .course-slider .list .slick-prev,
    .course-slider .list .slick-next {
        top: 60px;
        margin: 0;
    }

    .course-slider .list p {
        text-align: center;
        font-size: 15px;
        line-height: 24px;
    }

    .course-result .block-name {
        padding: 40px 0;
        line-height: 33px;
        font-size: 20px;
    }

    .course-result .item .name {
        margin-bottom: 10px;
        line-height: 25px;
        font-size: 18px;
    }

    .course-result .item p {
        margin-top: 10px;
        font-size: 15px;
        line-height: 24px;
    }

    .course-program .block-name {
        padding: 40px 0 120px;
        font-size: 20px;
        text-align: center;
    }

    .course-program .list .item .name {
        height: 80px;
        font-size: 14px;
    }

    .course-program .list .item .name .date {
        width: 90px;
        height: 90px;
        left: -30px;
        padding-left: 20px;
    }

    .course-program .list .item .name .date span {
        padding-top: 10px;
    }

    .course-program .list .item .name .link {
        font-size: 14px;
        line-height: 20px;
        padding: 0 50px 0 70px;
    }

    .course-program .list .item .name:after {
        right: 10px;
        top: 25px;
    }

    .course-program .list .pdf {
        right: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .course-program .list .item .content {
        /*padding: 130px 15px 20px 15px;*/
    }

    .course-program .list .item .content .author {
        float: none;
        width: 100%;
        margin-top: 25px;
    }

    .course-help .block-name {
        padding: 40px 0;
        line-height: 33px;
        font-size: 20px;
    }

    .course-help .item .name {
        padding: 10px 0 15px;
    }

    .course-teachers .block-name {
        padding: 40px 0;
        line-height: 33px;
        font-size: 20px;
    }

    .course-teachers .slick-prev,
    .course-teachers .slick-next {
        top: 90px;
        margin: 0;
    }

    .course-teachers .item .name {
        padding: 15px 0 10px;
    }

    .course-resume .block-name {
        padding: 40px 0 15px;
        line-height: 28px;
        font-size: 20px;
    }

    .course-resume .top-text {
        line-height: 21px;
        font-size: 15px;
    }

    .course-resume .resume .name {
        padding: 20px 15px;
    }

    .course-resume .resume .name .price {
        text-align: left;
        margin-top: 5px;
        font-size: 12px;
    }

    .course-resume .resume .name .price span {
        font-size: 18px;
    }

    .course-resume .resume .name .n div {
        font-size: 15px;
    }

    .course-resume .resume .content {
        padding: 30px 15px;
    }

    .course-resume .resume .content .n {
        margin-bottom: 10px;
        line-height: 25px;
        font-size: 18px;
    }

    .course-resume .resume .content ul li {
        line-height: 21px;
        font-size: 15px;
    }

    .course-resume .resume .content p {
        margin-bottom: 30px;
    }

    .course-form .block-name {
        padding: 50px 0 15px;
        line-height: 33px;
        font-size: 20px;
    }

    .course-form .top-text {
        font-size: 15px;
        line-height: 24px;
    }

    .course-form .form .left-block {
        padding: 20px;
    }

    .course-form .form {
        margin: 0 -15px;
    }

    .course-form .form .right-block .button button {
        width: 100%;
    }

    .course-form .form .right-block .agree label {
        line-height: 21px;
        font-size: 15px;
    }

    .course-bottom-image {
        padding-top: 30px;
    }

    .course-bottom-image img {
        margin-top: -20px;
    }

    .course-bottom-image .block-name {
        line-height: 33px;
        font-size: 20px;
    }

    .course-bottom-image p {
        line-height: 21px;
        font-size: 15px;
    }

    .faq-page .block-name {
        padding: 40px 0;
        line-height: 33px;
        font-size: 20px;
    }

    .webinar-form .block-name {
        padding: 40px 0;
        line-height: 33px;
        font-size: 20px;
    }

    .webinar-form form {
        width: auto;
    }

    .webinar-form form .agree label {
        line-height: 21px;
        font-size: 15px;
    }

    .reviews-form .block-name {
        padding: 40px 0;
        line-height: 33px;
        font-size: 20px;
    }

    .reviews-form form {
        width: auto;
    }

    .reviews-form .agree label {
        line-height: 21px;
        font-size: 15px;
    }

    .partners-page .item .image {
        float: none;
    }

    .partners-page .item .content {
        margin: 0;
    }

    .contacts-page .item div .adress {
        line-height: 22px;
        font-size: 16px;
    }

    .contacts-page .map {
        height: 280px;
        margin-bottom: 40px;
    }

    .contacts-page .how .name {
        line-height: 28px;
        font-size: 20px;
    }

    .contacts-page .how p {
        line-height: 24px;
        font-size: 15px;
    }

    .contacts-page .how .select span {
        font-size: 18px;
    }

    .subscribe-page .name {
        line-height: 24px;
        font-size: 15px;
    }

    .subscribe-page p {
        line-height: 21px;
        font-size: 15px;
    }

    .course-popup .table {
        overflow-x: scroll;
    }

    .popup .window .block-name {
        line-height: 25px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .popup .window form .steps .item {
        text-align: center;
    }

    .popup .window form .steps .item .icon {
        width: 56px;
        height: 56px;
        line-height: 56px;
        margin: 0 auto;
    }

    .popup .window form .steps .item .icon img {
        max-width: 40%;
    }

    .popup .window form .steps .item .text {
        position: relative;
        left: auto;
        top: auto;
        -webkit-transform: none;
        transform: none;
        padding: 0;
        text-align: center;
        margin-top: 10px;
        line-height: 21px;
        font-size: 15px;
    }

    .popup .window form .steps .item:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .header .button {
        display: none;
    }

    .contacts-page .item {
        padding: 0;
    }

    .contacts-page .social {
        padding: 30px 0 0 0;
    }

    .only_tablet {
        display: none;
    }

    .header .logo .no_tablet {
        display: block;
    }

    .header.fixed-course-menu {
        display: none;
    }

    .index-ways .row .col-xs-6:nth-child(2n+1) {
        clear: both;
    }

    .blog-page .item .image .date {
        z-index: 3;
    }

    .mobile-menu ul li:nth-child(5) {
        display: block;
    }

    .mobile-menu ul li:nth-child(6) {
        display: block;
    }

    h1.no_m {
        margin-bottom: 30px;
    }

    .article-share .content span {
        display: block;
    }

    .course-top-info .but {
        margin-right: 0;
        display: block;
        margin: 0 auto;
    }

    .course-top-info .openn {
        margin: 30px 0 0 0;
    }

    .op-link {
        text-align: center;
    }

    .course-program .list .item .content ul li:after {
        top: 20px;
        height: 200px;
    }

    .course-program .list .item .content ul:after {
        height: 37px;
    }

    .course-program .list .item .content ul li:before {
        z-index: 5;
    }

    .docs-page p {
        padding: 0 0 40px 0;
    }

    .course-top-info-bg {
        padding-bottom: 0;
    }

    .index-top-form .bottom-text span {
        display: block;
    }

    .course-top-info .form .ask .text {
        left: auto;
        right: 0;
        -webkit-transform: none;
        transform: none;
    }

    .only_mobile {
        display: block;
    }

    .no_mobile {
        display: none;
    }

    .course-top-info .form {
        margin-top: 40px;
    }

    .course-top-info .open-link {
        text-align: center;
    }

    .bottom-page-blocks .item .name div {
        display: table-cell;
    }

    .bottom-page-blocks .item .name div .image {
        margin: 0 10px 0 0;
    }

    .course-resume .resume .content .doc-img {
        display: block;
        text-align: center;
    }

    .course-form .form .left-block .select .item p {
        display: none;
    }

    .course-form .form .left-block .select .checkbox {
        margin-top: -10px;
    }

    .course-form .form .left-block .price {
        display: inline-block;
        margin: 0 0 0 10px;
    }

    .course-form .form .right-block p {
        display: none;
    }

    .course-form .form .right-block .agree .checkbox + label {
        font-size: 14px;
    }

    .price-page .bottom-link {
        display: none;
    }

    .price-page {
        padding-bottom: 80px;
    }

    .blog-page .bottom-link {
        display: none;
    }

    .blog-page {
        padding-bottom: 50px;
    }

    .course-resume .resume .content button {
        float: none;
        display: block;
        margin: 30px auto 0 auto;
    }

    .course-form .form .left-block .select {
        padding: 15px 0;
    }

    .course-popup table tbody tr td {
        padding: 5px;
        font-size: 12px;
        line-height: 16px;
    }

    .course-popup table tbody tr:first-child td {
        font-size: 12px;
    }

    .course-popup table thead tr td {
        font-size: 15px;
        line-height: 19px;
        padding: 5px;
    }

    .wys-text .price-item {
        display: block;
        margin-bottom: 40px;
    }

    .course-resume .resume .content ul li {
        width: 100%;
        margin-right: 0;
    }

    .wys-text .price-item {
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .wys-text ul li {
        line-height: 24px;
        font-size: 15px;
    }

    .course-resume .resume .content .tech-item {
        max-height: 200px;
        max-width: 200px;
    }  

}


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

    .course-resume .resume .content .tech-item {
        max-height: 150px;
        max-width: 150px;
    }  

}

@media (max-width: 400px) {

    .teacher-page .avatar .thumb-container {
        width: 100%;
        height: auto;
        padding-top: 100%;
    }

    .about-page .how .select span.n {
        margin-top: 0px;
        display: block;
    }

    .about-page .how .select span.checkbox {
        margin: 12px;
    }

}

@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }
}


/* clear first in row in ie 8 or lower */
.multi-columns-row .first-in-row {
    clear: left;
}

/* clear the first in row for any block that has the class "multi-columns-row" */
.multi-columns-row .col-xs-6:nth-child(2n + 3) { clear: left; }
.multi-columns-row .col-xs-4:nth-child(3n + 4) { clear: left; }
.multi-columns-row .col-xs-3:nth-child(4n + 5) { clear: left; }
.multi-columns-row .col-xs-2:nth-child(6n + 7) { clear: left; }
.multi-columns-row .col-xs-1:nth-child(12n + 13) { clear: left; }

@media (min-width: 768px) {
    /* reset previous grid */
    .multi-columns-row .col-xs-6:nth-child(2n + 3) { clear: none; }
    .multi-columns-row .col-xs-4:nth-child(3n + 4) { clear: none; }
    .multi-columns-row .col-xs-3:nth-child(4n + 5) { clear: none; }
    .multi-columns-row .col-xs-2:nth-child(6n + 7) { clear: none; }
    .multi-columns-row .col-xs-1:nth-child(12n + 13) { clear: none; }

    /* clear first in row for small columns */
    .multi-columns-row .col-sm-6:nth-child(2n + 3) { clear: left; }
    .multi-columns-row .col-sm-4:nth-child(3n + 4) { clear: left; }
    .multi-columns-row .col-sm-3:nth-child(4n + 5) { clear: left; }
    .multi-columns-row .col-sm-2:nth-child(6n + 7) { clear: left; }
    .multi-columns-row .col-sm-1:nth-child(12n + 13) { clear: left; }
}
@media (min-width: 992px) {
    /* reset previous grid */
    .multi-columns-row .col-sm-6:nth-child(2n + 3) { clear: none; }
    .multi-columns-row .col-sm-4:nth-child(3n + 4) { clear: none; }
    .multi-columns-row .col-sm-3:nth-child(4n + 5) { clear: none; }
    .multi-columns-row .col-sm-2:nth-child(6n + 7) { clear: none; }
    .multi-columns-row .col-sm-1:nth-child(12n + 13) { clear: none; }

    /* clear first in row for medium columns */
    .multi-columns-row .col-md-6:nth-child(2n + 3) { clear: left; }
    .multi-columns-row .col-md-4:nth-child(3n + 4) { clear: left; }
    .multi-columns-row .col-md-3:nth-child(4n + 5) { clear: left; }
    .multi-columns-row .col-md-2:nth-child(6n + 7) { clear: left; }
    .multi-columns-row .col-md-1:nth-child(12n + 13) { clear: left; }
}
@media (min-width: 1200px) {
    /* reset previous grid */
    .multi-columns-row .col-md-6:nth-child(2n + 3) { clear: none; }
    .multi-columns-row .col-md-4:nth-child(3n + 4) { clear: none; }
    .multi-columns-row .col-md-3:nth-child(4n + 5) { clear: none; }
    .multi-columns-row .col-md-2:nth-child(6n + 7) { clear: none; }
    .multi-columns-row .col-md-1:nth-child(12n + 13) { clear: none; }

    /* clear first in row for large columns */
    .multi-columns-row .col-lg-6:nth-child(2n + 3) { clear: left; }
    .multi-columns-row .col-lg-4:nth-child(3n + 4) { clear: left; }
    .multi-columns-row .col-lg-3:nth-child(4n + 5) { clear: left; }
    .multi-columns-row .col-lg-2:nth-child(6n + 7) { clear: left; }
    .multi-columns-row .col-lg-1:nth-child(12n + 13) { clear: left; }
}