* {
    box-sizing: border-box;
}

html, body, h1, h2, h3, ul, p {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn-reset {
    background: none;
    border: none;
}

.container {
    margin: 0 auto;
    max-width: 1526px;
}

.page-header {
    font-size: 26px;
    padding-top: 10px;
    margin-bottom: 10px;
}

.home {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.home__header {
    position: relative;
    width: 100%;
}

.home__header h2 {
    color: #000f46;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.home__wbl {
    position: relative;
    width: 99%;
    z-index: 2;
}

.home__sbl {
    position: relative;
    width: 75%;
    z-index: 2;
}

.ancor {
    margin-top: 20px;
    max-width: 25%;
}

.ancor__item:not(:last-child) {
    margin-bottom: 10px;
}

.ancor__link {
    color: #000f46;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.home__menu {
    border-top: 1px solid #000f46;
    border-bottom: 1px solid #000f46;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.home__menu-item:not(:last-child) {
    margin-bottom: 10px;
}

.home__menu-link {
    color: #000f46;
    font-size: 18px;
    font-weight: 400;
    transition: text-shadow .2s ease-in-out;
}

.home__menu-link:hover {
    text-shadow: 1px 2px 2px #000f46;
}

.home__article {
    color: #000f46;
    font-size: 20px;
    font-weight: 400;
}

.home__article a {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    transition: text-decoration .2s ease-in-out;
}

.home__article a:hover {
    text-decoration: underline;
}

.home__article p {
    margin-bottom: 10px;
    text-align: justify;
}

.home__article ul {
    margin-bottom: 10px;
    margin-left: 10px;
    list-style: disc outside;
}

.modal_bg {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, .7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.modal, .modal2 {
    width: 360px;
    min-height: 200px;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 15px;
}

.modal2 {
    display: none;
    justify-content: center;
    align-items: center;
}

.modal2 h2 {
    color: #100604;
    font-size: 20px;
}

.modal__top {
    display: flex;
    justify-content: right;
}

.modal__close {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: auto;
    cursor: pointer;
}

.modal__close-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: #000;
    transition: transform .2s ease-in-out;
}

.modal__close-line:nth-child(1) {
    transform: rotate(45deg);
}

.modal__close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.modal__close:hover > .modal__close-line:nth-child(1), .modal__close:active > .modal__close-line:nth-child(1) {
    transform: rotate(135deg);
}

.modal__close:hover > .modal__close-line:nth-child(2), .modal__close:active > .modal__close-line:nth-child(2) {
    transform: rotate(45deg);
}

.modal__table {
    width: 100%;
}

.modal__td {
    padding-bottom: 10px;
}

.modal__label {
    display: block;
    margin-bottom: 1px;
}

.modal__input {
    width: 100%;
    height: 30px;
    background-color: #efefef;
    border: 1px solid #bebebe;
    border-radius: 5px;
    padding: 0 5px;
}

.modal__button {
    color: white;
    width: 100%;
    text-align: center;
    background: #787878;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px;
    transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.modal__button:hover, .modal__button:active {
    color: #262626;
    background-color: #d9d9dc;
}

.modal__comment {
    font-size: 12px;
}

.mob-menu {
    position: fixed;
    top: 0;
    left: -320px;
    height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #787878;
    width: 320px;
    z-index: 5;
    overflow-y: auto;
    transition: left .2s ease-in-out;
}

.mob-menu_open {
    left: 0;
}

.mob-menu__header {
    display: flex;
    padding-top: 115px;
}

.mob-menu__name {
    color: #ffffff;
    font-size: 18px;
    margin: 5px auto;
}

.mob-menu__close {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    margin-left: auto;
    cursor: pointer;
}

.mob-menu__close-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    display: inline-block;
    background-color: #000;
    transition: transform .2s ease-in-out;
}

.mob-menu__close-line:nth-child(1) {
    transform: rotate(45deg);
}

.mob-menu__close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mob-menu__close:hover > .mob-menu__close-line:nth-child(1), .mob-menu__close:active > .mob-menu__close-line:nth-child(1) {
    transform: rotate(135deg);
}

.mob-menu__close:hover > .mob-menu__close-line:nth-child(2), .mob-menu__close:active > .mob-menu__close-line:nth-child(2) {
    transform: rotate(45deg);
}

.mob-menu__list {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.mob-menu__item {
    margin-bottom: 10px;
    border-bottom: 1px solid #939598;
    padding-bottom: 10px;
}

.mob-menu__link {
    display: block;
    color: #000000;
    font-size: 20px;
    transition: text-shadow .2s ease-in-out;
}

.mob-menu__link:hover,.mob-menu__link:active  {
    text-shadow: 3px 1px 3px #ffffff;
}

.mob-menu__link_arrow {
    position: relative;
    padding-right: .5vw;
}

.mob-menu__link_arrow::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 9px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #1c2b47;
    border-top: 2px solid #1c2b47;
    transform: rotate(135deg);
    transition: border-top .2s ease-in-out, border-right .2s ease-in-out;
}

.mob-submenu {
    margin-top: 5px;
    margin-left: 10px;
}

.mob-submenu__item {
    margin-bottom: 5px;
}

.mob-submenu__link {
    color: #100604;
}

.header_fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    z-index: 20;
}

.header_fixed>.header__icons {
    display: none;
}

.header {
    position: relative;
    border-bottom: 1px solid #bebebe;
    background-color: #fff;
    padding-top: 23px;
    padding-bottom: 10px;
    z-index: 10;
}

.header__icons {
    display: flex;
    margin-bottom: 29px;
}

.header__header {
    display: none;
}

.header__logo {
    transition: filter .2s linear;
}

.header__logo:hover {
    filter: drop-shadow(3px 5px 10px #123372);
}

.header__img {
    max-width: 80%;
}

.header__burger {
    position: relative;
    display: none;
    width: 34px;
    height: 28px;
    margin-top: 0px;
    margin-left: 31px;
    margin-right: 26px;
    cursor: pointer;
}

.burger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    display: inline-block;
    background-color: #000;
    transition: width .2s ease-in-out;
}

.burger__line:nth-child(1){
    top: 0;
}

.burger__line:nth-child(2){
    top: 8px;
}

.header__burger:hover > .burger__line:nth-child(2), .header__burger:active > .burger__line:nth-child(2){
    width: 80%;
}

.burger__line:nth-child(3){
    bottom: 9px;
}

.header__burger:hover > .burger__line:nth-child(3), .header__burger:active > .burger__line:nth-child(3){
    width: 60%;
}

.burger__line:nth-child(4){
    bottom: 0;
}

.header__burger:hover > .burger__line:nth-child(4), .header__burger:active > .burger__line:nth-child(4){
    width: 40%;
}

.header__call {
    margin-left: auto;
    margin-top: 32px;
    transition: transform .2s ease-in-out;
}

.header__call:hover {
    transform: scale(1.2);
}


.header__write {
    margin-top: 37px;
    margin-left: 12px;
    transition: transform .2s ease-in-out;
}

.header__write:hover {
    transform: scale(1.2);
}

.header__phone {
    margin-top: 33px;
    margin-right: 0px;
    margin-left: 20px;
    font-size: 30px;
    letter-spacing: 0.3px;
    color: #100604;
    transition: text-shadow .2s ease-in-out;
}

.header__phone:hover {
    text-shadow: 1px 2px 3px #262626;
}

.mainmenu {
    margin-bottom: 3px;
}

.mainmenu__list {
    display: flex;
    justify-content: center;
}

.mainmenu__item {
    margin-left: 1vw;
    margin-right: 1vw;

}

.mainmenu__link {
    display: block;
    text-transform: uppercase;
    color: #262626;
    font-size: 18px;
    transition: text-shadow .2s ease-in-out, color .2s ease-in-out;
}

.mainmenu__link:hover {
    color: #123372;
    text-shadow: 1px 2px 3px #123372;
}

.mainmenu__link_arrow {
    position: relative;
    padding-right: .5vw;
}

.mainmenu__link_arrow::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: 9px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #1c2b47;
    border-top: 2px solid #1c2b47;
    transform: rotate(135deg);
    transition: border-top .2s ease-in-out, border-right .2s ease-in-out;
}

.mainmenu__link_arrow:hover::after {
    border-right: 2px solid #ff0000;
    border-top: 2px solid #ff0000;
}

.submenu {
    opacity: 0;
    position: absolute;
    display: none;
    margin-top: 5px;
    background-color: #ffffff;
    border: 1px solid #bebebe;
    max-width: 300px;
    transition: opacity .2s ease-in-out;
}

.submenu__item:not(:last-child) {
    border-bottom: 1px solid #6581b2;
}

.submenu__link {
    display: block;
    color: #000f46;
    font-size: 12px;
    font-weight: 600;
    padding: 10px;
    transition: color .2s ease-in-out;
}

.submenu__link:hover {
    color: #6581b2;
}

.mainmenu__open .submenu {
    display: block;
    opacity: 1;
}

.home {
    position: relative;
}

.hero {
    position: relative;
    /*margin-top: 161px;*/
    margin-bottom: 34px;
}

.hero__title {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    background-color: rgba(91, 110, 148, .7);
    color: #ffffff;
    font-family: GaramondBookNarrowCTT;
    font-size: 64px;
    font-weight: 200;
    letter-spacing: 1.6px;
    line-height: 78px;
    padding-top: 10px;
    padding-bottom: 9px;
    text-align: center;
}

.description {
    border: 1px solid #d9d9dc;
    display: flex;
    align-items: center;
    padding-top: 43px;
    padding-bottom: 62px;
    margin-bottom: 69px;
}

.description__title {
    flex: 0 1 35%;
    color: #123372;
    font-size: 34px;
    font-weight: 600;
    padding-left: 54px;
    line-height: 44px;
}

.description_text {
    flex: 0 1 65%;
    font-size: 25px;
    letter-spacing: -.2px;
    margin-left: 13px;
    padding-right: 50px;
    text-align: justify;
}

.result {
    margin-bottom: 73px;
}

.result__header {
    text-align: center;
    color: #123372;
    font-size: 24px;
    letter-spacing: .3px;
    margin-bottom: 13px;
}

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

.result__item {
    width: calc(33.3% - 3px);
    background-color: #f1f2f2;
    margin-bottom: 5px;
    padding-top: 53px;
    padding-left: 57px;
    padding-bottom: 47px;
}

.result__item_1 {
    padding-top: 38px;
}

.result__title {
    color: #123372;
    font-size: 39px;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 39px;
    margin-bottom: 2px;
}

.result__text {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: .3px;
}

.result__img {
    margin-left: 5px;
}

.feedback {
    margin-bottom: 66px;
}

.feedback__header {
    color: #123372;
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: 600;
    padding-left: 56px;
    margin-bottom: 26px;
}

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

.feedback__item {
    border: 1px solid #d9d9dc;
    width: calc(33.3% - 13px);
    padding-top: 23px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 24px;
    margin-bottom: 20px;
}

.feedback__content {
    min-height: 695px;
}

.feedback__more {
    position: relative;
    display: block;
    width: 220px;
    color: #123372;
    padding-left: 54px;
    font-size: 25px;
    letter-spacing: -.2px;
    transition: text-shadow .2s ease-in-out
}

.feedback__more::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-left: 1px solid #123372;
    border-bottom: 1px solid #123372;
    transform: rotate(225deg);
    bottom: 7px;
    right: -15px;
    transition: right .2s ease-in-out, border-left .2s ease-in-out, border-bottom .2s ease-in-out;
}

.feedback__more:hover {
    text-shadow: 1px 2px 3px #123372;
}

.feedback__more:hover::after {
    right: -40px;
    border-left: 3px solid #123372;
    border-bottom: 3px solid #123372;
}

.feedback__info {
    display: flex;

    border-bottom: 1px solid #d9d9dc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.feedback__pic {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #262626;
    flex: 0 0 auto;
    width: 180px;
    height: 235px;
}

.feedback__pic img {
    width: 100%;
}

.feedback__main {
    padding-top: 59px;
    padding-left: 20px;
}

.feedback__name {
    color: #123372;
    font-size: 22px;
    letter-spacing: .3px;
    margin-bottom: 7px;
}

.feedback__date {
    color: #000000;
    font-size: 16px;
    letter-spacing: .3px;
    margin-bottom: 13px;
}

.feedback__title {
    color: #000000;
    font-size: 22px;
    letter-spacing: .3px;
}

.feedback__text {
    background-image: url(../images/otz.png);
    background-repeat: no-repeat;
    padding-left: 54px;
    padding-top: 17px;
    padding-right: 20px;
    padding-bottom: 20px; 
    font-size: 21px;
    line-height: 26px;
    letter-spacing: 1px;
}

.feedback__item_more {
    border: none;
    background-color: #f1f2f2;
    padding-top: 345px;
    padding-left: 6vw;
    padding-right: 40px;
}

.feedback__link {
    display: block;
    position: relative;
    color: #000000;
    font-size: 24px;
    letter-spacing: .3px;
    transition: text-shadow .2s ease-in-out;
}

.feedback__link span {
    color: #123372;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: .6px;
    line-height: 40px;
}

.feedback__link:hover {
    text-shadow: 1px 2px 7px #787878;
}

.feedback__link::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-left: 1px solid #123372;
    border-bottom: 1px solid #123372;
    transform: rotate(225deg);
    top: 73px;
    right: 10vw;
    transition: right .2s ease-in-out, border-left .2s ease-in-out, border-bottom .2s ease-in-out;
}

.feedback__link:hover::after {
    right: 8vw;
    border-left: 3px solid #123372;
    border-bottom: 3px solid #123372;
}

.feedback__left, .feedback__right {
    display: none;
    position: absolute;
    width: 60px;
    height: 60px;
    border-left: 3px solid #000f46;
    border-bottom: 3px solid #000f46;
    cursor: pointer;
}

.feedback__left {
    top: 40%;
    left: 20px;
    transform: rotate(45deg);
}

.feedback__right {
    top: 40%;
    right: 20px;
    transform: rotate(225deg);
}

.feedback__footer {
    display: none;
    width: 415px;
    min-height: 100px;
    background-color: #f1f2f2;
    padding-top: 40px;
    padding-bottom: 60px;
    padding-left: 70px;
    padding-right: 130px;
    margin: 0 auto;
}

.success {
    margin-bottom: 70px;
}

.success__header {
    color: #123372;
    font-size: 23px;
    letter-spacing: 1.8px;
    font-weight: 600;
    padding-left: 56px;
    margin-bottom: 23px;
}

.success__bg {
    background-color: #123372;
    padding-top: 26px;
    padding-left: 56px;
    padding-right: 50px;
    padding-bottom: 115px;
}

.success__description {
    color: #ffffff;
    font-size: 33px;
    letter-spacing: .5px;
    margin-bottom: 120px;
}

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

.success_item {
    width: 235px;
}

/*.success_item a:not(:first-child) {*/
/*    font-size: 0;*/
/*}*/

.success_item a {
    font-size: 0;
}

.success__item_more {
    width: 340px;
}

.success__img {
    width: 100%;
    height: 315px;
    background-color: #f1f2f2;
    margin-bottom: 0;
}

.success__title {
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    padding: 0 20px;
    word-wrap: break-word;
}

.success__border {
    border: 1px solid #d7d8db;
    padding-top: 200px;
    padding-left: 47px;
    padding-right: 20px;
    padding-bottom: 130px;
}

.success__view {
    color: #ffffff;
    font-size: 24px;
    letter-spacing: .3px;
    margin-bottom: 25px;
}

.success__view span {
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: .6px;
    line-height: 40px;
}

.success__link {
    display: block;
    position: relative;
    color: #ffffff;
    font-size: 24px !important;
    letter-spacing: .3px;
    margin-bottom: 20px;
}

.success__link::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-left: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: rotate(225deg);
    top: 7px;
    right: 6vw;
    transition: right .2s ease-in-out, border-left .2s ease-in-out, border-bottom .2s ease-in-out;
}

.success__link:hover {
    text-shadow: 1px 2px 3px #ffffff;
}

.success__link:hover::after {
    right: 5vw;
    border-left: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.video {
    margin-bottom: 110px;
}

.video__header {
    color: #123372;
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: 600;
    padding-left: 56px;
    margin-bottom: 29px;
}

.video__content {
    width: 680px;
    height: 450px;
    background-color: #262626;
    margin-left: 58px;
}

.call {
    display: flex;
    background-image: url(../images/call_bg.jpg);
    background-repeat: no-repeat;
    padding-top: 66px;
    padding-left: 34px;
    padding-right: 40px;
    padding-bottom: 30px;
    margin-bottom: 143px;
}

.call__icon {
    margin-right: 45px;
    flex: 1 0 16%; 
    transition: transform .2s ease-in-out;
}

.call__icon:hover {
    transform: scale(1.1);
}

.call__info {
    padding-top: 31px;
}

.call__title {
    color: #ffffff;
    font-size: 35px;
    letter-spacing: 3.1px;
    line-height: 50px;
    margin-bottom: 25px;
}

.call_phone {
    color: #ffffff;
    font-size: 48px;
    letter-spacing: .3px;
    text-align: right;
}

.call__write-link img {
    transition: transform .2s ease-in-out;
}

.call__write-link:hover img {
    transform: scale(1.1);
}

.call__write {
    margin-right: 20px;
}

.call__call-link img {
    transition: transform .2s ease-in-out;
}

.call__call-link:hover img {
    transform: scale(1.1);
}

.call__call {
    margin-right: 7px;
}

.loss {
    margin-bottom: 70px;
}

.loss__header {
    color: #123372;
    font-size: 23px;
    letter-spacing: 1px;
    font-weight: 600;
    padding-left: 60px;
    margin-bottom: 60px;
}

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

.loss__item {
    width: calc(50% - 10px);
    border: 1px solid #d9d9dc;
    margin-bottom: 25px;
}

.loss__link {
    display: block;
    color: #000000;
    font-size: 30px;
    letter-spacing: .3px;
    padding-top: 59px;
    padding-left: 67px;
    padding-right: 10px;
    padding-bottom: 58px;
    transition: text-shadow .2s ease-in-out;
}

.loss__link:hover {
    text-shadow: 1px 2px 4px #262626;
}

.loss__link_other {
    position: relative;
    background-color: #f1f2f2;
    color: #123372;
    text-align: right;
    padding-right: 120px;
}


.loss__link_oom {
    background-image: url(../images/loss_oom.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_uvso {
    background-image: url(../images/loss_uvso.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_ovmdtp {
    background-image: url(../images/loss_ovmdtp.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_vnvpd {
    background-image: url(../images/loss_vnvpd.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_pvz {
    background-image: url(../images/loss_pvz.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_pog {
    background-image: url(../images/loss_pog.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_ppzss {
    background-image: url(../images/loss_ppzss.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_ubn {
    background-image: url(../images/loss_ubn.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_upn {
    background-image: url(../images/loss_upn.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_vvod {
    background-image: url(../images/loss_vvod.png);
    background-repeat: no-repeat;
    background-position: 93% center;
}

.loss__link_other::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-left: 3px solid #123372;
    border-bottom: 3px solid #123372;
    transform: rotate(225deg);
    top: 30%;
    right: 60px;
    transition: right .2s ease-in-out, border-left .2s ease-in-out, border-bottom .2s ease-in-out;
}

.loss__link_other:hover::after {
    right: 50px;
    border-left: 5px solid #123372;
    border-bottom: 5px solid #123372;
}

.loss__page>.loss__list>.loss__item>.loss__link {
    font-size: 20px;
    padding-left: 30px;
    padding-right: 115px;
    padding-top: 35px;
    padding-bottom: 35px;
}

.task {
    background-color: #123372;
    padding-top: 79px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 86px;
    margin-bottom: 143px;
}

.task__header {
    color: #ffffff;
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: 400;
    text-align: center;
}

.contacts {
    margin-bottom: 50px;
}

.contacts__header {
    color: #123372;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 400;
    padding-left: 60px;
    margin-bottom: 17px;
}

.contacts__bg {
    background-color: #100604;
}

.contacts_info {
    background-image: url(/images/contact.png);
    background-repeat: no-repeat;
    background-position: 50% top;
    background-size: 90%;
    padding-top: 59px;
    padding-left: 63px;
    padding-bottom: 510px;
}

.contacts__name {
    color: #ffffff;
    font-style: italic;
    font-size: 35px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: .8px;
    margin-bottom: 35px;
}

.contacts__work {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.about {
    margin-bottom: 30px;
}

.about__text {
    font-size: 27px;
    line-height: 36px;
    letter-spacing: .3px;
    text-align: justify;
    margin-bottom: 0px;
}

.about__title {
    font-size: 27px;
    font-weight: 400;
    letter-spacing: .3px;
    text-align: justify;
    margin-bottom: 33px;
}

.footer {
    padding-top: 170px;
}

.footer__logo {
    text-align: center;
    margin-bottom: 10px;
}

.footer__logo-link {
    transition: filter .2s ease-in-out;
}

.footer__logo-link:hover {
    filter: drop-shadow(3px 5px 10px #123372);
}

.footer__text {
    background-color: #f1f2f2;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;

}

.footer__contacts, .footer__tel {
    font-size: 25px;
    margin-bottom: 6px;
    color: #100604;
}

.footer__call {
    background: none;
    border: none;
    color: #123372;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: text-shadow .2s ease-in-out, transform .2s ease-in-out;
}

.footer__call:hover {
    transform: scale(1.1);
    text-shadow: 1px 2px 4px #123372;
}

.footer__copy {
    color: #939598;
    font-size: 24px;
    font-weight: 400;

}

.comments, .practic {
    padding: 10px 0;
    border-bottom: 1px solid #4c4c4c;
    margin-bottom: 20px;
}

.comments__title, .practic__title {
    padding-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.comments__header,.practic__header {
    font-weight: 600;
    margin-bottom: 5px;
}

.comments__date {
    margin-bottom: 20px;
}

.comments__photo {
    margin-bottom: 20px;
    width: 125px;
}

.comments__name {
    margin-bottom: 5px;
    font-weight: 600;
}

.comments__staj {
    margin-bottom: 5px;
}

.comments__auto {
    margin-bottom: 20px;
}

.comments__comment {
    margin-bottom: 20px;
}

.comments__img-list, .practic__img-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.comments__img-item, .practic__img-item {
    margin-right: 5px;
    margin-bottom: 5px;
    width: 100px;
    height: 150px;
}

.comments__link, .practic__link {
    position: relative;
    color: #140d0b;
    font-size: 20px;
    margin-bottom: 5px;
    padding-left: 10px;
    transition: text-shadow .2s ease-in-out;
}

.comments__link::before, .practic__link::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 10px;
    left: 0;
    /*border-bottom: 2px solid #140d0b;*/
    /*border-left: 2px solid #140d0b;*/
    background-color: #140d0b;
    border-radius: 3px;
    transform: rotate(45deg);
    transition: left .2s ease-in-out;
}

.comments__link:hover, .practic__link:hover {
    text-shadow: 1px 2px 4px #140d0b;
}

.comments__link:hover::before, .practic__link:hover::before {
    left: -3px;
}

.comments__more {
    background: none;
    border: 2px solid #123372;
    border-radius: 10px;
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
    transition: transform .2s linear;
}

.comments__more:hover {
    transform: scale(1.1);
}


.practic__date, .practic__place1, .practic__place2 {
    margin-bottom: 5px;
}

.practic__result {
    margin-bottom: 20px;
}

.public {
    position: relative;
}

.public__date {
    color: #000f46;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.public__header {
    color: #000f46;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.public__text {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.public__more {
    display: block;
    position: relative;
    color: #000f46;
    font-size: 20px;
    letter-spacing: .3px;
    transition: text-shadow .2s ease-in-out;
}

.public__more:hover {
    text-shadow: 1px 2px 7px #787878;
}

.public__more::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 1px solid #123372;
    border-bottom: 1px solid #123372;
    transform: rotate(225deg);
    top: 20%;
    left: 135px;
    transition: left .2s ease-in-out, border-left .2s ease-in-out, border-bottom .2s ease-in-out;
}

.public__more:hover::after {
    left: 150px;
    border-left: 3px solid #123372;
    border-bottom: 3px solid #123372;
}

.up1, .up2{
    background-repeat: no-repeat;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 25px;
}

.up1 {
    background-image: url("../images/icon-h1.png");
}

.up2 {
    background-image: url("../images/icon-h2.png");
}

@media (max-width: 1560px) {
    .container {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }

    .home__wbl>.home__article {
	padding-left: 20px;
	padding-right: 20px;
    }

    .hero__title {
        left: 20px;
        right: 20px;
    }

    .description, .call {
        width: calc(100% - 40px);
    }

    .success_item {
        flex: 0 1 17%;
    }

    .success__item_more {
        flex: 0 1 24%;
    }

    .feedback__pic {
	width: 150px;
	height: 200px;
    }

    .feedback__title {
	font-size: 20px;
    }

    .feedback__text {
	font-size: 20px;
    }

    .loss__link {
        padding-right: 130px;
	font-size: 24px;
    }

    .loss__link_other {
        height: 100%;
    }


    .contacts_info {
	padding-bottom: 430px;
    }
}

@media (max-width: 1360px) {
    .mainmenu__link {
	font-size: 14px;
    }

    .mainmenu__link_arrow::after {
	bottom: 7px;
	width: 8px;
	height: 8px;
    }

    .description__title {
	padding-left: 15px;
	font-size: 30px;
	word-break: break-all;
    }

    .description_text {
	font-size: 23px;
    }

    .feedback__main {
	padding-top: 0;
    }

    .feedback__content {
        min-height: 611px;
    }

    .feedback__pic {
	width: 130px;
	height: 160px;
    }

    .feedback__name {
	font-size: 21px;
    }

    .feedback__title {
	font-size: 20px;
	word-break: break-word;
    }

    .feedback__text {
	font-size: 18px;
	background-size: 30px;
	padding-left: 32px;
	padding-right: 10px;
    }

    .feedback__more {
        padding-left: 32px;
    }

    .feedback__link::after {
        top: 50px;
        right: 3vw;
    }

    .feedback__link:hover::after {
        right: 2vw;
    }

    .success_item {
        flex: 0 0 auto;
        width: 18%;
    }

    .success__img {
        height: 270px;
	margin-bottom: 0;
    }

    .success__link::after {
        right: 0vw;
    }

    .success__link:hover::after {
        right: -.5vw;
    }


    .success__title {
	font-size: 20px;
    }

    .success__border {
	padding-left: 18px;
    }

    .call__info {
        padding-top: 0;
    }

    .loss__link {
	font-size: 18px;
    }

    .contacts_info {
	padding-bottom: 330px;
    }

    .about__text,.about__title {
        font-size: 25px;
    }
}

@media (max-width: 1252px) {
    .feedback__text {
        font-size: 15px;
    }
}

@media (max-width: 1130px) {
    .container {
        padding-right: 0;
        padding-left: 0;
    }

    .mainmenu {
        display: flex;
	margin-top: -45px;
    }

    .mainmenu__list {
        display: none;
    }

    .header {
        padding-top: 10px;
    }

    .header_fixed>.header__icons {
        display: flex;
    }

    .header__burger {
        display: block;
	    margin-top: 20px;
        margin-bottom: 60px;
    }


    .header__icons {
        margin-bottom: 0;
    }

    .home {
        padding-left: 20px;
	    padding-right: 20px;
    }

    .header__logo {
        margin-left: 32px;
    }

    .header__call,.header__write,.header__phone {
        margin-top: 20px;
    }

    .header__phone {
	    margin-right: 80px;
        line-height: 30px;
    }

    .hero__title {
        left: 0;
        right: 0;
        font-size: 42px;
        line-height: 55px;
        padding-top: 5px;
        padding-bottom: 3px;
    }

    .description {
        padding-top: 8px;
        border: none;
        border-bottom: 1px solid #d9d9d9;
        align-items: unset;
        padding-bottom: 36px;
        margin-bottom: 56px;
    }

    .description_text {
        padding-right: 0;
    }

    .description__title {
        font-size: 25px;
        padding-left: 10px;
        line-height: 29px;
        padding-top: 5px;
    }

    .result {
        margin-bottom: 66px;
    }

    .result__item {
        padding-top: 39px;
        padding-left: 39px;
        padding-bottom: 35px;
    }

    .feedback {
        margin-bottom: 113px;
    }

    .feedback__content {
        min-height: 480px;
    }

    .feedback__header {
        padding-left: 27px;
    }

    .feedback__swiper {
        padding: 0 73px;
        position: relative;
    }

    .feedback__item {
        padding-top: 15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .feedback__info {
        padding-bottom: 11px;
        margin-bottom: 19px;
    }

    .feedback__pic {
        width: 114px;
        height: 146px;
    }

    .feedback__main {
        padding-top: 12px;
        padding-left: 16px; 
    }

    .feedback__name {
        font-size: 14px;
        letter-spacing: .2px;
        margin-bottom: 4px;
    }

    .feedback__date {
        font-size: 10px;
        letter-spacing: .2px;
        margin-bottom: 8px;
    }

    .feedback__title {
        font-size: 14px;
    }

    .feedback__title span {
        display: block;
        line-height: 50px;
    }

    .feedback__text {
        background-size: 20px;
        padding-left: 30px;
        padding-top: 10px;
        padding-right: 12px;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: .5px;
        text-align: justify;
    }

    .feedback__more {
        padding-left: 30px;
        font-size: 15px;
        width: 130px;
    }

    .feedback__more::after {
        width: 8px;
        height: 8px;
        bottom: 5px;
        right: -14px;
    }

    /*.feedback__item_more {*/
    /*    padding-top: 214px;*/
    /*    padding-left: 19px;*/
    /*    padding-right: 19px;*/
    /*    padding-bottom: 233px;*/
    /*}*/

    .feedback__item_more {
        display: none;
    }

    .feedback__link {
        font-size: 19px;
    }

    .feedback__link::after {
        right: 2vw;
    }

    .feedback__link:hover::after {
        right: 1vw;
    }

    .feedback__left, .feedback__right {
        display: block;
    }

    .feedback__footer {
        display: block;
        border: 1px solid #123372;
        border-radius: 16px;
    }

    .success {
        margin-bottom: 108px;
    }

    .success__header {
        font-size: 23px;
        letter-spacing: 1.1px;
        padding-left: 29px;
        margin-bottom: 22px;
    }

    .success__bg {
        padding-top: 34px;
        padding-left: 28px;
        padding-right: 41px;
        padding-bottom: 59px;
    }

    .success__description {
        font-size: 24px;
        letter-spacing: .3px;
        margin-bottom: 62px;
    }

    .success__list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .success_item {
        flex: 0 1 24%;
        margin: 0 0.5%;
        margin-bottom: 73px;
    }

    .success__item_more {
        flex: 0 1 50%;
        margin-bottom: 10px;
    }

    .success__border {
        padding-top: 41px;
        padding-left: 47px;
        padding-right: 20px;
        padding-bottom: 30px;
    }

    .success__view {
        margin-bottom: 0px;
    }

    .success__view span {
        display: block;
    }

    .success__link {
        margin-bottom: 5px;
    }

    .success__link::after {
        right: 10vw;
    }

    .success__link:hover::after {
        right: 8vw;
    }

    .video {
        margin-bottom: 123px;
    }

    .video__header {
        padding-left: 30px;
        margin-bottom: 26px;
    }

    .video__content {
        width: 95%;
        height: 76vh;
        margin-left: 28px;
    }
    
    .call {
        width: 100%;
        padding-top: 40px;
        padding-bottom: 21px;
    margin-bottom: 97px;
    }

    .call__icon {
        margin-right: 45px;
        margin-left: 26px;
        flex: 1 0 13%;
    }

    .call__title {
        font-size: 27px;
        line-height: 38px;
        margin-bottom: 32px;
    }

    .call_phone {
        font-size: 32px;
        margin-right: 43px;
        letter-spacing: .6px;
    }

    .call__write, .call__call {
        margin-right: 10px;
        width: 35px;
    }

    .loss {
        margin-bottom: 51px;
    }

    .loss__header {
        padding-left: 29px;
        margin-bottom: 41px;
    }

    .loss__item {
        width: 100%;
        margin-bottom: 0;
    }

    .loss__link {
        padding-right: 126px;
        padding-top: 50px;
        padding-left: 16vw;
        padding-right: 10px;
        padding-bottom: 60px;
    }

    .loss__link_oom,.loss__link_uvso,.loss__link_ovmdtp,.loss__link_vnvpd,.loss__link_pvz {
        background-position: 80% center;
    }

    .loss__link_other {
        text-align: left;
        padding-left: 30vw;
    }

    .loss__link_other::after {
        right: 38%;
    }

    .loss__link_other:hover::after {
        right: 37%;
    }

    .task {
        padding-top: 84px;
        padding-bottom: 104px;
        margin-bottom: 114px;
    }

    .task__header {
        font-size: 29px;
    }

    .contacts {
        background-color: #140d0b;
        padding-top: 30px;
        margin-bottom: 45px;
        text-align: center;
    }

    .contacts__header {
        color: #ffffff;
    }

    .contacts_info {
        background-position: 70% top;
        background-size: cover;
        padding-top: 38px;
        padding-left: 129px;
        padding-bottom: 619px;
        text-align: left;
    }

    .contacts__name {
        font-size: 30px;
    }

    .about {
        padding: 0 40px;
        margin-bottom: 30px;
    }

    .about__text {
        letter-spacing: .8px;
    }

    .about__text,.about__title {
        font-size: 23px;
    }

    .footer {
        padding-top: 163px;
    }

    .footer__logo {
        margin-bottom: 5px;
    }

    .footer__text {
        padding-top: 14px;
        padding-bottom: 20px;
    }

    .footer__contacts {
        font-size: 25px;
        margin-bottom: 6px;
        letter-spacing: -.4px;
    }
}

@media (max-width: 993px) {
    .home__sbl {
        width: 100%;
    }

    .mob-menu {
        top: 0;
    }

    .mob-menu__header {
        padding-top: 55px;
    }

    .header {
        padding-top: 9px;
        padding-bottom: 0px;
    }

    .header__logo {
        margin-left: 4px;
        margin-bottom: 3px;
        width: 91px;
    }

    .header__call,.header__write {
        width: 17px;
    }

    .header__write {
        margin-left: 5px;
        margin-top: 2px;
    }

    .header__call {
        margin-top: 1px;
    } 

    .header__phone {
        margin-top: -4px;
        margin-right: 45px;
        margin-left: 7px;
        font-size: 13px;
        letter-spacing: 0.6px;
    }

    .header__burger {
        width: 23px;
        height: 19px;
        margin-top: 1px;
        margin-left: 10px;
        margin-right: 12px;
	    margin-bottom: 51px;
    }

    .burger__line {
        height: 2px;
    }

    .hero {
        overflow-x: hidden;
        margin-bottom: 32px;
    }


    .hero__img {
        max-width: 160% !important;
        margin-left: -23vw;
    }

    .hero__title {
        font-size: 17px;
        line-height: 20px;
    }

    .description {
        display: block;
        padding-top: 0px;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 16px;
        margin-bottom: 49px;
    }

    .description__title {
        font-size: 14px;
        line-height: 17px;
        padding-left: 0;
        margin-bottom: 8px;
    }    

    .description_text {
        margin-left: 0px;
        font-size: 14px;
        line-height: 16.8px;
        text-align: justify;
    }

    .result {
        margin-bottom: 82px;
    }

    .result__header {
        font-size: 14px;
        letter-spacing: .3px;
        margin-bottom: 16px;
    }

    .result__item {
        width: 32.5%;
        padding-top: 32px;
        padding-left: 21px;
        padding-right: 20px;
        padding-bottom: 17px;
    }

    .result__title {
        font-size: 24px;
        line-height: 17px;
        margin-bottom: 2px;
    }

    .result__text {
        font-size: 11px;
        line-height: 14px;
    }

    .result__img {
        max-width: 20px;
    }

    .feedback {
        margin-bottom: 78px;
    }

    .feedback__header {
        padding-left: 21px;
        font-size: 14px;
        letter-spacing: .6px;
        margin-bottom: 13px;
    }

    .feedback__content {
        min-height: 200px;
    }

    .feedback__item_more {
        padding-top: 178px;
        padding-left: 19px;
        padding-right: 19px;
        padding-bottom: 210px;
    }

    .feedback__swiper {
        padding: 0 39px;
    }

    .feedback__pic {
        width: 70px;
        height: 91px;
        margin-left: 19px;
    }

    .feedback__info {
        padding-bottom: 15px;
        margin-bottom: 16px;
    }

    .feedback__main {
        padding-top: 3px;
        padding-left: 14px;
    }

    .feedback__title span {
        line-height: 20px;
    }

    .feedback__text {
        background-size: 12px;
        padding-left: 19px;
        padding-top: 6px;
        padding-right: 12px;
        font-size: 13px;
        line-height: 14.5px;
    }

    .feedback__more {
        padding-left: 19px;
    }

    .feedback__left, .feedback__right {
        width: 35px;
        height: 35px;
    }

    .feedback__footer {
        width: 320px;
        padding-top: 15px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 80px;
    }

    .success {
        margin-bottom: 37px;
    }

    .success__header {
        font-size: 14px;
        letter-spacing: .6px;
        padding-left: 25px;
        margin-bottom: 14px;
    }

    .success__description {
        font-size: 14px;
        letter-spacing: .2px;
        margin-bottom: 32px;
    }

    .success__bg {
        padding-top: 13px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 0;
    }

    .success_item {
        margin: 0 2%;
        margin-bottom: 29px;
        width: 46%;
        flex: 0 0 46%;
    }

    .success__item_more {
        flex: 0 1 calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        margin-top: -12px;
        margin-bottom: 0;
        background-color: #ffffff;
        padding-top: 19px;
        padding-left: 39px;
        padding-right: 41px;
        padding-bottom: 10px;
    }

    .success__border {
        padding-top: 0px;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        background-color: #123372;
        border-radius: 16px;
    }

    .success__img {
        width: 100%;
        height: 57vw;
        margin-bottom: 0;
    }

    .success__title {
        font-size: 13px;
        padding: 0 10px;
    }

    .success__view,.success__view span {
        display: none;
    }

    .success__link {
        font-size: 14px !important;
        letter-spacing: .3px;
        padding-top: 20px;
        padding-left: 31px;
        padding-right: 10px;
        padding-bottom: 13px;
    }

    .success__link::after {
        top: 45%;
        right: 26px;
    }

    .video {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 51px;
    }

    .video__header {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .1px;
        padding-left: 25px;
        margin-bottom: 16px;
    }

    .video__content {
        width: 100%;
        height: 54vh;
        margin-left: 0;
    }

    .call {
        padding-top: 16px;
        padding-bottom: 8px;
        margin-bottom: 54px;
    }

    .call__info {
        padding-top: 4px;
    }

    .call__icon {
        margin-right: 0;
        margin-left: 16px;
        flex: 1 0 25%;
    }

    .call__title {
        font-size: 14px;
        letter-spacing: .9px;
        line-height: 16.5px;
        margin-bottom: 27px;
        padding-left: 24px;
    }
    
    .call__write, .call__call {
        margin-right: 4px;
        width: 18px;
    }

    .call_phone {
        font-size: 18px;
        margin-right: 0px;
        padding-left: 8px;
        letter-spacing: .3px;
        text-align: left;
    }

    .loss {
        margin-bottom: 33px;
    }

    .loss__header {
        font-size: 14px;
        letter-spacing: .2px;
        font-weight: 600;
        padding-left: 20px;
        margin-bottom: 11px;
    }

    .loss__link {
        font-size: 14px;
        padding-top: 22px;
        padding-left: 7vw;
        padding-right: 31vw;
        padding-bottom: 35px;
        background-size: 43px;
        background-position: 90% center;
    }

    .loss__link_other {
        font-size: 18px;
        padding-top: 32px;
        padding-left: 8vw;
        padding-right: 11vw;
        padding-bottom: 31px;
    }

    .loss__link_other::after {
        width: 30px;
        height: 30px;
        border-left: 2px solid #123372;
        border-bottom: 2px solid #123372;
        right: 14%;
    }

    .task {
        padding-top: 48px;
        padding-bottom: 54px;
        margin-bottom: 47px;
    }

    .task__header {
        font-size: 18px;
        line-height: 21.6px;
        letter-spacing: .3px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .contacts {
        padding-top: 15px;
        margin-bottom: 22px;
    }

    .contacts__header {
        font-size: 14px;    
        letter-spacing: .7px;
        margin-bottom: 14px;
    }

    .contacts_info {
        background-position: 70% 10%;
        background-size: 90%;
        padding-top: 1px;
        padding-left: 22px;
        padding-bottom: 259px;
    }

    .contacts__name {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 20px;
    }

    .contacts__work {
        font-size: 12px;
    }

    .about {
        padding: 0 25px;
        margin-bottom: 30px;
    }

    .about__text {
        font-size: 14px;
        line-height: 16.7px;
        /*margin-bottom: 18px;*/
    }

    .about__title {
        font-size: 15px;
        font-weight: 400;
    }

    .footer {
        padding-top: 28px;
    }

    .footer__logo {
        width: 45%;
        margin: 5px auto;
        margin-bottom: 1px;
    }

    .footer__text {
        padding-top: 7px;
        padding-bottom: 10px;

    }

    .footer__contacts {
        font-size: 14px;
        margin-bottom: 6px;
        letter-spacing: -.4px;
        padding-right: 20%;
        padding-left: 20%;
        margin-bottom: 17px;
    }

    .footer__call {
        font-size: 14px;
        margin-bottom: 17px;
    }

    .footer__copy {
        font-size: 14px;
    }

}