/*================================================*/
/*                    MAIN STYLES                 */
/*================================================*/
html {
    height: 100%;
}

body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #edf1f2;
    color: #454545;
    font-family: "Nr Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    min-height: 100%;
}

body.modal-show {
    display: block;
    overflow: hidden;
    height: 100%;
}

.nm-main-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.nm-hidden {
    display: none;
}

.nm-hidden-imp {
    display: none !important;
}

.nm-invisible {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
}

.nm-clear:after {
    content: "";
    display: table;
    clear: both;
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.colored--orange {
    color: #f07e26;
}

.colored--blue {
    color: #0d5270;
}

.block {
    display: block;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: none;
}

b,
strong {
    font-weight: bold;
}

a {
    font-family: inherit;
    color: inherit;
}

a:hover {
    color: #f07e26;
    text-decoration: none;
}

.btn {
    cursor: pointer;
    display: block;
    text-align: center;
    font-family: "Nr Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    text-decoration: none;
    background: none;
    background-color: #fff;
    color: #f07e26;
    border: 2px solid #f07e26;
    border-radius: 25px;
    outline: none;
    width: auto;
    min-width: 300px;
    max-width: none;
    height: 50px;
    padding: 0 10px;
    margin: 0;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.btn:not([type='submit']) {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn:hover,
.btn:focus {
    color: #fff;
    text-decoration: none;
    background-color: #f07e26;
}

.btn:active {
    color: #fff;
    background-color: #dd690f;
}

.input,
.textarea {
    display: block;
    font-size: 18px;
    font-family: "Nr Sans", Arial, sans-serif;
    color: #000;
    background-color: #fff;
    border: 1px solid #d2d2d2;
    outline: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 50px;
    padding: 0 25px;
    margin: 0;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.input:hover, .textarea:hover {
    border-color: #dd690f;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.input::-ms-clear,
.textarea::-ms-clear {
    display: none;
}

.input::-webkit-search-decoration,
.textarea::-webkit-search-decoration,
.input::-webkit-search-cancel-button,
.textarea::-webkit-search-cancel-button,
.input::-webkit-search-results-button,
.textarea::-webkit-search-results-button,
.input::-webkit-search-results-decoration,
.textarea::-webkit-search-results-decoration {
    display: none;
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
    opacity: 0;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
    color: #808285;
    font-family: "Nr Sans", Arial, sans-serif;
    opacity: 1;
    -webkit-transition: 0.4s ease-in-out 0.4s;
    -o-transition: 0.4s ease-in-out 0.4s;
    transition: 0.4s ease-in-out 0.4s;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
    color: #808285;
    font-family: "Nr Sans", Arial, sans-serif;
    opacity: 1;
    -webkit-transition: 0.4s ease-in-out 0.4s;
    -o-transition: 0.4s ease-in-out 0.4s;
    transition: 0.4s ease-in-out 0.4s;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
    color: #808285;
    font-family: "Nr Sans", Arial, sans-serif;
    opacity: 1;
    -webkit-transition: 0.4s ease-in-out 0.4s;
    -o-transition: 0.4s ease-in-out 0.4s;
    transition: 0.4s ease-in-out 0.4s;
}

.textarea {
    min-height: 100px;
    padding: 25px;
    resize: none;
    overflow: auto;
}

.nm-img-wrap {
    display: block;
}

.nm-img-wrap img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    right: -5px;
}

.nm-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.bg--white {
    background: #fff;
}

/*================================================*/
/*                    HEADER	                  */
/*================================================*/
.header {
    position: relative;
    background: #fff;
    z-index: 10;
}

.header--top {
    padding: 18px 0;
    border-bottom: 1px solid #d9d9db;
}

.header .logo {
    text-align: right;
    font-size: 0;
}

.header .logo img {
    max-width: 100%;
}

.header--bot {
    padding: 28px 0;
}

.header nav div > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
}

.header nav div > ul > li {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    padding: 29px 10px;
}

.header nav div > ul > li:not(:last-child) {
    border-right: 1px solid #d9d9db;
}

.header nav div > ul > li:last-child {
    text-align: right;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 0;
}

.header nav div > ul > li:hover > ul {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: 0.4s 0s;
    -o-transition: 0.4s 0s;
    transition: 0.4s 0s;
}

.header nav div > ul > li ul {
    position: absolute;
    display: block;
    background: #fff;
    top: 100%;
    left: 50%;
    width: auto;
    padding: 15px 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: scale(0.9) translateX(-50%);
    -ms-transform: scale(0.9) translateX(-50%);
    transform: scale(0.9) translateX(-50%);
    -webkit-transition: 0.2s 0.2s;
    -o-transition: 0.2s 0.2s;
    transition: 0.2s 0.2s;
    will-change: transform, opacity;
    z-index: 10;
}

.header nav div > ul > li ul li a {
    margin: 7px 0;
}

.header nav div ul {
    position: relative;
}

.header nav div ul li {
    position: relative;
    display: block;
    text-align: center;
    padding: 0 10px;
}

.header nav div ul li a {
    color: #222;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.1;
    white-space: nowrap;
}

.header nav div ul li a:hover {
    color: #f07e26;
}

.header .nm-menu-expand {
    position: relative;
    display: none;
    cursor: pointer;
    background-color: transparent;
    left: 0;
}

.header .nm-menu-expand .button_wrap {
    position: relative;
    width: 38px;
    min-width: 38px;
    max-width: 38px;
    height: 36px;
    border: 1px solid #a4a4a4;
    border-radius: 4px;
    margin-right: 12px;
}

.header .nm-menu-expand .button_wrap span {
    display: block;
    position: absolute;
    background-color: #000;
    border-radius: 2px;
    left: 7px;
    right: 7px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    height: 3px;
}

.header .nm-menu-expand .button_wrap span:nth-child(1) {
    top: 9px;
}

.header .nm-menu-expand .button_wrap span:nth-child(2),
.header .nm-menu-expand .button_wrap span:nth-child(3) {
    top: 16px;
    will-change: transform;
}

.header .nm-menu-expand .button_wrap span:nth-child(4) {
    bottom: 8px;
}

.header .nm-menu-expand.nm-active {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    left: calc(30% - 50px);
}

.header .nm-menu-expand.nm-active .title {
    display: none;
}

.header .nm-menu-expand.nm-active .button_wrap span:nth-child(1) {
    top: 5px;
    width: 0;
    left: 50%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.header .nm-menu-expand.nm-active .button_wrap span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header .nm-menu-expand.nm-active .button_wrap span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header .nm-menu-expand.nm-active .button_wrap span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.menu_mobile {
    display: none;
}

/*================================================*/
/*                    MAIN  	                  */
/*================================================*/
.nm-grow {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    min-height: 1px;
    margin: 0 auto;
}

main {
    width: 100%;
}

.h1 {
    font-size: 46px;
    font-weight: normal;
    line-height: 1.2;
}

.h2 {
    color: #000;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.75em;
}

.section__wrapper {
    width: 100%;
    max-width: 2048px;
    padding: 0 30px;
    margin: 0 auto;
}

.section__wrapper--mid {
    max-width: 1360px;
}

.section__wrapper--page {
    background: #fff;
    max-width: 1300px;
    padding: 25px 60px 50px;
    margin-top: -30px;
}

.section__wrapper--page input[type=text]{
    width: 80%;
    padding:10px;
    font-size: 16px;
    border-radius: 5px;
}
.login-form-wrapper {
    background-color: #e4b720;
    padding: 20px 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.login-form-wrapper > div {
    width: 100%;
    text-align: center;
}

.login-form-wrapper input {
    border: none;
    outline: none;
    border-radius: 0px !important;
    margin-top: 30px !important;
    font-size: 16px;
    height: 50px;
    width: 80%;
    font-weight: bold;
    padding-left: 10px;
}

.login-form-wrapper button {
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    margin-top: 30px;
    color: #75758b;
    background-color: white;
}

.login-form-wrapper button:hover {
    color: white;
    background-color: #0d5271;
    margin-top: 25px;
    margin-bottom: 5px;
    transition: 0.5s;
}


.section--border-top {
    border-top: 1px solid #666;
}

.section--home .block {
    background: #fff;
}

.section--home .block--with-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 538px;
}

.section--home .block--different .subblock-horizontal {
    border-left: 1px solid #d3d3d3;
}

.section--home .block--different .subblock-horizontal .item {
    border-right: 1px solid #d3d3d3;
}

.section--home .block--different .subblock-vertical {
    border-right: 1px solid #d3d3d3;
}

.section--home .block--different .subblock-vertical .item:not(:last-child) {
    border-bottom: 1px solid #d3d3d3;
}

.section--home .block--colored .item {
    width: 50%;
}

.section--home .subblock-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 66.666%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.section--home .subblock-horizontal .item {
    width: 50%;
}

.section--home .subblock-vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.333%;
}

.section--home .subblock-vertical .item {
    height: 50%;
}

.section--home .item {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 45px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.section--home .item--colored {
    color: #fefefe;
}

.section--home .item--colored--blue {
    background: #0d5270;
}

.section--home .item--colored--blue:hover {
    background: #116b92;
}

.section--home .item--colored--orange {
    background: #f07e26;
}

.section--home .item--colored--orange:hover {
    background: #f28b3c;
}

.section--home .item--colored:hover * {
    color: #fefefe;
}

.section--home .item--colored.item--arrow .item__title {
    padding-right: 75px;
}

.section--home .item--colored.item--arrow .item__title:after {
    position: absolute;
    display: block;
    content: "";
    background: url("../img/right-arrow-inside-circle-white.svg") no-repeat center center;
    background-size: contain;
    width: 53px;
    height: 54px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.section--home .item--simple.item--arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section--home .item--simple.item--arrow .item__title {
    width: 100%;
    margin-bottom: 0;
    padding-right: 85px;
}

.section--home .item--simple.item--arrow .item__title:before,
.section--home .item--simple.item--arrow .item__title:after {
    position: absolute;
    display: block;
    content: "";
    background-size: contain;
    width: 70px;
    height: 71px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    will-change: opacity;
}

.section--home .item--simple.item--arrow .item__title:before {
    background: url("../img/right-arrow-inside-a-circle-orange-with-orange-arrow.svg") no-repeat center center;
    background-size: 100% !important;
}

.section--home .item--simple.item--arrow .item__title:after {
    background: url("../img/orange-solid-arrow.svg") no-repeat center center;
    background-size: 100% !important;
    opacity: 0;
    z-index: 3;
}

.section--home .item--simple.item--arrow:hover .item__title {
    color: #f07e26;
}

.section--home .item--simple.item--arrow:hover .item__title:before {
    opacity: 0;
}

.section--home .item--simple.item--arrow:hover .item__title:after {
    opacity: 1 !important;
}

.section--home .item--simple .item__title {
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    color: #222;
}

.section--home .item--simple .item__text {
    color: #454545;
    font-weight: normal;
}

.section--home .item--simple .item__text p {
    margin-bottom: 1em;
}

.section--home .item--simple .item__text a {
    text-decoration: underline;
    font-weight: bold;
}

.section--home .item--simple .item__text a:not(:hover) {
    color: #0d5270;
}

.section--home .item--arrow .item__title {
    position: relative;
    display: inline-block;
}

.section--home .item__title {
    font-size: 30px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 0.75em;
}

.section--home .item__text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.75;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    max-width: 100%;
    max-height: 100%;
}

.section--home .video-container {
    position: relative;
}

.section--home .video-container .btn-play, .plyr__control.plyr__control--overlaid {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center !important;
    background: rgba(228, 98, 49, 0.7);
    top: 50%;
    left: 50%;
    width: 170px;
    height: 109px;
    max-width: 30%;
    max-height: 30%;
    padding: 2%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 0 !important;
}

.plyr__control.plyr__control--overlaid svg, .plyr__control.plyr__control--overlaid svg path {
    opacity: 0 !important;
}

.plyr__control.plyr__control--overlaid:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: -5px;
    margin: auto;
    background: url('../img/icon-video-play.png') no-repeat 100%;
    width: 36px;
    height: 51px;

}

.section--home .video-container .btn-play:hover {
    background: #f07e26;
}

.section--training {
    padding: 60px 0 55px;
}

.section--training .section__title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.section--training .section__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}

.section--training .section__more {
    color: #0d5270;
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
    padding-right: 27px;
}

.section--training .slider-dots {
    border-left: 1px solid #babdbe;
    font-size: 0;
    padding-left: 20px;
}

.section--training .slider-dots .slick-dots {
    position: static;
    padding: 14px 0;
}

.section--head {
    background: #0d5270;
    color: #fff;
    padding: 75px 0 60px;
}

.section--breadcrumbs {
    background: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 22px 0 17px;
}

.section--breadcrumbs .breadcrumbs-text {
    color: #000;
    font-weight: bold;
    margin-right: 16px;
}

.section--breadcrumbs ul {
    display: inline;
    list-style-type: none;
}

.section--breadcrumbs li {
    position: relative;
    display: inline-block;
    color: #6a6a6a;
}

.section--breadcrumbs li:not(:last-child) {
    padding-right: 22px;
    margin-right: 12px;
}

.section--breadcrumbs li:not(:last-child):before,
.section--breadcrumbs li:not(:last-child):after {
    position: absolute;
    display: block;
    content: "";
    background-color: #6a6a6a;
    height: 2px;
    width: 6px;
    right: 0;
    top: 0;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.section--breadcrumbs li:not(:last-child):before {
    -webkit-transform: translateY(12px) rotate(-45deg);
    -ms-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
}

.section--breadcrumbs li:not(:last-child):after {
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

.section--breadcrumbs li:last-child {
    color: #f07e26;
}

.section--buttons .section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 13px;
}

.section--buttons .item {
    display: block;
    background: #fff;
    -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
    width: 23.2%;
    margin-bottom: 17px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    will-change: transform;
}

.item__btns__wrapper {
    position: relative;
    width: 23.2%;
    margin-bottom: 17px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    will-change: transform;
}

.item__btns__wrapper .item {
    width: 100% !important;
    margin: 0;
}

.btns__wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: row;
}

.btns__wrapper a {
    width: 50%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    cursor: pointer;
}

.single__btns__wrapper a {
    width: 100%;
}

.btns__wrapper .org__btn {
    background: #f07e26;
}

.btns__wrapper .org__btn:hover {
    background: #f28b3c;
}

.btns__wrapper .pdf__btn {
    background: #0d5270;
}

.btns__wrapper .pdf__btn:hover {
    background: #116b92;
}

.section--buttons .item:not(:nth-child(4n+4)), .item__btns__wrapper:not(:nth-child(4n+4)) {
    margin-right: 2.4%;
}

.section--buttons .item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.item__btns__wrapper:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.item__btns__wrapper:hover .item:hover {
    transform: none;
}

.section--buttons .item:hover .item__image {
    opacity: 0.9;
}

.section--buttons .item:hover .item__title {
    color: #f07e26;
}

.section--buttons .item__image {
    width: 100%;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.section--buttons .item__image:before {
    display: block;
    content: "";
    padding-top: 75%;
}

.section--buttons .item__description {
    min-height: 170px;
    padding: 35px;
}

.section--buttons .item__title {
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.section--article {
    color: #000;
    font-size: 18px;
    line-height: 1.67;
    padding: 30px 0;
}

.section--article .h2 {
    letter-spacing: 0.025em;
    margin-bottom: 0.75em;
}

.section--article .h3 {
    font-size: 22px;
    margin: 1em 0;
}

.section--article p:not(:last-child) {
    margin-bottom: 1.5em;
}

.section--article a {
    color: #f07e26;
    text-decoration: underline;
}

.section--article a:hover {
    color: #0d5270;
}

.section--article img {
    max-width: 100%;
    margin-bottom: 1em;
}

.section--quote {
    text-align: center;
    background: #0d5270;
    color: #fff;
    font-size: 30px;
    font-style: italic;
    line-height: 1;
    padding: 70px 0;
}

.section--quote .section__wrapper {
    display: none;
}

.name_title {
    margin-top: 30px;
}

.name_title h2 {
    font-size: 24px;
}

.name_title h5 {
    font-size: 18px;
    margin-top: 3px;
    font-family: normal;
    font-style: italic;
    font-family: "Nr Sans", Arial, sans-serif;
}

.slider--training {
    margin: 0 -8px;
}

.slider--training .slick-track {
    padding: 30px 0;
}

.slider--training .item {
    width: 100%;
    padding: 0 8px;
    position: relative;
}

.slider--training .item__inner {
    display: block;
    background: #fff;
    outline: none;
    -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
    width: 100%;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    will-change: transform;
}

.slider--training .item:hover .item__inner {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.slider--training .item__inner:hover .item__image {
    opacity: 0.9;
}

.slider--training .item__inner:hover .item__title {
    color: #f07e26;
}

.slider--training .item__image {
    width: 100%;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.slider--training .item__image:before {
    display: block;
    content: "";
    padding-top: 63%;
}

.slider--training .item__description {
    min-height: 315px;
    padding: 30px;
}

.slider--training .item__title {
    color: #222;
    margin-bottom: 1em;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.slider--training .item__text {
    color: #505050;
    font-size: 13px;
    line-height: 1.85;
}

.slider--training--btn .item__description {
    padding-bottom: 60px;
}

.slider--training--btn .btn__arrow {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    border-top: 1px solid #e5e5e5;
    height: 60px;
    background: url('../img/right-arrow-orange.svg') no-repeat center;
    background-size: 30px auto;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    will-change: transform;
}

.slider--training--btn .item:hover .btn__arrow {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.slider--training--btn .btn__arrow:hover {
    background: url('../img/right-arrow-white.svg') no-repeat center;
    background-color: #f07e26;
    background-size: 30px auto;
}

.slider--article img {
    width: 100%;
    margin: 0 0 20px;
}

.modal-video {
    padding: 30px;
}

.modal-video .plyr {
    margin: 0 auto;
}

.search {
    line-height: normal;
    padding-bottom: 30px;
}

.search p {
    margin: 0;
}

.search__title {
    margin-bottom: 0.75em;
}

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

.search .btn-wrap {
    margin-left: 30px;
}

.search__youtube {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    margin-top: 20px;
}

.search__youtube img {
    display: block;
    margin-right: 10px;
    margin-bottom: 0;
}

/*================================================*/
/*                    FOOTER	                  */
/*================================================*/
.cookie {
    background: #253138;
    color: #fff;
    padding: 27px 0 50px;
    display: none;
    z-index: 100;
}

.cookie_exist {
    display: none !important;
}

.cookie__close {
    position: relative;
    display: block;
    font-size: 0;
    color: transparent;
    width: 12px;
    height: 12px;
    margin: 0 0 0 auto;
    z-index: 2;
}

.cookie__close:before,
.cookie__close:after {
    position: absolute;
    display: block;
    content: "";
    background: #fff;
    height: 4px;
    width: 15px;
    top: 50%;
    left: 50%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}

.cookie__close:before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cookie__close:after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cookie__close:hover:before,
.cookie__close:hover:after {
    background: #f07e26;
}

.cookie__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding: 0 10px;
    margin-bottom: 12px;
}

.cookie__top img {
    display: block;
    margin-right: 7px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cookie__title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.cookie__text {
    color: #b4b5b5;
    font-size: 13px;
    line-height: 1.8;
    padding: 0 10px;
}

.cookie__text a {
    text-decoration: underline;
}

.footer {
    background: #152127;
    color: #fff;
    padding: 65px 0 45px;
}

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

.footer__title {
    font-size: 30px;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
    width: 232px;
}

.footer__title img {
    width: 100%;
    height: auto;
}

.footer__main {
    width: calc(100% - 250px);
    max-width: 600px;
    padding-top: 10px;
}

.footer__menu {
    line-height: 0;
}

.footer__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style-type: none;
}

.footer__menu li {
    border-left: 1px solid #fff;
    line-height: 1;
    padding: 0 15px;
    margin-bottom: 25px;
}

.footer__menu li:first-child {
    border: none;
    padding-left: 0;
}

.footer__menu a {
    white-space: nowrap;
}

.footer__menu--main a {
    font-size: 17px;
}

.footer__menu--additional {
    color: #a7a7a7;
    font-weight: bold;
}

.footer__menu--additional li {
    border-color: #a7a7a7;
    padding: 0 10px;
}

.footer__copyrights {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.empty_item {
    width: 0 !important;
    position: absolute !important;
    z-index: -100 !important;
}

.s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    border: 1px solid #d2d2d2;
    width: calc(100% - 330px);
    height: 50px;
    line-height: 50px;
    padding: 0 25px !important;
    color: #808285;
    font-size: 18px;
    font-family: "Nr Sans", Arial, sans-serif;
    color: #000;
    background-color: #fff;
    opacity: 1;
    -webkit-transition: 0.4s ease-in-out 0.4s;
    -o-transition: 0.4s ease-in-out 0.4s;
    transition: 0.4s ease-in-out 0.4s;
}

.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    color: #808285;
    padding: 0 25px !important;
}

.styledSelect:after {
    content: "";
    width: 0;
    height: 0;
    border: 9px solid transparent;
    border-color: #ea5c1c transparent transparent transparent;
    position: absolute;
    top: 20px;
    right: 9px;
}

.styledSelect.active:after {
    transform: rotate(180deg);
    top: 15px;
}

.styledSelect:active, .styledSelect.active, .select:hover {
    border-color: #ea5c1c;
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    right: -1px;
    left: -1px;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #ea5c1c;
    background-color: #fff;

}

.options li {
    margin: 0;
    padding: 0 25px !important;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.options li:hover {
    background-color: #ea5c1c;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.categories__list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.categories__list .category__button {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.categories__list .category__button:before {
    position: absolute;
    content: '+';
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #ea5c1c;
    line-height: 12px;
    font-size: 18px;
    text-align: center;
    background-color: #fff;
    color: #ea5c1c;
    font-family: "Nr Sans", Arial, sans-serif;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.categories__list .category__button:hover:before {
    background-color: #ea5c1c;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.categories__list .category__button.active:before {
    content: '-';
    background-color: #ea5c1c;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.categories__list ul {
    width: 100%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    list-style-type: none;
}

.categories__list ul.active {
    height: auto;
    overflow: visible;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.categories__list ul a {
    position: relative;
    padding-left: 15px;
}

.categories__list ul a:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    left: 0;
    top: 8px;
    background-color: #ea5c1c;
    border-radius: 100%;
}

/*================================================*/
/*                    MEDIA		                  */
/*================================================*/
@media screen and (min-width: 1201px) {
    .tablet-show {
        display: none !important;
    }

    .header nav div > ul > li ul {
        display: block !important;
        list-style-type: none;
    }
}

@media screen and (max-width: 1200px) {
    .tablet-hide {
        display: none !important;
    }

    .header--top .section__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header--bot {
        padding: 0;
    }

    .menu_mobile {
        width: 30%;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 93px;
        left: -30%;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

    .menu_mobile.active_menu {
        left: 0;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

    .menu_mobile ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-right: 1px solid #d7d7d7;
        list-style-type: none;
    }

    .menu_mobile ul li {
        padding: 25px;
        line-height: 1;
        border-bottom: 1px solid #d7d7d7;
        position: relative;
    }

    .menu_mobile ul li.active {
        background-color: #f7f7f7;
    }

    .menu_mobile ul li.active a, .menu_mobile ul li a:hover, .menu_mobile ul li.active li a:hover {
        color: #ea5c1c;
    }

    .menu_mobile ul li.active li a {
        color: #000;
    }

    .menu_mobile ul li a {
        color: #000;
        font-size: 16px;
        font-weight: bold;
    }

    .menu_mobile ul li li a {
        font-size: 14px;
    }

    .menu_mobile ul li li {
        padding: 10px;
        border: none;
    }

    .menu_mobile ul ul.sub_menu {
        background-color: #f7f7f7;
        padding-top: 10px;
        display: none;
        height: 0;
        overflow: hidden;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
        border: none;
        list-style-type: none;
    }

    .menu_mobile ul li.active ul.sub_menu {
        display: flex;
        height: auto;
        overflow: visible;
        -webkit-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        transition: all 0.2s linear;
        list-style-type: none;
    }

    .menu_toggle {
        position: absolute;
        top: 22px;
        right: 10px;
        font-size: 20px;
        font-weight: bold;
        line-height: 1;
        height: 20px;
        color: #a4a4a4;
        cursor: pointer;
    }

    .header nav {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        align-items: center;
        background: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        padding: 80px 0 20px;
        margin: 0;
        -webkit-transition: opacity 0.4s ease, z-index 0s 0.4s, visibility 0s 0.4s, -webkit-transform 0.4s ease;
        transition: opacity 0.4s ease, z-index 0s 0.4s, visibility 0s 0.4s, -webkit-transform 0.4s ease;
        -o-transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s 0.4s, visibility 0s 0.4s;
        transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s 0.4s, visibility 0s 0.4s;
        transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s 0.4s, visibility 0s 0.4s, -webkit-transform 0.4s ease;
        will-change: transform, opacity;
        z-index: -1;
    }

    .header nav.nm-show {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        -webkit-transition: opacity 0.4s ease, z-index 0s 0s, visibility 0s 0s, -webkit-transform 0.4s ease;
        transition: opacity 0.4s ease, z-index 0s 0s, visibility 0s 0s, -webkit-transform 0.4s ease;
        -o-transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s 0s, visibility 0s 0s;
        transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s 0s, visibility 0s 0s;
        transition: opacity 0.4s ease, transform 0.4s ease, z-index 0s 0s, visibility 0s 0s, -webkit-transform 0.4s ease;
        z-index: 2;
    }

    .header nav div {
        overflow: auto;
        max-height: 100%;
    }

    .header nav div ul {
        position: relative;
        -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;
        width: auto !important;
        padding: 0 10px;
        list-style-type: none;
    }

    .header nav div ul li {
        text-align: center !important;
        border: none !important;
        padding: 0;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .header nav div ul li a {
        font-size: 20px;
        white-space: normal;
    }

    .header nav div > ul > li ul {
        position: static;
        display: none;
        top: auto;
        right: auto;
        left: auto;
        padding: 0;
        margin-top: 5px;
        background: none !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        will-change: height;
        -webkit-transition: none !important;
        -o-transition: none !important;
        transition: none !important;
        z-index: auto;
        list-style-type: none;
    }

    .header nav div > ul > li ul li {
        background: none;
        text-align: center;
        padding: 0;
    }

    .header nav div > ul > li ul li a {
        margin: 0;
    }

    .header .nm-menu-expand {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        z-index: 3;
        color: #000;
        background: #fff;
        height: 56px;
        padding-right: 13px;
    }

    .header .nm-menu-expand .title {
        font-size: 16px;
        font-weight: bold;
    }

    .section--home .block--with-video {
        display: block;
        height: auto;
    }

    .section--home .block--with-video .subblock-vertical {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .section--home .block--with-video .subblock-vertical .item {
        width: 50%;
    }

    .section--home .block--different {
        display: block;
    }

    .section--home .block--different .subblock-horizontal {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid #d3d3d3;
    }

    .section--home .block--different .subblock-vertical {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        border-left: 1px solid #d3d3d3;
        border-right: none;
    }

    .section--home .block--different .subblock-vertical .item {
        width: 50%;
        border-right: 1px solid #d3d3d3;
        border-bottom: none;
    }

    .section--home .block--colored .item__title {
        display: block;
    }

    .section--home .subblock-horizontal {
        display: block;
        width: 100%;
    }

    .section--home .subblock-horizontal .item {
        width: 50%;
    }

    .section--home .subblock-vertical {
        width: 100%;
    }

    .section--home .subblock-vertical .item {
        height: auto;
    }

    .section--home .video-container {
        height: 538px;
    }

    .section--buttons .item, .item__btns__wrapper {
        width: 31.733%;
    }

    .section--buttons .item:not(:nth-child(4n+4)),
    .item__btns__wrapper:not(:nth-child(4n+4)) {
        margin-right: 0;
    }

    .section--buttons .item:not(:nth-child(3n+3)),
    .item__btns__wrapper:not(:nth-child(3n+3)) {
        margin-right: 2.4%;
    }

    .section--training .slider-dots li:last-child {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .menu_mobile {
        width: 50%;
        left: -50%;
    }

    .header .nm-menu-expand.nm-active {
        left: calc(50% - 50px);
    }

}

@media screen and (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }

    .h1 {
        font-size: 32px;
    }

    .h2 {
        font-size: 24px;
    }

    .btn {
        min-width: 130px;
    }

    .select {
        width: calc(100% - 160px);
        padding: 0 15px;
    }

    .input {
        padding: 0 15px;
    }

    .textarea {
        padding: 15px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer__main {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .section__wrapper {
        padding: 0 15px;
    }

    .section__wrapper--page {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .section--head {
        padding: 35px 0 30px;
    }

    .section--home .video-container {
        height: 61vw;
    }

    .section--home .subblock-vertical,
    .section--home .subblock-horizontal,
    .section--home .block--colored {
        display: block !important;
        border-left: none !important;
        border-right: none !important;
    }

    .section--home .item {
        width: 100% !important;
        border-left: 1px solid #d3d3d3 !important;
        border-right: 1px solid #d3d3d3 !important;
        padding: 30px 20px 40px;
    }

    .section--home .item__title {
        font-size: 24px;
    }

    .section--home .block--different .item:not(:last-child) {
        border-bottom: 1px solid #d3d3d3;
    }

    .section--training .section__title-row {
        display: block;
        margin-bottom: 0;
    }

    .section--training .section__navigation {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 10px 0 0;
    }

    .section--training .section__more {
        padding-right: 27px;
    }

    .section--training .slider-dots {
        border-left: none;
        width: 100%;
        padding: 0;
    }

    .section--buttons .item, .item__btns__wrapper {
        width: 48%;
    }

    .section--buttons .item:not(:nth-child(3n+3)),
    .item__btns__wrapper:not(:nth-child(3n+3)) {
        margin-right: 0;
    }

    .section--buttons .item:not(:nth-child(2n+2)),
    .item__btns__wrapper:not(:nth-child(2n+2)) {
        margin-right: 4%;
    }

    .section--quote {
        font-size: 24px;
        line-height: 1.2;
        padding: 40px 0;
    }

    .slider--training .slick-track {
        padding: 15px 0 10px;
    }

    .modal-video {
        padding: 30px 5px;
    }

    .footer__menu--main ul {
        flex-direction: column;
        padding: 20px 0;
        list-style-type: none;
    }

    .footer__menu--main ul li {
        padding: 0;
        border: none;
    }

    .footer__menu--main ul li a {
        font-size: 19px;
    }

    .footer__title.mobile-only {
        text-align: center;
        padding: 20px 0;
        margin: 0 auto;
    }

    .footer__copyrights {
        padding-top: 20px;
        text-align: center;
    }

    .footer__menu.footer__menu--additional ul {
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        list-style-type: none;
    }

    .menu_mobile {
        width: 70%;
        left: -70%;
    }

    .header .nm-menu-expand.nm-active {
        left: calc(70% - 50px);
    }

    .section--training .slider-dots .slick-dots {
        justify-content: center;
        display: flex;
        flex-direction: row;
    }

    .section--training .slider-dots .slick-dots li:first-child {
        margin: 0;
    }

    .section--training .slider-dots li:last-child, .section--training .slider-dots li:nth-last-child(2) {
        display: none;
    }

    .section--training .h2 {
        text-align: center;
    }
}

@media screen and (max-width: 560px) {
    .section--training .section__navigation {
        display: block;
        margin: 10px 0 0;
    }

    .section--training .section__more {
        padding-right: 27px;
    }

    .section--training .slider-dots {
        white-space: normal;
        padding: 0;
    }

    .section--training .slider-dots .slick-dots {
        text-align: right;
        padding-bottom: 0;
    }

    .section--training .slider-dots li {
        margin-bottom: 10px;
    }

    .section--buttons {
        display: block;
    }

    .section--buttons .item, .item__btns__wrapper {
        width: 100%;
    }

    .item__btns__wrapper .item {
        padding-bottom: 30px;
    }

    .section--buttons .item:not(:nth-child(2n+2)),
    .item__btns__wrapper:not(:nth-child(2n+2)) {
        margin-right: 0;
    }

    .item__btns__wrapper .btns__wrapper {
        flex-direction: column;
    }

    .item__btns__wrapper .btns__wrapper a {
        width: 100%;
    }

    .section--buttons .item__description {
        min-height: 130px;
        padding: 20px 15px;
    }

    .search__form {
        display: block;
    }

    .search__form .btn {
        width: 100%;
    }

    .select {
        width: 100%;
    }

    .search__form .btn-wrap {
        margin: 20px 0 0 0;
    }
}

@media screen and (max-width: 356px) {
    .h1 {
        font-size: 28px;
    }

    .h2 {
        font-size: 22px;
    }

    .header nav div ul li a {
        font-size: 17px;
    }

    .section__wrapper {
        padding: 0 10px;
    }

    .section__wrapper--page {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .section--home .item__title {
        font-size: 20px;
    }

    .section--quote {
        font-size: 22px;
    }

    .cookie__top {
        padding: 0;
    }

    .cookie__title {
        margin-top: 10px;
    }

    .cookie__text {
        padding: 0;
    }

    .search__youtube__text {
        font-size: 17px;
    }
}

@media screen and (max-width: 600px){
    .login-form-wrapper button {
       width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */
