/* fonts */
@font-face {
    font-family: 'Roboto-condensed-bold';
    src: url('fonts/Roboto-condensed-bold/Roboto-condensed-bold.woff') format('woff'),
    url('fonts/Roboto-condensed-bold/Roboto-condensed-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-light';
    src: url('fonts/Roboto-light/Roboto-light.woff') format('woff'),
    url('fonts/Roboto-light/Roboto-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-regular';
    src: url('fonts/Roboto-regular/Roboto-regular.woff') format('woff'),
    url('fonts/Roboto-regular/Roboto-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-bold';
    src: url('fonts/Roboto-bold/Roboto-bold.woff') format('woff'),
    url('fonts/Roboto-bold/Roboto-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* global */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

button {
    cursor: pointer;
}

input {
    outline: none;
}

.wrap {
    max-width: 1260px;
    /* padding-right: 10px;
    padding-left: 10px; */
    margin-right: auto;
    margin-left: auto;
}

.btn {
    display: block;
    text-align: center;
    font-family: 'Roboto-condensed-bold';
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    background: #FF1037;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    box-shadow: 0px 15px 30px rgba(255, 16, 55, 0.2);
    padding: 18px 30px;
    transition: all .3s ease;
}

.btn:hover {
    background: #D71131;
}

/* headerG-top */
.headerG {
    font-family: Arial, Helvetica, sans-serif;
}

.headerG-top {
    height: 35px;
    padding: 8px 0;
    border-top: 1px solid #A8A8A8;
    border-bottom: 1px solid #A8A8A8;
    background-color: #f7f8fa;
    -webkit-box-shadow: 0 -2px 6px -1px rgb(0 0 0 / 30%) inset;
    -moz-box-shadow: 0 -2px 6px -1px rgba(0, 0, 0, 0.3) inset;
    box-shadow: 0 -2px 6px -1px rgb(0 0 0 / 30%) inset;
}

.headerG-top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerG-top-nav {
    display: flex;
    align-items: center;
}

.headerG-top-nav__link {
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    color: #808080;
    transition: all .2s ease-out;
    display: flex;
}

.headerG-top-nav__link:hover {
    color: #005fa8;
}

.headerG-top-nav__link:not(:last-of-type) {
    margin-right: 26px;
}

.headerG-top-nav__link span {
    display: inline-block;
    width: 20px;
    height: 16px;
    overflow: hidden;
    background: url('img/headerG/top-panel-link.png') no-repeat;
    margin-right: 5px;
}

.headerG-top-nav__link.buy-garant span {
    background-position: -55px 0;
}

.headerG-top-nav__link.buy-garant:hover span {
    background-position: -85px 0;
}

.headerG-top-nav__link.demo-access span {
    background-position: -347px 0;
}

.headerG-top-nav__link.demo-access:hover span {
    background-position: -367px 0;
}

.headerG-top-nav__link.products-services span {
    width: 19px;
    background-position: 0 0;
}

.headerG-top-nav__link.products-services:hover span {
    background-position: -21px 0;
}

.headerG-top-nav__link.prices span {
    width: 17px;
    background-position: -393px 0;
}

.headerG-top-nav__link.prices:hover span {
    background-position: -410px 0;
}

.headerG-top-nav__link.seminars span {
    width: 15px;
    background-position: -308px 0;
}

.headerG-top-nav__link.seminars:hover span {
    background-position: -325px 0;
}

.headerG-top-nav__link.company-partners span {
    width: 24px;
    background-position: -130px 0;
}

.headerG-top-nav__link.company-partners:hover span {
    background-position: -157px 0;
}

.headerG-top-nav__link.company-join span {
    width: 22px;
    background-position: -250px 0;
}

.headerG-top-nav__link.company-join:hover span {
    background-position: -272px 0;
}

.headerG-top-nav__link.job span {
    width: 23px;
    background-position: -473px 0;
}

.headerG-top-nav__link.job:hover span {
    background-position: -496px 0;
}

.headerG-top-nav__link.clients span {
    width: 16px;
    background-position: -434px 0;
}

.headerG-top-nav__link.clients:hover span {
    background-position: -450px 0;
}

.headerG-top-nav__link.write-editor span {
    width: 20px;
    background-position: -196px 0;
    top: 0;
}

.headerG-top-nav__link.write-editor:hover span {
    background-position: -218px 0;
}

.headerG-top__lang {
    border: 1px solid #BFBFBF;
    border-top: none;
    background-color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    color: #808080;
    padding: 4px 5px;
    margin-top: -8px;
    height: calc(100% + 8px);
    transition: all .2s ease-out;
}

.headerG-top__lang:hover {
    color: #ec2126;
}

/* headerG-middle */
.headerG-middle {
    padding: 15px 0;
}

.headerG-middle-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerG-middle__logo {
    width: 270px;
}

.headerG-middle-right {
    display: flex;
    flex-direction: column;
}

.headerG-middle-right-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.headerG-middle-right__day {
    font-weight: bold;
    font-size: 13px;
    line-height: 12px;
}

.headerG-middle-right-auth {
    display: flex;
}

.headerG-middle-right-auth__link {
    font-size: 13px;
    color: #808080;
    transition: all .2s ease-out;
}

.headerG-middle-right-auth__link:hover {
    color: #005fa6;
}

/* .headerG-middle-right-auth__link.reg {
    padding-right: 11px;
    border-right: 1px solid #808080;
}
.headerG-middle-right-auth__link.login {
    padding-left: 11px;
} */
.headerG-middle-social {
    display: flex;
}

.headerG-middle-social__item {
    display: block;
    width: 23px;
    height: 19px;
    background: url('img/headerG/social.png') no-repeat;
}

.headerG-middle-social__item:not(:last-of-type) {
    margin-right: 5px;
}

.headerG-middle-social__item.mail {
    background-position: 0px -19px;
}

.headerG-middle-social__item.mail:hover {
    background-position: 0px 0px;
}

.headerG-middle-social__item.mob {
    background-position: -69px -19px;
}

.headerG-middle-social__item.mob:hover {
    background-position: -69px 0px;
}

.headerG-middle-social__item.vk {
    background-position: -92px -19px;
}

.headerG-middle-social__item.vk:hover {
    background-position: -92px -0px;
}

.headerG-middle-social__item.fb {
    background-position: -115px -19px;
}

.headerG-middle-social__item.fb:hover {
    background-position: -115px 0px;
}

.headerG-middle-social__item.tw {
    background-position: -138px -19px;
}

.headerG-middle-social__item.tw:hover {
    background-position: -138px 0px;
}

.headerG-middle-social__item.odnoklasniki {
    background-position: -207px -19px;
}

.headerG-middle-social__item.odnoklasniki:hover {
    background-position: -207px 0px;
}

.headerG-middle-social__item.instagram {
    background-position: -184px -19px;
}

.headerG-middle-social__item.instagram:hover {
    background-position: -184px 0px;
}

.headerG-middle-social__item.ya {
    background-position: -23px -19px;
}

.headerG-middle-social__item.ya:hover {
    background-position: -23px 0px;
}

.headerG-middle-social__item.youtube {
    background-position: -276px -19px;
}

.headerG-middle-social__item.youtube:hover {
    background-position: -276px 0px;
}

.headerG-middle-social__item.rss {
    background-position: -46px -19px;
}

.headerG-middle-social__item.rss:hover {
    background-position: -46px 0px;
}

.headerG-middle-social__item.telegram {
    background-position: -161px -19px;
}

.headerG-middle-social__item.telegram:hover {
    background-position: -161px 0px;
}

/* headerG-bottom */
.headerG-bottom {
    background-color: #828282;
}

.headerG-bottom-wrap {
    display: flex;
    justify-content: space-between;
}

.headerG-bottom__link {
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;
    padding: 10px 4px;
}

.headerG-bottom__link:hover {
    background-color: #005fa6;
}

/* headerG-mobile */
.headerGM {
    font-family: Arial, Helvetica, sans-serif;
    background: #EBEDF2;
    padding: 11px 0;
    width: 100vw;
}

.headerGM-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerGM__logo {
    width: 156px;
}

.headerGM-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    overflow-y: auto;
    z-index: 12;
}

.headerGM-menu-top {
    padding: 15px 0;
    border-bottom: 1px solid #DEDEDE;
}

.headerGM-menu-top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerGM-menu-icons {
    display: flex;
}

.headerGM-menu-icons a {
    display: block;
    width: 20px;
    height: 16px;
    overflow: hidden;
    background: url('img/headerG/top-panel-link.png') no-repeat;
}

.headerGM-menu-icons a:not(:last-of-type) {
    margin-right: 15px;
}

.headerGM-menu-icons a.buy-garant {
    width: 28px;
    background-position: -55px 0;
}

.headerGM-menu-icons a.company-partners {
    width: 24px;
    background-position: -130px 0;
}

.headerGM-menu-icons a.company-join {
    width: 22px;
    background-position: -250px 0;
}

.headerGM-menu-icons a.seminars {
    width: 15px;
    background-position: -308px 0;
}

.headerGM-menu__close {
    width: 19px;
    height: 19px;
}

.headerGM-menu-list {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.headerGM-menu-list a {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #808080;
}

.headerGM-menu-list a:not(:last-of-type) {
    margin-bottom: 20px;
}

.headerGM-menu-bottom {
    border-top: 1px solid #dedede;
    padding: 15px 0;
}

.headerGM-menu-bottom-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.headerGM-menu-bottom-list > li {
    font-weight: 200;
    color: #444444;
    font-size: 16px;
    cursor: pointer;
}

.headerGM-menu-bottom-list > li:not(:last-of-type) {
    margin-bottom: 10px;
}

.headerGM-menu-bottom-text {
    display: block;
    margin-bottom: 20px;
}

.headerGM-menu-bottom-list2 {
    display: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.headerGM-menu-bottom-list2 > li a {
    display: block;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #808080;
}

.headerGM-menu-bottom-list3 {
    margin: 0;
    padding: 0 0 0 10px;
    list-style-type: none;
}

.headerGM-menu-bottom-list3 > li a {
    display: block;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #808080;
}

/* header-top */
.header-top {
    background: #EBEDF2;
    padding: 40px 0;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo__img {
    width: 400px;
    height: auto;
    margin-right: 41px;
}

.header-logo__text {
    font-family: 'Roboto-condensed-bold';
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    text-transform: uppercase;
}

.header-contacts {
    display: flex;
    align-items: center;
}

.header-contacts--mobile {
    display: none;
    align-items: center;
}

.header-contacts--mobile__btn {
    width: 40px;
    height: 40px;
}

.header-contacts--mobile__btn + .header-contacts--mobile__btn {
    margin-left: 15px;
}

.header-contacts__tel {
    font-family: 'Roboto-condensed-bold';
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin-right: 40px;
}

/* header-bottom */
.header-bottom {
    background: #152438;
    padding: 23px 0;
}

.header-nav {
    display: flex;
}

.header-nav__link {
    font-family: 'Roboto-condensed-bold';
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.header-nav__link:not(:last-child) {
    margin-right: 40px;
}

/* content */
.content {
    background: #EBEDF3;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position-y: 10%;
    background-size: cover;
}

.content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.left {
    background: #ffffff;
    padding: 70px 30px;
    max-width: 810px;
    margin-right: 30px;
}

.h1 {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
    color: #152438;
    margin: 0 0 50px 0;
}

.h2 {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #152438;
    margin: 50px 0 20px 0;
}

.text {
    font-family: Arial;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    margin: 0;
}

.text:not(:last-child) {
    margin-bottom: 20px;
}

.blue-link {
    text-decoration: underline;
    color: #0060AE;
}

.marked-list {
    font-family: Arial;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    padding-left: 19px;
    margin: 0;
}

.marked-list:not(:last-child) {
    margin-bottom: 20px;
}

.text + .marked-list {
    margin-top: -10px;
}

ol .text + .marked-list, ul .text + .marked-list { /* Отменям отступ если список вложенный */
    margin-top: 0;
}

.marked-list > li:not(:last-of-type) {
    margin-bottom: 10px;
}

/* marked-list-contents */
.marked-list-contents {
    font-family: Arial;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    padding-left: 45px;
    margin: 0;
    list-style-type: none;
}

.marked-list-contents:not(:last-child) {
    margin-bottom: 20px;
}

.text + .marked-list-contents {
    margin-top: -5px;
}

ol .text + .marked-list-contents, ul .text + .marked-list-contents { /* Отменям отступ если список вложенный */
    margin-top: 0;
}

.marked-list-contents > li {
    position: relative;
}

.marked-list-contents > li:not(:last-of-type) {
    margin-bottom: 15px;
}

.marked-list-contents > li::before {
    content: '';
    background: #C0C2CF;
    width: 20px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

/* numbered-list */
.numbered-list {
    font-family: Arial;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    margin: 0;
    padding: 0;
    list-style-type: none;
    counter-reset: num;
}

.numbered-list:not(:last-child) {
    margin-bottom: 20px;
}

.numbered-list > li:not(:last-of-type) {
    margin-bottom: 20px;
}

.numbered-list > li {
    position: relative;
    padding-left: 50px;
}

.numbered-list .text:not(:last-child) {
    margin-bottom: 10px;
}

.numbered-list > li::before {
    content: counter(num);
    counter-increment: num;
    background: #F4F5FA;
    width: 30px;
    height: 30px;
    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #404040;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* numbered-list-2 */
.numbered-list-2 {
    font-family: Arial;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    margin: 0;
    padding: 0;
    list-style-type: none;
    counter-reset: num;
}

.numbered-list-2:not(:last-child) {
    margin-bottom: 20px;
}

.numbered-list-2 > li:not(:last-of-type) {
    margin-bottom: 20px;
}

.numbered-list-2 > li {
    position: relative;
    padding-left: 33px;
}

.numbered-list-2 .text:not(:last-child) {
    margin-bottom: 10px;
}

.numbered-list-2 > li::before {
    content: counter(num) '.';
    counter-increment: num;
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    position: absolute;
    top: 0;
    left: 0;
}

/* table */
.tableWrap {
    max-width: 100%;
    overflow-y: auto;
}

.tableWrap:not(:last-child) {
    margin-bottom: 20px;
}

.table {
    border-collapse: collapse;
    width: 100%;
}

.table td {
    border: 1px solid #DEE2E6;
    padding: 16px 20px;
    vertical-align: text-top;
}

.table td p {
    font-family: Arial;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    margin: 0;
}

.table td p:not(:last-child) {
    margin-bottom: 10px;
}

/* person */
.person {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.person-ava {
    margin-right: 30px;
}

.person-content {
    display: flex;
    flex-direction: column;
    margin-right: 16px;
}

.person-content__name {
    font-family: Arial;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #152438;
    margin: 0 0 10px 0;
}

.person-content__descr {
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #4C5D6D;
    margin: 0;
}

.person__date {
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    color: #4C5D6D;
}

/* history */
.history {
    background: #F4F5FA;
    padding: 30px;
}

.history:not(:last-child) {
    margin-bottom: 20px;
}

.history._contents:not(:last-child) {
    margin-bottom: 50px;
}

/* banner */
.banner {
    display: block;
    background: url('img/banners/banner-1.png') no-repeat;
    background-size: cover;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}

.banner-rotation {
    width: 100%;
    height: 236px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #CCE6F3;
    border-radius: 10px;
    padding: 50px 42px 30px 30px;
    margin-bottom: 70px;
    position: relative;
}

.banner-rotation .banner-rotation-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    animation: imageAnimation 36s linear infinite 0s;
}

.banner-rotation .banner-rotation-img:nth-child(1) {
    background: url('img/banners/banner-rotation-1.png') no-repeat;
    background-size: cover;
}

.banner-rotation .banner-rotation-img:nth-child(2) {
    background: url('img/banners/banner-rotation-2.png') no-repeat;
    background-size: cover;
    animation-delay: 6s;
}

.banner-rotation .banner-rotation-img:nth-child(3) {
    background: url('img/banners/banner-rotation-3.png') no-repeat;
    background-size: cover;
    animation-delay: 12s;
}

.banner-rotation .banner-rotation-img:nth-child(4) {
    background: url('img/banners/banner-rotation-4.png') no-repeat;
    background-size: cover;
    animation-delay: 18s;
}

.banner-rotation .banner-rotation-img:nth-child(5) {
    background: url('img/banners/banner-rotation-5.png') no-repeat;
    background-size: cover;
    animation-delay: 24s;
}

.banner-rotation .banner-rotation-img:nth-child(6) {
    background: url('img/banners/banner-rotation-6.png') no-repeat;
    background-size: cover;
    animation-delay: 30s;
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.prog.banner {
    background: url('img/banners/banner-4.png') no-repeat;
    background-size: cover;
}

.reestr.banner {
    background: url('img/banners/banner-2.png') no-repeat;
    background-size: cover;
}

.protect.banner {
    background: url('img/banners/banner-5.png') no-repeat;
    background-size: cover;
}

.banner__logo {
    width: 203px;
    margin-bottom: 40px;
}

.banner__title {
    font-family: 'Roboto-condensed-bold';
    font-size: 28px;
    line-height: 40px;
    color: #32404D;
    margin: 0 0 40px 0;
    max-width: 459px;
}

.banner__btn {
    width: 252px;
}

/* search */
.search {
    background: #E3F3FB;
    border: 1px solid #CCE6F3;
    border-radius: 10px;
    padding: 50px;
}

.search:not(:last-child) {
    margin-bottom: 20px;
}

.search__title {
    font-family: 'Roboto-condensed-bold';
    font-size: 32px;
    line-height: 42px;
    color: #32404D;
    margin: 0 0 20px 0;
}

.search-main {
    display: flex;
    margin-bottom: 20px;
    box-shadow: 0px 3px 6px rgb(21 36 56 / 15%);
}

.search-main__input {
    background: #FFFFFF;
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 15px 20px;
    flex: 1;
    font-family: 'Roboto-light';
    font-size: 21px;
    line-height: 30px;
}

.search-main__input::placeholder {
    font-family: 'Roboto-light';
    font-size: 21px;
    line-height: 30px;
    color: #929FAB;
}

.search-main__btn {
    font-family: 'Roboto-light';
    font-weight: normal;
    text-transform: capitalize;
    width: 214px;
    border-radius: 0 5px 5px 0;
}

.search__descr {
    font-family: 'Roboto-light';
    font-size: 15px;
    line-height: 20px;
    color: #929FAB;
}

/* expert */
.expert {
    background: #E3F3FB;
    border: 1px solid #CCE6F3;
    border-radius: 10px;
    display: flex;
    padding: 50px;
    position: relative;
    margin-top: 81px;
    margin-bottom: 50px;
}

.expert-content {
    width: 397px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.expert__title {
    font-family: 'Roboto-condensed-bold';
    font-size: 32px;
    line-height: 30px;
    color: #32404D;
    margin: 0 0 20px 0;
}

.expert__descr {
    font-family: 'Roboto-light';
    font-size: 18px;
    line-height: 20px;
    color: #32404D;
    margin: 0 0 20px 0;
}

.expert__photo {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* markRegistration */
.markRegistration {
    background: #EBEDF2;
    border: 1px solid #D9DDE4;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    margin-bottom: 50px;
}

.markRegistration-half {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.markRegistration-half._content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.markRegistration-half._content img {
    width: 262px;
    margin-bottom: 46px;
}

.markRegistration-half._content .btn {
    width: 262px;
}

.markRegistration-fourth {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-right: 1px solid #D9DDE4;
    padding: 0 35px;
    height: 178px;
}

.markRegistration-fourth:nth-child(-n+2) {
    border-bottom: 1px solid #D9DDE4;
}

.markRegistration-fourth ._1 {
    width: 130px;
}

.markRegistration-fourth ._2 {
    width: 110px;
}

.markRegistration-fourth ._3 {
    width: 130px;
}

.markRegistration-text {
    display: flex;
    flex-direction: column;
}

.markRegistration-text__big {
    font-family: 'Roboto-condensed-bold';
    font-size: 36px;
    line-height: 42px;
    text-transform: uppercase;
    color: #152438;
    text-align: center;
}

.markRegistration-text__little {
    font-family: 'Roboto-regular';
    font-size: 18px;
    line-height: 28px;
    color: #4B5F72;
    text-align: center;
}

/* opinion */
.opinion {
    border-left: 2px solid #D9DDE4;
    padding: 10px 40px;
    margin-bottom: 50px;
}

.opinion__img {
    width: 322px;
    margin-bottom: 30px;
}

.opinion__title {
    font-family: Arial;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    margin: 0 0 20px 0;
}

.opinion__text {
    font-family: Arial;
    font-weight: normal;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    margin: 0;
}

.copyright {
    font-family: 'Roboto-regular';
    font-size: 20px;
    line-height: 18px;
    color: #929FAB;
    margin: 0;
}

/* right */
.right {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 30px;
    right: 0;
    margin-top: 30px;
    width: 420px;
}

.right__logo {
    width: 273px;
    margin-bottom: 40px;
}

.right-partners {
    display: flex;
}

.right-partners__img {
    width: 111px;
}

.right-partners__img:not(:last-of-type) {
    margin-right: 27px;
}

/* sideBanner */
.sideBanner {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #CCE6F3;
    border-radius: 10px;
    padding: 50px 42px 30px 30px;
    margin-bottom: 70px;
    position: relative;
}

.sideBanner::after {
    content: url(img/sideBanner-bg.svg);
    position: absolute;
    right: 0;
    bottom: 64px;
}

.sideBanner__tag {
    font-family: 'Roboto-bold';
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    color: #4C5D6D;
    padding: 10px 20px;
    background: #E3F3FB;
    border-radius: 5px;
    margin-bottom: 35px;
}

.sideBanner__title {
    font-family: 'Roboto-condensed-bold';
    font-size: 32px;
    line-height: 46px;
    color: #32404D;
    margin: 0 0 200px 0;
}

.sideBanner__btn {
    position: relative;
    z-index: 1;
}

/* linking */
.linking {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 70px;
}

.linking-slide {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 330px;
}

.linking-slide:first-of-type {
    margin-left: 30px;
}

.linking-wrapper {
    height: auto !important;
}

.linking-slide-header {
    background: #D3DCE7;
    width: 100%;
    height: 238px;
    padding: 30px 37px 30px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.linking-slide-header__img {
    width: 40px;
    height: 40px;
}

.linking-slide-header__title {
    font-family: Arial;
    font-weight: bold;
    font-size: 26px;
    line-height: 36px;
    color: #333333;
    text-align: start;
    margin: 0;
}

.linking-slide__text {
    font-family: Arial;
    font-weight: normal;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    text-align: start;
    margin: 0 0 20px 0;
}

.linking-slide__date {
    font-family: Arial;
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    color: #929FAB;
}

.linking-btn-next {
    right: 15px;
}

.linking-btn-prev {
    left: 15px;
}

.linking-btn-next::after, .linking-btn-prev::after {
    content: url(img/arrow.svg);
    width: 29px;
    height: 58px;
}

.linking-btn-prev::after {
    transform: rotate(180deg);
}

.linking .swiper-button-disabled::after {
    display: none;
}

/* callback */
.callback {
    display: none;
    background: #052B4B;
    box-shadow: 0px 10px 30px rgba(48, 122, 189, 0.3);
    max-width: 335px;
    padding: 40px 20px;
}

.callback .fancybox-close-small {
    color: #FF1037;
}

.callback__title {
    font-family: 'Roboto-condensed-bold';
    font-size: 40px;
    line-height: 40px;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}

.callback__input {
    font-family: Arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin-bottom: 10px;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
}

.callback__input::placeholder {
    font-family: Arial;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    color: #929FAB;
}

.callback__btn {
    width: 100%;
    margin-bottom: 10px;
}

.callback__agree {
    font-family: 'Roboto-regular';
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #929FAB;
    margin: 0;
}

.callback__agree a {
    color: #2c7bbe;
}

/* text-modal */
.text-modal {
    box-shadow: 0px 10px 30px rgba(48, 122, 189, 0.3);
    max-width: 335px;
    padding: 40px 20px;
}

.text-modal .fancybox-close-small {
    color: #FF1037;
}

.text-modal p {
    font-family: Arial;
    font-size: 21px;
    line-height: 30px;
    color: #333333;
    margin: 0;
}

/* notice */
.notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 9px 20px;
    background: url('img/notice-bg.svg') no-repeat;
    background-size: cover;
    background-position-x: right;
    align-items: center;
    z-index: 10;
}

.notice__logo {
    width: 107px;
    height: 22px;
    margin-right: 31px;
}

.notice-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notice-main__tel {
    font-family: 'Roboto-condensed-bold';
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 6px;
}

.notice-main__btn {
    padding: 7px 17px !important;
    font-size: 14px !important;
    line-height: 16px !important;
}

.notice__close {
    position: absolute;
    right: 7px;
    top: -19px;
    width: 31px;
    height: 31px;
}

@media (max-width: 1261px) {
    .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1261px) {
    .mobile-only {
        display: none !important;
    }
}

/* @media (max-width: 376px) { */
@media (max-width: 1261px) {
    .mobile-hide {
        display: none !important;
    }

    /* header-top */
    .header {
        background: #ffffff;
        /* position: fixed; */
        top: 51px;
        left: 0;
        width: 100vw;
        z-index: 11;
    }

    .header-top {
        background: #ffffff;
        padding: 8px 0;
    }

    .header-logo__img {
        width: 144px;
        height: auto;
    }

    .header-logo__text {
        display: none;
    }

    .header-contacts {
        display: none;
    }

    .header-contacts--mobile {
        display: flex;
    }

    /* header-bottom */
    .header-bottom {
        background: #ffffff;
        padding: 19px 0;
    }

    .header-nav {
        max-width: 100%;
        overflow-y: auto;
        border-bottom: 1px solid rgba(101, 101, 101, .1);
    }

    .header-nav__link {
        display: block;
        font-family: Arial;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px;
        text-transform: initial;
        white-space: nowrap;
        color: #152438;
        padding-bottom: 5px;
    }

    .header-nav__link:not(:last-of-type) {
        margin-right: 20px;
    }

    .header-nav__link:last-of-type {
        padding-right: 20px;
    }

    /* content */
    .content-wrap {
        padding: 0 !important;
    }

    .left {
        width: 100%;
        padding: 20px;
        margin-right: 0;
    }

    .h1 {
        font-family: Arial;
        font-style: normal;
        font-weight: bold;
        font-size: 25px;
        line-height: 30px;
        color: #152438;
        margin-bottom: 20px;
    }

    .h2 {
        margin: 30px 0 20px 0;
    }

    .text {
        font-size: 18px;
        line-height: 28px;
    }

    .marked-list {
        font-size: 18px;
        line-height: 28px;
    }

    .btn {
        padding: 16px 30px;
        font-size: 16px;
        line-height: 22px;
    }

    .left {
        max-width: 100%;
    }

    .right {
        display: none;
    }

    /* person */
    .person {
        flex-direction: column;
        background: url(img/main-bg-mobile.svg), #EBEDF3;
        background-repeat: no-repeat;
        background-size: 100%;
        margin: -20px -20px 40px -20px;
        padding: 20px;
    }

    .person-ava {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .person-content {
        margin-right: 0;
    }

    .person-content__name {
        font-family: Arial;
        font-weight: bold;
        font-size: 16px;
        line-height: 22px;
        color: #152438;
        margin-bottom: 10px;
    }

    .person-content__descr {
        font-family: Arial;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px;
        color: #4C5D6D;
    }

    .person__date {
        margin-bottom: 10px;
    }

    /* history */
    .history {
        padding: 20px;
    }

    .history._contents:not(:last-child) {
        margin-bottom: 20px;
    }

    /* banner */
    .banner {
        background: url('img/banners/banner-1-mobile.png') no-repeat;
        background-size: cover;
        padding: 20px 20px 0 20px;
    }

    .banner__logo {
        width: 144px;
        margin-bottom: 26px;
    }

    .banner__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 51px;
    }

    .banner__btn {
        width: calc(100% + 40px);
        border-radius: 0 0 5px 5px;
        margin-left: -20px;
        margin-right: -20px;
    }

    /* search */
    .search {
        padding: 30px 20px;
    }

    .search__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .search-main {
        flex-direction: column;
        box-shadow: none;
        margin-bottom: 11px;
        position: relative;
    }

    .search-main::after {
        content: url(img/icons/search-icon.svg);
        width: 20px;
        height: 20px;
        position: absolute;
        top: 15px;
        right: 10px;
    }

    .search-main__input {
        padding: 15px 55px 15px 10px;
        font-size: 15px;
        line-height: 20px;
        width: 100%;
        box-shadow: 0px 3px 6px rgba(21, 36, 56, 0.15);
        border-radius: 5px;
        margin-bottom: 11px;
    }

    .search-main__input::placeholder {
        font-size: 15px;
        line-height: 20px;
    }

    .search-main__btn {
        width: 100%;
        box-shadow: 0px 15px 30px rgba(255, 16, 55, 0.2);
        border-radius: 5px;
    }

    /* expert */
    .expert {
        padding: 30px 20px;
        margin-top: 237px;
    }

    .expert__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .expert__descr {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .expert__btn {
        width: 100%;
        box-shadow: 0px 15px 30px rgb(255 16 55 / 20%);
        border-radius: 5px;
    }

    .expert__photo {
        right: 50%;
        bottom: 100%;
        transform: translateX(50%);
        height: 217px;
    }

    /* markRegistration */
    .markRegistration {
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }

    .markRegistration-half {
        flex-direction: column;
        width: 100%;
        padding: 50px 0;
    }

    .markRegistration-fourth {
        width: calc(100% - 40px);
        border: none;
        padding: 0;
        margin: 0 20px;
        height: auto;
    }

    .markRegistration-fourth:first-of-type {
        padding-top: 50px;
        border-top: 1px solid rgba(146, 159, 171, .2);
    }

    .markRegistration-fourth:nth-child(-n+2) {
        border-bottom: none;
    }

    .markRegistration-fourth:not(:last-of-type) {
        padding-bottom: 50px;
    }

    .markRegistration-fourth ._1 {
        width: 219px;
    }

    .markRegistration-fourth ._2 {
        width: 148px;
    }

    .markRegistration-fourth ._3 {
        width: 163px;
    }

    .markRegistration-text__big {
        font-size: 40px;
        line-height: 47px;
    }

    .markRegistration-text__little {
        font-size: 20px;
        line-height: 28px;
    }

    .markRegistration-half._content {
        padding: 50px 27px;
    }

    .markRegistration-half._content img {
        width: 280px;
        margin-bottom: 20px;
    }

    .markRegistration-half._content .btn {
        width: 100%;
        box-shadow: 0px 15px 30px rgba(255, 16, 55, 0.2);
        border-radius: 5px;
    }

    /* opinion */
    .opinion {
        padding: 10px 20px;
    }

    .opinion__img {
        width: 295px;
        height: 64px;
    }

    .opinion__text {
        font-size: 18px;
        line-height: 28px;
    }

    /* numbered-list */
    .numbered-list li {
        font-size: 18px;
        line-height: 28px;
    }

    /* numbered-list-2 */
    .numbered-list-2 li::before {
        font-size: 18px;
        line-height: 28px;
    }

    /* linking */
    .linking {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .linking-slide {
        width: 100%;
        margin-left: 0 !important;
    }

    .linking-slide-header__title {
        font-size: 28px;
        line-height: 36px;
    }

    .linking-btn-next, .linking-btn-prev {
        display: none;
    }

    /* notice */
    .notice {
        display: flex;
    }

    /* jivo */
    .__jivoMobileButton {
        bottom: 90px !important;
    }
}

.sp {
    font-family: 'Roboto-condensed-bold';
    font-size: 22px;
    color: #ed174b;
    margin-top: 0;
    margin-bottom: 16px;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.625rem;
    font-family: 'Roboto-regular';
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.625rem - 1px);
    border-top-right-radius: calc(0.625rem - 1px);
}

.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.625rem - 1px);
    border-bottom-left-radius: calc(0.625rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.card-subtitle {
    margin-top: -0.625rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1rem;
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.625rem - 1px) calc(0.625rem - 1px) 0 0;
}

.card-footer {
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.625rem - 1px) calc(0.625rem - 1px);
}

.card-header-tabs {
    margin-right: -0.5rem;
    margin-bottom: -0.5rem;
    margin-left: -0.5rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    border-radius: calc(0.625rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.625rem - 1px);
    border-top-right-radius: calc(0.625rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.625rem - 1px);
    border-bottom-left-radius: calc(0.625rem - 1px);
}

.card-group > .card {
    margin-bottom: 0.75rem;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

@media (min-width: 576px) {
    .card-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .card-group > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }

    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-top,
    .card-group > .card:not(:last-child) .card-header {
        border-top-right-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-bottom,
    .card-group > .card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-top,
    .card-group > .card:not(:first-child) .card-header {
        border-top-left-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-bottom,
    .card-group > .card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0;
    }
}
