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

:root {
    --main-bg-color: #fff;
    --footer-bg-color: #001125;
    --main-fs-color: #002F67;
    --header-fs-color: #141A26;
    --footer-fs-color: #737E90;
    --button-active-color: #EF4A5E;
    --button-disabled-color: #E8E8E8;
    --small-button-active: #195AD2;
}

body {
    min-width: 320px;
    min-height: 100vh;
    background-color: var(--main-bg-color);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 24px;
    font-size: 20px;
    color: var(--main-fs-color);
}

body * {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, p, button {
    margin: 0;
    padding: 0;
}

button,
button:hover,
button:active,
button:focus {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-input-placeholder {
    color: #A3A3A3;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}
::-moz-placeholder {
    color: #A3A3A3;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}
:-ms-input-placeholder {
    color: #A3A3A3;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}
:-moz-placeholder {
    color: #A3A3A3;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}

.colortext,.mon-form__input {
    color: var(--main-fs-color);
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}
.container-r {
    max-width: 1314px;
    margin: 0 auto;
    width: 100%;
}

/* H E A D E R */

.header__top {
    padding-top: 4px;
    padding-bottom: 5px;
    background-color: var(--main-fs-color);
}

.header__top-text {
    display: flex;
    justify-content: flex-end;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: var(--main-bg-color);
}

.header__tel-wrap {
    margin-right: 27px;
    background-image: url("/img/Vector-tel.svg");
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: left center;
}

.header__top-tel {
    margin-left: 16px;
}

.header__mail-wrap {
    background-image: url("/img/Vector-mail.svg");
    background-repeat: no-repeat;
    background-size: 15px 10px;
    background-position: left center;
}

.header__top-mail {
    margin-left: 23px;
}

.header__bottom {
    border-bottom: 3px solid #139DE6;
}

.header-container-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.header__logo {
    width: 100%;
    max-width: 147px;
    height: 100%;
    max-height: 46px;
}

.header-btn {
    position: relative;
}

.menu-btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 30px;
    height: 30px;
    position: relative;
    z-index:2;
    overflow: hidden;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-fs-color);
    transition: all 0.5s;
}

.menu-btn span:nth-of-type(2) {
    top: calc(50% - 5px);
}
.menu-btn span:nth-of-type(3) {
    top: calc(50% + 5px);
}

.menu-btn.active span:nth-of-type(1) {
    display: none;
}
.menu-btn.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}
.menu-btn.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
}

.menu {
    position: absolute;
    height: 4%;
    padding: 40px;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.5s;
    z-index: 2;
    max-width: 350px;
    height: 100%;
    top: 89px;
    left: -22px;
    background-color: var(--main-fs-color);
    color: var(--main-bg-color);
}

.menu-btn, .menu {
    display: none;
}

.nav-list__itemB:not(:last-child) {
    margin-bottom: 15px;
}
.nav-list__itemB:last-child {
    display: flex;
}

.menu.active {
    left: 0;
    transform: translateX(0);
}

.menu li {
    list-style-type: none;
}

.header__nav {
    display: flex;
    height: 100%;
}

.nav-list {
    display: flex;
    margin-right: 128.5px;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 25px;
    color: var(--main-fs-color);
}

.is-active-item {
    font-weight: bold;
    background-image: url("/img/Polygon-25.svg");
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-position: left center;
}

.is-active-link {
    margin-left: 12px;
    font-weight: bold;
}

.nav-item:not(:last-child) {
    margin-right: 39px;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-item:hover, .nav-list__itemB:hover {
    background-image: url("/img/Polygon-47.svg");
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-position: center left;
}

.nav-link {
    margin-left: 12px;
    padding: 0;
    color: var(--main-fs-color) !important;
}

.header__nav-link {
    margin-left: 12px;
    padding: 0;
}

.header-btn-wrap {
    display: flex;
    width: 215px;
    justify-content: space-between;
}

.header-btn {
    box-sizing: border-box;
    width: 100%;
    max-width: 94px;
    min-height: 64px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: var(--main-bg-color);
    background-image: url("../img/bnt-blue.png");
    background-position-y: 19px;
    background-repeat: no-repeat;
    background-size: 100% 27px;
    background-color: transparent;
}

.header-btn:active {
    background-image: url("../img/bnt-blue-click.png");
}

.header-btn:hover {
    background-size: contain;
    background-position-y: 19px;
    background-image: url("../img/bnt-blue-hover.png");
    background-size: 100% 46px;
}

.header-btn-link {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: #00ADF0;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    background: none;
}

/* M O D A L */

.swal2-popup {

}

.swal2-popup .swal2-close {
    display: block !important;
}

.swal2-popup .swal2-icon.swal2-success.swal2-icon-show {
    background-image: url(/img/modal-window.png);
    background-repeat: no-repeat;
    background-position: center;
}

.swal2-popup .swal2-icon.swal2-success.swal2-icon-show > * {
    display: none;
}

.swal2-popup .swal2-icon.swal2-error.swal2-icon-show {
    background-image: url(/img/modal-window-error.png);
    background-repeat: no-repeat;
    background-position: center;
}

.swal2-popup .swal2-icon.swal2-error.swal2-icon-show > * {
    display: none;
}

.swal2-popup .swal2-title {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 123%;
    text-align: center;
    color: #002F67;
}

.swal2-popup .swal2-actions button {
    box-sizing: border-box;
    width: 100%;
    max-width: 235px;
    height: 84px;
    border: none;
    outline: 0 !important;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: var(--main-bg-color);
    background-image: url(../img/btn-pink.png);
    background-position-y: 19px;
    background-position-x: -1px;
    background-repeat: no-repeat;
    background-size: 100% 69px;
    background-color: transparent;
    padding: 0 50px;
    box-shadow: none !important;
}

.swal2-popup .swal2-actions button:hover {
    background-image: url(../img/btn-pink-hover.png) !important;
    color: var(--main-bg-color);
    outline: none;
    box-shadow: none;
}


.modal-dialog {
    max-width: 523px;
    box-shadow: 10px 10px 50px rgba(0, 47, 103, 0.07);
}

.modal-form {
    width: 100%;
}

.modal-header {
    display: flex;
    flex-direction: column;
    padding: 29px 36px;
    border: none;
}

.modal-header-wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 26px;
}

.btn-close-wrap {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    height: 26px;
}

.modal-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 26px;
}

.btn-close {
    width: 32px;
    height: 32px;
}

.btn-close:hover,
.btn-close:active {
    outline: none;
    box-shadow: none;
}

.modal-body {
    margin-top: 12px;
    padding-top: 0;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
}

.input-container {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #A3A3A3;
}

.input-container-password {
    margin-bottom: 16px;
}

.input-container input {
    padding-top: 17px;
    padding-bottom: 18px;
    padding-left: 21px;
    width: 100%;
    height: 57px;
    border: 1px solid #B9BEC7;
}

.input-container input:focus {
    border: 1px solid #002F67;
}

.button-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.button-container-enter {
    position: relative;
    display: flex;
    justify-content: center;
}

.button-container-big {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.remember_me {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 16px;
    color: #A3A3A3;
}

.checkbox-container-forgot {
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    text-decoration-line: underline;
    color: #A3A3A3;
    cursor: pointer;
}

.checkbox-container:active {
    color: var(--main-fs-color);
}

.checkbox-container-questions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    width: 100%;
}

.reset-password-desk,.reset-password-desk-bottom {
    width: 100%;
    max-width: 416px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.modal-dialog-ResetPassword {
    max-width: 523px;
    height: 400px;
    box-shadow: 10px 10px 50px rgba(0, 47, 103, 0.07);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}

#modal-header-wrap {
    display: flex;
    flex-direction: column;
    align-items:  center;
}

#exampleModalResetPasswordLabel {
    margin-top: 120px;
    margin-bottom: 18px;
}

#ResetPassword-body {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#ResetPassword-form {
    width: 100%;
}

.reset-password-desk-bottom {
    margin-top: 16px;
    margin-bottom: 25px;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.checkbox-container.active {
    color: var(--main-fs-color);
}

.checkbox-container input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.window__btn-enter {
    max-width: 147px;
}

.window__btn-reg {
    max-width: 201px;
}

.window__btn {
    box-sizing: border-box;
    width: 100%;
    max-width: 235px;
    height: 76px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #A3A3A3;
    background-image: url("../img/btn-pink-noactive.png");
    background-position-y: 19px;
    background-position-x: -1px;
    background-repeat: no-repeat;
    background-size: 100% 45px;
    background-color: transparent;
}

.window__btn:hover {
    background-size: contain;
    background-position-y: 19px;
    background-image: url("../img/btn-pink-hover.png");
    color: var(--main-bg-color);
    background-size: 102% 63px;
}

.input-container-option {
    color: var(--main-fs-color);
    background-color: none;
}

.text-red {
    font-size: 14px;
    line-height: 19px;
    color: #EF4A5E;
}

.checkbox-container-reg {
    display: flex;
    flex-direction: column;
    color: #A3A3A3;
    margin-bottom: 22px;
}

.checkbox-container-reg .check {
    display: flex;
    align-items: center;
    position: relative;
    height: 60px;
    width: 140px;
    text-decoration: none;
}

.checkbox-remember-me input {
    margin-left: 0;
    margin-right: 8px;
}

.check-remember {
    display: flex;
    align-items: center;
    position: relative;
    height: 36px;
    width: 140px;
    margin-bottom: 10px;
    text-decoration: none;
}

.checkbox-data {
    display: flex;
    font-size: 18px;
}

#modal-dialog-reg {
    height: 100%;
}

#ResetPassword-body {
    margin-top: 105px;
}

.input-container-select {
    padding-top: 17px;
    padding-left: 19px;
    padding-bottom: 18px;
    width: 100%;
    background-color: none;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #A3A3A3;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-size: 0.5em auto;
    background-position: right 1.25em center;
    padding-right: 1em;
    background-image: url("../img/select_arrow.svg");
    border: 1px solid #B9BEC7;
}

.input-container-select:focus {
    border: 1px solid #002F67;
}

.input-container-select.active {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-size: 0.5em auto;
    background-position: right 1.25em center;
    padding-right: 1em;
    background-image: url("../img/select_arrow_up.svg");
}

.agreement-doc {
    margin-bottom: 15px;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;;
    color: #00ADF0;
    text-decoration: underline;
}

#ModalNotification.modal .modal-body h3 {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 123%;
    text-align: center;
    color: #002F67;
    margin: 20px 0;
}

#ModalNotification.modal .modal-header {
    padding: 20px 20px 0px 0px;
}


/* H E R O */

.hero {
    height: 100%;
    background-image: url("/img/hero_back.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-hero__container {
    padding-top: 0pxpx;
    padding-bottom: 118px;
}

.section-hero__content {
    width: 100%;
    max-width: 558px;
    height: 100%;
}

.section-hero__logo2 {
    max-width: 300px;
}

.section-hero__logo2 img {object-position: -20px 0px;}

.hero__description-top {
    margin-bottom: 25px;
}

.section-hero__description {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
}

.description-strong {
    font-size: 24px;
    line-height: 32px;
}

.offset-md-4 {
    width: 431px;
}

.btn-primary {
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-control {
    margin-bottom: 13px;
}

/* A I M S */
.aims {
    padding-top: 132px;
    padding-bottom: 66px;
    background: linear-gradient(180deg, #E4E9EF -20.59%, rgba(228, 233, 239, 0) 100%);
    background-position: top;
}

.section_heading2 {
    text-align: center;
    font-weight: bold;
    font-size: 36px;
    line-height: 49px;
    color: #141A26;
}

.section_heading2 a:hover {
    color: #141A26;
}

.aims__container-heading2 {
    margin-bottom: 90px;
}

.section-aims__block-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(/img/airms-back-figure.png);
    background-repeat: no-repeat;
    background-position: center 0px;
}

.section-aims__block {
    width: 100%;
    max-width: 322px;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
    color: var(--main-fs-color);
}

.section-aims__block.block-center {
    max-width: 525px;
}

.section-aims__block-strong {
    font-weight: 700;
}

.block-left {
    margin-bottom: 55px;
}


/* P R O B L E M S */

.problems {
    padding-top: 66px;
    padding-bottom: 66px;
}

.section-problems__heading2 {
    margin-bottom: 40px;
}

.section-problems__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-left: 50px;
}

.section-problems__item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 1005px;
    max-height: 157px;
    box-shadow: 2px 8px 12px rgba(0, 47, 103, 0.08);
    transition-property: box-shadow;
    transition-timing-function: ease-in-out;
    transition-duration: 300ms;
}

.section-problems__item:hover {
    box-shadow: 30px 8px 60px rgba(0, 47, 103, 0.1);
}

.section-problems__item:not(:nth-last-child(-n+2)) {
    margin-bottom: 50px;
}

.section-problems__item:not(:nth-child(2n)) {
    margin-right: 100px;
}

.section-problems__item img {
    position: absolute;
    left: -55px;
    top: 25px;
}

.section-problems__item-first img {
    left: -60px;
    top: 20px;
}

.section-problems__desk, .section-problems__desk-1550 {
    margin-left: 30px;
    width: 100%;
    max-width: 400px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

.section-problems__desk-1550, .section-problems__desk-360 {
    display: none;
}

/* M O N I T O R I H G */

.monitoring {
    padding-top: 66px;
    padding-bottom: 50px;
}

.section-mon___heading2 {
    margin-bottom: 100px;
}

.section-mon__content-top {
    display: flex;
    margin-bottom: 41px;
    width: 100%;
    max-height: 607px;
}

.section-mon__content-light {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}

.section-mon__content-bold {
    margin-bottom: 44px;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
}

.section-mon__heading3 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
}

.section-mon__content-right {
    width: 50%;
}

.section-mon__list {
    margin-bottom: 42px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

.section-mon__item {
    display: flex;
    align-items: center;
    height: 93px;
    width: 100%;
    max-width: 579px;
    background-repeat: no-repeat;
    background-size: 70px 70px;
    background-position: left center;
}

.mon__item-first {
    background-image: url("../img/monitoring-list1.png");
}

.mon__item-second {
    background-image: url("../img/monitoring-list2.png");
}

.section-mon__item-wrap {
    margin-left: 92px;
}

.section-mon__download-item {
    display: flex;
    align-items: center;
    height: 65px;
    width: 100%;
    max-width: 366px;
    background-repeat: no-repeat;
    background-size: 64px 64px;
    background-position: left center;
    background-image: url("../img/pdf-monitoring.png");
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
}

.mon__download-wrap {
    margin-left: 74px;
}

.section-mon__content-img {
    margin-top: -133px;
    width: 50%;
    max-width: 670px;
    max-height: 607px;
    background-image: url("../img/monitoring-back.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
}

.mon__btn-desk {
    width: 100%;
    max-width: 485px;
    margin-bottom: 26px;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: var(--footer-fs-color);
    text-align: center;
}

.section-mon__content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mon__btn {
    padding: 10px 35px;
    max-width: 235px;
}

.btn:hover {
    color: var(--main-bg-color);
}

.section-mon__content-bottom a.btn.mon__btn {
    display: flex;
    align-items: center;
}

/* N E W S */
.news {
    padding-top: 45px;
    padding-bottom: 66px;
    background: -webkit-linear-gradient(#E4E9EF -28.94, rgba(228, 233, 239, 0) 100%);
    background: -o-linear-gradient(#E4E9EF -28.94, rgba(228, 233, 239, 0) 100%);
    background: linear-gradient(#E4E9EF -28.94, rgba(228, 233, 239, 0) 100%);
}

.container-r.section-news__container {
    max-width: 1060px;
    margin: 0 auto;
}

.swiper {
    margin-top: 36px;
    width: 1100px;
    height: 508px;
}

.swiper-slide {
    margin: 0 auto;
    width: 100%;
    max-width: 340px;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.slide-img {
    position: relative;
    max-width: 340px;
    width: 100%;
    height: 343px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.img-slide1 {
    background-image: url("../img/slide1.jpg");
}

.img-slide2 {
    background-image: url("../img/slide2.jpg");
}

.img-slide3 {
    background-image: url("../img/slide3.jpg");
}

.img-slide4 {
    background-image: url("../img/slide4.jpg");
}

.slide-btn {
    width: 41px;
    height: 41px;
    position: absolute;
    bottom: 152px;
    background: none;
    border: none;
    background-image: url("../img/rhomb.png");
    background-repeat: no-repeat;
    background-size: 41px 41px;
    left: 30px;
}

.swiper-slide_bottom {
    position: static;
    max-width: 340px;
    width: 100%;
    height: 165px;
    background-color: #002F67;
    z-index: -1;
    overflow: hidden;
}

.slide-content__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    transition: top .5s;
    position: absolute;
    top: 385px;
    z-index: 1;
}
.slide-content__wrap:hover {
    top: 0;
    bottom: 0px;
    padding-top: 66px;
    background: linear-gradient(180deg, rgba(0, 47, 103, 0.5) 0%, #002F67 65.42%);
    box-shadow: 0px 4px 35px rgba(0, 47, 103, 0.1);
}

.news-slider {
    z-index: 2;
}

.news-slider .carousel-inner {
    padding-top: 70px;
}

.news-slider .carousel-indicators {
    top: 17px;
    height: 25px;
}

.carousel-indicators [data-bs-target] {
    height: 12px;
    background-color: transparent;
    background-image: url("../img/bull.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
}

.carousel-indicators .active {
    background-image: url("/img/bull_active.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
}

.carousel-control-prev-icon {
    background-image: url("/img/pag-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px 16px;
    transform: rotate(180deg);
}

.carousel-control-next-icon {
    background-image: url("/img/pag-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 9px 16px;
}

.news-slider .carousel-control-prev {
    height: 40px;
    width: 40px;
    top: 15px;
    left: 170px;
    z-index: 2;
    opacity: 1;
}

.news-slider .carousel-control-next {
    height: 40px;
    width: 40px;
    top: 15px;
    right: 170px;
    z-index: 2;
    opacity: 1;
}

.slide-content__heading {
    margin-bottom: 23px;
    width: 100%;
    max-width: 280px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--main-bg-color);
}

.slide-content__heading:hover {
    color: var(--main-bg-color);
}

.slide-content__description {
    margin-bottom: 17px;
    width: 100%;
    max-width: 280px;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: var(--main-bg-color);
}

.back-calendar {
    background-image: url("../img/cil_calendar.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px;
}

.slide-after-date {
    margin-left: 22px;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #737E90;
}

.slide__more {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #EF4A5E;
}

.slide__more:hover {
    color: #EF4A5E;
    text-decoration: underline;
}

.slide-content__bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 280px;
}


/*F E E D B A C K */

.feedback {
    background-image: url("/img/young-man-working.png");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position-y: 31px;
    background-position-x: 71PX;
    padding-bottom: 50px;
}

.section-feedback__heading2 {
    margin-bottom: 39px;
}

.form__wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.form__check {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #00ADF0;
    align-items: flex-end;
    text-decoration-line: underline;
}

.name-of-form {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.form {
    width: 100%;
    max-width: 460px;
}

.form label {
    position: relative;
    margin-bottom: 5px;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #A3A3A3;
}

.label1 {
    background-image: url("/img/star.svg");
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-position-x: 37px;
}

.label2 {
    background-image: url("/img/star.svg");
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-position-x: 42px;
}

.label3 {
    background-image: url("/img/star.svg");
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-position-x: 84px;
}

.form__input, .form__textarea {
    padding-top: 17px;
    padding-left: 20px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: var(--main-fs-color);
    border: 1px solid #B9BEC7;
}

.form__input:focus, .form__textarea:focus {
    border: 1px solid var(--main-fs-color);
}

.form__input:active, .form__textarea:active {
    border: 1px solid var(--main-fs-color);
}

.form__input {
    padding-bottom: 18px;
    margin-bottom: 14px;
}

.form__input:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}

.form__textarea:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}

.form__textarea {
    margin-bottom: 13px;
    height: 100%;
    min-height: 167px;
}

fieldset {
    padding: 0;
    display: flex;
    flex-direction: column;
    border: none;
}

.form__bottom {
    display: flex;
    flex-direction: column;
}

.mon-form__bottom-checkbox {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.mon-form__bottom-label-wrap {
    display: flex;
    justify-content: space-between;
    width: 140px;
}

.check1 {
    padding-left: 43px;
}

.check2 {
    padding-left: 40px;
}

.check3 {
    padding-left: 30px;
}

.check4, .check5 {
    padding-left: 1.8em;
}

.check__wrap {
    display: flex;
    font-size: 16px;
    line-height: 22px;
}

.check, .check-enter {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #A3A3A3;
}

.check.active, .check-enter.active {
    color: #00ADF0;
}

.check__input {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.check-remember {
    width: 100%;
    padding-left: 1.5em;
}

.check__box {
    position: absolute;
    top: -3px;
    right: 50%;
    width: 17px;
    height: 17px;
    border: 1px solid #00ADF0;
}

.check__box-form {
    position: absolute;
    top: 2px;
    height: 17px;
    width: 17px;
    border: 1px solid #00ADF0;
    left: 4px;
}

.check__box-remember {
    position: absolute;
    width: 17px;
    height: 17px;
    border: 1px solid #00ADF0;
    left: 30px;
    margin-bottom: -3px;
    margin-left: -30px;
}

.check__box-enter {
    position: absolute;
    left: 3rem;
    width: 17px;
    height: 17px;
    border: 1px solid #00ADF0;
}

.check__input:checked+.check__box {
    background-image: url("/img/ok.svg");
    border: none;
}

.check__input:checked+.check__box-remember {
    background-image: url("/img/ok.svg");
    border: none;
}

.check__input:checked+.check__box-enter {
    background-image: url("/img/ok.svg");
    border: none;
}

.check__input:checked+.check__box-form {
    background-image: url("/img/ok.svg");
    border: none;
}

.btn {
    box-sizing: border-box;
    width: 100%;
    max-width: 235px;
    height: 84px;
    border: none;
    outline: 0 !important;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: var(--main-bg-color);
    background-image: url("../img/btn-pink.png");
    background-position-y: 19px;
    background-position-x: -1px;
    background-repeat: no-repeat;
    background-size: 100% 69px;
    background-color: transparent;
}

body .btn:active,
body .btn:checked,
body .btn:focus,
body .btn:hover {
    outline: none !important;
    box-shadow: none !important;
}

.btn.popup-close-btn {
    min-width: 235px;
}

.btn:active {
    background-image: url("../img/btn-pink-active.png");
}

.btn:hover {
    background-image: url("../img/btn-pink-hover.png");
    color: var(--main-bg-color);
    outline: none;
}

/* modal feedback */

.fancybox-hidden {
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.popup{
    max-width: 505px;
    height: 352px;
    background-color: var(--main-bg-color);
}

.popup-box {
    padding-right: 15px;
    padding-top: 15px;
}

.popup-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 120px;
}

.popup-subtitle {
    margin-bottom: 23px;
    width: 80px;
    height: 80px;
    background-image: url("../img/modal-window.png");
    background-repeat: no-repeat;
    background-size: 56px 56px;
    background-position: center;
}

.popup-subtitle2 {
    margin-bottom: 23px;
    width: 80px;
    height: 80px;
    background-image: url("../img/attention.png");
    background-repeat: no-repeat;
    background-size: 56px 56px;
    background-position: center;
}

.popup-title {
    margin-bottom: 38px;
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    text-align: center;
}


/*  F 0 0 T E R */

.footer {
    color: #737E90;
    background-color: #001125;
    padding-top: 46px;
    padding-bottom: 19px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
}

.footer__left {
    width: 100%;
    max-width: 638px;
    height: 100%;
    max-height: 172px;
    background-image: url("/img/footer-light-logo.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer_logo {
    margin-bottom: 19px;
    display: block;
    width: 100%;
    max-width: 169px;
    height: 100%;
    max-height: 53px;
}

.footer__left-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 23px;
}

.footer__mail-wrap {
    background-image: url("/img/footer-mail.png");
    background-repeat: no-repeat;
    background-size: 15px 10px;
    background-position: left center;
}

.footer__tel-wrap {
    margin-bottom: 10px;
    background-image: url("/img/footer-tel.png");
    background-repeat: no-repeat;
    background-size: 15px 10px;
    background-position: left center;
}

.footer__list {
    display: flex;
    flex-wrap: nowrap;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: var(--footer-fs-color);
}

.footer_is-active-item {
    font-weight: bold;
}

.footer__item:not(:last-child) {
    margin-right: 43px;
}

.footer__item:hover, .nav-list__itemB:hover {
    text-shadow: 1px 0px 0px #737E90;
    color: #737E90;
}

.footer__item-link {
    display: block;
    min-width: 87px;
}

.footer__item-link-last {
    min-width: 137px;
}

.footer__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 26px;
}

.footer__right-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer__modal, .small-right {
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
}

.footer__modal {
    text-decoration: underline;
}



/* mon-ped */

.mon-hero {
    width: 100%;
    background-image: url("/img/monitoging-baner.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mon-hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 141px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 147px;
    color: #FFFFFF;
}

.mon-hero__heading {
    margin-bottom: 23px;
    font-weight: 800;
    font-size: 46px;
    line-height: 63px;
    text-align: center;
}

.mon-hero__desk1, .mon-hero__desk2 {
    margin-bottom: 26px;
    width: 100%;
    max-width: 700px;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

.mon-hero__desk1-strong {
    font-weight: bold;
    font-size: 24px;
    line-height: 26px;
}

.mon-hero__desk3 {
    width: 100%;
    max-width: 483px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
}

.section__mon-form {
    padding-top: 132px;
    padding-bottom: 150px;
    box-shadow: 2px 8px 12px rgba(0, 47, 103, 0.08);
}

.mon-form__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mon-form__heading {
    margin-bottom: 29px;
    font-weight: bold;
    font-size: 36px;
    line-height: 49px;
    color: #141A26;
    text-align: center;
    margin-top: 120px;
}

.mon-form__heading3 {
    margin-bottom: 42px;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
}

.mon-form__bottom {
    display: flex;
    justify-content: space-around;
}

.mon-form__btn,
.form__btn{
    box-sizing: border-box;
    width: 100%;
    max-width: 201px;
    border: none;
    height: 84px;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    background-image: url("../img/btn-pink-noactive.png");
    background-position-y: 19px;
    background-position-x: -1px;
    background-repeat: no-repeat;
    background-size: 100% 69px;
    background-color: transparent;
}

.mon-form__btn:active,
.form__btn:active {
    background-image: url("../img/btn-pink-active.png");
    color: var(--main-bg-color);
    background-size: 153px 45px;
}

.mon-form__btn:hover,
.form__btn:hover {
    background-position-y: 19px;
    background-image: url("../img/btn-pink-hover.png");
    color: var(--main-bg-color);
    background-size: 100% 69px;
    background-position-x: -1px;
}

.form-star {
    background-image: url("../img/star.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 8px 8px;
    width: 8px;
    display: inline-block;
    height: 14px;
    position: absolute;
}

.form-star2 {
    width: 7px;
}

.fieldset {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 120px;
    width: 100%;
    max-width: 800px;
}

.fieldset-last {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-bottom: 50px;
}

.mon-form__necessary {
    position: absolute;
    margin-bottom: 4px;
    top: 45px;
    right: 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #EF4A5E;
}

.mon-form__input-wrap, .mon-form__select-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 21px 29px 19px;
    margin-bottom: 19px;
    width: 100%;
    max-width: 800px;
    border: 1px solid #B9BEC7;
}

.mon-form__input-wrap {
    max-height: 174px;
    height: 100%;
}

.mon-form__select-wrap {
    max-height: 189px;
    height: 100%;
}

.form-error[data-v-3f656145], .form-error[data-v-6e5d95ae] {
    color: #F31A1A;
    font-size: 12px;
    line-height: 16px;
}

.label {
    width: 100%;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
}

.mon-form__input {
    margin-top: 7px;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #B9BEC7;
    background: transparent;
}

.select {
    margin-top: 8px;
    padding-top: 12px;
    padding-left: 19px;
    padding-bottom: 14px;
    width: 100%;
    max-width: 800px;
    border: 1px solid #B9BEC7;
    background: transparent;
    font-size: 14px;
    line-height: 19px;
    color: #A3A3A3;
}

.select-690 {
    max-width: 690px;
}

.select-290 {
    max-width: 290px;
}

.select-380 {
    max-width: 380px;
}

.select-460 {
    max-width: 460px;
}

.select {
    padding-top: 12px;
    padding-left: 19px;
    padding-bottom: 14px;
    width: 100%;
    background-color: none;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #A3A3A3;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-size: 0.5em auto;
    background-position: right 1.25em center;
    padding-right: 1em;
    background-image: url("../img/select_arrow.svg");
    border: 1px solid #B9BEC7;
}

.select:focus {
    border: 1px solid #002F67;
}

.select.active {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-size: 0.5em auto;
    background-position: right 1.25em center;
    padding-right: 1em;
    background-image: url("../img/select_arrow_up.svg");
}

.select option{
    color: var(--main-fs-color);
}

.input__wrapper {
    display: flex;
    flex-direction: column;
    padding: 22px 21px 30px 19px;
    margin-bottom: 19px;
    width: 100%;
    max-width: 800px;
    border: 1px solid #B9BEC7;
    height: 134px;
}

.input__file {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.input__file-icon-wrapper {
    height: 60px;
    width: 60px;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px solid #fff;
}

.input__file-button-text {
    line-height: 1;
    text-decoration: underline;
    margin-left: 4px;
}

.input__file-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #A3A3A3;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-radius: 3px;
    cursor: pointer;
    margin: 0 auto;
}

.form__bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}

.add-programs {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 26px;
    margin-bottom: 44px;

}

.link-type-content {
    width: 147%;
}

.add-programs__btn {
    margin-right: 34px;
    background-color: transparent;
    border: none;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--main-fs-color);
    background-image: url("../img/btn-add.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 25px 25px;
    padding-right: 36px;
}


/* N _ e w s */

.N_ews {
    padding-top: 135px;
    margin-bottom: 143px;
    background: linear-gradient(180deg, #E4E9EF -20.59%, rgba(228, 233, 239, 0) 100%);
}

.N_ews__wrapper {
    padding-bottom: 143px;
}

.N_ews-heading {
    margin-bottom: 39px;
    font-weight: bold;
    font-size: 36px;
    line-height: 49px;
    color: #141A26;
    text-align: center;
}

.N_ews-heading3_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
}

.N_ews-heading3 {
    max-width: 712px;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}

.N_ews__backgraund {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.N_ews__backgraund1 {
    background-image: url("../img/news1-big.jpg");
}

.N_ews__backgraund2 {
    background-image: url("../img/slide4.jpg");
}

.N_ews__backgraund3 {
    background-image: url("../img/news3-big.jpg");
}

.N_ews__backgraund4 {
    background-image: url("../img/news4-big.jpg");
}

.back-calendar {
    margin-left: 22px;
    background-image: url("../img/cil_calendar.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 16px 16px;
}

.slide-after-date {
    margin-left: 22px;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    color: #737E90;
}

.N-ews__desk-text {
    margin-bottom: 23px;
}

.source {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #EF4A5E;
    text-align: right;
}

.source:hover {
    color: #EF4A5E;
}

.news-slider.news-slider-mobile {
    display: none;
}

.monitoring-result-page {
    background-color: #E5E5E5;
    padding-top: 135px;
    padding-bottom: 135px;
}

.monitoring-result-page .N_ews-heading {
    margin-bottom: 39px;
}

.monitoring-result__banner {
    position: relative;
    margin-bottom: 31px;
}

.monitoring-result__banner-img {

}

.monitoring-result__banner-img img {
    width: 100%;
}

.monitoring-result__banner-text {
    position: absolute;
    bottom: 40px;
}

.monitoring-result__banner-date {
    background-image: url(/img/monitoring-result__banner-date.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 21px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: flex-end;
    text-align: center;
    color: #737E90;
    margin: 0 auto 24px;;
    width: fit-content;
}

.monitoring-result__banner-title {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    justify-content: center;
    width: 100%
}

.monitoring-result__text {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #002F67;
    margin-bottom: 24px;
}

.monitoring-result__files-container {
    display: flex;
    justify-content: flex-start;
    align-content: center;
}

.monitoring-result__files-container .section-mon__download-item {
    min-height: 65px;
    height: auto;
    padding-left: 73px;
    max-width: 300px;
    margin-right: 70px;
}

@media (max-width: 1720px) {

    .nav-list {
        margin-right: 52px;
    }

    .nav-item:not(:last-child) {
        margin-right: 24px;
    }

    .header__logo {
        max-width: 110px;
    }

    .aims__container-heading2 {
        margin-bottom: 90px;
    }

    .block-left {
        margin-bottom: 0;
    }

    .section-aims__block {
        width: 100%;
        text-align: center;
    }

    .section-problems__item:not(:last-child) {
        margin-bottom: 50px;
    }

    .section-problems__item:not(:nth-child(2n)) {
        margin-right: 0;
    }

    .section-feedback__container {
        background-size: 709px 534px;
        background-position-y: 28px;
        background-position-x: 79PX;
    }

    .section-feedback__container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .name-of-form {
        text-align: center;
    }

}

@media (max-width: 1340px) {
    .form__bottom {
        margin-bottom: 0px;
    }

    .container-r {
        padding: 0px 20px;
        box-sizing: border-box;
    }

}

@media (max-width: 1040px) {

    .menu-btn, .menu {
        display: block;
    }

    .nav-list {
        display: none;
    }

    .section-problems__item {
        width: 100%;
        max-width: 400px;
    }

    .section-problems__desk {
        max-width: 315px;
    }

    .section-problems__desk, .section-problems__desk-1550, .section-problems__desk-360 {
        max-width: 296px;
    }

    .section-mon__content-img {
        background-size: contain;
    }

    .footer__left {
        max-width: 446px;
    }
}

@media (max-width: 1024px) {

    .feedback {
        background-image: none;
    }

    .form__wrap {
        justify-content: center;
    }

    .section-aims__block-wrap {
        background-image: none;
    }

    .section-hero__content {
        margin-left: 66px;
    }

    .nav-list__itemB {
        font-size: 19px;
    }

    .form__wrap {
        background-size: contain;
    }

    .footer__list {
        flex-direction: column;
    }

    .footer__item:not(:last-child) {
        margin-right: 48px;
        margin-bottom: 12px;
    }

    .footer__right {
        flex-direction: row;
    }

    .footer__right-bottom {
        flex-direction: column;
        justify-content: flex-start;
        margin-left: 15px;
    }

    .footer__modal {
        margin-bottom: 12px;
    }
}

@media (max-width: 850px) {

    .news-slider.news-slider-mobile {
        display: block;
    }

    .news-slider:not(.news-slider-mobile) {
        display: none;
    }
}

@media (max-width: 768px) {

    .section-aims__block-wrap {
        flex-direction: column;
    }

    .menu {
        top: 90px;
    }

    .header__logo {
        max-width: 92px;
    }

    .header-btn {
        padding: 22px 25px;
        margin-right: 26.5px;
    }

    .section-hero__content {
        margin-left: 0;
    }

    .section-mon__content-right {
        width: 100%;
    }

    .section-mon__content-top {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        max-height: 711px;
    }

    .section-mon__content-img {
        margin-top: 0;
        max-width: 100%;
        background-size: contain;
        height: 282px;
    }
}

@media (max-width: 660px) {

    .header__logo {
        max-width: 33%;
    }

    .menu {
        position: fixed;
        top: 89px;
    }

    .nav-list__itemB {
        font-size: 17.5px;
    }

    .nav-list__itemB:not(:last-child) {
        margin-right: 23px;
    }

    .header-btn-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .header-btn {
        margin-right: 0;
        margin-bottom: 11px;
    }

    .header__nav {
        max-width: 33%;
    }

    .section-hero__container {
        padding-top: 0px;
        padding-bottom: 95px;
    }

    .section-hero__description {
        font-size: 20px;
    }

    .description-strong {
        font-size: 23px;
    }

    .hero__description-top {
        margin-bottom: 39px;
    }

    .section-aims__block-wrap {
        background-size: contain;
    }

    .aims__container-heading2 {
        margin-bottom: 50px;
    }

    .section-problems__item img {
        width: 95px;
        height: 95px;
    }

    .section-problems__item:first-child img {
        width: 119px;
        height: 123px;
    }

    .section-problems__item img {
        left: -48px;
    }

    .section-problems__item {
        max-width: 360px;
    }

    .section-problems__item img {
        width: 83px;
        height: 83px;
        left: -42px;
    }

    .section-problems__item:first-child img {
        width: 104px;
        height: 104px;
    }

    .footer__container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__left {
        width: 100%;
        max-width: 660px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .footer__left-text {
        margin-bottom: 0;
    }

    .footer__right {
        flex-direction: column;
    }

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

    .footer__nav {
        margin-bottom: 30px;
    }

    .footer__list {
        align-items: center;
    }

    .footer__item:not(:last-child) {
        margin-bottom: 18px;
        margin-right: 0;
    }

    .footer__item {
        margin-right: 0;
    }

    .mon-hero__heading {
        font-size: 42px;
    }

    .mon-hero__desk1-strong {
        font-size: 21px;
    }

    .mon-hero__desk1, .mon-hero__desk2 {
        font-size: 17px;
    }

    .mon-form__heading {
        font-size: 34px;
    }

    .fieldset:not(:last-child) {
        margin-bottom: 81px;
    }

    .mon-form__necessary {
        top: 51px;
    }

    .mon-hero__heading {
        font-size: 40px;
        line-height: 58px;
    }

    .mon-hero__heading {
        font-size: 40px;
        line-height: 58px;
    }

    .mon-hero__desk1, .mon-hero__desk2 {
        font-size: 16px;
        line-height: 24px;
    }

    .mon-hero__desk1-strong {
        font-size: 21px;
        line-height: 25px;
    }

    .mon-form__bottom {
        flex-direction: column;
        height: 100%;
        align-items: center;
        align-content: space-between;
    }

    .mon-form__btn1 {
        margin-bottom: -26px;
    }

}

@media (max-width: 600px) {
    .news-slider .carousel-control-prev {
        left: 10%
    }

    .news-slider .carousel-control-next {
        right: 10%
    }
}

@media (max-width: 500px) {
    .check1 {
        padding-left: 38px;
    }

    .check2 {
        padding-left: 34px;
    }

    .check3 {
        padding-left: 21px;
    }

    .N_ews {
        padding-top: 50px;
        margin-bottom: 30px;
    }

    .N_ews__wrapper {
        padding-bottom: 100px;
    }

    .N_ews__backgraund {
        height: 110px;
        background-size: cover;
    }
}


@media (max-width: 450px) {

    .window__btn-enter, .window__btn-reg {
        max-width: 100%;
    }

    .checkbox-container, .checkbox-container-reg {
        font-size: 16px;
    }

    .checkbox-data {
        margin-bottom: 10px;
    }

    .check {
        padding-left: 1.5em;
    }

    .header__top-text {
        display: flex;
        justify-content: center;
        font-size: 10px;
    }

    .nav-list__itemB:not(:last-child) {
        margin-bottom: 19px;
    }

    .nav-list__itemB {
        font-size: 15.5px;
    }

    .section-hero__container {
        padding-top: 0px;
    }

    .hero__description-top {
        margin-bottom: 32px;
    }

    .section-hero__description {
        font-size: 17px;
        line-height: 31px;
    }

    .description-strong {
        font-size: 20px;
        line-height: 31px;
    }

    .section-problems__item img {
        width: 63px;
        height: 63px;
        left: 6px;
        top: 46px;
    }

    .section-problems__item:first-child img {
        width: 79px;
        height: 79px;
    }

    .section-problems__desk, .section-problems__desk-1550, .section-problems__desk-360 {
        margin-right: auto;
        margin-left: 80px;
        width: 100%;
        max-width: 400px;
        font-size: 15px;
        line-height: 23px;
    }

    .section_heading2 {
        font-size: 33px;
    }

    .mon-hero__container {
        padding-bottom: 118px;
        padding-top: 99px;
        padding-left: 3px;
        padding-right: 3px;
    }

    .section__mon-form {
        padding-top: 40px;
        padding-bottom: 60px;
        box-shadow: 2px 8px 12px rgba(0, 47, 103, 0.08);
    }

    .mon-hero__heading {
        font-size: 36px;
    }

    .mon-hero__desk1-strong {
        font-size: 18px;
    }

    .mon-hero__desk1, .mon-hero__desk2 {
        font-size: 16px;
    }

    .mon-form__heading {
        font-size: 22px;
        line-height: 39px;
    }

    .fieldset:not(:last-child) {
        margin-bottom: 60px;
    }

    .form__bottom {
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        height: 140px;
    }

    .label {
        font-size: 14px;
        line-height: 20px;
    }

    ::placeholder {
        font-size: 15px;
        line-height: 20px;
    }

    .mon-form__heading3 {
        font-size: 19px;
    }

    .N_ews-heading3 {
        font-size: 15px;
        line-height: 27px;
    }

    .N_ews__desk {
        font-size: 13px;
    }

    .N-ews__desk-text {
        margin-bottom: 15px;
    }

}


@media (max-width: 360px) {

    .check1 {
        padding-left: 7px;
    }

    .check2 {
        padding-left: 7px;
    }

    .check3 {
        padding-left: 0;
    }

    .section_heading2 {
        font-size: 30px;
    }

    .section-hero__container {
        max-width: 340px;
    }

    .block-left {
        margin-top: -28px;
    }

    .block-right {
        margin-bottom: -30px;
    }

    .form {
        margin-bottom: 0;
    }

    .form__wrap {
        background-image: none;
    }

    .mon-form__necessary {
        top: 90px;
    }

    .mon-hero__heading {
        font-size: 34px;
        line-height: 52px;
    }

    .mon-hero__desk1, .mon-hero__desk2 {
        font-size: 14px;
        line-height: 20px;
    }

    .mon-hero__desk1-strong {
        font-size: 18px;
        line-height: 20px;
    }
}


.btn-primary, .btn-link {
    background-size: cover;
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.btn-primary:hover {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    padding-bottom: 23px;
    background-size: 329px 55px;
}

.btn-link:hover {
    padding-bottom: 23px;
    background-size: 315px 55px;
}
