/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Oswald:wght@400;500;700&display=swap");

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    -webkit-text-size-adjust: none;
    color: #424141;
    height: 100%;
    min-height: 100%;
    background-color: #fff;
}

a {
    text-decoration: none;
    outline: 0;
    color: #3f9acb;
}

i {
    font-style: italic;
}

img {
    display: block;
}

strong {
    font-weight: bold;
}

.wrap {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1500px;
}

.wrapper {
    position: relative;
}

.btn {
    position: relative;
    display: block;
    font: 700 20px/1.3 "Inter", sans-serif;
    text-decoration: none;
    margin: 0;
    border: 0;
    text-align: center;
    -webkit-appearance: none;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#50b4e8), to(#3691c0));
    background: -o-linear-gradient(left, #50b4e8, #3691c0);
    background: linear-gradient(90deg, #50b4e8, #3691c0);
    width: 100%;
    padding: 13px 10px;
    border-radius: 10px;
    font-weight: 700;
    outline: none;
    max-width: 176px;
    cursor: pointer;
}

.btn:hover {
    background: -o-linear-gradient(right, #50b4e8, #3691c0);
    background: linear-gradient(270deg, #50b4e8, #3691c0);
}

.btn:after {
    content: "";
    display: block;
    position: absolute;
    left: -7px;
    right: -7px;
    top: -7px;
    bottom: -7px;
    border: 2px solid #95c7e2;
    border-radius: 13px;
    background: #ffffff;
    z-index: -1;
    -webkit-box-shadow: 0px 6px 20px 0 #aeccdc;
    box-shadow: 0px 6px 20px 0 #aeccdc;
}

.tt-uc {
    text-transform: uppercase;
}

.color-lb {
    color: #6aa2c2;
}

.color-b {
    color: #0190bf;
}

.color-o {
    color: #fb8e44;
}

.section-title {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 500;
    padding-bottom: 65px;
}

.subtitle {
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 1440px) {
    .section-title {
        font-size: 40px;
        padding-bottom: 40px;
    }
    .subtitle {
        font-size: 24px;
    }
}

@media (max-width: 1260px) {
    .section-title {
        font-size: 30px;
    }
    .subtitle {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .section-title {
        line-height: 1.3;
    }
    .wrap {
        padding: 0 20px;
    }
    .btn:after {
        left: -6px;
        right: -6px;
        top: -6px;
        bottom: -6px;
    }
}

/* header */
.header {
    padding: 15px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.header_scrolled {
    -webkit-box-shadow: 0px 1px 3px 0px #a7a7a7;
    box-shadow: 0px 1px 3px 0px #a7a7a7;
}

.content {
    padding-top: 82px;
}

.header .wrap {
    max-width: 1830px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-nav li {
    position: relative;
    padding: 15px 22px;
    cursor: pointer;
}

.main-nav li a {
    color: #424141;
}

.main-nav li span {
    bottom: 0;
    left: calc(50% - 5px);
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    position: absolute;
    width: 6px;
    height: 6px;
    opacity: 0;
}

.main-nav li.current span {
    opacity: 1;
}

.main-nav li.current-from-right span:after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: 300% 50%;
    -ms-transform-origin: 300% 50%;
    transform-origin: 300% 50%;
}

.main-nav li.current span:after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.main-nav li.current a {
    color: #3f9acb;
}

.main-nav li span:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 50%;
    visibility: hidden;
    background: #3f9acb;
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: -300% 50%;
    -ms-transform-origin: -300% 50%;
    transform-origin: -300% 50%;
    -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s ease, -webkit-transform 0.3s ease 0.3s;
    transition: opacity 0.3s ease, visibility 0s 0.3s ease, -webkit-transform 0.3s ease 0.3s;
    -o-transition: transform 0.3s ease 0.3s, opacity 0.3s ease, visibility 0s 0.3s ease;
    transition: transform 0.3s ease 0.3s, opacity 0.3s ease, visibility 0s 0.3s ease;
    transition: transform 0.3s ease 0.3s, opacity 0.3s ease, visibility 0s 0.3s ease,
        -webkit-transform 0.3s ease 0.3s;
}

.main-nav li.current span::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.add-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.add-menu .btn {
    font-size: 14px;
    padding: 11px 34px;
}

.btn-menu {
    display: none;
    position: relative;
    width: 25px;
    height: 19px;
    border: 3px solid #313131;
    border-width: 3px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 3;
}

.btn-menu:after,
.btn-menu:before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #313131;
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.header.is-active {
    background-color: #3f9acb;
}

.header.is-active .btn-menu {
    border: none;
    position: fixed;
    right: 15px;
    z-index: 4;
}

.header.is-active .btn-menu:after {
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
}

.header.is-active .btn-menu:before {
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg);
}

.header.is-active .btn-menu:before,
.header.is-active .btn-menu:after {
    background-color: #fff;
}

.header.is-active .logo-holder {
    opacity: 0;
}

.header.is-active .main-nav {
    display: block;
    position: fixed;
    left: 0;
    top: 62px;
    background-color: #3f9acb;
    right: 0;
    padding: 0 50px 20px;
}

.header.is-active .main-nav li {
    padding: 10px 0;
    border-bottom: 1px solid #7eb4d2;
}

.header.is-active .main-nav li a {
    color: #fff;
}

.header.is-active .main-nav li.current a {
    color: #424141;
}

.header.is-active .main-nav li:last-child {
    border-bottom: 0;
}

.header.is-active .main-nav li span {
    display: none;
}

@media (max-width: 1440px) {
    .content {
        padding-top: 72px;
    }
    .logo-holder img {
        max-height: 38px;
    }
    .main-nav li {
        padding: 10px;
    }
}
@media (max-width: 1260px) {
    .header {
        padding: 12px 0;
    }
    .main-nav,
    .add-menu {
        display: none;
    }
    .btn-menu {
        display: block;
    }
    .content {
        padding-top: 62px;
    }
}
@media (max-width: 768px) {
    .header .wrap {
        padding: 0 20px;
    }
    .logo-holder img {
        max-height: 30px;
    }
    .header.is-active .main-nav {
        top: 52px;
        bottom: 0;
    }
    .content {
        padding-top: 54px;
    }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .header {
        position: relative;
    }

    .header_scrolled {
        position: fixed;
    }
}

/* section about */
.section-about {
    padding: 80px 0 90px;
}

.section-about .wrap {
    max-width: 100%;
    padding: 0;
}

.main-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.col-pic {
    margin-left: 40px;
}

.main-pic-mob {
    display: none;
    width: 100%;
}

.event-description {
    max-width: 595px;
    margin-left: 252px;
    margin-top: 59px;
}

.event-description .subtitle {
    padding-bottom: 21px;
}

.details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.details .item {
    position: relative;
    padding: 15px 32px;
    border: 4px solid #fea060;
    border-radius: 15px;
    margin-bottom: 23px;
    margin-left: 17px;
}

.details .item-2 {
    padding-left: 39px;
}

.details .item-3 {
    margin-bottom: 0;
}

.details .item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-color: #fff;
    padding: 0 14px 10px 0;
    background-repeat: no-repeat;
}

.details .item-1:before {
    background-image: url(../images/about/pic-robot.png);
    width: 40px;
    height: 61px;
    left: -22px;
    top: -11px;
}

.details .item-2:before {
    background-image: url(../images/about/pic-prize.png);
    width: 51px;
    height: 49px;
    left: -26px;
    top: -4px;
}

.details .item-3:before {
    background-image: url(../images/about/pic-user.png);
    width: 38px;
    height: 49px;
    left: -21px;
    top: -5px;
}

.details .item-half {
    width: calc(50% - 35px);
}

.details .item h4 {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
}

.details .item p {
    font-weight: 600;
    line-height: 1.2;
}

.main-info .note {
    font-size: 14px;
    color: #5b5b5b;
    margin-left: 17px;
    margin-top: 5px;
}

.main-info .btn-wrap {
    max-width: 364px;
    -moz-text-align-last: center;
    text-align-last: center;
    margin: 76px 0 0 6px;
}

.main-info .btn-wrap p {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 700;
}

.main-info .btn {
    font-size: 18px;
    max-width: 100%;
    padding: 25px;
    line-height: 1.25;
    letter-spacing: 1px;
    border-radius: 12px;
}

.main-info .btn::after {
    border-radius: 15px;
}

@media (max-width: 1760px) {
    .col-info .logo-pic {
        max-width: 720px;
        margin-left: -50px;
    }
    .event-description {
        margin-left: 80px;
    }
}
@media (max-width: 1440px) {
    .section-about {
        padding: 40px 0 50px;
    }
    .col-info {
        margin-right: 30px;
    }
    .col-info .logo-pic {
        max-width: 660px;
        width: 100%;
    }
    .event-description {
        margin-left: 80px;
        margin-top: 30px;
    }
    .main-info .btn-wrap {
        margin-top: 30px;
    }
    .col-pic img {
        max-width: 600px;
    }
}
@media (max-width: 1260px) {
    .event-description {
        margin-left: 30px;
    }
    .col-pic img {
        max-width: 500px;
    }
    .details .item-half {
        width: calc(50% - 25px);
    }
    .details .item h4 {
        font-size: 24px;
    }
    .details .item p {
        font-size: 14px;
        line-height: 1.3;
    }
    .details .item:before {
        padding: 0 9px 9px 0;
    }
}
@media (max-width: 992px) {
    .section-about .wrap {
        padding: 0 20px;
    }
    .main-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .col-pic,
    .col-info .logo-pic {
        margin: 0 auto;
    }
    .col-info {
        margin-right: 0;
    }
    .col-info .logo-pic {
        margin-left: -20px;
    }
    .col-pic {
        display: none;
    }
    .main-pic-mob {
        display: block;
        margin: 45px auto 0;
        max-width: 500px;
    }
    .event-description {
        margin: 30px 0 0;
        max-width: 100%;
    }
    .details .item {
        padding: 10px 25px;
        margin-bottom: 15px;
        border-width: 3px;
    }
    .details .item-3 {
        width: 100%;
    }
    .details .item-1:before {
        width: 29px;
        height: 41px;
        left: -17px;
        top: -8px;
        background-size: 29px 41px;
    }
    .details .item-2:before {
        width: 31px;
        height: 35px;
        left: -20px;
        top: -3px;
        background-size: 35px 35px;
    }
    .details .item-3:before {
        width: 28px;
        height: 34px;
        left: -16px;
        top: -3px;
        background-size: 26px 34px;
    }
    .main-info .btn-wrap {
        margin: 34px auto 0;
    }
}
@media (max-width: 768px) {
    .section-about {
        padding: 15px 0 25px;
    }
}
@media (max-width: 600px) {
    .event-description {
        margin: 10px 0 0;
    }
    .event-description .subtitle {
        text-align: center;
        padding-bottom: 15px;
    }
    .details .item {
        padding: 10px 20px;
        padding: 10px 20px 12px 20px;
        margin-bottom: 11px;
        border-radius: 10px;
    }
    .details .item-half {
        width: 100%;
    }
    .details .item-3 {
        margin-bottom: 0;
    }
    .col-info .logo-pic {
        margin-left: -62px;
        width: calc(100% + 62px);
    }
    .main-info .note {
        font-size: 12px;
    }
    .main-info .btn {
        font-size: 16px;
        width: calc(100% - 12px);
        margin: 0 auto;
        padding: 16px;
    }
    .main-info .btn-wrap p {
        margin-top: 15px;
    }
}

/* section step */
.section-steps {
    position: relative;
    padding: 80px 0 54px;
    background: url(../images/steps/main-bg-2.png) no-repeat top center;
    min-height: 418px;
}

.section-steps:after {
    content: "";
    display: block;
    background: url(../images/steps/pic-gear-bottom-big.png) no-repeat top center;
    width: 143px;
    height: 286px;
    position: absolute;
    right: 0;
    bottom: -184px;
    z-index: 1;
}

.steps-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.steps-container .step {
    position: relative;
    width: calc(100% / 3);
    text-align: right;
    padding: 30px 0 80px;
}

.steps-container .step:after {
    content: "";
    display: block;
    position: absolute;
}

.steps-container .step-1:after {
    background: url(../images/steps/step-1-bg.png) no-repeat top center;
    width: 479px;
    height: 209px;
    top: 38px;
    left: 24px;
}

.steps-container .step-2:after {
    background: url(../images/steps/step-2-bg.png) no-repeat top center;
    width: 484px;
    height: 249px;
    top: 12px;
    left: -25px;
}

.steps-container .step-3:after {
    background: url(../images/steps/step-3-bg.png) no-repeat top center;
    width: 438px;
    height: 209px;
    top: 38px;
    left: 24px;
}

.steps-container .step .step-content {
    position: relative;
    z-index: 2;
}

.steps-container .step-1 .step-content {
    margin: 30px 143px 0 0;
}

.steps-container .step-2 .step-content {
    margin: 30px 220px 0 0;
}

.steps-container .step-3 .step-content {
    margin: 30px 188px 0 0;
}

.steps-container .step h4 {
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.steps-container .step p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 1500px) {
    .steps-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .steps-container .step {
        width: 100%;
        text-align: right;
        padding: 30px 0;
        max-width: 380px;
        margin: 0 20px;
    }
    .steps-container .step-1:after {
        width: 380px;
        height: 166px;
        background-size: cover;
    }
    .steps-container .step-2:after {
        width: 400px;
        height: 206px;
        background-size: cover;
    }
    .steps-container .step-3:after {
        width: 330px;
        height: 157px;
        background-size: cover;
    }
    .steps-container .step-1 .step-content {
        margin: 20px 93px 0 0;
    }
    .steps-container .step-2 .step-content {
        margin: 20px 161px 0 0;
    }
    .steps-container .step-3 .step-content {
        margin: 20px 143px 0 0;
    }
    .steps-container .step h4 {
        font-size: 34px;
    }
    .steps-container .step p {
        font-size: 16px;
    }
}
@media (max-width: 1440px) {
    .section-steps {
        background-size: cover;
        padding: 50px 0;
        min-height: auto;
    }
}
@media (max-width: 1260px) {
    .steps-container {
        max-width: 600px;
        margin: 0 auto;
    }
    .steps-container .step {
        text-align: right;
        padding: 30px 0;
        max-width: 100%;
        margin: 0 auto;
        min-height: 200px;
    }
    .steps-container .step:after {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .steps-container .step-2:after {
        width: 330px;
        height: 170px;
    }
    .steps-container .step-3:after {
        width: 290px;
        height: 138px;
    }
    .steps-container .step h4 {
        font-size: 28px;
    }
    .steps-container .step p {
        font-size: 14px;
    }
    .steps-container .step-1 .step-content {
        margin: -5px 240px 0 0;
    }
    .steps-container .step-2 .step-content {
        margin: 0px 265px 0 0;
    }
    .steps-container .step-3 .step-content {
        margin: -15px 255px 0 0;
    }
}
@media (max-width: 992px) {
    .section-steps:before {
        content: "";
        display: block;
        background: url(../images/steps/pic-gear-top.png) no-repeat top center;
        width: 100px;
        height: 95px;
        position: absolute;
        left: -8px;
        top: -21px;
    }
    .section-steps:after {
        content: "";
        display: block;
        background: url(../images/steps/pic-gear-bottom.png) no-repeat top center;
        width: 74px;
        height: 117px;
        position: absolute;
        right: 0;
        bottom: -69px;
    }
}
@media (max-width: 768px) {
    .section-steps {
        padding: 38px 0px;
        min-height: auto;
    }
    /* .steps-container {
        max-width: 400px;
    } */
    .steps-container .step:after {
        width: 100%;
    }
    .steps-container .step-1:after {
        background: url(../images/steps/step-1-mob-bg.png) no-repeat top center;
        top: 32px;
        left: 47%;
    }
    .steps-container .step-2:after {
        background: url(../images/steps/step-2-mob-bg.png) no-repeat top center;
        height: 185px;
        top: 10px;
    }
    .steps-container .step-3:after {
        background: url(../images/steps/step-3-mob-bg.png) no-repeat top center;
        height: 150px;
        top: 32px;
        left: 55%;
    }
    .steps-container .step-1 .step-content {
        margin: 22px auto 0;
        right: calc(50% - 50px);
    }
    .steps-container .step h4 {
        padding-bottom: 0;
    }
    .steps-container .step-2 .step-content {
        margin: 22px auto 0;
        right: calc(48% - 26px);
    }
    .steps-container .step-3 .step-content {
        margin: 22px auto 0;
        right: calc(48% - 43px);
    }
    /* .steps-container .step-1 .step-content {
        margin: -5px 140px 0 0;
    }
    .steps-container .step-2 .step-content {
        margin: 0px 165px 0 0;
    }
    .steps-container .step-3 .step-content {
        margin: -15px 160px 0 0;
    } */
}
@media (max-width: 640px) {
    .section-steps .wrap {
        padding: 0;
    }
    .steps-container {
        max-width: 100%;
    }
    /* .steps-container .step-1 .step-content {
        margin: 22px auto 0;
  right: calc(43% - 30px);
    } */
}

/* section registration */
.section-registration {
    padding: 75px 0 96px;
    background: url(../images/registration/bg-registration.png) no-repeat top center;
    background-size: cover;
}

.section-registration .wrap {
    max-width: 1450px;
}

.section-registration .section-title {
    padding-bottom: 50px;
}

.section-registration .subtitle {
    padding-bottom: 20px;
}

.section-registration .section-title,
.section-registration .subtitle {
    color: #fff;
}

.registration-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.item-step {
    position: relative;
    display: block;
    padding: 22px 35px 29px;
    background-color: #fff;
    border-radius: 10px;
    margin-right: 60px;
    transform-style: preserve-3d;
}

.item-step:before {
    content: "";
    display: block;
    position: absolute;
    transform: translateZ(-1px);
}

.item-step-1:before {
    background: url(../images/registration/1.png) no-repeat top center;
    width: 66px;
    height: 95px;
    left: -53px;
    bottom: 35px;
}

.item-step-2:before {
    background: url(../images/registration/2.png) no-repeat top center;
    width: 70px;
    height: 109px;
    left: -50px;
    top: -30px;
}

.item-step-3:before {
    background: url(../images/registration/3.png) no-repeat top center;
    width: 69px;
    height: 106px;
    left: -47px;
    bottom: -40px;
}

.item-step-1 {
    max-width: 595px;
    width: 100%;
    min-width: 400px;
}

.item-step-2 {
    max-width: 305px;
    width: 100%;
}

.item-step-3 {
    max-width: 400px;
    width: 100%;
    background-color: #ffddc8;
    margin-right: 0;
}

.item-step p {
    font-size: 18px;
    margin-bottom: 6px;
}

.item-step-1 img {
    margin-top: 29px;
    margin-left: 5px;
    max-width: 100%;
}

.item-step-2 img {
    margin-top: 20px;
    margin-left: 50px;
}

.item-step .btn-wrap {
    margin-top: 22px;
}

.form {
    max-width: 960px;
    background-color: #fff;
    padding: 45px 70px;
    color: #424141;
    border-radius: 15px;
    margin: 75px auto 0;
}

.form .required {
    margin-bottom: 32px;
    font-size: 14px;
    color: ;
}

.form-row {
    /* min-height: 104px; */
}
.form-row .col {
    margin-bottom: 20px;
}

.form-row_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-row_col:last-child {
    margin-top: 25px;
}

.form-row_col .col {
    width: calc(50% - 16px);
    position: relative;
}

.form-row_col .btn {
    max-width: 100%;
    padding: 24px;
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 52px;
}

.form-row .label {
    display: block;
    font-size: 16px;
    text-align: left;
    margin-bottom: 3px;
    font-weight: 700;
}
.form-row .label-required:after {
    content: "*";
    display: inline-block;
    position: relative;
    color: #d75a38;
}

.form-row .label-rules {
    position: relative;
    display: block;
    font-size: 14px;
}

.form-row .label-rules a {
    text-decoration: underline;
    font-weight: 700;
}

.form-row .label-rules a:hover {
    text-decoration: none;
}

.form-control {
    position: relative;
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    color: #424141;
    text-align: left;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 2px solid #dcdcdc;
}

input[type="checkbox"] {
    position: absolute;
    width: 0;
    opacity: 0;
}

input[type="checkbox"] + label.label-rules,
input[type="checkbox"] + label + label.label-rules {
    padding-left: 34px;
}

input[type="checkbox"] + label.label-rules:before,
input[type="checkbox"] + label + label.label-rules:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
}

input[type="checkbox"]:checked + label.label-rules:after,
input[type="checkbox"]:checked + label + label.label-rules:after {
    content: "";
    display: block;
    width: 12px;
    height: 6px;
    border: 2px solid #424141;
    border-width: 0 0 2px 2px;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg);
    position: absolute;
    top: 6px;
    left: 5px;
}
input[type="checkbox"] + label.error {
    position: absolute;
    bottom: 86px;
}
input[type="checkbox"] + label.error + label.label-rules {
    margin-bottom: 35px;
}

.wrapper-phone {
    position: relative;
}

.wrapper-phone .form-control {
    padding-left: 85px;
}

.wrapper-phone:before {
    content: "+380";
    display: block;
    position: absolute;
    top: 2px;
    z-index: 1;
    bottom: 0;
    background-color: #ededed;
    left: 2px;
    border-radius: 10px 0 0 10px;
    height: 52px;
    font-size: 18px;
    line-height: 52px;
    padding: 0 15px 0 10px;
}

.form-control.error {
    background-color: #fbeeeb;
    border-color: #d75a38;
}

.form-control_select {
    background: url(../images/icons/chevron-down.svg) no-repeat calc(100% - 20px) center;
    background-size: 15px;
    color: #fff;
    background-color: #0023a5;
}

label.error {
    display: block;
    font-size: 14px;
    text-align: right;
    color: #d75a38;
    line-height: 1;
    padding-top: 2px;
}

.form-row_btn {
    min-height: auto;
    margin-top: 10px;
}

.form-row_btn .btn {
    margin: 0 auto;
}
.section-registration .form-note {
    display: block;
    margin: 20px auto 0;
    border: 3px solid #fea060;
    padding: 20px;
    border-radius: 10px;
    background: rgba(254, 160, 96, 0.2);
    text-align: center;
}
@media (max-width: 1440px) {
    .section-registration {
        padding: 50px 0 55px;
    }
    .section-registration .section-title {
        padding-bottom: 20px;
    }
    .item-step {
        padding: 15px 20px 20px;
    }
    .item-step-1:before {
        left: 77px;
        bottom: -90px;
        background-size: 40px;
    }
    .item-step-2:before {
        left: 110px;
        top: -70px;
        background-size: 40px;
    }
    .item-step-3:before {
        left: 150px;
        bottom: -110px;
        background-size: 40px;
    }
    .form {
        margin-top: 35px;
    }
}
@media (max-width: 1260px) {
    .item-step {
        /* width: calc(100% / 3 - 15px); */
        max-width: 100%;
        min-width: auto;
        margin-right: 0;
        margin-right: 20px;
    }
    .item-step-3 {
        margin-right: 0;
    }
    .item-step-1 {
        width: 50%;
    }
    .item-step-2,
    .item-step-3 {
        width: 24%;
    }
    .item-step-2 img {
        margin-top: 20px;
        margin-left: 0;
    }
    .item-step p {
        font-size: 14px;
    }
    .item-step p br {
        display: none;
    }
}
@media (max-width: 992px) {
    .registration-steps {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .item-step {
        width: calc(100% / 2 - 8px);
        margin: 0 0 15px;
    }
    .item-step:before {
        display: none;
    }
    .item-step-1 {
        width: 100%;
    }
    .item-step-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .item-step-2 img {
        margin: 0 0 0 40px;
    }
    .item-step-1 img {
        margin: 0 auto;
    }
    .form {
        margin-top: 15px;
        padding: 15px 20px 28px;
        border-radius: 10px;
    }
    .form .required {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .form-row {
        /* min-height: 80px; */
    }
    .form-row .col {
        margin-bottom: 14px;
    }
    .form-row .label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .form-control {
        padding: 8px 10px;
        font-size: 16px;
        border-radius: 5px;
    }
    label.error {
        font-size: 12px;
        text-align: left;
    }
    .wrapper-phone .form-control {
        padding-left: 65px;
    }
    .wrapper-phone:before {
        border-radius: 5px 0 0 5px;
        height: 36px;
        font-size: 16px;
        line-height: 36px;
        padding: 0 10px 0 5px;
    }
    .form-row_col .btn {
        width: calc(100% - 14px);
        margin: 25px auto 0;
    }
    .form-row_col:last-child {
        margin-top: 5px;
    }
}
@media (max-width: 768px) {
    .section-registration {
        background-size: cover;
        padding: 22px 0 30px;
        background: #3f9acb;
    }
    .section-registration .section-title {
        padding-bottom: 13px;
    }
    .section-registration .subtitle {
        padding-bottom: 13px;
    }
    .item-step {
        position: relative;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .item-step:after {
        content: "";
        display: block;
        width: 3px;
        height: 30px;
        background-color: #aae8f9;
        position: absolute;
        left: 50%;
        bottom: -30px;
        margin-left: -1px;
    }
    .item-step-1 p {
        margin-bottom: 19px;
    }
    .item-step-2 p {
        margin-bottom: 0;
    }
    .item-step-2 img {
        max-width: 140px;
        margin: 0 -25px 0 20px;
    }
    .form-row_col {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .form-row_col .col {
        width: 100%;
    }
    .captcha-container {
        margin-bottom: 18px;
    }
    .form-row .label-rules {
        line-height: 1.6;
    }
    input[type="checkbox"] + label {
        padding-left: 39px;
    }
    input[type="checkbox"] + label:before {
        top: -2px;
        width: 28px;
        height: 28px;
    }
    input[type="checkbox"]:checked + label:after {
        top: 6px;
        left: 7px;
    }
    .form-row_col .btn {
        font-size: 16px;
        padding: 16px 0;
        width: calc(100% - 12px);
        margin: 32px auto 0;
    }
}

/* section registration-closed */
.section-registration-closed {
    position: relative;
    padding: 80px 0 96px;
    background: url(../images/registration-closed/bg.jpg) no-repeat top center #3f9acb;
}

.section-registration-closed .wrap {
    max-width: 1450px;
}

.section-registration-closed .section-title {
    padding-bottom: 50px;
}

.section-registration-closed .subtitle {
    padding-bottom: 20px;
}

.section-registration-closed .section-title,
.section-registration-closed .subtitle {
    color: #fff;
}

.section-registration-closed .subtitle a {
    color: #fff;
    text-decoration: underline;
}
.section-registration-closed:before {
    content: "";
    display: block;
    background: url(../images/registration-closed/pic-gear-bottom-left.png) no-repeat left bottom;
    background-size: contain;
    width: 249px;
    height: 187px;
    position: absolute;
    left: -8px;
    bottom: -95px;
    z-index: 1;
}
.section-registration-closed:after {
    content: "";
    display: block;
    background: url(../images/registration-closed/pic-gear-bottom-right.png) no-repeat right bottom;
    background-size: contain;
    width: 338px;
    height: 313px;
    position: absolute;
    right: 0;
    bottom: -221px;
    z-index: 1;
}

@media (max-width: 992px) {
    .section-registration-closed:before {
        width: 125px;
        height: 95px;
        background-size: contain;
        bottom: -2px;
    }

    .section-registration-closed:after {
        width: 169px;
        height: 106.5px;
        background-size: contain;
        bottom: -60px;
    }
}

/* section calendar */
.section-calendar {
    position: relative;
    padding: 73px 0 90px;
    background-color: #f1f1f1;
}

.section-calendar .wrap {
    position: relative;
    z-index: 2;
}

.container-stages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1250px;
    margin: 0 auto;
}

.container-stages .col {
    max-width: 401px;
    width: calc(100% / 3 - 10px);
}

.col-1 .title-tour {
    background-color: #8cc2e0;
}

.col-2 .title-tour {
    background-color: #3f9acb;
}

.col-3 .title-tour {
    background-color: #ffa161;
}

.title-tour {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    color: #fff;
}

.schedule {
    position: relative;
    padding: 22px 40px 22px 20px;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
    border-bottom: 2px dashed #dcdcdc;
    border-top-width: 0;
    min-height: 256px;
    background-color: #fff;
}

.schedule_disabled:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255 255 255 / 0);
}

.schedule_disabled a {
    color: #a6a6a6;
}

.schedule-2 {
    min-height: 255px;
}

.schedule-3 {
    min-height: auto;
}

.schedule:last-child {
    border-bottom: 2px solid #dcdcdc;
}

.schedule .date {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    padding-top: 15px;
    padding-bottom: 15px;
}

.schedule h4 {
    font-weight: 700;
    margin: 20px 0 15px;
}

.schedule a {
    display: block;
    text-decoration: underline;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 12px;
}

.schedule-event {
    color: #a6a6a6;
    display: block;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: 12px;
    padding-left: 58px;
}
.schedule-event_date {
    font-size: 12px;
    color: #a6a6a6;
    padding-left: 58px;
}

.schedule .date,
.schedule ul li,
.schedule h4,
.schedule a {
    padding-left: 58px;
    position: relative;
}

.schedule .rules-link {
    margin: 17px 0;
}

.rules-link:before {
    content: "";
    display: block;
    background: url(../images/calendar/icons/ic_doc_light_blue.svg) no-repeat top center;
    width: 20px;
    height: 26px;
    position: absolute;
    left: 10px;
    top: 0;
}

.schedule .note {
    display: none;
    font-size: 14px;
    margin: 35px 0 0 10px;
    padding-bottom: 20px;
}

.schedule_disabled .note {
    display: block;
}

.col-2 .rules-link:before {
    background-image: url(../images/calendar/icons/ic_doc_blue.svg);
}

.col-3 .rules-link:before {
    background-image: url(../images/calendar/icons/ic_doc_orange.svg);
}

.schedule .title-soft,
.schedule .title-master {
    margin: 40px 0 15px;
}

.title-soft:before {
    content: "";
    display: block;
    background: url(../images/calendar/icons/ic_gear_blue.svg) no-repeat top center;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 6px;
    top: 0;
}

.col-3 .title-soft:before {
    background-image: url(../images/calendar/icons/ic_gear_orange.svg);
}

.title-master:before {
    content: "";
    display: block;
    background: url(../images/calendar/icons/ic_video_blue.svg) no-repeat top center;
    width: 26px;
    height: 18px;
    position: absolute;
    left: 8px;
    top: 3px;
}

.col-3 .title-master:before {
    background-image: url(../images/calendar/icons/ic_video_orange.svg);
}

.schedule_disabled .rules-link:before {
    background-image: url(../images/calendar/icons/ic_doc_grey.svg);
}

.schedule_disabled .title-soft:before {
    background-image: url(../images/calendar/icons/ic_gear_grey.svg);
}

.schedule_disabled .title-master:before {
    background-image: url(../images/calendar/icons/ic_video_grey.svg);
}

.schedule .date:after,
.schedule ul li:after {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: #8cc2e0;
    position: absolute;
    left: 24px;
    top: 20px;
}

.schedule ul li:last-child:after {
    display: none;
}

.schedule .date:before {
    content: "";
    background-image: url(../images/calendar/icons/ic_calendar.svg);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #8cc2e0;
    position: absolute;
    left: 0;
    top: 8px;
    z-index: 1;
}

.schedule ul li {
    position: relative;
    font-size: 16px;
    padding-bottom: 12px;
    padding-top: 13px;
    line-height: 1.5;
}

.schedule ul li:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #8cc2e0;
    position: absolute;
    left: 17px;
    top: 18px;
}

.col-2 .schedule .date:after,
.col-2 .schedule ul li:after,
.col-2 .schedule .date:before,
.col-2 .schedule ul li:before {
    background-color: #3f9acb;
}

.col-3 .schedule .date:after,
.col-3 .schedule ul li:after,
.col-3 .schedule .date:before,
.col-3 .schedule ul li:before {
    background-color: #ffa161;
}

@media (max-width: 1440px) {
    .section-calendar {
        padding: 50px 0;
    }
}
@media (max-width: 1260px) {
    .title-tour {
        font-size: 20px;
        padding: 12px 20px;
        border-radius: 8px;
    }
    .schedule {
        padding: 20px;
        border-radius: 8px;
        min-height: 190px;
    }
    .schedule-3 {
        min-height: auto;
    }
    .schedule .date {
        font-size: 20px;
        padding: 11px 0 12px 58px;
    }
    .schedule .date:before {
        top: 0;
    }
    .schedule ul li {
        font-size: 14px;
        padding-bottom: 0;
    }
    .schedule_disabled .note br {
        display: none;
    }
}
@media (max-width: 992px) {
    .container-stages {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .container-stages .col {
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
    }
    .collapse .schedule {
        display: none;
    }
    .schedule {
        min-height: auto;
    }
    .schedule .rules-link {
        margin: 10px 0;
    }
    .title-tour {
        text-align: left;
    }
    .title-tour:after {
        content: "";
        display: block;
        background: url(../images/calendar/icons/ic-down-arrow.svg) no-repeat top center;
        width: 18px;
        height: 18px;
        position: absolute;
        right: 20px;
        top: 50%;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }
    .col .title-tour:after {
        -webkit-transform: rotate(180deg) translateY(50%);
        -ms-transform: rotate(180deg) translateY(50%);
        transform: rotate(180deg) translateY(50%);
    }
    .col.collapse .title-tour:after {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
@media (max-width: 768px) {
    .section-calendar {
        padding: 20px 0;
    }
    .section-calendar .section-title {
        padding-bottom: 19px;
    }
}

/* section winners */
.section-winners {
    padding: 73px 0 88px;
}

.tours {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tours .item {
    position: relative;
    width: calc(100% / 3 - 55px);
}

.tours .item-2 {
    min-width: 340px;
}

.tour-number {
    position: relative;
}

.tours h4 {
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    left: 47px;
    bottom: 40px;
}

.tours .item-2 h4 {
    left: 64px;
}

.tours .item-3 h4 {
    left: 78px;
    bottom: 7px;
}

.tours .item p {
    font-size: 18px;
    font-weight: 700;
    margin-left: 47px;
    margin-top: -34px;
}

.tours .item-2 p {
    margin-left: 65px;
}

.tours .item-3 p {
    margin-top: 0;
    margin-left: 76px;
}

.tours .item strong {
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    display: block;
    text-transform: uppercase;
}

.wrap-tours .note {
    max-width: 780px;
    font-size: 12px;
    margin-left: 90px;
    margin-top: 53px;
}

@media (max-width: 1440px) {
    .section-winners {
        padding: 50px 0;
    }
    .tour-number img {
        max-width: 340px;
        margin: 0 auto;
        width: 100%;
    }
    .tours .item {
        width: auto;
        margin: 0 30px;
    }
    .tours .item-2 {
        min-width: auto;
    }
    /* .tours .item p {
        margin-left: 0;
    }
    .tours .item-2 p {
        margin-left: 0;
    }
    .tours .item-3 p {
        margin-left: 0;
    } */
}
@media (max-width: 1260px) {
    .wrap-tours .note {
        max-width: 100%;
        margin-left: 30px;
    }
    .tours .item p {
        margin-top: -8%;
    }
    .tours .item strong {
        font-size: 18px;
    }
    .tours .item p {
        font-size: 14px;
    }
    .tours .item-3 p {
        margin-top: 0;
    }
}
@media (max-width: 1024px) {
    .tours .item p {
        margin-left: 37px;
    }
    .tours .item-2 p {
        margin-left: 50px;
    }
}
@media (max-width: 992px) {
    .tours {
        display: block;
        max-width: 340px;
        margin: 0 auto;
    }
    .tours .item {
        width: 100%;
        margin: 0;
    }
    .tours h4 {
        font-size: 24px;
        left: 31px;
        bottom: 30px;
    }
    .tours .item-2 h4 {
        left: 45px;
    }
    .tours .item-3 h4 {
        left: 52px;
    }
    .wrap-tours .note {
        margin: 40px 0 0;
        padding-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .section-winners {
        padding: 20px 0;
    }
    .section-winners .section-title {
        padding-bottom: 20px;
    }
    .tours .item p {
        font-size: 12px;
        margin-left: 31px;
    }
    .wrap-tours .note {
        margin: 57px 0 0;
    }
}
@media (max-width: 640px) {
    .tours {
        max-width: 280px;
    }
}
@media (max-width: 370px) {
    .tours .slick-prev {
        left: -20px;
    }
    .tours .slick-next {
        right: -20px;
    }
}

/* section names */
.section-names {
    position: relative;
    padding: 80px 0 96px;
    background-image: url(../images/names/pic-1.png), url(../images/names/pic-2.png),
        url(../images/names/pic-3.png), url(../images/names/pic-4.png);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: 0 300px, 100% 360px, left 0 bottom 86px, right 0 bottom 253px;
    background-color: #8cc2e0;
}
.section-names .wrap {
    max-width: 1250px;
}
.section-names .section-title {
    padding-bottom: 50px;
}
.section-names .section-title span {
    white-space: nowrap;
}
.section-names .subtitle {
    padding-bottom: 20px;
}
.section-names .section-title,
.section-names .subtitle {
    color: #fff;
}
.section-names .subtitle a {
    color: #fff;
    text-decoration: underline;
}
.names-container {
    column-count: 3;
}
.names-block {
    display: block;
    break-inside: avoid;
    padding: 0 60px;
    margin-bottom: 30px;
}
.names-block_bsi {
    break-inside: initial;
}
.names-list-title {
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}
.names-list li {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.section-names .note {
    font-size: 12px;
    margin-left: 60px;
    margin-top: 53px;
}

@media (max-width: 992px) {
    .section-names {
        background-size: 100px, 100px, 80px, 90px;
        background-position: -1000px 0, 100% 180px, left 0 bottom 45px, right 0 bottom 55px;
    }
    .names-container {
        column-count: 1;
        max-width: 100%;
        margin: 0 auto;
    }
    .names-block {
        padding: 0 60px;
    }
    .names-container .slick-dots {
        position: relative;
        bottom: auto;
        flex-wrap: wrap;
    }
    .names-container .slick-dots li {
        margin-bottom: 20px;
    }
    .names-container .slick-prev {
        top: 45%;
        left: -5px;
    }
    .names-container .slick-next {
        top: 45%;
        right: -5px;
    }
    .section-names .note {
        margin: 40px 0 0 60px;
    }
}
@media (max-width: 768px) {
    .names-block {
        padding: 0 40px;
    }
    .names-container .slick-prev {
        left: -15px;
    }
    .names-container .slick-next {
        right: -15px;
    }
    .section-names .note {
        margin: 40px 0 0 40px;
    }
}

/* section people */
.section-people {
    position: relative;
    padding: 80px 0 96px;
    background-image: url(../images/people/pic.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-color: #3f9acb;
}
.section-people .wrap {
    max-width: 1250px;
}
.section-people .section-title {
    padding-bottom: 50px;
    color: #fff;
}
.section-people .section-title span {
    white-space: nowrap;
}
.people-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.people-item {
    background-image: url(../images/people/pic-line.png);
    background-repeat: no-repeat;
    background-position: top right;
    padding: 24px;
    width: calc(33.33% - 2px);
    max-width: 375px;
}
.people-title {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding-top: 15px;
}
.people-pic {
    border-radius: 20px;
    overflow: hidden;
}
.people-pic img {
    max-width: 100%;
    height: auto;
}
.people-link {
    width: calc(33.33% - 2px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.people-link span {
    font-size: 48px;
    font-family: "Oswald", sans-serif;
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
.people-link img {
    max-width: 100%;
    height: auto;
    margin-left: 10px;
    margin-top: 16px;
}
.section-people .slick-slide div {
    text-align: center;
}
.section-people .slick-dots li.slick-active button {
    background: #5383b0;
}
.section-people .slick-dots li button {
    margin: 0 5px;
}
.section-people .people-container:not(.slick-slider) .people-item:last-child {
    background-image: none;
}
@media (max-width: 992px) {
    .section-people {
        background-size: contain;
        background-image: url(../images/people/pic-mob.png);
    }
    .people-container {
        column-count: 1;
        max-width: 100%;
        margin: 0 auto;
    }
    .people-container .slick-dots {
        position: relative;
        bottom: auto;
        flex-wrap: wrap;
    }
    .people-container .slick-dots li {
        margin-bottom: 20px;
    }
    .people-container .slick-prev {
        top: 37%;
        left: -5px;
    }
    .people-container .slick-next {
        top: 37%;
        right: -5px;
    }
    .people-link {
        width: 100%;
    }
    .people-link span {
        font-size: 31px;
    }
}
@media (max-width: 768px) {
    .people-container .slick-prev {
        left: -15px;
    }
    .people-container .slick-next {
        right: -15px;
    }
}

/* section people */
.section-people-winners {
    position: relative;
    padding: 80px 0 96px;
    background-image: url(../images/people/pic-bg-left.png), url(../images/people/pic-bg-right.png);
    background-repeat: no-repeat;
    background-position: top left, top right;
    background-color: #ffa161;
}
.section-people-winners .wrap {
    max-width: 1420px;
}
.section-people-winners .section-title {
    padding-bottom: 50px;
    color: #fff;
}
.section-people-winners .people-item {
    background-image: url(../images/people/pic-line-white.png);
}
.section-people-winners .section-title span {
    white-space: nowrap;
}
.section-people-winners .slick-slide div {
    text-align: center;
}
.section-people-winners .slick-dots li button {
    background: #f6c7a7;
}
.section-people-winners .slick-dots li.slick-active button {
    background: #ededed;
}
.section-people-winners .slick-dots li button {
    margin: 0 5px;
}
.section-people-winners .people-link {
    width: auto;
}
.section-people-winners .people-container {
    max-width: 1200px;
    margin: auto;
}
.section-people-winners .people-container .slick-next,
.section-people-winners .people-container .slick-prev {
    top: 20%;
}
.people-links-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.people-winner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}
.people-winner-title {
    color: #ffa161;
    font-weight: 500;
    font-size: 33px;
    line-height: 1.2;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    padding-left: 15px;
}
.people-winner-cup {
    width: 78px;
    height: 69px;
    background-image: url(../images/people/cup.png);
    background-repeat: no-repeat;
    position: relative;
}
.people-winner-cup span {
    position: absolute;
    font-family: "Oswald", sans-serif;
    color: #ffa161;
    font-weight: 500;
    line-height: 1;
    font-size: 33px;
    left: 50%;
    transform: translateX(-50%);
    top: 5px;
}
.people-desc {
    font-weight: bold;
    color: #ffffff;
    padding-top: 40px;
    background-image: url(../images/people/quotes.png);
    background-repeat: no-repeat;
    background-position: 0 20px;
    line-height: 1.8;
}
@media (max-width: 992px) {
    .section-people-winners {
        background-size: 40%;
        background-image: url(../images/people/pic-bg-right.png);
        background-position: top right;
    }
}
@media (max-width: 768px) {
    .section-people-winners {
        padding: 20px 0;
    }
}

/* section partners */
.section-partners {
    padding: 76px 0 60px;
    background-color: #f8f8f8;
}
.section-partners .wrap {
    max-width: 1450px;
}
.section-partners .section-title {
    padding-bottom: 50px;
}
.partners {
    display: flex;
}
.partners .slide {
    width: 100%;
}
.partners .slide .item {
    width: 100%;
    padding: 30px;
    min-height: 240px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
.partners .slide a {
    display: block;
    width: 100%;
    margin: auto;
    text-align: center;
}
.partners .slide img {
    display: block;
    max-width: 100%;
    margin: auto;
}
.partners .slick-arrow {
    top: 50%;
}
@media (max-width: 1540px) {
    .section-partners {
        padding: 50px 30px;
    }
    .section-partners .section-title {
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .section-partners {
        padding: 20px 0;
        overflow: hidden;
    }
    .section-partners .section-title {
        padding-bottom: 25px;
    }
    .partners .slide {
        max-width: 100%;
    }
    .partners .slide .item {
        height: 160px;
        min-height: 0;
    }
    .section-partners .slick-next {
        right: -10px;
    }
    .section-partners .slick-prev {
        left: -10px;
    }
    .section-partners .item img {
        width: 60%;
        margin: auto;
    }
    .section-partners .item-2 img {
        max-height: 100px;
        width: 80%;
    }
    .section-partners .item-3 img {
        max-height: 100px;
        width: auto;
    }
    .section-partners .item-4 img {
        max-height: 80px;
        width: auto;
    }
    .section-partners .item-9 img {
        max-height: 80px;
        width: auto;
    }
    .section-partners .item-10 img {
        max-height: 80px;
        width: auto;
    }
    .section-partners .item-8 img {
        max-height: 80px;
        width: auto;
    }
    .section-partners .item-19 img {
        max-height: 100px;
        width: auto;
    }
}

/* section text */
.section-text {
    padding: 80px 0;
}

.text-content {
    max-width: 1300px;
    margin: 0 auto;
}

.title-text {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.text-link {
    text-decoration: underline;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: none;
}

.text-content .subtitle {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

.text-content p {
    line-height: 1.65;
    margin-bottom: 15px;
}

.text-content ul {
    list-style-type: disc;
    margin-left: 20px;
}
.text-content ol {
    list-style-type: none;
    margin-left: 20px;
}

.text-content ul li,
.text-content ol li {
    line-height: 1.65;
    margin-bottom: 15px;
}

.text-content img {
    display: inline-block;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

.text-content .table {
    border-collapse: collapse;
    max-width: 100%;
    margin-bottom: 15px;
}
.text-content .table td {
    border: 1px solid #333;
    padding: 5px 10px;
}

.text-content .table-color td {
    color: #000;
    text-align: center;
}
.text-content .table-color tr td:nth-child(1) {
    background-color: #f79646;
    font-weight: bold;
}
.text-content .table-color tr:nth-child(1) td {
    background-color: #f79646;
    font-weight: bold;
}
.text-content .table-color tr:not(:first-child) td:not(:first-child) {
    background-color: #fbd5b5;
}
.text-content
    .table-color
    tr:nth-child(2n-1):not(:first-child)
    td:nth-child(2n-1):not(:first-child) {
    background-color: #fdeada;
}
.text-content .table-color tr td:last-child {
    font-weight: bold;
}

@media (max-width: 768px) {
    .section-text {
        padding: 25px 0;
    }
    .title-text {
        font-size: 18px;
    }
    .text-content p,
    .text-content ul li {
        font-size: 14px;
    }
}

/* footer */
.footer {
    padding: 35px 0 34px;
    background-color: #1f1f1f;
    color: #707070;
}

.footer .wrap {
    max-width: 1570px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer p {
    margin-top: 10px;
    margin-bottom: 15px;
}

.info-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: auto;
}

.info-contacts ul li {
    margin-bottom: 12px;
}

.info-contacts a:hover {
    color: #fff;
}

.footer-contacts {
    margin-left: 40px;
}

.social-links {
    margin-left: 110px;
}

.social-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.social-links li a svg {
    display: block;
    width: 34px;
    height: 34px;
    fill: #707070;
}

.social-links li a:hover svg {
    fill: #3f9acb;
}

@media (max-width: 1200px) {
    .social-links {
        margin-left: 30px;
    }
}

@media (max-width: 992px) {
    .info-contacts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-contacts {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 28px 0;
    }
    .footer .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .info-contacts,
    .social-links {
        margin-left: 0;
    }
    .footer-logo {
        width: 100%;
    }
    .footer-logo img {
        margin: 0 auto;
        max-width: 220px;
    }
    .footer p {
        font-size: 14px;
        margin: 25px 0 10px;
    }
    .info-contacts ul li {
        margin-bottom: 7px;
    }
    .info-contacts li a {
        font-size: 14px;
    }
    .social-links li {
        margin-right: 22px;
    }
}

.go-top {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: #b8e2f2;
    background: url(../images/calendar/icons/ic-down-arrow.svg) #b8e2f2 no-repeat center center;
    background-size: 20px 20px;
    transform: rotateZ(180deg);
    position: fixed;
    right: 30px;
    bottom: 40px;
}

/* modal */
body.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: flex;
}
.modal span.close {
    display: block;
    width: 21px;
    height: 21px;
    position: absolute;
    right: 20px;
    top: 20px;
    background: url("../images/icons/icon-cross.png") 0 0 no-repeat;
    cursor: pointer;
}
.modal-dialog {
    display: block;
    position: relative;
    background: #fff;
    border-radius: 13px;
    width: 100%;
    max-width: 768px;
    text-align: center;
    padding: 45px 0 80px;
}
.modal-pic img {
    margin: 0 auto 30px;
}
.modal-title {
    font-size: 28px;
    font-weight: 700;
    max-width: 400px;
    margin: 0 auto 40px;
}
.modal-btn {
    text-align: center;
}
.modal-btn .btn {
    margin: 0 auto;
    min-width: 360px;
}
.modal-success {
}
@media (max-width: 768px) {
    .modal-dialog {
    }
    .modal-dialog {
        width: 90%;
        min-width: 300px;
        padding: 45px 0 45px;
    }
    .modal-pic img {
        margin: 0 auto 25px;
        display: block;
        width: 100%;
        max-width: 145px;
    }
    .modal-title {
        font-size: 20px;
        margin: 0 auto 25px;
        max-width: 300px;
    }
    .modal-btn .btn {
        min-width: 0;
    }
}
