/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-margin-top: 24px;
}

*:before,
*:after
{
    box-sizing: border-box;
}

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

body
{
    margin: 0;

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

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

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


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



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #3d2d28;
    --font_size: 15px;
    --font_size_title: 24px;
    --font_family: 'Montserrat', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #7e5d52;
}

::-moz-selection
{
    color: #fff;

    background: #7e5d52;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: var(--bg);
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #7e5d52;
}

html.custom_scroll
{
    scrollbar-color: #7e5d52 var(--bg);
    scrollbar-width: thin;
}


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

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


button
{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    border: none;
    background: none;
}


.wrap
{
    position: relative;
    z-index: 9;

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

    min-width: 360px;
    min-height: 100%;

    background: var(--bg);
}


.main
{
    display: flex;
    flex-direction: column;

    flex: 1 0 auto;
}


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

.cont.mini
{
    max-width: 1448px;
}


.lazyload,
.swiper-lazy
{
    transition: opacity .5s;

    opacity: 0;
}

.lazyload.loaded,
.swiper-lazy-loaded
{
    opacity: 1;
}


.row
{
    display: flex;

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



.block
{
    margin-bottom: 80px;
}



/*--------------
    Fancybox
--------------*/
.fancybox__backdrop
{
    background: rgba(126, 93, 82, .6);
}


.fancybox__slide
{
    padding: 40px;
}


.modal.fancybox__content > .carousel__button.is-close
{
    color: #3d4783;

    top: 47px;
    right: 80px;

    width: 30px;
    height: 30px;
}

.modal.fancybox__content > .carousel__button.is-close svg
{
    display: block;

    width: 30px;
    height: 30px;

    filter: none;
    stroke: none;
    stroke-width: 0;
}



/*---------------
    Load more
---------------*/
.load_more
{
    margin-top: 68px;

    text-align: center;
}


.load_more .btn
{
    color: #7e5d52;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    position: relative;

    padding-right: 28px;

    text-transform: uppercase;
    transition: transform 0.2s;
}

.load_more .btn:hover
{
    transform: scale(1.1);
}

.load_more .btn:after
{
    position: absolute;
    top: 4px;
    right: 0;
    bottom: 0;

    display: block;

    width: 8px;
    height: 10px;
    margin: auto;

    content: '';

    border-top: 5px solid transparent;
    border-top-color: currentColor;
    border-right: 4px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 4px solid transparent;
}



/*----------
    Tabs
----------*/
.tab_content
{
    position: relative;

    visibility: hidden;
    overflow: hidden;

    height: 0;

    pointer-events: none;

    opacity: 0;
}

.tab_content.active
{
    visibility: visible;
    overflow: visible;

    height: auto;

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

    opacity: 1;
}



/*------------
    Header
------------*/
header
{
    color: #fff;

    position: relative;
    z-index: 90;
    top: 0;
    left: 0;

    width: 100%;
    padding: 36px 0;

    background: #7e5d52;
}


header .cont
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}



header .logo
{
    color: currentColor;

    display: block;

    margin-right: auto;

    text-decoration: none;
}

header .logo img
{
    display: block;
}


header .socials
{
    display: flex;

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


header .socials a
{
    color: currentColor;

    display: block;

    text-decoration: none;
}

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


header .socials .icon
{
    display: block;

    width: 34px;
    height: 34px;

    transition: transform .2s;
    pointer-events: none;
}

header .socials .telegram_link .icon
{
    width: 28px;
    height: 28px;
}

header .socials .youtube_link .icon
{
    width: 32px;
    height: 22px;
}


header .socials a:hover .icon
{
    transform: scale(1.15);
}



header .menu_btn
{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;

    display: flex;

    margin-left: 60px;

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


header .menu_btn .icon
{
    display: block;

    width: 30px;
    height: 30px;
    margin-right: 9px;

    transition: transform .2s;
    pointer-events: none;
}


header .menu_btn:hover .icon
{
    transform: scale(1.15);
}


header.fixed
{
    position: fixed;
}



/*----------
    Menu
----------*/
.menu
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 100%;

    display: flex;
    overflow: hidden;

    width: 100%;
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
    padding: 100px 0 56px;

    transition: transform .5s;

    background: var(--bg);

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

.menu.show
{
    transform: translateX(-100%);
}


.menu .close_btn
{
    color: #3d4783;

    position: absolute;
    top: 47px;
    right: 90px;

    display: flex;

    width: 30px;
    height: 30px;

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

.menu .close_btn .icon
{
    display: block;

    width: 30px;
    height: 30px;
}


.menu .logo
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    height: 100%;

    pointer-events: none;
}


.menu .data
{
    width: 874px;
    max-width: 100%;
}


.menu .links
{
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;

    padding-right: 74px;
}

.menu .links > * + *
{
    margin-top: 40px;
}


.menu .links a,
.menu .links div > span
{
    color: currentColor;

    display: flex;

    transition: .2s;
    vertical-align: top;
    text-decoration: none;

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

.menu .links a .icon,
.menu .links div > span .icon
{
    display: block;

    width: 85px;
    height: 16px;
    margin-left: auto;

    transition: .2s;

    opacity: 0;
}


.menu .links a:hover,
.menu .links a.active,
.menu .links div > span
{
    color: #7e5d52;
}

.menu .links a:hover .icon
{
    transform: translateX(20px);

    opacity: 1;
}


.menu .order_free
{
    display: flex;

    margin-top: 110px;
    padding-top: 50px;

    border-top: 1px solid #7e5d52;
}


.menu .order_free .btn
{
    color: #7e5d52;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;

    display: flex;

    text-transform: uppercase;

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

.menu .order_free .btn .icon
{
    display: block;

    width: 48px;
    height: 9px;
    margin-left: 19px;

    transition: transform .2s;
}

.menu .order_free .btn:hover .icon
{
    transform: translateX(20px);
}


.menu .socials
{
    display: flex;

    margin-top: 60px;
    padding-right: 92px;

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


.menu .socials a
{
    color: currentColor;

    display: block;

    text-decoration: none;
    transition: transform .2s;
}

.menu .socials a:hover
{
    transform: scale(1.15);
}

.menu .socials a + a
{
    margin-left: 24px;
}


.menu .socials .email_link
{
    margin-right: auto;
}


.menu .socials .icon
{
    display: block;

    width: 32px;
    height: 32px;
}

.menu .socials .youtube_link .icon
{
    width: 40px;
    height: 29px;
}



/*----------------
    Block head
----------------*/
.block_head
{
    margin-bottom: 80px;
}


.block_head .title
{
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: calc(100% + 5px);

    display: block;

    text-transform: uppercase;
}



/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #7e5d52;
    --form_focus_color: #7e5d52;
    --form_error_color: red;
    --form_bg_color: none;
    --form_placeholder_color: #7e5d52;
}


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

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

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

    opacity: 1;
}

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


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


.form .label
{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;

    margin-bottom: 5px;
}


.form .field
{
    position: relative;
}


.form .input
{
    color: #7e5d52;
    font-family: var(--font_family);
    font-size: 20px;
    font-weight: 700;

    display: block;

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

    transition: border-color .2s;

    border: none;
    border-bottom: 1px solid var(--form_border_color);
    background: var(--form_bg_color);
}

.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


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


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


.form .agree
{
    color: #000;
    font-size: 14px;
    line-height: 17px;

    margin-top: -18px;

    text-align: center;
}

.form .agree a
{
    color: currentColor;
}


.form .submit
{
    display: flex;

    padding-top: 1px;

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


.form .submit_btn
{
    color: #7e5d52;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    display: block;

    padding: 15px 63px;

    transition: .2s;
    text-transform: uppercase;

    border: 1px solid #7e5d52;
    border-radius: 80px;
}

.form .submit_btn:hover
{
    color: #fff;

    background: #7e5d52;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-size: 19px;
    line-height: 28px;
}


.text_block > *
{
    margin-bottom: 28px;
}


.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block img
{
    display: block;

    max-width: 100%;
}

.text_block img.loaded
{
    height: auto !important;
}


.text_block .gallery
{
    display: flex;

    margin-top: 60px;
    margin-bottom: 60px;

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


.text_block .example
{
    position: relative;

    margin-top: 60px;
    margin-bottom: 60px;
}

.text_block .example .name
{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;

    position: absolute;
    top: 0;
    left: 0;
}

.text_block .example img
{
    margin-right: auto;
    margin-left: auto;
}


.text_block figure
{
    display: block;

    width: 520px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.text_block > figure
{
    margin-top: 60px;
    margin-bottom: 60px;
}

.text_block figure figcaption
{
    color: #7e5d52;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    margin-top: 39px;

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


.text_block .gallery figure
{
    width: 398px;
}

.text_block a
{
    text-decoration: underline;
    color: currentColor;
}

/*---------------
    Prev/Next
---------------*/
.prev_next
{
    display: flex;

    margin-top: 80px;

    background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 100%);

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


.prev_next a
{
    color: #7e5d52;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    display: flex;

    width: 50%;
    padding: 34px;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

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


.prev_next a span
{
    max-width: calc(100% - 68px);

    text-align: left;
}


.prev_next a .icon
{
    display: block;

    width: 48px;
    height: 9px;
    margin-left: 20px;
    transition: transform 0.2s;
}

.prev_next a.prev_link .icon
{
    margin-right: 20px;
    margin-left: 0;

    transform: rotate(180deg);

}
.prev_next a:hover .icon
{
    transform: translateX(20px);
}
.prev_next a.prev_link:hover .icon
{
    transform: translateX(-20px) rotate(180deg);
}


/*-------------------
    First section
-------------------*/
.first_section
{
    position: relative;
    z-index: 3;

    overflow: hidden;

    padding-top: 155px;
    padding-bottom: 127px;
}

.first_section:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    display: block;

    width: 1148px;
    height: 100%;

    content: '';
    transform: rotate(-180deg);

    background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 87.63%);
}


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


.first_section .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.first_section .data
{
    width: 834px;
    max-width: 100%;
    margin-right: 134px;
    margin-left: auto;
}


.first_section .name
{
    font-size: 64px;
    font-weight: 600;
    line-height: 78px;

    text-transform: capitalize;
}


.first_section .post
{
    color: #7e5d52;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;

    margin-top: 1px;

    text-transform: lowercase;
}


.first_section .quote
{
    font-size: 18px;
    line-height: 36px;

    position: relative;

    width: 661px;
    max-width: 100%;
    margin-top: 90px;
}

.first_section .quote2
{
    width: 678px;
    max-width: calc(100% - 158px);
    margin-top: 60px;
    margin-left: 158px;
}

.first_section .quote a
{
    color: currentColor;
    font-weight: 500;
}

.first_section .quote a:hover
{
    text-decoration: none;
}


.first_section .quote:before
{
    position: absolute;
    top: -20px;
    right: 100%;

    display: block;

    width: 50px;
    height: 50px;
    margin-right: 30px;

    content: '';

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


.first_section .img
{
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;

    display: block;

    width: 719px;
    height: 758px;

    pointer-events: none;

    mix-blend-mode: darken;
}



/*----------------
    About info
----------------*/
.about_info
{
    color: #fff;

    position: relative;
    z-index: 3;

    overflow: hidden;

    margin-bottom: 60px;
    padding: 134px 0 58px;

    background: linear-gradient(180deg, rgba(255, 255, 255, .2) 6.14%, rgba(255, 255, 255, 0) 100%), #7e5d52;
}


.about_info .cont
{
    position: relative;
    z-index: 3;
}


.about_info .logo
{
    margin-bottom: 110px;
}

.about_info .logo img
{
    display: block;

    width: 596px;
}


.about_info .title
{
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;

    margin-bottom: 44px;

    text-transform: uppercase;
}


.about_info .advantages
{
    font-size: 20px;
    line-height: 28px;

    display: flex;

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


.about_info .advantages .item
{
    display: flex;

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

.about_info .advantages .item + .item
{
    margin-left: 108px;
}


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

    width: 48px;
    height: 48px;
    margin-right: 27px;
}


.about_info .btn
{
    color: #7e5d52;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
    text-align: center;

    margin-left: auto;
    padding: 30px 103px;

    transition: .2s;
    text-transform: uppercase;

    border-radius: 80px;
    background: #fff;

    align-self: flex-end;
}

.about_info .btn:hover
{
    color: #fff;

    background: #7e5d52;
}


.about_info .img
{
    position: absolute;
    z-index: 1;
    right: 50%;
    bottom: -275px;

    display: block;

    width: 743px;
    height: 1115px;
    margin-right: -770px;

    pointer-events: none;

    mix-blend-mode: soft-light;
}

.about_info .img.loaded
{
    opacity: .85;
}


.about_info .bg
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    pointer-events: none;

    object-fit: cover;
}



/*------------
    Videos
------------*/
.videos .swiper
{
    overflow: visible !important;
}


.videos .swiper-slide
{
    width: 494px;
}


.videos .item
{
    color: currentColor;

    display: block;

    text-decoration: none;
}


.videos .item .thumb
{
    position: relative;

    margin-bottom: 24px;
    padding-bottom: 55.263%;

    background: #ddd;
}

.videos .item .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    transition: transform .2s;

    object-fit: cover;
}


.videos .item .info
{
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 124px;
    padding-right: 144px;
    padding-bottom: 14px;

    border-bottom: 1px solid #7e5d52;

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


.videos .item .name
{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;

    position: relative;

    margin-bottom: 16px;
    padding-bottom: 16px;

    text-transform: uppercase;
}

.videos .item .name:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 72px;
    height: 1px;

    content: '';

    background: #7e5d52;
}


.videos .item .date
{
    font-size: 12px;
    line-height: 15px;

    margin-top: auto;
}


.videos .item .info .btn
{
    color: #fff;

    position: absolute;
    top: 0;
    right: 0;

    display: flex;

    width: 124px;
    height: 100%;

    border: 1px solid #7e5d52;
    background: #7e5d52;

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

.videos .item .info .btn .icon
{
    display: block;

    width: 48px;
    height: 33px;
}


.videos .item:hover .thumb img
{
    transform: scale(1.05);
}



/*-------------------
    Articles page
-------------------*/
.articles_page
{
    padding-top: 60px;
}



/*--------------
    Articles
--------------*/
.articles .row
{
    margin-bottom: -73px;
    margin-left: -73px;

    --articles_count: 3;
}

.articles .row > *
{
    width: calc(33.333% - 73px);
    margin-bottom: 73px;
    margin-left: 73px;
}

.articles .row > *.hide
{
    display: none;
}


.articles .article
{
    display: flex;

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


.articles .article .thumb
{
    color: currentColor;

    position: relative;

    display: block;

    width: 100%;
    margin-bottom: 28px;
    padding-bottom: 51.865%;

    text-decoration: none;

    background: #ddd;
}

.articles .article .thumb:after
{
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    height: 5px;
    margin-top: 7px;

    content: '';

    background: #7e5d52;
}

.articles .article .thumb img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    transition: transform .2s;

    object-fit: cover;
}


.articles .article .name
{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;

    position: relative;

    width: 100%;
    padding-bottom: 16px;
}

.articles .article .name a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

.articles .article .name:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 72px;
    height: 1px;

    content: '';

    background: #7e5d52;
}


.articles .article .desc
{
    font-size: 15px;
    line-height: 24px;

    width: 451px;
    max-width: 100%;
    margin-top: 16px;
}


.articles .article .date
{
    color: #828282;
    font-size: 12px;
    line-height: 24px;

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


.articles .article .link
{
    color: #7e5d52;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    display: flex;

    margin-top: 23px;

    text-transform: uppercase;

    align-self: center;
}


.articles .article .link a
{
    color: currentColor;

    display: flex;

    text-decoration: none;

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


.articles .article .link .icon
{
    display: block;

    width: 48px;
    height: 9px;
    margin-left: 12px;

    transition: transform .2s;
    pointer-events: none;
}


.articles .article .author
{
    color: #828282;
    font-size: 12px;
    line-height: 24px;

    margin-top: 23px;
    margin-left: auto;

    align-self: center;
}


.articles .article:hover .link .icon
{
    transform: translateX(20px);
}

.articles .article:hover .thumb img
{
    transform: scale(1.05);
}



/*-------------
    Reviews
-------------*/
.reviews
{
    position: relative;

    display: flex;

    padding: 12px 0;

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

.reviews:before,
.reviews:after
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 4px;

    content: '';

    background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 100%);
}

.reviews:after
{
    top: auto;
    bottom: 0;
}


.reviews .title
{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;

    position: relative;
    z-index: 9;

    display: flex;

    width: 709px;
    max-width: 100%;
    min-height: 380px;
    padding: 24px;

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

    background: #7e5d52;

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

.reviews .title div
{
    position: relative;
    z-index: 3;
}

.reviews .title .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    object-fit: cover;
}


.reviews .swiper
{
    overflow: visible !important;

    width: 700px;
    max-width: 100%;
    margin: 0 auto;

    align-self: center;
}


.reviews .swiper-slide
{
    position: relative;

    visibility: hidden;

    transition: opacity .2s, visibility .2s;
    pointer-events: none;

    opacity: 0;
}

.reviews .swiper-slide.visible
{
    visibility: visible;

    pointer-events: auto;

    opacity: 1;
}


.reviews .review
{
    display: flex;

    padding-bottom: 25px;

    border-bottom: 1px solid #7e5d52;

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


.reviews .review .name
{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;

    width: 100%;
    margin-bottom: 12px;
}


.reviews .review .post
{
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
}


.reviews .review .date
{
    color: #828282;
    font-size: 12px;
    line-height: 15px;
}


.reviews .review .text
{
    font-size: 15px;
    line-height: 27px;

    position: relative;

    margin-top: 22px;
    padding-left: 51px;
}

.reviews .review .text:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 33px;
    height: 33px;

    content: '';

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


.reviews .controls
{
    display: flex;

    margin-top: 26px;

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


.reviews .count
{
    color: #828282;
    font-size: 12px;
    line-height: 24px;

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

    text-align: center;
}



/*---------------------
    Messenger posts
---------------------*/
.messenger_posts
{
    margin-bottom: 48px;
}


.messenger_posts .row
{
    margin-bottom: -40px;
    margin-left: -71px;

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

.messenger_posts .row > *
{
    width: calc(33.333% - 71px);
    margin-bottom: 40px;
    margin-left: 71px;
}


.messenger_posts .post
{
    display: flex;
    flex-direction: column;

    padding-bottom: 4px;

    border-bottom: 1px solid #f2f2f2;
}


.messenger_posts .post .head
{
    display: flex;

    margin-bottom: 30px;
    padding: 10px 20px;

    background: linear-gradient(90deg, rgba(126, 93, 82, .5) -175.28%, rgba(255, 255, 255, .5) 100%);

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


.messenger_posts .post .messenger
{
    color: currentColor;
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;

    display: flex;

    text-decoration: none;

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

.messenger_posts .post .messenger img
{
    display: block;

    width: 32px;
    height: 32px;
    margin-right: 17px;
}


.messenger_posts .post .date
{
    color: #828282;
    font-size: 12px;
    line-height: 24px;
}


.messenger_posts .post .text
{
    font-size: 15px;
    line-height: 27px;

    padding: 0 20px;

    flex: 1 0 auto;
}


.messenger_posts .post .link
{
    color: #7e5d52;
    font-size: 12px;
    line-height: 27px;

    margin-top: 4px;

    text-align: right;
}

.messenger_posts .post .link a,
.messenger_posts .post .text a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
}

.messenger_posts .post .link a:hover,
.messenger_posts .post .text a:hover
{
    text-decoration: none;
}



.messenger_posts .subscribe
{
    display: flex;

    margin-top: 51px;
    padding-bottom: 48px;

    text-align: center;

    border-bottom: 1px solid #f2f2f2;

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


.messenger_posts .subscribe .label
{
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    width: 100%;
    margin-bottom: 17px;

    text-transform: uppercase;
}


.messenger_posts .subscribe a
{
    color: currentColor;
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;

    display: flex;

    padding: 6px 30px;

    text-decoration: none;

    border: 1px solid #7e5d52;
    border-radius: 80px;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    transition: all 0.2s;
}

.messenger_posts .subscribe a:hover
{
    background: #7e5d52;
    color: #fff
}


.messenger_posts .subscribe a img
{
    display: block;

    width: 24px;
    height: 24px;
    margin-right: 7px;
}



/*----------------
    About data
----------------*/
.about_data
{
    margin-bottom: 39px;
    padding: 60px 0 62px;

    border-bottom: 1px solid #3d2d28;
}


.about_data .data
{
    width: 767px;
    max-width: 100%;
}


.about_data .name
{
    font-size: 56px;
    font-weight: 600;
    line-height: 68px;
}


.about_data .post
{
    color: #7e5d52;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;

    margin-top: 16px;

    text-transform: uppercase;
}


.about_data .desc
{
    font-size: 18px;
    line-height: 28px;

    margin-top: 69px;
}

.about_data .desc > * + *
{
    margin-top: 56px;
}


.about_data .image
{
    position: relative;

    overflow: hidden;

    width: 843px;
    max-width: 100%;
    height: 529px;
    margin-left: auto;

    background: #ddd;
}

.about_data .image img
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/*-----------------------------
    Tournament achievements
-----------------------------*/
.tournament_achievements
{
    margin-bottom: 60px;
}

.menu + .tournament_achievements
{
    margin-top: 40px;
}


.tournament_achievements .title
{
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;

    margin-bottom: 51px;

    text-transform: uppercase;
}


.tournament_achievements table
{
    width: 100%;

    table-layout: fixed;
    border-spacing: 0;
    border-collapse: collapse;
}


.tournament_achievements table th
{
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;

    padding-bottom: 17px;

    text-align: center;
    vertical-align: middle;

    border-bottom: 1px solid #7e5d52;
}


.tournament_achievements table td
{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;

    padding: 15px;

    text-align: center;
    vertical-align: middle;

    border-bottom: 1px solid #7e5d52;
}

.tournament_achievements table td + td
{
    border-left: 1px solid #7e5d52;
}

.tournament_achievements table td.small
{
    font-size: 15px;
    line-height: 20px;
}

.tournament_achievements table tbody tr:hover
{
    background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 100%);
    box-shadow: inset 0 0 0 3px var(--bg);
}



/*----------------
    Info block
----------------*/
.info_block
{
    position: relative;
    z-index: 3;

    display: flex;

    margin-bottom: 60px;

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

.info_block:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 666px;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transform: rotate(-180deg);

    background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 100%);
}


.info_block .image
{
    position: relative;
    z-index: 3;
}

.info_block .image img
{
    display: block;

    max-width: 100%;
}


.info_block .desc
{
    font-size: 18px;
    line-height: 28px;

    position: relative;
    z-index: 3;

    width: 757px;
    max-width: 100%;
    margin-left: 34px;
    padding: 60px;
}

.info_block .desc.big
{
    width: 869px;
}


.info_block .desc > * + *
{
    margin-top: 24px;
}



/*--------------
    Students
--------------*/
.students
{
    position: relative;
    z-index: 5;

    margin-bottom: 60px;
}


.students .cont
{
    position: relative;
    z-index: 3;
}


.students .title
{
    font-size: 32px;
    font-weight: 600;
    line-height: 28px;

    margin-bottom: 28px;
}


.students .list
{
    font-size: 18px;
    line-height: 28px;

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

.students .list > * + *
{
    margin-top: 28px;
}


.students .img
{
    position: absolute;
    z-index: 1;
    right: 50%;
    bottom: -70px;

    display: block;

    width: 635px;
    height: 915px;
    margin-right: -1249px;
}



/*------------------
    Classes info
------------------*/
.classes_info
{
    position: relative;
    z-index: 3;

    padding: 60px 0 80px;
}


.classes_info .cont
{
    position: relative;
    z-index: 3;
}

.classes_info .cont > * + *
{
    margin-top: 64px;
}


.classes_info .desc
{
    font-size: 19px;
    line-height: 28px;

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

.classes_info .desc > * + *
{
    margin-top: 28px;
}


.classes_info .groups .row
{
    margin-bottom: -60px;
    margin-left: -60px;

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

.classes_info .groups .row > *
{
    width: calc(50% - 60px);
    margin-bottom: 60px;
    margin-left: 60px;
}


.classes_info .groups .group
{
    color: #fff;

    display: flex;

    border: 1px solid #7e5d52;
    background: #7e5d52;

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


.classes_info .groups .logo
{
    width: 170px;
    max-width: 100%;
    padding: 43px 42px;

    transition: background .2s;

    border-right: 1px solid #fff;
}

.classes_info .groups .logo img
{
    display: block;

    max-width: 100%;
}

.classes_info .groups .logo img + img
{
    display: none;
}

.classes_info .groups .logo + *
{
    width: calc(100% - 170px);
}


.classes_info .groups .head
{
    padding: 44px 48px 39px;

    border-bottom: 1px solid #fff;
}

.classes_info .groups .head .name
{
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.classes_info .groups .head .rating
{
    font-size: 15px;
    line-height: 18px;

    margin-top: 11px;
}


.classes_info .groups .buy
{
    display: flex;

    padding: 41px 69px 48px 48px;

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


.classes_info .groups .days
{
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;

    display: flex;

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

.classes_info .groups .day
{
    width: 50%;
    padding: 32px 48px;

    border-bottom: 1px solid #fff;
}

.classes_info .groups .day + .day
{
    border-left: 1px solid #fff;
}

.classes_info .groups .day:nth-child(2n+1)
{
    border-left: none;
}


.classes_info .groups .days .time
{
    font-weight: 400;
}


.classes_info .groups .price .label
{
    font-size: 20px;
    line-height: 24px;

    margin-bottom: 8px;
}

.classes_info .groups .price .val
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    white-space: nowrap;
}


.classes_info .groups .buy .btn
{
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    display: block;

    margin-left: auto;
    padding: 15px 63px;

    transition: .2s;
    text-transform: uppercase;

    border: 1px solid #fff;
    border-radius: 80px;
}

.classes_info .groups .group:hover .buy .btn
{
    color: #7e5d52;

    background: #fff;
}


@media (min-width: 1025px) {
    .classes_info .groups .group:hover .logo {
        background: #fff;
    }

    .classes_info .groups .group:hover .logo img {
        display: none;
    }

    .classes_info .groups .group:hover .logo img + img {
        display: block;
    }
}


.classes_info .groups .exp
{
    color: #000;
    font-size: 15px;
    line-height: 18px;

    margin-top: 24px;

    text-align: right;
}


.classes_info .advantages .title
{
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;

    margin-bottom: 44px;

    text-transform: uppercase;
}


.classes_info .advantages .items
{
    font-size: 20px;
    line-height: 28px;

    display: flex;

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


.classes_info .advantages .item
{
    display: flex;

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

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

.classes_info .advantages .item + .item
{
    margin-left: 108px;
}


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

    width: 48px;
    height: 48px;
    margin-right: 27px;
}


.classes_info .order_free_btn
{
    color: #7e5d52;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: -10px;
    margin-left: auto;
    padding: 30px 103px;

    transition: .2s;
    text-transform: uppercase;

    border-radius: 80px;
    background: #fff;

    align-self: flex-end;
}

.classes_info .order_free_btn:hover
{
    color: #fff;

    background: #7e5d52;
}


.classes_info .bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-position: 50% 100%;
    object-fit: cover;
}

.classes_info .bg.loaded
{
    opacity: .25;
}



/*------------------
    Courses page
------------------*/
.courses_page
{
    padding-top: 60px;
}



/*-------------
    Courses
-------------*/
.courses .tabs
{
    display: flex;

    margin-bottom: 60px;

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


.courses .tabs .btn
{
    display: block;

    width: 100%;

    transition: opacity .2s;
    text-align: center;

    opacity: .3;
}

.courses .tabs .btn + .btn
{
    margin-left: 66px;
}


.courses .tabs .btn .name
{
    color: #7e5d52;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    padding: 30px;

    text-transform: uppercase;

    border-bottom: 2px solid #7e5d52;
    background: #fff;
}


.courses .tabs .btn .desc
{
    font-size: 14px;
    line-height: 24px;

    margin: 60px 60px 0;
}


.courses .tabs .btn:hover,
.courses .tabs .btn.active
{
    opacity: 1;
}



.courses .tab_content .desc
{
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 20px;

}

.courses .tab_content > .desc
{
    display: none;
}


.courses .row
{
    margin-bottom: -73px;
    margin-left: -73px;

    --courses_count: 3;
}

.courses .row > *
{
    width: calc(33.333% - 73px);
    margin-bottom: 73px;
    margin-left: 73px;
}


.courses .course
{
    position: relative;

    display: flex;

    padding-bottom: 24px;

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

.courses .course:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 4px;

    content: '';

    background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 100%);
}


.courses .course .thumb
{
    color: currentColor;

    position: relative;

    display: block;

    width: 100%;
    margin-bottom: 16px;
    padding-bottom: 42.910%;

    text-decoration: none;

    background: #ddd;
}

.courses .course .thumb .icon
{
    color: #fff;

    position: absolute;
    z-index: 3;
    top: 13px;
    left: 14px;

    display: block;

    width: 51px;
    height: 51px;
}

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

    display: block;

    width: 100%;
    height: 100%;

    transition: transform .2s;

    object-fit: cover;
}


.courses .course .name
{
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;

    position: relative;

    width: calc(100% - 124px);
    padding-bottom: 16px;

    text-transform: uppercase;
}

.courses .course .name a
{
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

.courses .course .name:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 72px;
    height: 1px;

    content: '';

    background: #7e5d52;
}


.courses .course .rating
{
    color: #828282;
    font-size: 12px;
    line-height: 24px;

    width: 116px;
    margin-left: auto;

    text-align: right;

    align-self: flex-start;
}


.courses .course .desc
{
    font-size: 15px;
    line-height: 24px;

    max-width: 100%;
    margin-top: 16px;
}


.courses .course .price
{
    font-size: 20px;
    line-height: 24px;

    margin-top: 10px;

    white-space: nowrap;
}

.courses .course .price b
{
    margin-left: 6px;
}


.courses .course .buy_btn
{
    color: #7e5d52;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    margin-top: 10px;
    margin-left: auto;
    padding: 9px 63px;

    transition: .2s;
    text-transform: uppercase;

    border: 1px solid #7e5d52;
    border-radius: 80px;
}

.courses .course:hover .buy_btn
{
    color: #fff;

    background: #7e5d52;
}


.courses .course:hover .thumb img
{
    transform: scale(1.05);
}



/*------------------
    Article info
------------------*/
.article_info
{
    padding-top: 60px;
}


.article_info .head
{
    color: #fff;

    position: relative;
    z-index: 3;

    display: flex;
    overflow: hidden;

    margin-bottom: 30px;
    padding: 57px 57px 60px;

    text-align: center;

    background: #ddd;

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

.article_info .head > *
{
    position: relative;
    z-index: 3;
}

.article_info .head:after
{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .1;
    background: #3d2d28;
}


.article_info .head .logo
{
    width: 100%;
    margin-bottom: 26px;
}

.article_info .head .logo img
{
    display: block;

    width: 80px;
    margin-right: auto;
    margin-left: auto;
}


.article_info .head .author,
.article_info .head .date
{
    font-size: 16px;
    line-height: 24px;

    margin: 0 12px;

    white-space: nowrap;
}


.article_info .head .title
{
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;

    display: block;

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


.article_info .head .bg,
.article_info .head .mobile_bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.article_info .head .mobile_bg
{
    display: none;
}



.article_info .text_block
{
    width: 1060px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}



/*-----------------
    Course info
-----------------*/
.course_info
{
    padding-top: 60px;
}


.course_info .video
{
    width: 796px;
    max-width: 100%;
    margin: 0 auto 26px;
}


.course_info .video .btn
{
    color: currentColor;

    position: relative;

    display: block;
    overflow: hidden;

    height: 447px;

    text-decoration: none;

    background: #ddd;
}


.course_info .video .icon
{
    color: #fff;

    position: absolute;
    z-index: 3;

    display: block;

    width: 176px;
    height: 176px;
    margin: auto;

    inset: 0;
}


.course_info .video .btn img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.course_info .buy
{
    position: relative;

    display: flex;

    width: 796px;
    max-width: 100%;
    margin: 0 auto 70px;
    padding-bottom: 18px;

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

.course_info .buy:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 4px;

    content: '';

    background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 100%);
}


.course_info .buy .price
{
    font-size: 20px;
    line-height: 24px;

    white-space: nowrap;
}

.course_info .buy .price b
{
    margin-left: 6px;
}


.course_info .buy .buy_btn
{
    color: #7e5d52;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    margin-left: auto;
    padding: 9px 63px;

    transition: .2s;
    text-transform: uppercase;

    border: 1px solid #7e5d52;
    border-radius: 80px;
}

.course_info .buy .buy_btn:hover
{
    color: #fff;

    background: #7e5d52;
}


.course_info .title
{
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;

    display: block;

    margin-bottom: 60px;

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


.course_info .text_block
{
    width: 1060px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}



/*------------
    Footer
------------*/
footer
{
    color: #000;
    font-size: 12px;
    line-height: 24px;

    position: relative;

    padding: 30px 0;
}

footer:before
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;

    width: 1750px;
    max-width: 100%;
    height: 1px;
    margin: auto;

    content: '';

    background: #7e5d52;
}


footer .cont
{
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

footer .wrap-copyright
{
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}



footer .logo img
{
    display: block;

    width: 29px;
    height: 33px;
}



footer .copyright
{
    margin-left: 22px;
}

footer a {
    color: #7e5d52;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.2s;
}
footer a:hover {
    border-bottom-color: #7e5d52;
}

/*-----------
    PopUp
-----------*/
.modal
{
    color: var(--text_color);

    visibility: visible !important;

    width: 934px;
    max-width: 100%;
    padding: 147px 80px 54px;

    background: #fff;
}



.modal .course
{
    font-size: 20px;
    line-height: 24px;

    padding: 24px 0 46px;

    text-align: center;
}

.modal .course .price
{
    font-weight: 700;

    margin-top: 12px;
}

.loaded-block {
    opacity: 0;
    transition: opacity 0.3s;
}
.loaded-block.onloaded {
    opacity: 1;
}

@media (min-width: 1024px)
{
    .menu.show {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }
    .menu .close_btn {
        display: none;
    }
    .menu .socials {
        display: none;
    }

    .menu .logo {
        display: none;
    }

    .menu .order_free {
        margin-top: 40px;
        padding-top: 30px;
        padding-left: 50px;
    }
    .menu .order_free .btn .icon {
        display: none;
    }

    .menu {
        top: 125px;
        left: 100%;
        display: flex;
        overflow: visible;
        width: auto;
        height: auto;
        min-height: 0;
        padding: 30px 0 30px;
    }

    .menu .links {
        font-size: 26px;
        font-weight: 600;
        line-height: 32px;
        padding-right: 50px;
        padding-left: 50px;
    }

    .menu .links > * + * {
        margin-top: 30px;
    }
    .menu .data {
        width: 500px;
    }


}

@media print,
(max-width: 1899px)
{
    /*-------------------
        Global styles
    -------------------*/
    .cont
    {
        padding: 0 40px;
    }



    /*---------------
        Load more
    ---------------*/
    .load_more
    {
        margin-top: 60px;
    }



    /*--------------
        Fancybox
    --------------*/
    .modal.fancybox__content > .carousel__button.is-close
    {
        top: 40px;
        right: 60px;
    }

    /*-------------------
        First section
    -------------------*/
    .first_section
    {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .first_section:after
    {
        right: auto;
        left: 666px;
    }


    .first_section .data
    {
        width: 742px;
        margin-right: 0;
    }


    .first_section .quote
    {
        font-size: 17px;
        line-height: 32px;
    }

    .first_section .quote2
    {
        width: 658px;
        max-width: calc(100% - 84px);
        margin-left: 84px;
    }


    .first_section .img
    {
        width: 678px;
        height: 715px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info .advantages
    {
        display: block;
    }


    .about_info .advantages .item + .item
    {
        margin-top: 44px;
        margin-left: 0;
    }



    /*--------------
        Articles
    --------------*/
    .articles .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .articles .row > *
    {
        width: calc(33.333% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }



    /*-------------
        Reviews
    -------------*/
    .reviews .title
    {
        width: 520px;
    }



    /*---------------------
        Messenger posts
    ---------------------*/
    .messenger_posts .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .messenger_posts .row > *
    {
        width: calc(33.333% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }



    /*-------------
        Courses
    -------------*/
    .courses .tabs
    {
        margin-bottom: 50px;
    }


    .courses .tabs .btn + .btn
    {
        margin-left: 40px;
    }


    .courses .tabs .btn .desc
    {
        margin: 40px 40px 0;
    }


    .courses .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .courses .row > *
    {
        width: calc(33.333% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }



    /*-----------------
        Course info
    -----------------*/
    .course_info
    {
        padding-top: 50px;
    }


    .course_info .buy
    {
        margin-bottom: 60px;
    }


    .course_info .title
    {
        margin-bottom: 50px;
    }



    /*------------------
        Classes info
    ------------------*/
    .classes_info .cont > * + *
    {
        margin-top: 60px;
    }


    .classes_info .groups .row
    {
        margin-bottom: -40px;
        margin-left: -40px;
    }

    .classes_info .groups .row > *
    {
        width: calc(50% - 40px);
        margin-bottom: 40px;
        margin-left: 40px;
    }


    .classes_info .groups .logo
    {
        width: 152px;
        padding: 40px;
    }


    .classes_info .groups .logo + *
    {
        width: calc(100% - 152px);
    }


    .classes_info .groups .head
    {
        padding: 36px;
    }


    .classes_info .groups .head .name
    {
        font-size: 24px;
        line-height: 30px;
    }


    .classes_info .groups .head .rating
    {
        font-size: 14px;

        margin-top: 8px;
    }


    .classes_info .groups .days
    {
        font-size: 18px;
        line-height: 32px;
    }

    .classes_info .groups .day
    {
        padding: 32px 36px;
    }


    .classes_info .groups .buy
    {
        padding: 32px 36px;
    }


    .classes_info .groups .price .label,
    .classes_info .groups .price .val
    {
        font-size: 18px;
        line-height: 22px;
    }


    .classes_info .groups .buy .btn
    {
        font-size: 15px;
        line-height: 19px;

        padding: 12px 47px;
    }


    .classes_info .row .advantages
    {
        width: 100%;
    }


    .classes_info .order_free_btn
    {
        margin-top: 60px;
        margin-bottom: 0;
        margin-left: 0;
        padding: 20px 80px;
    }



    /*------------------
        Article info
    ------------------*/
    .article_info
    {
        padding-top: 50px;
    }



    /*----------------
        About data
    ----------------*/
    .about_data
    {
        padding: 60px 0;
    }


    .about_data .data
    {
        width: calc(50% - 20px);
    }


    .about_data .name
    {
        font-size: 48px;
        line-height: 59px;
    }


    .about_data .post
    {
        font-size: 19px;
        line-height: 23px;

        margin-top: 9px;
    }


    .about_data .desc
    {
        font-size: 17px;
        line-height: 27px;

        margin-top: 40px;
    }

    .about_data .desc > * + *
    {
        margin-top: 28px;
    }



    .about_data .image
    {
        width: calc(50% - 20px);
        height: 400px;
    }



    /*----------------
        Info block
    ----------------*/
    .info_block .image
    {
        width: calc(50% - 20px);
    }


    .info_block .desc,
    .info_block .desc.big
    {
        font-size: 17px;
        line-height: 27px;

        width: calc(50% - 20px);
        margin-left: 20px;
        padding: 50px;
    }

    .info_block .desc > * + *
    {
        margin-top: 24px;
    }



    /*--------------
        Students
    --------------*/
    .students .list
    {
        font-size: 17px;
        line-height: 27px;
    }

    .students .list > * + *
    {
        margin-top: 24px;
    }


    .students .img
    {
        right: -262px;

        width: 592px;
        height: 852px;
        margin-right: 0;
    }



    /*-----------
        PopUp
    -----------*/
    .modal
    {
        width: 800px;
        padding: 120px 60px 60px;
    }
}

@media print,
(max-width: 1439px)
{
    /*-------------------
        Global styles
    -------------------*/
    .block
    {
        margin-bottom: 60px;
    }



    /*---------------
        Load more
    ---------------*/
    .load_more
    {
        margin-top: 50px;
    }



    /*--------------
        Fancybox
    --------------*/
    .modal.fancybox__content > .carousel__button.is-close
    {
        right: 40px;
    }






    /*----------------
        Block head
    ----------------*/
    .block_head
    {
        margin-bottom: 60px;
    }


    .menu .data {
        width: 480px;
    }

    .menu .links {
        font-size: 22px;
        line-height: 26px;
        padding-right: 40px;
        padding-left: 40px;
    }

    .menu .links > * + * {
        margin-top: 25px;
    }

    .menu .order_free {
        margin-top: 30px;
        padding-top: 20px;
        padding-left: 40px;
    }

    /*------------------
        Form elements
    ------------------*/
    .form .line
    {
        margin-bottom: 32px;
    }


    .form .label
    {
        font-size: 17px;
        line-height: 21px;

        margin-bottom: 4px;
    }



    .form .input
    {
        font-size: 18px;

        height: 40px;
    }


    .form .agree
    {
        margin-top: -12px;
    }



    /*----------------
        Typography
    ----------------*/
    .text_block figure figcaption
    {
        margin-top: 30px;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section
    {
        padding-top: 67px;
        padding-bottom: 76px;
    }


    .first_section .img
    {
        left: -68px;

        width: 604px;
        height: 636px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info
    {
        padding: 98px 0 58px;
    }


    .about_info .logo
    {
        margin-bottom: 106px;
    }

    .about_info .logo img
    {
        width: 420px;
    }



    /*--------------
        Articles
    --------------*/
    .articles .row
    {
        margin-left: -24px;
    }

    .articles .row > *
    {
        width: calc(33.333% - 24px);
        margin-left: 24px;
    }



    /*-------------
        Reviews
    -------------*/
    .reviews .title
    {
        width: 392px;
    }



    /*---------------------
        Messenger posts
    ---------------------*/
    .messenger_posts .row
    {
        margin-bottom: -24px;
        margin-left: -24px;
    }

    .messenger_posts .row > *
    {
        width: calc(33.333% - 24px);
        margin-bottom: 24px;
        margin-left: 24px;
    }



    /*------------------
        Courses page
    ------------------*/
    .courses_page
    {
        padding-top: 34px;
    }



    /*-------------
        Courses
    -------------*/
    .courses .tabs
    {
        margin-bottom: 40px;
    }


    .courses .tabs .btn + .btn
    {
        margin-left: 24px;
    }


    .courses .tabs .btn .desc
    {
        margin: 24px 24px 0;
    }


    .courses .row
    {
        margin-bottom: -24px;
        margin-left: -24px;
    }

    .courses .row > *
    {
        width: calc(33.333% - 24px);
        margin-bottom: 24px;
        margin-left: 24px;
    }


    .courses .course .thumb .icon
    {
        width: 40px;
        height: 40px;
    }


    .courses .course .price
    {
        font-size: 18px;
        line-height: 22px;

        margin-top: 24px;
    }


    .courses .course .buy_btn
    {
        margin-top: 24px;
        padding: 9px 47px;
    }



    /*-----------------
        Course info
    -----------------*/
    .course_info
    {
        padding-top: 40px;
    }


    .course_info .buy
    {
        margin-bottom: 50px;
    }


    .course_info .title
    {
        margin-bottom: 40px;
    }



    /*------------------
        Classes info
    ------------------*/
    .classes_info .desc
    {
        font-size: 17px;
    }


    .classes_info .groups .row
    {
        margin-bottom: -24px;
        margin-left: -24px;
    }

    .classes_info .groups .row > *
    {
        width: calc(50% - 24px);
        margin-bottom: 24px;
        margin-left: 24px;
    }


    .classes_info .groups .logo
    {
        width: 128px;
        padding: 32px;
    }


    .classes_info .groups .logo + *
    {
        width: calc(100% - 128px);
    }


    .classes_info .groups .head
    {
        padding: 32px;
    }


    .classes_info .groups .head .name
    {
        font-size: 21px;
        line-height: 26px;
    }


    .classes_info .groups .head .rating
    {
        font-size: 12px;
        line-height: 15px;
    }


    .classes_info .groups .days
    {
        font-size: 15px;
        line-height: 30px;
    }

    .classes_info .groups .day
    {
        padding: 24px 32px;
    }


    .classes_info .groups .buy
    {
        padding: 24px 32px;
    }


    .classes_info .groups .price .label,
    .classes_info .groups .price .val
    {
        font-size: 15px;
        line-height: 18px;
    }

    .classes_info .groups .price .label
    {
        margin-bottom: 6px;
    }


    .classes_info .groups .buy .btn
    {
        font-size: 12px;
        line-height: 15px;

        padding: 11px 47px;
    }


    .classes_info .advantages .title
    {
        margin-bottom: 40px;
    }


    .classes_info .advantages .items
    {
        font-size: 18px;
        line-height: 26px;
    }

    .classes_info .advantages .item
    {
        width: 424px;
    }


    .classes_info .order_free_btn
    {
        padding: 16px 64px;
    }



    /*------------------
        Article info
    ------------------*/
    .article_info
    {
        padding-top: 40px;
    }



    /*-----------
        PopUp
    -----------*/
    .modal
    {
        width: 720px;
    }
}

@media print,
(max-width: 1279px)
{
    /*-------------------
        Global styles
    -------------------*/
    .cont
    {
        padding: 0 24px;
    }


    html.custom_scroll ::-webkit-scrollbar
    {
        width: 5px;
        height: 5px;
    }



    /*---------------
        Load more
    ---------------*/
    .load_more
    {
        margin-top: 40px;
    }



    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 32px;
    }





    /*----------------
        Block head
    ----------------*/
    .block_head
    {
        margin-bottom: 50px;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section
    {
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .first_section:after
    {
        left: 424px;

        width: 898px;
    }


    .first_section .data
    {
        width: 100%;
    }


    .first_section .name
    {
        font-size: 56px;
        line-height: 66px;
    }


    .first_section .post
    {
        font-size: 22px;
        line-height: 26px;

        margin-top: 9px;
    }


    .first_section .quote
    {
        width: calc(100% - 360px);
        margin-left: auto;
    }

    .first_section .quote2
    {
        width: calc(100% - 460px);
        margin-left: auto;
    }


    .first_section .img
    {
        left: -56px;

        width: 502px;
        height: 529px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info
    {
        padding: 60px 0;
    }


    .about_info .logo
    {
        margin-bottom: 60px;
    }

    .about_info .logo img
    {
        width: 320px;
    }


    .about_info .title
    {
        font-size: 22px;
        line-height: 27px;

        margin-bottom: 40px;
    }


    .about_info .advantages
    {
        font-size: 18px;
        line-height: 24px;
    }


    .about_info .img
    {
        width: 640px;
        height: 960px;
        margin-right: -636px;
    }



    /*------------
        Videos
    ------------*/
    .videos .swiper-slide
    {
        width: 453px;
    }



    /*--------------
        Articles
    --------------*/
    .articles .article .date
    {
        width: auto;
        margin-top: 16px;
    }


    .articles .article .link
    {
        width: 100%;
        margin-top: 12px;

        order: 3;
    }


    .articles .article .author
    {
        margin-top: 16px;
    }



    /*-------------
        Reviews
    -------------*/
    .reviews
    {
        margin-right: 24px;
        margin-left: 24px;
        padding-bottom: 24px;
    }


    .reviews .title
    {
        width: 100%;
        min-height: 0;
        margin-bottom: 22px;
        padding: 22px;
    }


    .reviews .swiper
    {
        width: 100%;
    }



    /*-------------
        Courses
    -------------*/
    .courses .tabs .btn .desc
    {
        margin: 24px 0 0;
    }


    .courses .course .name
    {
        width: 100%;
    }


    .courses .course .rating
    {
        width: 100%;
        margin-top: 16px;

        text-align: left;
    }



    /*---------------------
        Messenger posts
    ---------------------*/
    .messenger_posts .post .text
    {
        padding: 0 12px;
    }



    /*------------------
        Classes info
    ------------------*/
    .classes_info .desc
    {
        font-size: 19px;
    }


    .classes_info .groups .row
    {
        margin-left: 0;
    }

    .classes_info .groups .row > *
    {
        width: 100%;
        margin-left: 0;
    }


    .classes_info .groups .logo
    {
        width: 144px;
        padding: 40px;
    }

    .classes_info .groups .logo + *
    {
        width: calc(100% - 144px);
    }


    .classes_info .groups .head,
    .classes_info .groups .day,
    .classes_info .groups .buy
    {
        padding: 30px 40px;
    }


    .classes_info .groups .head .name
    {
        font-size: 28px;
        line-height: 34px;
    }


    .classes_info .groups .head .rating
    {
        font-size: 15px;
        line-height: 18px;

        margin-top: 12px;
    }


    .classes_info .groups .days
    {
        font-size: 20px;
        line-height: 40px;
    }


    .classes_info .groups .price .label,
    .classes_info .groups .price .val
    {
        font-size: 20px;
        line-height: 24px;
    }


    .classes_info .groups .buy .btn
    {
        font-size: 16px;
        line-height: 20px;

        padding: 15px 63px;
    }


    .classes_info .order_free_btn
    {
        padding: 30px 103px;
    }



    /*----------------
        About data
    ----------------*/
    .about_data
    {
        padding: 50px 0;
    }


    .about_data .data
    {
        width: 100%;
    }


    .about_data .desc
    {
        font-size: 16px;
        line-height: 28px;

        margin-top: 29px;
    }



    .about_data .image
    {
        width: 100%;
        height: auto;
        margin-top: 29px;
        padding-bottom: 56%;
    }



    /*-----------------------------
        Tournament achievements
    -----------------------------*/
    .tournament_achievements
    {
        margin-bottom: 50px;
    }


    .tournament_achievements .title
    {
        margin-bottom: 40px;
    }


    .tournament_achievements table td
    {
        font-size: 18px;
    }

    .tournament_achievements table td.small
    {
        font-size: 14px;
        line-height: 18px;
    }

    .tournament_achievements table td br
    {
        display: none;
    }



    /*----------------
        Info block
    ----------------*/
    .info_block
    {
        padding: 0 24px;
    }


    .info_block .image
    {
        width: 100%;
    }


    .info_block .desc,
    .info_block .desc.big
    {
        font-size: 16px;
        line-height: 28px;

        width: 100%;
        margin-left: 0;
        padding: 50px 0;
    }

    .info_block .desc > * + *
    {
        margin-top: 24px;
    }



    /*--------------
        Students
    --------------*/
    .students .list
    {
        font-size: 16px;
        line-height: 28px;
    }
}

@media print,
(max-width: 1023px)
{
    /*-------------------
        Global styles
    -------------------*/

    body.menu_open {
        overflow: hidden;
    }

    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 24px;
    }



    /*----------
        Menu
    ----------*/
    .menu
    {
        padding: 100px 0 0;
    }

    .menu.show
    {
        display: flex;
        flex-direction: column;
    }


    .menu .data
    {
        display: flex;
        flex-direction: column;

        width: 100%;

        flex: 1 0 auto;
    }


    .menu .links
    {
        font-size: 32px;
        line-height: 39px;

        padding: 0 40px;

        flex: 1 0 auto;
    }

    .menu .links > * + *
    {
        margin-top: 40px;
    }


    .menu .order_free
    {
        margin-top: 64px;
        padding: 51px 40px 0;
    }


    .menu .socials
    {
        margin-top: 64px;
        padding: 0 40px 64px;
    }


    .menu .logo
    {
        top: auto;
        bottom: 0;
        left: 0;

        min-width: 0;
        height: 240px;
    }



    /*---------------
        Prev/Next
    ---------------*/
    .prev_next
    {
        margin-top: 60px;
    }



    /*----------------
        Typography
    ----------------*/
    .text_block .gallery
    {
        margin-top: 50px;
        margin-bottom: 50px;

        justify-content: space-between;
    }


    .text_block .gallery figure
    {
        width: 334px;
        margin: 0;
    }


    .text_block .example
    {
        margin-top: 50px;
        margin-bottom: 50px;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section
    {
        padding-top: 50px;
        padding-bottom: 72px;
    }

    .first_section:after
    {
        left: 238px;
    }


    .first_section .name
    {
        font-size: 48px;
        line-height: 59px;
    }


    .first_section .post
    {
        font-size: 19px;
        line-height: 23px;
    }


    .first_section .quote
    {
        font-size: 16px;
        line-height: 30px;

        width: calc(100% - 309px);
        margin-top: 45px;
    }

    .first_section .quote2
    {
        width: calc(100% - 410px);
        margin-top: 52px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info
    {
        margin-bottom: 50px;
    }


    .about_info .advantages
    {
        width: 100%;
    }


    .about_info .btn
    {
        margin-top: 60px;
        margin-left: 0;
    }


    .about_info .img
    {
        right: 0;

        width: 743px;
        height: 1115px;
        margin-right: -220px;
    }



    /*--------------
        Articles
    --------------*/
    .articles .row
    {
        --articles_count: 2;
    }


    .articles .row > *
    {
        width: calc(50% - 24px);
    }

    .articles .row > *.hide
    {
        display: flex;
    }



    /*-------------
        Courses
    -------------*/
    .courses .tabs
    {
        width: calc(100% + 48px);
        margin-right: -24px;
        margin-left: -24px;
    }


    .courses .tabs .btn .desc
    {
        display: none;
    }


    .courses .tab_content .desc
    {
        display: block;
    }


    .courses .row
    {
        --courses_count: 2;
    }

    .courses .row > *
    {
        width: calc(50% - 24px);
    }


    .courses .course .price
    {
        font-size: 20px;
        line-height: 24px;

        width: 100%;
        margin-top: 38px;

        text-align: center;
    }


    .courses .course .buy_btn
    {
        margin-right: auto;
        margin-left: auto;
        padding: 9px 63px;
    }



    /*---------------------
        Messenger posts
    ---------------------*/
    .messenger_posts
    {
        margin-bottom: 50px;
    }


    .messenger_posts .row > *
    {
        width: calc(50% - 24px);
    }



    /*-----------------
        Course info
    -----------------*/
    .course_info .video .btn
    {
        height: 404px;
    }


    .course_info .video .icon
    {
        width: 160px;
        height: 160px;
    }



    /*------------------
        Classes info
    ------------------*/
    .classes_info
    {
        padding: 50px 0;
    }


    .classes_info .advantages .item
    {
        width: 100%;
    }

    .classes_info .advantages .item + .item
    {
        margin-top: 40px;
        margin-left: 0;
    }



    /*------------------
        Article info
    ------------------*/
    .article_info
    {
        padding-top: 24px;
    }


    .article_info .head
    {
        margin-bottom: 40px;
    }

    .modal {
        width: 620px;
    }
}

@media print,
(max-width: 767px)
{
    /*-------------------
        Global styles
    -------------------*/



    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 20px;
    }


    .modal.fancybox__content > .carousel__button.is-close
    {
        top: 35px;
        right: 20px;
    }



    /*---------------
        Prev/Next
    ---------------*/
    .prev_next
    {
        position: relative;

        margin-top: 50px;
        padding: 39px 0 0;

        background: none;
    }

    .prev_next:before
    {
        position: absolute;
        top: 0;
        left: -24px;

        display: block;

        width: calc(100% + 48px);
        height: 4px;

        content: '';

        background: linear-gradient(90deg, rgba(126, 93, 82, .5) 0%, rgba(255, 255, 255, .5) 100%);
    }


    .prev_next a
    {
        width: 48px;
        padding: 0;
    }

    .prev_next a span
    {
        display: none;
    }

    .prev_next a .icon,
    .prev_next a.prev_link .icon
    {
        margin: 0;
    }



    /*------------
        Header
    ------------*/
    header
    {
        padding: 30px 0;
    }


    header .logo img
    {
        width: 200px;
    }


    header .socials
    {
        display: none;
    }


    header .menu_btn
    {
        margin-left: auto;
    }

    header .menu_btn .icon
    {
        margin: 0;
    }

    header .menu_btn span
    {
        display: none;
    }



    /*----------
        Menu
    ----------*/
    .menu
    {
        padding: 80px 0 0;
    }


    .menu .close_btn
    {
        top: 35px;
        right: 20px;
    }


    .menu .links
    {
        font-size: 20px;
        line-height: 24px;

        padding: 0 20px;
    }

    .menu .links > * + *
    {
        margin-top: 32px;
    }


    .menu .order_free
    {
        margin-top: 40px;
        padding: 27px 20px 28px;

        order: 3;
    }

    .menu .order_free .btn
    {
        text-align: left;
    }

    .menu .order_free .btn span
    {
        width: 228px;
    }


    .menu .socials
    {
        margin-top: 40px;
        padding: 0 20px;
    }

    .menu .socials .email_link
    {
        margin-right: 0;
    }

    .menu .socials a + a
    {
        margin-left: 48px;
    }


    .menu .logo
    {
        height: 112px;
    }



    /*----------------
        Block head
    ----------------*/
    .block_head
    {
        margin-bottom: 48px;
    }



    /*------------------
        Form elements
    ------------------*/
    .form .label
    {
        font-size: 16px;
        line-height: 20px;
    }


    .text_block > figure
    {
        margin-top: 40px;
        margin-bottom: 40px;
    }


    .text_block .example
    {
        margin-top: 40px;
        margin-bottom: 40px;
    }


    .text_block .example .name
    {
        position: relative;

        width: 100%;
        margin-bottom: 40px;
    }

    .text_block .example img
    {
        margin: 0;
    }


    .text_block .gallery figure
    {
        width: 100%;
    }

    .text_block .gallery figure + figure
    {
        margin-top: 40px;
    }



    /*----------------
        Typography
    ----------------*/
    .text_block
    {
        font-size: 16px;
        line-height: 26px;
    }


    .text_block > *
    {
        margin-bottom: 24px;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section
    {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .first_section:after
    {
        top: auto;
        bottom: -455px;
        left: 50%;

        width: 898px;
        height: 887px;
        margin-left: -447px;

        transform: rotate(-90deg);
    }


    .first_section .name
    {
        font-size: 38px;
        line-height: 49px;

        padding-left: 180px;
    }


    .first_section .post
    {
        font-size: 17px;
        line-height: 21px;

        margin-top: 12px;
        padding-left: 204px;
    }


    .first_section .quote
    {
        font-size: 15px;
        line-height: 24px;

        z-index: 9;

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

    .first_section .quote:after
    {
        position: absolute;
        bottom: 100%;
        left: -24px;

        display: block;

        width: calc(100% + 48px);
        height: 60px;
        margin-bottom: 8px;

        content: '';

        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45.19%, #fff 74.81%);
    }

    .first_section .quote:before
    {
        z-index: 5;
        top: auto;
        right: 0;
        bottom: 100%;

        margin-bottom: 20px;
    }


    .first_section .quote2
    {
        width: calc(100% - 60px);
        margin-top: 28px;
    }

    .first_section .quote2:after
    {
        display: none;
    }

    .first_section .quote2:before
    {
        top: -8px;
        right: 100%;
        bottom: auto;

        margin-bottom: 0;
    }


    .first_section .img
    {
        z-index: 2;
        top: 13px;
        bottom: auto;
        left: -76px;

        width: 326px;
        height: 344px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info .logo img
    {
        width: 272px;
    }


    .about_info .title
    {
        font-size: 20px;
        line-height: 28px;
    }


    .about_info .advantages
    {
        font-size: 16px;
    }

    .about_info .advantages .item + .item
    {
        margin-top: 28px;
    }


    .about_info .btn
    {
        font-size: 18px;
        line-height: 22px;

        width: 100%;
        margin-top: 56px;
        padding: 18px 40px;
    }


    .about_info .img
    {
        bottom: -90px;

        width: 569px;
        height: 853px;
    }



    /*------------
        Videos
    ------------*/
    .videos .swiper-slide
    {
        width: 320px;
    }


    .videos .item .info
    {
        min-height: 0;
        padding: 0 0 28px;
    }


    .videos .item .info .btn
    {
        top: auto;
        bottom: 25px;

        width: 59px;
        height: 54px;
    }



    /*--------------
        Articles
    --------------*/
    .articles .row
    {
        margin-bottom: -24px;
        margin-left: 0;

        --articles_count: 1;
    }

    .articles .row > *
    {
        width: 100%;
        margin-bottom: 24px;
        margin-left: 0;
    }

    .articles .row > *.hide
    {
        display: none;
    }



    /*-------------
        Reviews
    -------------*/
    .reviews .title
    {
        font-size: 20px;
        line-height: 24px;
    }


    .reviews .review .text
    {
        font-size: 14px;
        line-height: 22px;
    }



    /*---------------------
        Messenger posts
    ---------------------*/
    .messenger_posts .row
    {
        margin-bottom: -24px;
        margin-left: 0;
    }

    .messenger_posts .row > *
    {
        width: 100%;
        margin-bottom: 24px;
        margin-left: 0;
    }

    .messenger_posts .row > *:nth-child(2) ~ *
    {
        display: none;
    }



    /*------------------
        Courses page
    ------------------*/
    .courses_page
    {
        padding-top: 0;
    }



    /*-------------
        Courses
    -------------*/
    .courses .tabs .btn .name
    {
        font-size: 18px;
        line-height: 22px;

        padding: 24px;
    }


    .courses .row
    {
        margin-bottom: -24px;
        margin-left: 0;

        --courses_count: 1;
    }

    .courses .row > *
    {
        width: 100%;
        margin-bottom: 24px;
        margin-left: 0;
    }


    .courses .course .price
    {
        margin-top: 24px;
    }



    /*-----------------
        Course info
    -----------------*/
    .course_info
    {
        padding-top: 30px;
    }


    .course_info .video
    {
        margin-bottom: 30px;
    }

    .course_info .video .btn
    {
        height: auto;
        padding-bottom: 56%;
    }

    .course_info .video .icon
    {
        width: 80px;
        height: 80px;
    }


    .course_info .buy
    {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }


    .course_info .buy .price
    {
        width: 100%;

        text-align: center;
    }


    .course_info .buy .buy_btn
    {
        margin-top: 30px;
        margin-right: auto;
        margin-left: auto;
        padding: 15px 63px;
    }



    /*------------------
        Classes info
    ------------------*/
    .classes_info
    {
        padding: 40px 0;
    }


    .classes_info .cont > * + *
    {
        margin-top: 50px;
    }


    .classes_info .desc
    {
        font-size: 16px;
    }


    .classes_info .groups .group
    {
        position: relative;
    }


    .classes_info .groups .logo
    {
        position: absolute;
        top: 30px;
        left: 16px;

        width: 51px;
        height: 59px;
        padding: 0;

        border: none;
    }

    .classes_info .groups .logo + *
    {
        width: 100%;
    }


    .classes_info .groups .head
    {
        padding-right: 30px;
        padding-left: 95px;
    }


    .classes_info .groups .head .name
    {
        font-size: 22px;
        line-height: 27px;
    }


    .classes_info .groups .head .rating
    {
        font-size: 14px;
        line-height: 17px;
    }


    .classes_info .groups .days
    {
        font-size: 16px;
        line-height: 32px;
    }

    .classes_info .groups .day
    {
        padding: 12px 16px;
    }


    .classes_info .groups .buy
    {
        padding: 20px;
    }


    .classes_info .groups .price
    {
        display: flex;

        width: 100%;

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

    .classes_info .groups .price .label,
    .classes_info .groups .price .val
    {
        font-size: 16px;
        line-height: 20px;
    }

    .classes_info .groups .price .label
    {
        margin: 0;
    }

    .classes_info .groups .price .val
    {
        margin-left: 8px;
    }


    .classes_info .groups .buy .btn
    {
        margin-top: 24px;
        margin-right: auto;
        margin-left: auto;
    }


    .classes_info .groups .exp
    {
        font-size: 12px;
        line-height: 15px;

        margin-top: 15px;
    }



    .classes_info .advantages .title
    {
        font-size: 20px;
        line-height: 24px;

        margin-bottom: 24px;
    }


    .classes_info .advantages .items
    {
        font-size: 16px;
        line-height: 24px;
    }


    .classes_info .advantages .item + .item
    {
        margin-top: 24px;
    }


    .classes_info .advantages .item .icon
    {
        width: 40px;
        height: 40px;
        margin-right: 21px;
    }

    .classes_info .advantages .item .icon + *
    {
        width: calc(100% - 61px);
    }


    .classes_info .advantages .item br
    {
        display: none;
    }


    .classes_info .order_free_btn
    {
        font-size: 18px;
        line-height: 22px;

        width: 100%;
        margin-top: 40px;
        padding: 18px;
    }



    /*------------------
        Article info
    ------------------*/
    .article_info
    {
        padding-top: 0;
    }


    .article_info .head
    {
        width: calc(100% + 48px);
        margin-right: -24px;
        margin-left: -24px;
        padding: 57px 24px 31px;
    }


    .article_info .head .bg
    {
        display: none;
    }

    .article_info .head .mobile_bg
    {
        display: block;
    }



    /*----------------
        About data
    ----------------*/
    .about_data
    {
        padding: 40px 0;
    }


    .about_data .name
    {
        font-size: 38px;
        line-height: 49px;
    }


    .about_data .post
    {
        font-size: 17px;
        line-height: 21px;

        margin-top: 8px;
    }


    .about_data .desc
    {
        line-height: 24px;

        margin-top: 40px;
    }

    .about_data .desc > * + *
    {
        margin-top: 24px;
    }



    .about_data .image
    {
        margin-top: 40px;
    }



    /*-----------------------------
        Tournament achievements
    -----------------------------*/
    .tournament_achievements .title
    {
        font-size: 22px;
        line-height: 26px;

        margin-bottom: 40px;
    }


    .tournament_achievements table
    {
        table-layout: auto;
    }

    .tournament_achievements table th
    {
        font-size: 12px;
        line-height: 14px;

        padding-bottom: 8px;
    }


    .tournament_achievements table td
    {
        font-size: 12px;
        line-height: 14px;

        padding: 11px;
    }

    .tournament_achievements table td.small
    {
        font-size: 9px;
        line-height: 11px;
    }



    /*----------------
        Info block
    ----------------*/
    .info_block:before
    {
        left: 220px;
    }


    .info_block .desc,
    .info_block .desc.big
    {
        padding: 40px 0;
    }



    /*--------------
        Students
    --------------*/
    .students .title
    {
        font-size: 28px;
        line-height: 100%;
    }


    .students .img
    {
        right: auto;
        left: -52px;

        width: 830px;
        height: 1195px;
        margin-right: 0;
    }

    .students .img.loaded
    {
        opacity: .15;
    }



    /*-----------
        PopUp
    -----------*/
    .modal
    {
        padding: 100px 40px 60px;
    }

    footer .cont {
        flex-direction: column;
    }
    footer .creator {
        margin-top: 30px;
    }
}

@media (max-width: 479px)
{
    /*-------------------
        Global styles
    -------------------*/
    .cont
    {
        padding: 0 20px;
    }



    /*--------------
        Fancybox
    --------------*/
    .fancybox__slide
    {
        padding: 16px;
    }



    /*-------------------
        First section
    -------------------*/
    .first_section .name
    {
        font-size: 28px;
        line-height: 34px;

        padding-left: 120px;
    }


    .first_section .post
    {
        font-size: 15px;
        line-height: 18px;

        padding-left: 136px;
    }


    .first_section .quote
    {
        margin-top: 220px;
    }


    .first_section .quote2
    {
        width: calc(100% - 56px);
        margin-top: 28px;
    }



    /*----------------
        About info
    ----------------*/
    .about_info .advantages .item .icon
    {
        width: 40px;
        height: 40px;
        margin-right: 32px;
    }

    .about_info .advantages .item .icon + *
    {
        width: calc(100% - 72px);
    }


    .about_info .advantages .item br
    {
        display: none;
    }



    /*------------
        Videos
    ------------*/
    .videos .swiper-slide
    {
        width: 190px;
    }


    .videos .item .name
    {
        font-size: 18px;
        line-height: 22px;
    }



    /*--------------
        Articles
    --------------*/
    .articles .article .name
    {
        font-size: 18px;
        line-height: 22px;
    }



    /*-------------
        Reviews
    -------------*/
    .reviews .count
    {
        width: 100px;
    }



    /*-------------
        Courses
    -------------*/
    .courses .tabs
    {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
    }


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


    .courses .tabs .btn .name
    {
        font-size: 16px;
        line-height: 22px;

        padding: 20px;
    }


    .courses .course .name
    {
        font-size: 18px;
        line-height: 22px;
    }



    /*-----------------
        Course info
    -----------------*/
    .course_info .video .icon
    {
        width: 71px;
        height: 71px;
    }



    /*------------------
        Article info
    ------------------*/
    .article_info .head
    {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
        padding: 57px 20px 31px;
    }



    /*----------------
        About data
    ----------------*/
    .about_data .name
    {
        font-size: 28px;
        line-height: 34px;
    }


    .about_data .post
    {
        font-size: 15px;
        line-height: 18px;
    }



    /*-----------------------------
        Tournament achievements
    -----------------------------*/
    .tournament_achievements .title
    {
        font-size: 20px;
        line-height: 24px;
    }


    .tournament_achievements table th
    {
        font-size: 10px;
        line-height: 12px;
    }


    .tournament_achievements table td
    {
        padding: 7px;
    }



    /*----------------
        Info block
    ----------------*/
    .info_block:before
    {
        left: 220px;
    }


    .info_block .desc,
    .info_block .desc.big
    {
        padding: 40px 0;
    }



    /*--------------
        Students
    --------------*/
    .students .title
    {
        font-size: 28px;
        line-height: 100%;
    }


    .students .img
    {
        right: auto;
        left: -52px;

        width: 830px;
        height: 1195px;
        margin-right: 0;
    }

    .students .img.loaded
    {
        opacity: .15;
    }

    .form .submit_btn {
        padding: 15px 30px;
    }


    /*-----------
        PopUp
    -----------*/
    .modal
    {
        padding: 0;
    }
}


.spec_field {
    display: none;
}