*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}
fieldset {
border:0;
    
}
img
{
    border: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active
{
    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]
{
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}

:focus
{
    outline: none;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*---------------
    Main styles
---------------*/
:root
{
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #313131;
    --font_size: 16px;
    --font_size_title: 40px;
    --font_family: 'Montserrat', 'Arial', sans-serif;
}



.clear
{
    clear: both;
}


.left
{
    float: left;
}


.right
{
    float: right;
}



html
{
    height: 100%;

    background: var(--bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    height: 100%;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.lock
{
    overflow: hidden;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-height: 100%;
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 20px;
}


.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}

.compensate-for-scrollbar header.fixed,
.compensate-for-scrollbar .fixed_links
{
    padding-right: var(--scroll_width) !important;
}


.lozad
{
    transition: .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.flex
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



.block
{
    margin-bottom: 90px;
}


.block_head
{
    display: flex;

    margin-bottom: 40px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.block_head.center
{
    text-align: center;

    justify-content: center;
}

.block_head .title
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 55px;
}

.block_head .title div
{
    display: inline-block;

    padding: 0 60px;

    vertical-align: top;
}

.block_head .title b
{
    color: #ffdf4b;
    font-weight: 800;
}



.form
{
    --form_border_color: var(--text_color);
    --form_focus_color: var(--text_color);
    --form_error_color: red;
    --form_success_color: green;
    --form_border_radius: 25px;
    --form_bg_color: #fff;
    --form_placeholder_color: var(--text_color);
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .line
{
    margin-bottom: 20px;
}


.form .field
{
    position: relative;
}


.form .input
{
    color: var(--text_color);
    font: 500 var(--font_size) var(--font_family);

    display: block;

    width: 100%;
    height: 50px;
    padding: 0 19px;

    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}
.ec-error {
    color:red;
}
.alert-success {
    color: green;
}
.form textarea
{
    color: var(--text_color);
    font: 500 var(--font_size) var(--font_family);

    display: block;

    width: 100%;
    height: 142px;
    padding: 14px 19px;

    resize: none;
    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}


.form .input:focus,
.form textarea:focus
{
    border-color: var(--form_focus_color);
}

.form .success
{
    border-color: var(--form_success_color);
}

.form .error
{
    border-color: var(--form_error_color);
}


.form .input:disabled,
.form textarea:disabled
{
    cursor: default;
    pointer-events: none;

    opacity: .5;
}


.form .error_text
{
    color: var(--form_error_color);
    font-size: 14px;
    line-height: 20px;

    margin-top: 5px;
}


.form .rate .field
{
    line-height: 18px;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .rate .name
{
    font-weight: 500;

    padding-right: 15px;

    white-space: nowrap;
}

.form .rate .stars
{
    color: #000;
    font-size: 14px;

    display: flex;
    flex-direction: row-reverse;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .rate .stars .rating-0
{
    filter: grayscale(100%);
}

.form .rate .stars > input
{
    display: none;
}

.form .rate .stars > span
{
    margin-left: 10px;
}

.form .rate .stars > * + span
{
    margin-right: 4px;
    margin-left: 0;
}

.form .rate .stars > label
{
    width: 18px;
    height: 18px;
    margin-top: -1px;
    margin-left: 6px;

    cursor: pointer;
    transition: .3s;

    background-image: url('/images/ic_star.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.form .rate .stars > input:checked ~ label,
.form .rate .stars > input:checked ~ label ~ label
{
    background-image: url('/images/ic_star_a.svg');
}


.form .rate .stars > input:not(:checked) ~ label:hover,
.form .rate .stars > input:not(:checked) ~ label:hover ~ label
{
    background-image: url('/images/ic_star_a.svg');
}


.form input[type=checkbox]
{
    display: none;
}

.form input[type=checkbox] + label
{
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;

    position: relative;

    display: table-cell;

    height: 20px;
    padding-left: 26px;

    cursor: pointer;
    text-align: left;
    vertical-align: middle;
}

.form input[type=checkbox] + label:before
{
    position: absolute;
    top: 2px;
    left: 0;

    display: block;

    width: 16px;
    height: 16px;

    content: '';
    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: 2px;
}

.form input[type=checkbox] + label:after
{
    position: absolute;
    top: 5px;
    left: 4px;

    display: block;

    width: 10px;
    height: 6px;

    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);

    opacity: 0;
    border-bottom: 2px solid #fbd22b;
    border-left: 2px solid #fbd22b;
}

.form input[type=checkbox]:checked + label:after
{
    opacity: 1;
}

.form .agree a {
	text-decoration: none;
}
.form .agree a:hover {
	text-decoration: underline;
}


.form .submit .exp
{
    font-weight: 500;
    line-height: 24px;

    margin-top: 15px;
}


.form .submit_btn
{
    color: #313131;
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 500;
    line-height: 50px;

    display: inline-block;

    width: 100%;
    height: 50px;
    padding: 0 50px;

    cursor: pointer;
    cursor: pointer;
    vertical-align: top;

    border: none;
    border-radius: 25px;
    background: #fbd22b;
	pointer-events: initial;
}

.form .submit_btn:hover
{
    background-image:    -moz-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image: -webkit-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image:     -ms-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
}



.fixed_links
{
position: fixed;
    z-index: 101;
    top: 0;
    right: 2%;
    display: flex;
    width: 15px;
    height: 100vh;
    /* margin-right: -600px; */
    pointer-events: none;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.fixed_links > * + *
{
    margin-top: 10px;
}

.fixed_links button
{
    color: #676767;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;

    position: relative;

    display: block;

    width: 15px;
    height: 15px;

    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-decoration: none;
    pointer-events: auto;

    border: 1px solid #676767;
    border-radius: 50%;
    background: none;
}

.fixed_links button span
{
    position: absolute;
    top: -6px;
    right: 38px;

    display: block;
    visibility: hidden;

    transition: .2s linear;
    pointer-events: none;

    opacity: 0;
}

.fixed_links button:hover,
.fixed_links button.active
{
    background: #676767;
}

.fixed_links button:hover span,
.fixed_links button.active span
{
    right: 23px;

    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.fixed_links button.close
{
    position: absolute;
    top: -15px;
    right: 5px;

    display: none;

    width: 50px;
    height: 50px;
    padding: 13px;

    cursor: pointer;

    border: none;
    background: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.fixed_links button.close span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: var(--text_color);
}

.fixed_links button.close span:nth-child(1)
{
    top: 1px;

    transform: rotate(45deg);
}

.fixed_links button.close span:nth-child(2)
{
    top: -1px;

    transform: rotate(-45deg);
}



.first_section .info,
.courses .course,
.conference .conference_inner,
.advantages .item,
.video_about .video_link,
.reviews .slider_wrap,
.reviews .add_review,
.certs .flex > *,
.it_will_work .info > *,
.order_block .form,
.order_block .img
{
    transition: .4s linear;
    transform: translateY(100px);

    opacity: 0;
}


.animated
{
    transform: none !important;

    opacity: 1 !important;
}



.supports_error
{
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;

    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    padding: 20px;

    text-align: center;

    background: #fff;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.supports_error.show
{
    display: flex;
}



/*---------------
   Header
---------------*/
header
{
    position: relative;
    z-index: 101;
    top: 0;
    left: 0;

    width: 100%;
}

header.absolute
{
    position: absolute;
}

header.fixed
{
    position: fixed;

    margin: 0;

    -webkit-animation: moveDown .5s;
            animation: moveDown .5s;

    background: #fff;
    box-shadow: 0 2px 15.36px .64px rgba(158, 158, 158, .32);
}


header .cont
{
    position: relative;

    display: flex;

    min-height: 125px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}



header .logo
{
    /*position: absolute;
    right: 0;
    left: 0;*/

    margin: auto;

    /*pointer-events: none;*/
}

header .logo img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}



header .socials
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

header .socials a
{
    display: block;
}

header .socials a + a
{
    margin-left: 10px;
}

header .socials img
{
    display: block;

    width: 32px;
    height: 32px;
}



header .phone a
{
    color: var(--text_color);
    font-size: 20px;
    line-height: 34px;

    display: inline-block;

    padding-left: 42px;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;

    background: url(/images/ic_phone.svg) 0 50% no-repeat;
}

header .phone a b
{
    font-weight: 500;
}



header .mob_menu_link
{
    display: none;

    width: 50px;
    height: 38px;
    margin-right: -10px;
    margin-left: 15px;
    padding: 10px;

    cursor: pointer;

    border: none;
    background: none;
}

header .mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: var(--text_color);
}

header .mob_menu_link span + span
{
    margin-top: 6px;
}



@-webkit-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-125px);
                transform: translateY(-125px);
    }
}
@-moz-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-125px);
                transform: translateY(-125px);
    }
}
@keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-125px);
                transform: translateY(-125px);
    }
}



/*---------------
   Sidebar
---------------*/



/*---------------
   Main section
---------------*/
.owl-carousel,
.owl-carousel .slide:first-child
{
    display: block;
}

.owl-carousel .slide
{
    display: none;
}

.owl-carousel .owl-stage
{
    white-space: nowrap;
}

.owl-carousel .owl-item
{
    display: inline-block;
    float: none;

    vertical-align: top;
    white-space: normal;
}

.owl-carousel .slide .lozad,
.bx-slider .slide .lozad
{
    transition: .2s linear;
}



.first_section
{
    position: relative;

    height: 687px;
    margin-bottom: 55px;
    padding-top: 160px;
}


.first_section .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 50%;

    width: 1130px;
    height: 687px;
    margin-right: -960px;
}

.first_section .bg2
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;

    width: 224px;
    height: 543px;
    margin-left: -960px;
}


.first_section .cont
{
    position: relative;
    z-index: 9;
}

.first_section .info
{
    position: relative;

    width: 520px;
    max-width: 100%;
}

.first_section .info:after
{
    position: absolute;
    z-index: -1;
    bottom: -62px;
    left: 111px;

    display: block;

    width: 190px;
    height: 84px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}


.first_section .title
{
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
}

.first_section .title b
{
    font-weight: 800;
}


.first_section .link
{
    color: #313131;
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 500;
    line-height: 50px;

    display: inline-block;

    min-width: 278px;
    height: 50px;
    margin-top: 30px;
    padding: 0 50px;

    cursor: pointer;
    text-align: center;
    vertical-align: top;
    text-decoration: none;

    border: none;
    border-radius: 25px;
    background: #fbd22b;
}

.first_section .link:hover
{
    background-image:    -moz-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image: -webkit-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image:     -ms-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
}



.courses .block_head .title div
{
    background: url(/images/ic_courses_title.svg) 0 50%/auto 40px no-repeat,
    url(/images/ic_courses_title.svg) 100% 50%/auto 40px no-repeat;
}


.courses .tabs
{
    display: flex;

    margin-bottom: 30px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: nowrap;
}

.courses .tabs > *
{
    width: 100%;
}

.courses .tabs > * + *
{
    margin-left: 20px;
}

.courses .tabs button
{
    color: #313131;
    font-family: var(--font_family);
    font-size: 15px;
    font-weight: 500;
    line-height: 19px;

    position: relative;
z-index: 99;
    display: flex;

    min-height: 50px;
    padding: 4px 15px 6px;

    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    border: 1px solid #313131;
    border-radius: 25px;
    background: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.courses .tabs button:hover,
.courses .tabs button.active
{
    border-color: #ffde59;
    background: #ffde59;
}

.courses .tab_content
{
    position: relative;

    visibility: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.courses .tab_content.active
{
    visibility: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
}


.courses .flex
{
    position: relative;
    z-index: 9;

    margin-bottom: -20px;
    margin-left: -20px;

    --courses_count: 3;
    align-items: stretch;
    align-content: stretch;
}

.courses .flex:before
{
    position: absolute;
    z-index: -1;
    bottom: -37px;
    left: -40px;

    display: block;

    width: 260px;
    height: 107px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}

.courses .flex:after
{
    position: absolute;
    z-index: -1;
    top: -17px;
    right: -19px;

    display: block;

    width: 260px;
    height: 107px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}

.courses .flex > div
{
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}


.courses .course
{
    position: relative;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 20.79px .21px rgba(213, 212, 212, .76);
}


.courses .course .thumb
{
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0;
    background: #fafafa;
}

.courses .course .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.courses .course .info
{
    color: #313131;
    font-weight: 600;

    display: flex;

    padding: 20px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.courses .course .name
{
    color: #fbd22b;
    font-size: 20px;

    width: 100%;
    padding-bottom: 15px;

    text-align: center;

    background: url(/images/ic_wave.png) 50% 100% no-repeat;
}


.courses .course .price
{
    line-height: 35px;

    margin-top: 10px;
    padding-left: 44px;

    white-space: nowrap;

    background: url(/images/ic_price.svg) 0 50%/auto 100% no-repeat;
}

.courses .course .time
{
    line-height: 32px;
    margin-top: 10px;
    padding-left: 40px;
    white-space: nowrap;
    background: url(/images/ic_time.svg) 0 50%/auto 100% no-repeat;
}
.courses .course .instruktor_kurs
{
    line-height: 32px;
    margin-top: 10px;
    padding-left: 0px;
    white-space: nowrap;
    width: 100%;
}
.courses .course .start
{
    line-height: 18px;

    display: flex;

    width: 100%;
    min-height: 32px;
    margin-top: 10px;
    padding-left: 44px;

    background: url(/images/ic_start.svg) 4px 50%/auto 32px no-repeat;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.courses .course .hover
{


    width: 100%;
    margin-top: 15px;
    padding-top: 15px;

    text-align: center;

    border-top: 1px solid #c4c4c4;
}

.courses .course .hover > * + *
{
    margin-top: 12px;
}


.courses .course .desc
{
    font-weight: normal;
    line-height: 22px;
}
.courses .course .desc li {
text-align: left;
        margin-left: 15px;
}
.courses .course .desc details summary
{
transition: .2s linear;
border-bottom: 1px solid rgba(251, 210, 43, 0);
width: fit-content;
margin-bottom: 10px;

}
.courses .course .desc details summary:hover
{
border-bottom: 1px solid #fbd22b;
cursor: pointer;
}
.courses .course .links > * + *
{
    margin-top: 10px;
}

.courses .course .links a,
.courses .course .links button
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 600;
    line-height: 48px;

    display: flex;

    width: 179px;
    max-width: 100%;
    height: 50px;
    margin: 0 auto;

    cursor: pointer;
    transition: .2s linear;
    text-decoration: none;

    border: 1px solid #feda49;
    border-radius: 25px;
    background: none;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.courses .course .links a img,
.courses .course .links button img
{
    display: block;

    margin-right: 10px;
}

.courses .course .links a:hover,
.courses .course .links button:hover
{
    background: #feda49;
}


.courses .course:hover
{
    z-index: 9;
}

.courses .course:hover .hover
{
    display: block;
}



.advantages
{
    position: relative;
}

.advantages > .bg
{
    position: absolute;
    z-index: -1;
    top: -125px;
    left: 50%;

    width: 367px;
    height: 1155px;
    margin-left: -960px;

    pointer-events: none;
}


.advantages .block_head .title div
{
    background: url(/images/ic_advantages_title.svg) 0 50%/auto 40px no-repeat,
    url(/images/ic_advantages_title.svg) 100% 50%/auto 40px no-repeat;
}


.advantages .flex
{
    position: relative;
    z-index: 9;

    margin-bottom: -45px;
    margin-left: -40px;
}

.advantages .flex > *
{
    width: calc(33.333% - 40px);
    margin-bottom: 45px;
    margin-left: 40px;
}

.advantages .flex > *:nth-child(4)
{
    order: 6;
}

.advantages .flex > *:nth-child(5)
{
    order: 5;
}

.advantages .flex > *:nth-child(6)
{
    order: 4;
}

.advantages .flex:before
{
    position: absolute;
    z-index: -1;
    top: 28px;
    right: -85px;

    display: block;

    width: 1037px;
    height: 392px;

    content: '';

    background: url(/images/bg_advantages_line.png) 0 0 no-repeat;
}


.advantages .item
{
    line-height: 22px;

    text-align: center;
}

.advantages .item > * + *
{
    margin-top: 10px;
}

.advantages .item .icon
{
    position: relative;

    display: flex;

    height: 134px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.advantages .item .icon:before
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 209px;
    height: 172px;
    margin: auto;

    content: '';

    background: url(/images/bg_advantage_icon.png) 0 0 no-repeat;
}

.advantages .item .icon img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

.advantages .item .name
{
    font-size: calc(var(--font_size) + 2px);
    font-weight: 600;
    line-height: 24px;
}



.shedule
{
    position: relative;
}

.shedule > .bg
{
    position: absolute;
    z-index: -1;
    right: 50%;
    bottom: 0;

    width: 312px;
    height: 862px;
    margin-right: -960px;

    pointer-events: none;
}


.shedule .block_head .title div
{
    background: url(/images/ic_shedule_title.svg) 0 50%/auto 38px no-repeat,
    url(/images/ic_shedule_title.svg) 100% 50%/auto 38px no-repeat;
}


.shedule .tabs
{
    display: flex;

    margin-bottom: 20px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: nowrap;
}

.shedule .tabs .slide
{
    text-align: center;
}

.shedule .tabs button
{
    color: #313131;
    font-family: var(--font_family);
    font-size: 30px;
    font-weight: 600;
    line-height: 34px;

    position: relative;

    display: inline-block;

    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;

    border: none;
    background: none;
}

.shedule .tabs button:hover,
.shedule .tabs .active.center button
{
    color: #ffdf4c;
}

.shedule .tab_content
{
    position: relative;

    visibility: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.shedule .tab_content.active
{
    visibility: visible;

    height: auto;

    transition: opacity .5s linear;
    pointer-events: auto;

    opacity: 1;
}


.shedule .flex
{
    position: relative;

    margin-bottom: -20px;
    margin-left: -20px;

    align-items: stretch;
    align-content: stretch;
    --shedule_count: 3;
}

.shedule .flex:before
{
    position: absolute;
    z-index: -1;
    bottom: -19px;
    left: -41px;

    display: block;

    width: 260px;
    height: 107px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}

.shedule .flex:after
{
    position: absolute;
    z-index: -1;
    top: -40px;
    right: -37px;

    display: block;

    width: 107px;
    height: 260px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}

.shedule .flex > *
{
    width: calc(50% - 10px);
    margin-bottom: 20px;
    margin-left: 10px;
}


.shedule .course
{
    overflow: hidden;

    transition: .2s linear;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 2px 20.79px .21px rgba(223, 223, 221, .76);
}

.shedule .course .head
{
    font-size: 20px;
    font-weight: 500;

    display: flex;

    padding: 15px 20px;

    border-bottom: 1px solid #d1d1d1;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.shedule .course .info
{
    line-height: 24px;

    padding: 20px;

}
.shedule .course .info .desc
{
text-align: justify;
}
.shedule .course .info .name
{
text-align: center;
}

.shedule .course .info > * + *
{
    margin-top: 10px;
}

.shedule .course .name
{
    font-size: 18px;
    font-weight: 600;
}

.shedule .course:hover
{
    box-shadow: 0 2px 20.79px .21px rgba(255, 223, 76, .44);
}



.teachers .block_head .title div
{
    background: url(/images/ic_teachers_title.svg) 0 50%/auto 39px no-repeat,
    url(/images/ic_teachers_title.svg) 100% 50%/auto 39px no-repeat;
}


.teachers .slider
{
    position: relative;
}

.teachers .slider:after
{
    position: absolute;
    z-index: -1;
    top: -17px;
    right: -19px;

    display: block;

    width: 260px;
    height: 107px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}


.teachers .teacher
{
    font-size: 18px;
    line-height: 24px;

    text-align: center;
}

.teachers .teacher .foto
{
    position: relative;

    overflow: hidden;

    margin-bottom: 13px;

    border-radius: 5px;
    background: #eee;
}

.teachers .teacher .foto img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.teachers .teacher .post
{
    color: #a8a8a8;
}



.video_about
{
    position: relative;
}

.video_about > .bg
{
    position: absolute;
    z-index: -1;
    top: -160px;
    left: 50%;

    width: 405px;
    height: 970px;
    margin-left: -960px;

    pointer-events: none;
}


.video_about .block_head .title div
{
    background: url(/images/ic_video_about_title.svg) 0 50%/auto 37px no-repeat,
    url(/images/ic_video_about_title.svg) 100% 50%/auto 37px no-repeat;
}


.video_about .video_link
{
    position: relative;

    width: 536px;
    max-width: 100%;
    margin: 50px auto 0;
    padding-bottom: 80px;
}

.video_about .video_link:before
{
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: -123px;

    display: block;

    width: 260px;
    height: 107px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}


.video_about .link
{
    position: relative;

    display: block;

    width: 100%;
    padding-bottom: 336px;

    background: #eee;
}

.video_about .link:before
{
    position: absolute;
    z-index: -1;
    top: -23px;
    left: -83px;

    display: block;

    width: 703px;
    height: 405px;

    content: '';

    background: url(/images/notebook_img.png) 50% no-repeat;
}

.video_about .link:after
{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(20,20,20,.46) url(/images/ic_video_play.png) 50% no-repeat;
}

.video_about .link img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.fotorama__wrap {
    margin: 0 auto;
}

.reviews .block_head .title div
{
    background: url(/images/ic_reviews_title.svg) 0 50%/auto 37px no-repeat,
    url(/images/ic_reviews_title.svg) 100% 50%/auto 37px no-repeat;
}


.reviews .slider_wrap
{
    width: calc(50% - 10px);
}


.reviews .review
{
    display: flex;

    padding: 20px 20px 15px;

    border: 1px solid #d1d1d1;
    border-radius: 5px;
    background: #fff;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.reviews .review .foto
{
    overflow: hidden;

    width: 78px;
    height: 78px;

    border-radius: 50%;
    background: #eee;
}

.reviews .review .foto img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.reviews .review .info
{
    font-weight: 500;

    display: flex;

    width: calc(100% - 98px);

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.reviews .review .author
{
    font-size: 18px;
    line-height: 24px;
}

.reviews .review .date
{
    color: #b8b8b8;
    font-size: 15px;
    line-height: 24px;

    white-space: nowrap;
}

.reviews .review .rating
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}

.reviews .review .rating > *
{
    display: block;

    width: 18px;
    height: 18px;

    background: url(/images/ic_star.svg) 0 0 no-repeat;
}

.reviews .review .rating > * + *
{
    margin-left: 6px;
}

.reviews .review .rating > *.active
{
    background: url(/images/ic_star_a.svg) 0 0 no-repeat;
}


.reviews .review .text
{
    font-weight: 500;
    line-height: 22px;

    width: 100%;
    margin-top: 7px;
}



.reviews .add_review
{
    position: relative;

    width: calc(50% - 10px);
    margin-left: auto;
    padding: 34px 78px;

    border: 1px solid #d1d1d1;
    border-radius: 5px;
    background: #fff;
}

.reviews .add_review:before
{
    position: absolute;
    z-index: -1;
    top: -38px;
    right: -40px;

    display: block;

    width: 107px;
    height: 260px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}

.reviews .add_review .title
{
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;

    margin-bottom: 26px;

    text-align: center;
}



.certs
{
    height: 977px;
    margin-bottom: 0;
    padding: 145px 0 340px;

    background: url(/images/bg_caerts2.png) 50% no-repeat;
}

.certs .block_head .title div
{
    background: url(/images/ic_certs_title.svg) 0 50%/auto 37px no-repeat,
    url(/images/ic_certs_title.svg) 100% 50%/auto 37px no-repeat;
}

.certs .flex
{
    justify-content: center;
    align-items: center;
    align-content: center;
}

.certs .flex a
{
    display: block;
margin: 0 15px;
    max-width: calc(50% - 108px);
}

.certs img
{
    display: block;

    width: 100%;

    border-radius: 5px;
}

.certs .or
{
    color: #555;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;

    width: 216px;
    max-width: 100%;

    text-align: center;
    text-transform: uppercase;
}



.it_will_work .block_head .title div
{
    background: url(/images/ic_it_will_work_title.svg) 0 50%/auto 37px no-repeat,
    url(/images/ic_it_will_work_title.svg) 100% 50%/auto 37px no-repeat;
}

.it_will_work .flex
{
    justify-content: space-between;
}


.it_will_work .img
{
    position: relative;

    width: 377px;
    height: 489px;

    border-radius: 5px;
    background: #eee;
    box-shadow: 0 2px 20.79px .21px rgba(223, 223, 221, .76);
}

.it_will_work .img:before
{
    position: absolute;
    z-index: -1;
    bottom: -42px;
    left: -39px;

    display: block;

    width: 260px;
    height: 107px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}

.it_will_work .img img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 5px;

    object-fit: cover;
}


.it_will_work .info
{
    line-height: 24px;

    width: calc(100% - 397px);
}

.it_will_work .info > * + *
{
    margin-top: 20px;
}

.it_will_work .info .name
{
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;

    margin-bottom: 5px;
}



.order_block
{
    position: relative;
}

.order_block > .bg
{
    position: absolute;
    z-index: -1;
    right: 50%;
    bottom: 0;

    width: 308px;
    height: 763px;
    margin-right: -960px;

    pointer-events: none;
}


.order_block .block_head .title div
{
    background: url(/images/ic_order_block_title.svg) 0 50%/auto 37px no-repeat,
    url(/images/ic_order_block_title.svg) 100% 50%/auto 37px no-repeat;
}


.order_block .form
{
    width: calc(50% - 10px);
    margin: 0 auto;
}


.order_block .img
{
    position: relative;

    width: calc(50% - 10px);
    margin-left: auto;

    align-self: center;
}

.order_block .img:before
{
    position: absolute;
    z-index: -1;
    right: -39px;
    bottom: -36px;

    display: block;

    width: 260px;
    height: 107px;

    content: '';

    background: url(/images/bg_points.png) 0 0 repeat;
}

.order_block .img img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}


.contscts_block .block_head .title div
{
    background: url(/images/ic_contacts_block_title.svg) 0 50%/auto 37px no-repeat,
    url(/images/ic_contacts_block_title.svg) 100% 50%/auto 37px no-repeat;
}
.contacts_info {
	width: 100%;
	max-width: 575px;
	margin: 0 auto;
}
.contacts_info p {
	padding-bottom: 10px;
}



.more
{
    position: relative;
    z-index: 5;

    margin-top: 30px;

    text-align: center;
}

.more > *
{
    color: #313131;
    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 500;
    line-height: 50px;

    display: inline-block;

    min-width: 278px;
    height: 50px;
    padding: 0 50px;

    cursor: pointer;
    text-align: center;
    vertical-align: top;
    text-decoration: none;

    border: none;
    border-radius: 25px;
    background: #fbd22b;
}

.more > *:hover
{
    background-image:    -moz-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image: -webkit-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image:     -ms-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
}



/*---------------
   Footer
---------------*/
footer
{
    padding: 80px 0 65px;

    background: url(/images/bg_footer2.png) 50% 0/cover no-repeat;

    flex: 0 0 auto;
}

footer .flex
{
    justify-content: space-between;
}

footer .flex + .flex
{
    margin-top: 12px;
}



footer .logo
{
    font-size: 18px;
    font-weight: 500;

    text-align: center;
}

footer .logo > * + *
{
    margin-top: 5px;
}

footer .logo img
{
    display: block;

    width: 74px;
    max-width: 100%;
    margin: 0 auto;
}



footer .socials
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

footer .socials a
{
    display: block;
}

footer .socials a + a
{
    margin-left: 10px;
}

footer .socials img
{
    display: block;

    width: 32px;
    height: 32px;
}



footer .phone a
{
    color: var(--text_color);
    font-size: 20px;
    line-height: 34px;

    display: inline-block;

    padding-left: 42px;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;

    background: url(/images/ic_phone.svg) 0 50% no-repeat;
}

footer .phone a b
{
    font-weight: 500;
}



footer .copyright
{
    line-height: 24px;
}


footer .payments
{
    margin-top: 10px;
}

footer .payments img
{
    display: block;

    max-width: 100%;
}


footer .link
{
    color: var(--text_color);
    line-height: 24px;

    display: inline-block;

    vertical-align: top;
}

footer .link:hover
{
    text-decoration: none;
}

.footer_menu a {
	color: var(--text_color);
    text-decoration: none;
}



/*---------------
   PopUp
---------------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 575px;
    max-width: 100%;
    padding: 50px 80px;

    border-radius: 5px;
    background: #fff;
}

.modal_title
{
    font-size: var(--font_size_title);
    font-weight: 700;
    line-height: 55px;

    margin-bottom: 30px;

    text-align: center;
}



#success_modal .title
{
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;

    text-align: center;
}

#success_modal .title span
{
    color: #fcd433;
}

/* Conference */
.conference .block_head .title div
{
    background: url(/images/ic_shedule_title.svg) 0 50%/auto 38px no-repeat,
    url(/images/ic_shedule_title.svg) 100% 50%/auto 38px no-repeat;
}
.conference_image {
	max-width: 700px;
	margin: 0 auto;
}
.conference_image img {
	width: 100%;
}
/* Conference The End */

/* Ticket Buy */
.ticket_buy {
	display: flex;
	flex-direction: column;
	width: 659px;
	gap: 10px;
	margin: 0 auto;
	padding: 200px 0 100px;
}
.tickets_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 7px;
}
.ticket_buy h1 {
	font-size: var(--font_size_title);
	font-weight: 700;
	line-height: 55px;
	margin-bottom: 30px;
}
.seats_row {
	display: flex;
	justify-content: center;
	gap: 7px;
	position: relative;
	padding-left: 50px;
}
.seats_row_double  {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-left: 50px;
}
.seats_row_double > .seats_row {
	padding-left: 0;
}
.seats_row.row_2 {
	justify-content: start;
}
.seats_row_double.row_20 > .seats_row:nth-child(3) {
	transform: translate(-11px, 0);
}
.seats_row.row_39, .seats_row.row_40 {
	justify-content: end;
}
.seats_row.row_41 {
	transform: translate(11px, 0);
}
.seats_row.row_41 .row_title {
	transform: translate(-11px, 0);
}
.seats_row_double.row_20, .seats_row_double.row_1 {
	padding-top: 40px;
	position: relative;
}
.seats_row_double.row_1:before, .seats_row_double.row_20:before {
	font-size: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 5px;
	margin: 0 auto;
	text-align: center;
	padding-left: 50px;
}
.seats_row_double.row_1:before {
	content: 'Балкон';
}
.seats_row_double.row_20:before {
	content: 'Партер';
}
.row_title {
	position: absolute;
	left: 0;
	font-size: 11px;
}
.seats_item {
	width: 15px;
	height: 15px;
	display: flex;
	justify-content: center;
	flex-shrink: 0;
	background: #676767;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
}
.seats_item.disabled {
	cursor: initial;
	background: #ccc;
}
.seats_item.select {
	background: #fbd22b;
}
.seat {
	display: none;
}
.seats_item:hover .seat {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 150px;
	position: absolute;
	bottom: 0;
	transform: translate(-50%, -28px);
	z-index: 1;
	background: #fff;
	padding: 10px 10px;
	box-shadow: 0 4px 11px 0 rgba(0, 0, 0, .3);
}
.seat_name {
	font-size: 14px;
	color: #999;
	margin-top: 5px;
}
.seat_price {
	font-size: 18px;
	font-weight: 800;
	color: #fbd22b;
	display: flex;
	align-items: center;
}
.seats_item.disabled .seat_price {
	display: none;
}
.seat_price_circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #fbd22b;
	margin-right: 10px;
}
.seat_buy_button, button.seat_buy_button[type=submit] {
	background: transparent;
	border: 1px solid #ddd;
	border-radius: 50%;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	line-height: 28px;
	width: 30px;
	margin-top: 5px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.seats_item.disabled .seat_buy_button {
	display: none;
}
.seat_buy_button:hover, button.seat_buy_button[type=submit]:hover {
	background: #FF7F00;
	border-color: #FF7F00;
	color: #fff;
}
.seat_buy_button svg {
	height: 14px;
	width: auto;
}
.seat:after {
	content: '';
	position: absolute;
	bottom: -7px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #fff;
}
.seats_addCart {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}
.seats_count_wrapper {
	display: flex;
	font-size: 18px;
	font-weight: 800;
}
.seats_count {
	font-weight: 400;
	margin: 0 5px;
}
.submit_seats, .submit_seats[type=submit] {
	color: #313131;
	font-family: var(--font_family);
	font-size: var(--font_size);
	font-weight: 500;
	line-height: 50px;
	min-width: 200px;
	height: 50px;
	cursor: pointer;
	border: none;
	border-radius: 25px;
	background: #ccc;
	transition: .2s linear;
}
.submit_seats.active {
	background: #fbd22b;
}
.submit_seats.active:hover
{
    background-image:    -moz-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image: -webkit-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image:     -ms-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
}

.msMiniCart .minicart_info {
	margin-top: 30px;
	font-size: 20px;
	color: #313131;
}
.mini_cart_row {
	margin-top: 5px;
}
.checkout_btn {
	margin-top: 30px;
}
.checkout_btn a {
	color: #313131;
	font-family: var(--font_family);
	font-size: var(--font_size);
	font-weight: 500;
	line-height: 50px;
	min-width: 200px;
	height: 50px;
	padding: 15px 30px;
	cursor: pointer;
	border: none;
	border-radius: 25px;
	background: #fbd22b;
	text-decoration: none;
	transition: .2s linear;
}
.checkout_btn a:hover {
    background-image:    -moz-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image: -webkit-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
    background-image:     -ms-linear-gradient( 78deg, rgb(252,212,31) 0%, rgb(255,185,18) 100%);
}
/* Ticket Buy The End */

/* Ticket Cart */
.cart_page {
	padding-top: 200px;
}
.ticket_cart_table {
	width: calc(50% - 10px);
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
.cart_table_header {
	font-size: var(--font_size_title);
	font-weight: 700;
	line-height: 55px;
	margin-bottom: 30px;
}
.cart_table_row {
	display: flex;
	gap: 30px;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 10px;
}
.cart_table_footer {
	display: flex;
	gap: 30px;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 10px;
	margin-top: 30px;
}
.ticket_cart_name {
	font-weight: 800;
}
.ticket_cart_count {
	color: #676767;
}
.ticket_cart_price {
	font-size: 18px;
	font-weight: 800;
	color: #fbd22b;
}
.ticket_cart_remove_btn {
	border: 0;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	cursor: pointer;
}
.ticket_cart_remove_btn svg {
	width: 20px;
	height: 20px;
}
.ticket_cart_remove_btn path {
	fill: #ccc;
	transition: .2s linear;
}
.ticket_cart_remove_btn:hover path {
	fill: #fbd22b;
}

.checkout_form {
	width: calc(50% - 10px);
	margin: 0 auto;
	padding-bottom: 80px;
}
.checkout_title {
	font-size: var(--font_size_title);
	font-weight: 700;
	line-height: 55px;
	margin-bottom: 30px;
}
.payments, .deliveries {
	display: none;
}

.checkout_form #msOrder .error::placeholder {
    color: #ff0000;
}
.checkout_form #msOrder .error {
    border: 1px solid #ff0000 !important;
}

.link_to_main {
	margin-top: 50px;
	padding-bottom: 50px;
	font-size: 18px;
	text-align: center;
}
.link_to_main a {
	text-decoration: none;
	color: #313131;
	transition: .2s linear;
    border-bottom: 1px solid rgba(251, 210, 43, 0);
}
.link_to_main a:hover {
    border-bottom: 1px solid #fbd22b;
}
/* Ticket Cart The End */

/* Payment */
.payment_result {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	box-shadow: 0 15px 25px #00000019;
	padding: 45px;
	width: 100%;
	max-width: 600px;
	text-align: center;
	margin: 40px auto;
}
.payment_success {
	border-bottom: solid 4px #28a745;
}
.payment_result_img {
	width: 70px;
}
.payment_result_img img, .payment_result_img svg {
	width: 100%;
	vertical-align: middle;
}
.payment_result a {
	color: #313131;
	text-decoration: none;
	padding-bottom: 3px;
	border-bottom: 1px solid transparent;
	transition: border .2s linear;
}
.payment_result a:hover {
	border-bottom: 1px solid #fbd22b;
}
/* Payment The End */

/* Page */
.page_content {
	padding: 200px 0 100px;
}
.page_content h1 {
	padding-bottom: 30px;
}
.page_content p {
	padding-bottom: 10px;
}
/* Page The End */