@font-face
{
    font-family: 'BebasNeue';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/BebasNeueRegular.woff') format('woff'),
    url('../fonts/BebasNeueRegular.ttf') format('truetype');
}

@font-face
{
    font-family: 'BebasNeue';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/BebasNeueBold.woff') format('woff'),
    url('../fonts/BebasNeueBold.ttf') format('truetype');
}


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

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

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: #000;
    --font_size: 16px;
    --font_size_title: 54px;
    /*--font_family: 'PT Sans', 'Arial', sans-serif;
    --font_family2: 'BebasNeue', 'Arial', sans-serif;*/
    --font_family: 'Geologica', 'Arial', sans-serif;
    --font_family2: 'Geologica', '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
{
    position: fixed;

    overflow: hidden;

    width: 100%;
    height: 100%;
}


.wrap
{
    position: relative;

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

    min-width: 360px;
    min-height: 100%;
    padding-top: 80px;
}


.main
{
    flex: 1 0 auto;
}


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


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

.compensate-for-scrollbar header
{
    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_head
{
    display: flex;

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

    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: var(--font_size_title);

    text-transform: uppercase;
}



.overlay
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100vh;

    opacity: .65;
    background: #000;
}



.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: fixed;
    z-index: 99;
    top: 0;
    left: 0;

    width: 100%;

    background: #fff;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .06);
}


header > .close
{
    position: absolute;
    top: 0;
    left: 100%;

    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;
}

header.show > .close
{
    display: flex;
}

header > .close span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    background: #fff;
}

header > .close span:nth-child(1)
{
    top: 1px;

    transform: rotate(45deg);
}

header > .close span:nth-child(2)
{
    top: -1px;

    transform: rotate(-45deg);
}



header .info
{
    padding: 13px 0 12px;
}

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



header .logo,
header .logo a
{
    color: #0f65d7;
    font-family: var(--font_family2);
    font-size: 30px;

    display: flex;

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

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


header .logo img
{
    display: block;
    height: 55px;
    margin-right: 14px;
}


header .logo + .sep
{
    display: block;

    width: 1px;
    height: 55px;
    margin: 0 33px;

    background: #f0ecf7;
}


header .sr
{
    margin-right: auto;
}

header .sr img
{
    display: block;
    max-width: 100%;
}



header .steps
{
    display: flex;

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

header .steps .hide
{
    display: none;
}

header .steps .sep
{
    width: 17px;
    height: 2px;
    margin: 0 6px;

    background: #000;
}

header .steps button
{
    color: #000;
    font-family: var(--font_family2);
    font-size: 20px;
    line-height: 40px;

    display: inline-block;

    height: 44px;
    padding: 0 30px;

    cursor: pointer;
    transition: border-color .2s linear;
    vertical-align: top;
    text-transform: uppercase;

    border: 3px solid rgba(15,101,215,.2);
    border-radius: 25px;
    background: none;
}

header .steps button:hover
{
    border-color: #0f65d7;
}



header .menu
{
    margin-left: auto;
}

header .menu .item + .item
{
    margin-left: 40px;
}

header .menu .item > button
{
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    display: block;

    cursor: pointer;
    transition: color .2s linear;
    text-transform: uppercase;

    border: none;
    border-bottom: 1px solid #0f65d7;
    background: none;
}

header .menu .item:hover > button,
header .menu .item > button.active
{
    color: #0f65d7;
}



/*---------------
   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
{
    transition: .2s linear;
}



.first_section
{
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.first_section .cont
{
    position: relative;

    display: flex;

    padding-top: 75px;
    padding-bottom: 60px;

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


.first_section .bg
{
    position: absolute;
    z-index: -1;
    top: 0;
    right: 20px;

    display: block;

    min-width: 200px;
    max-width: calc(100% - 40px);
    min-height: 100px;
}


.first_section .block_title
{
    font-family: var(--font_family2);
    font-size: 54px;
    font-weight: 700;
    line-height: 68px;

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

    text-transform: uppercase;
}

.first_section .block_title b
{
    color: #0f65d7;
    font-size: 80px;
    line-height: 80px;

    display: block;
}


.first_section .info
{
    font-size: 18px;
    line-height: 24px;

    width: 520px;
    max-width: calc(50% - 20px);
}

.first_section .info > * + *
{
    margin-top: 40px;
}


.first_section .call .title
{
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;

    margin-bottom: 20px;

    text-transform: uppercase;
}

.first_section .call .sub_title
{
    color: #2a4c98;
    font-weight: 700;

    margin-bottom: 20px;
}


.first_section .goal .title
{
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 15px;

    text-transform: uppercase;
}


.first_section .tasks
{
    font-size: 18px;
    line-height: 24px;

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

.first_section .tasks .title
{
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 15px;

    text-transform: uppercase;
}

.first_section .tasks li
{
    position: relative;

    display: block;

    padding-left: 35px;

    list-style-type: none;
}

.first_section .tasks li + li
{
    margin-top: 15px;
}

.first_section .tasks li:before
{
    position: absolute;
    top: 11px;
    left: 5px;

    display: block;

    width: 19px;
    height: 2px;

    content: '';

    background: #0f65d7;
}


.first_section .link
{
    width: 100%;
    margin-top: 40px;

    text-align: center;
}

.first_section .link button
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 700;
    line-height: 74px;

    height: 68px;
    padding: 0 48px;

    cursor: pointer;
    text-transform: uppercase;

    border: none;
    border-radius: 35px;
    background: #0f65d7;
}



.block_wrap
{
    display: flex;

    min-height: calc(100vh - 80px);
    padding: 70px 0;

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



.step1
{
    position: relative;

    display: none;

    background: #c32530 url(../images/bg_pattern.png) 50%/cover no-repeat;
}


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

    display: block;

    min-width: 200px;
    min-height: 200px;
    margin-right: -960px;
}

.step1 .bg2
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;

    display: block;

    min-width: 200px;
    min-height: 200px;
    margin-left: -960px;
}


.step1 .cont
{
    position: relative;
    z-index: 5;
}


.step1 .number
{
    color: #d51528;
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 700;

    margin-bottom: 10px;

    text-transform: uppercase;
}


.step1 .block_title
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    width: 1050px;
    max-width: 100%;
    margin-bottom: 50px;

}


.step1 .data
{
    display: flex;

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


.step1 .form
{
    width: 1050px;
    max-width: 100%;
    padding: 48px;

    border: 2px solid #fff;
    border-radius: 40px;
}


.step1 .form .flex
{
    margin-left: -30px;

    justify-content: space-between;
}


.step1 .form .line
{
    width: calc(20% - 30px);
    margin-bottom: 40px;
    margin-left: 30px;
}

.step1 .form .gender
{
    width: calc(33.333% - 30px);
}

.step1 .form .waist
{
    width: calc(26.666% - 30px);
}


.step1 .form .label
{
    color: #d51528;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

    margin-bottom: 20px;

    text-transform: uppercase;
}


.step1 .form .gender .field
{
    display: flex;

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

.step1 .form .gender input[type=radio]
{
    display: none;
}

.step1 .form .gender label
{
    color: #000;
    font-size: 18px;
    line-height: 43px;

    display: flex;

    width: 50%;
    height: 43px;
    padding: 0 15px;

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

    background: #fff;

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

.step1 .form .gender label:nth-child(2)
{
    border-radius: 7px 0 0 7px;
}

.step1 .form .gender label:last-child
{
    border-radius: 0 7px 7px 0;
}

.step1 .form .gender input[type=radio]:checked + label
{
    background: #f8c739;
}


.step1 .form .input
{
    color: #000;
    font: 18px var(--font_family);

    display: block;

    width: 100%;
    height: 43px;
    padding: 0 15px;

    border: none;
    border-radius: 7px;
    background: #fff;
}


.step1 .form .bottom
{
    display: flex;

    padding-top: 40px;

    border-top: 2px solid #fff;

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

.step1 .form .exp
{
    color: #fff;
    font-weight: 700;
    line-height: 20px;

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

.step1 .form .submit_btn
{
    color: #fff;
    font-family: var(--font_family);
    font-size: 18px;
    font-weight: 700;
    line-height: 53px;

    width: 223px;
    max-width: 100%;
    height: 53px;
    padding: 0 20px;

    cursor: pointer;
    text-transform: uppercase;

    border: none;
    border-radius: 7px;
    background: #0f65d7;
}


.step1 .normal
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
}

.step1 .normal div {
    flex: 1;
    line-height: 1;
}

.step1 .normal .icon {
    flex: none;
    display: flex;
    width: 139px;
    height: 139px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #fff;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.step1 .normal .icon img
{
    display: block;

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

.step1 .normal span
{
    color: #d51528;
}



.step2
{
    position: relative;

    display: none;

    border-top: 2px solid #fff;
    background: #eabf41 url(../images/bg_pattern.png) 50%/cover no-repeat;
}


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

    display: block;

    min-width: 200px;
    height: 100%;
    min-height: 200px;
    margin-right: -960px;
}


.step2 .cont
{
    position: relative;
    z-index: 5;
}


.step2 .number
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 700;

    margin-bottom: 10px;

    text-transform: uppercase;
}


.step2 .block_title
{
    font-family: var(--font_family2);
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    width: 840px;
    max-width: 100%;
    margin-bottom: 40px;
}

.step2 .block_title span
{
    color: #c32530;
}


.step2 .result
{
    width: 840px;
    max-width: 100%;
    padding: 48px;

    border: 2px solid #fff;
    border-radius: 40px;
}

.step2 .result .title
{
    font-family: var(--font_family2);
    font-size: 54px;
    font-weight: 700;
    line-height: 46px;

    text-transform: uppercase;
}

.step2 .result .title b
{
    color: #c32530;
}

.step2 .result .desc
{
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 15px;
    text-transform: uppercase;
}

.step2 .result .link
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;

    height: 68px;
    margin-top: 24px;
    padding: 0 48px;

    cursor: pointer;
    text-transform: uppercase;

    border: none;
    border-radius: 35px;
    background: #0f65d7;
}



.step3
{
    position: relative;

    display: none;

    border-top: 2px solid #fff;
    background: #2f9f4d url(../images/bg_pattern.png) 50%/cover no-repeat;
}


.step3 .number
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}


.step3 .block_title
{
    color: #d51528;
    font-family: var(--font_family2);
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 40px;
}


.step3 .data
{
    display: flex;

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


.step3 .city
{
    display: flex;

    width: 484px;
    max-width: 100%;
    padding: 30px;

    text-transform: uppercase;

    border-radius: 40px;
    background: #fff;
    box-shadow: 0 0 32px 0 rgba(212, 227, 236, .47);

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

.step3 .city .title
{
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 700;
    line-height: 46px;

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

.step3 .city select
{
    display: none;
}

.step3 .city .nice-select
{
    position: relative;

    display: block;

    width: calc(50% - 10px);
}

.step3 .city .nice-select .current
{
    font-family: var(--font_family2);
    font-size: 18px;
    font-weight: 700;
    line-height: 47px;

    position: relative;

    display: block;
    overflow: hidden;

    height: 50px;
    padding: 0 57px 0 20px;

    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    text-overflow: ellipsis;

    border: 3px solid #0f65d7;
    border-radius: 25px;
}

.step3 .city .nice-select .current:after
{
    position: absolute;
    top: -7px;
    right: 18px;
    bottom: 0;

    display: block;

    width: 14px;
    height: 14px;
    margin: auto;

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

    border-bottom: 3px solid #000;
    border-left: 3px solid #000;
}

.step3 .city .nice-select .list
{
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;

    visibility: hidden;
    overflow: hidden;

    min-width: 100%;

    transition: .2s linear;

    opacity: 0;
    border: 3px solid #0f65d7;
    border-radius: 15px;
    background: #fff;
}

.step3 .city .nice-select.open .list
{
    top: calc(100% + 2px);

    visibility: visible;

    opacity: 1;
}

.step3 .city .nice-select .list .scrollbar
{
    overflow: auto;

    max-height: 240px;
}

.step3 .city .nice-select .list .list_item
{
    font-family: var(--font_family2);
    font-size: 19px;
    font-weight: 700;
    line-height: 19px;

    padding: 11px 15px 9px;

    cursor: pointer;
    transition: .2s linear;
    text-transform: uppercase;
}

.step3 .city .nice-select .list .list_item:empty,
.step3 .city .nice-select .list .list_item.selected
{
    display: none;
}

.step3 .city .nice-select .list .list_item:hover
{
    color: #fff;

    background: #0f65d7;
}


.step3 .text
{
    color: #fff;
    font-size: 20px;
    line-height: 28px;

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

.step3 .text > * + *
{
    margin-top: 20px;
}



.map_block
{
    position: relative;

    display: none;
    overflow: hidden;

    height: 560px;
    min-height: calc(100vh - 80px);

    background: #ddd;
}

.map_block #map
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}


.map_block .doctor
{
    position: relative;

    padding-left: 68px;
}

.map_block .doctor .foto
{
    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 52px;
    height: 52px;

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

.map_block .doctor .foto img
{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.map_block .doctor .name
{
    color: #0f65d7;
    font-family: var(--font_family2);
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;

    margin-bottom: 8px;

    text-transform: uppercase;
}

.map_block .doctor .name .post,
.map_block .doctor .name .degree
{
    margin-top: 7px;
}

.map_block .doctor .hospital
{
    margin-top: 15px;
}

.map_block .doctor .phone a
{
    color: #000;

    display: inline-block;

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

.map_block .doctor .email a
{
    color: #0f65d7;

    display: inline-block;

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


#map .ymaps-2-1-75-balloon
{
    padding: 0;

    box-shadow: none;
}

#map .ymaps-2-1-75-balloon__tail
{
    left: 50%;

    width: 22px;
    height: 22px;
    margin-left: -11px;

    border: none;
}

#map .ymaps-2-1-75-balloon__layout
{
    width: 355px;

    border-radius: 40px;
    background: #fff;
    box-shadow: 0 0 32px 0 rgba(0, 0, 0, .19);
}

#map .ymaps-2-1-75-balloon__close,
#map .ymaps-2-1-75-balloon__close-button
{
    width: 60px;
    height: 60px;
}

#map .ymaps-2-1-75-balloon__content
{
    font-size: 15px;
    line-height: 24px;

    width: 285px;
    padding: 30px 35px;
}

#map .ymaps-2-1-75-balloon__content > *
{
    width: 100% !important;
    height: auto !important;
}

#map .ymaps-2-1-75-balloon__close + .ymaps-2-1-75-balloon__content
{
    margin-right: 0;
}



.events .flex
{
    margin-bottom: -20px;
    margin-left: -20px;

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

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


.events .item
{
    display: flex;

    border: 1px solid #dadada;

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


.events .item .thumb
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 185px;
    min-height: 185px;

    border-right: 1px solid #dadada;
    background: #ddd;
}

.events .item .thumb img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.events .item .date
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 54px;
    line-height: 50px;

    position: absolute;
    z-index: 3;
    top: 25px;
    right: 0;

    height: 49px;
    padding: 0 7px;

    white-space: nowrap;
    text-transform: uppercase;

    background: #2ca24a;
}

.events .item .thumb + *
{
    font-size: 18px;
    line-height: 24px;

    width: calc(100% - 186px);
    padding: 23px 30px;
}

.events .item .name
{
    color: #2ca24a;
    font-weight: 700;

    text-transform: uppercase;
}

.events .item .name a
{
    color: #2ca24a;

    display: inline-block;

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

.events .item .thumb:hover + * .name a,
.events .item .name a:hover
{
    text-decoration: underline;
}

.events .item .desc
{
    margin-top: 15px;
}



.partners
{
    background: #eabf42 url(../images/bg_pattern.png) 50%/cover no-repeat;
}


.partners .flex
{
    margin-bottom: -3px;
    margin-left: -3px;

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

.partners .flex > *
{
    width: calc(25% - 3px);
    margin-bottom: 3px;
    margin-left: 3px;
}


.partners .item
{
    display: flex;

    height: 187px;
    padding: 15px;

    text-decoration: none;

    border: 1px solid #dadada;
    background: #fff;

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

.partners .item img
{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.article-item {
    margin-bottom: 30px!important;
    border-bottom: 1px solid #d2d2d2;
}

.article-item:last-child {
    margin-bottom: 0!important;
    border-bottom: none;
}

ul.pagination {
    margin-top: 20px!important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.first_section ul.pagination li:before {
    content: none;
}

.first_section ul.pagination li {
    padding-left: 0;
    margin: 0;
}

ul.pagination li.active a {
    color: #000000;
    text-decoration: none;
    opacity: 0.5;
    pointer-events: none;
}

ul.pagination li a {
    text-decoration: none;
}

/*---------------
   Footer
---------------*/
footer
{
    padding: 48px 0;

    background: #494d57;

    flex: 0 0 auto;
}


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



footer .logo img
{
    display: block;
}


footer .sep
{
    width: 1px;
    height: 55px;

    opacity: .2;
    background: #fff;
}



footer .menu
{
    display: flex;

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

footer .menu > * + *
{
    margin-left: 62px;
}

footer .menu a,
footer .menu button
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 20px;
    font-weight: 700;

    display: inline-block;

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

    border: none;
    background: none;
}

footer .menu a:hover,
footer .menu a.active,
footer .menu button:hover,
footer .menu button.active
{
    color: #95a6cb;
}



footer .socials
{
    display: flex;

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

footer .socials a
{
    display: block;
}

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

footer .socials img
{
    display: block;

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



footer .creator
{
    color: #fff;
    font-family: var(--font_family2);
    font-size: 20px;
    line-height: 24px;
}

footer .creator a
{
    color: #95a6cb;

    display: inline-block;

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

footer .creator a span
{
    color: #fff;
}

/* New style */

.intro {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: auto;
    min-height: 700px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-block {
    max-width: 950px;
    color: #202020;
    text-align: center;
}

.intro-block h1 {
    font-weight: 300;
    font-size: 74px;
    line-height: 80px;
    text-align: center;
    margin-bottom: 64px;
}

.intro-block p {
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    margin-bottom: 64px;
}

.intro-block button.next_step.scroll_link {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #ffffff;
    background: #0F65D7;
    padding: 24px 48px;
    border: none;
    outline: none;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 auto;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.intro-images {
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    top: 0;
    left: 0;
}

.intro-images img.intro-images_01 {
    position: absolute;
    left: 30px;
    top: 150px;
}

.intro-images img.intro-images_02 {
    position: absolute;
    right: 20px;
    top: 40px;
}

.intro-images img.intro-images_03 {
    position: absolute;
    bottom: 70px;
    left: 195px;
}

.intro-images img.intro-images_04 {
    position: absolute;
    right: 20px;
    bottom: 50px;
}

.intro-images img.intro-images_05 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.inspire-guide {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 20px;
}

.inspire-guide-text {
    flex: 1;
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
}

.inspire-guide-text h2 {
    font-weight: 400;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 24px;
}

.inspire-guide-text p span {
    font-weight: 300;
    font-size: 24px;
    line-height: 40px;
}

.inspire-guide-image {
    width: 415px;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.inspire-guide-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspire-guide-image:after {
    content: '';
    display: block;
    padding-top: 100%;
}

.return_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 20px;
}

.return-form-title {
    margin-bottom: 64px;
}

.return-form-title h2 {
    font-weight: 300;
    font-size: 74px;
    line-height: 80px;
    text-align: center;
}

.return-form-text {
    max-width: 860px;
    margin-bottom: 64px;
}

.return-form-text p {
    font-weight: 300;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
}

.return-form-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.return-form-item {
    flex: 1;
    padding: 40px;
    background: #eff4fa;
    border-radius: 40px;
}

.return-form-item-number {
    margin-bottom: 40px;
    text-align: center;
}

.return-form-item-number span {
    font-size: 100px;
    font-weight: 200;
    color: #0f65d7;
    text-align: center;
}

.return-form-item-title {
    margin-bottom: 30px;
}

.return-form-item-title h3 {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
}

.return-form-item-text p {
    font-size: 18px;
    font-weight: 300;
}

.questions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 20px;
}

.questions-photo,
.questions-list-block {
    flex: 1;
    width: 50%;
}

.questions-photo {
    overflow: hidden;
    border-radius: 30px;
}

.questions-photo img {
    width: 100%;
}

.questions-list-block h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
}

.questions-item {
    border-bottom: 1px solid #D2D2D2;
}

.questions-item-title {
    position: relative;
    padding: 30px 60px 30px 0;
    cursor: pointer;
}

.questions-item-title h3 {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
}

.plus-icon {
    position: absolute;
    background: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.plus-icon:before, .plus-icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: #0f65d7;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	transition: all 0.3s ease-out;
}

.plus-icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    -o-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}

.questions-item-title.active .plus-icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    -o-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.questions-item-description {
    display: none;
    padding-bottom: 30px;
    font-weight: 200;
    font-size: 14px;
    line-height: 1.3;
}

.tasks.dev_block_text {
    padding: 30px;
}

@media (max-width: 1099px) {
    
    .intro-block {
        max-width: 650px;
    }
    
    .intro-block h1 {
        font-size: 50px;
        line-height: 1;
        margin-bottom: 34px;
    }
    
    .intro-images img.intro-images_03 {
        left: 12%;
    }
    
    .return-form-title {
        margin-bottom: 32px;
    }
    
    .return-form-title h2 {
        font-size: 50px;
        line-height: 1.1;
    }
    
    .return-form-item-number {
        margin-bottom: 20px;
    }
    
    .return-form-item-number span {
        font-size: 70px;
    }
    
    .return-form-item-title {
        margin-bottom: 20px;
    }
    
    .questions-list-block h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }
    
    .questions-photo, .questions-list-block {
        flex: auto;
        width: 100%;
    }
        
    .questions-photo {
        order: 1;
    }
    
}

@media (max-width: 769px) {
    
    .intro-images img.intro-images_01 {
        left: 6%;
        top: 40px;
        height: 80px;
    }
    
    .intro-images img.intro-images_02 {
        right: 6%;
        top: 30px;
        height: 115px;
    }
    
    .intro-images img.intro-images_03 {
        left: 6%;
        bottom: 4%;
        height: 100px;
    }
    
    .intro-images img.intro-images_04 {
        right: 6%;
        bottom: 6%;
        height: 120px;
    }
    
    .intro-images img.intro-images_05 {
        display: none;
    }
    
    .inspire-guide-image {
        width: 100%;
    }
    
}