/* roboto-regular - latin_cyrillic */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("../font/Roboto/roboto-regular.eot"); /* IE9 Compat Modes */
    src: local(""), url("../font/Roboto/roboto-regular.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */ url("../font/Roboto/roboto-regular.woff2") format("woff2"),
        /* Super Modern Browsers */ url("../font/Roboto/roboto-regular.woff") format("woff"),
        /* Modern Browsers */ url("../font/Roboto/roboto-regular.ttf") format("truetype"),
        /* Safari, Android, iOS */ url("../font/Roboto/roboto-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-italic - latin_cyrillic */
@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 400;
    src: url("../font/Roboto/roboto-italic.eot"); /* IE9 Compat Modes */
    src: local(""), url("../font/Roboto/roboto-italic.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */ url("../font/Roboto/roboto-italic.woff2") format("woff2"),
        /* Super Modern Browsers */ url("../font/Roboto/roboto-italic.woff") format("woff"),
        /* Modern Browsers */ url("../font/Roboto/roboto-italic.ttf") format("truetype"),
        /* Safari, Android, iOS */ url("../font/Roboto/roboto-italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-500 - latin_cyrillic */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 500;
    src: url("../font/Roboto/roboto-500.eot"); /* IE9 Compat Modes */
    src: local(""), url("../font/Roboto/roboto-500.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */ url("../font/Roboto/roboto-500.woff2") format("woff2"),
        /* Super Modern Browsers */ url("../font/Roboto/roboto-500.woff") format("woff"),
        /* Modern Browsers */ url("../font/Roboto/roboto-500.ttf") format("truetype"),
        /* Safari, Android, iOS */ url("../font/Roboto/roboto-500.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700 - latin_cyrillic */
@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 700;
    src: url("../font/Roboto/roboto-700.eot"); /* IE9 Compat Modes */
    src: local(""), url("../font/Roboto/roboto-700.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */ url("../font/Roboto/roboto-700.woff2") format("woff2"),
        /* Super Modern Browsers */ url("../font/Roboto/roboto-700.woff") format("woff"),
        /* Modern Browsers */ url("../font/Roboto/roboto-700.ttf") format("truetype"),
        /* Safari, Android, iOS */ url("../font/Roboto/roboto-700.svg#Roboto") format("svg"); /* Legacy iOS */
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus {
    outline-style: none;
    outline-width: 0px !important;
    outline-color: none !important;
}

a {
    /*color: #005bff;*/
    color: #2b8de7;
    text-decoration: none;
    cursor: pointer;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
    color: #2e3c47;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    min-width: 360px;
    overflow-x: hidden;
}

.container {
    max-width: 1230px;
    padding: 0 30px;
    margin: 0 auto;
}

iframe {
    border: none;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

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

h1,
.h1 {
    font-weight: 700;
    font-size: 44px;
    color: #333333;
    margin: 16px 0;
}

h2,
.h2 {
    font-weight: 700;
    font-size: 32px;
    color: #2e3c47;
    margin: 16px 0;
}

h3,
.h3 {
    font-size: 19px;
    font-weight: 700;
}

h4,
.h4 {
    font-size: 17px;
    font-weight: 700;
}

h5,
.h5 {
    font-size: 17px;
    font-weight: 700;
}

.btn-1 {
    padding: 18px 37px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff2336;
    border-radius: 12px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
}

.btn-1:hover {
    opacity: 0.8;
}

.btn-2 {
    padding: 14px 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #ff2336;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    color: #ff2336;
}

.btn-2:hover {
    opacity: 0.8;
}

.btn-2_with-arrow:after {
    content: "";
    background-image: url("../image/icon/btn-right.svg");
    width: 12px;
    height: 14px;
    margin-left: 15px;
}

.btn-2_with-arrow:hover:after {
    filter: brightness(0) invert(1);
}

.btn-3 {
    padding: 14px 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    background: #333335;
    border-radius: 5px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-3:hover {
    opacity: 0.8;
}

.btn-3_with-arrow:after {
    content: "";
    background-image: url("../image/icon/btn-right.svg");
    filter: brightness(0) invert(1);
    width: 12px;
    height: 14px;
    margin-left: 15px;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}
input:focus:-moz-placeholder {
    color: transparent;
} /* FF 4-18 */
input:focus::-moz-placeholder {
    color: transparent;
} /* FF 19+ */
input:focus:-ms-input-placeholder {
    color: transparent;
} /* IE 10+ */

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}
textarea:focus:-moz-placeholder {
    color: transparent;
} /* FF 4-18 */
textarea:focus::-moz-placeholder {
    color: transparent;
} /* FF 19+ */
textarea:focus:-ms-input-placeholder {
    color: transparent;
} /* IE 10+ */

.popup-gallery img {
    cursor: zoom-in;
}

.popup-gallery_zoom img {
    cursor: zoom-in;
}

.section {
    margin-top: 60px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

.section-head__button a {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #2e3c47;
}

.section-head__button a:hover {
    opacity: 0.8;
}

.section-head .section-head__title {
    margin: 0;
}

.hidden {
    display: none;
}

.mfp-hide {
    display: none;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 20px;
    margin-top: 15px;
}

.breadcrumbs .breadcrumbs__items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs .breadcrumbs__item {
    display: flex;
    align-items: center;
    color: #838383;
    font-weight: 400;
    font-size: 16px;
}

.breadcrumbs .breadcrumbs__item:after {
    padding: 0 5px;
    color: #58595b;
    content: ">";
    font-size: 16px;
}

.breadcrumbs .breadcrumbs__item:last-child:after {
    display: none;
}

.breadcrumbs .breadcrumbs__item > a {
    color: #2b8de7;
    text-decoration: none;
}

.breadcrumbs .breadcrumbs__item > a:hover {
    opacity: 0.8;
}

/* Form */
.form__field {
    margin-top: 16px;
    position: relative;
}

.form__field_sk {
	display: none;
}

.form__button {
    margin-top: 16px;
}

.form__field input {
    color: #2e3c47;
    border: none;
    background: #ffffff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 400;
    height: 60px;
    width: 100%;
    padding-left: 16px;
}

.form__field .input-custom-error {
    color: #ff2336;
    font-size: 12px;
    margin-top: 2px;
    position: absolute;
    bottom: 0;
    left: 16px;
}

.form__fields-horizontal {
    display: flex;
}

.form__fields-horizontal .form__field {
    flex: 1;
    margin-left: 25px;
    margin-top: 0;
}

.form__fields-horizontal .form__field:first-child {
    margin-left: 0;
}

.form__fields-horizontal .form__button {
    /*flex: 1;*/
    margin-left: 25px;
    margin-top: 0;
}

.form__fields-horizontal .form__button .btn {
    height: 100%;
}

.form__agree {
    display: none;
}

.form__agreement {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    margin-top: 13px;
}

.form__agreement a {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    text-decoration: underline;
}

.form__agreement a:hover {
    text-decoration: none;
}

/* для элемента input c type="checkbox" */
.form__agreement .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.form__agreement .checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

/* создание в label псевдоэлемента before со следующими стилями */
.form__agreement .checkbox + label::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 3px solid #333333;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-right: 18px;
}

/* стили при наведении курсора на checkbox */
.form__agreement .checkbox:not(:disabled):not(:checked) + label:hover::before {
    /*border-color: #b3d7ff;*/
}

/* стили для активного чекбокса (при нажатии на него) */
.form__agreement .checkbox:not(:disabled):active + label::before {
    /*background-color: #b3d7ff;
  border-color: #b3d7ff;*/
}

/* стили для чекбокса, находящегося в фокусе */
.form__agreement .checkbox:focus + label::before {
    /*box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);*/
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.form__agreement .checkbox:focus:not(:checked) + label::before {
    /*border-color: #80bdff;*/
}

/* стили для чекбокса, находящегося в состоянии checked */
.form__agreement .checkbox:checked + label::before {
    background-image: url('data:image/svg+xml,%0A%3Csvg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M2 5L5.5 9L12.5 1" stroke="%23333333" stroke-width="3" stroke-linejoin="round"/%3E%3C/svg%3E');
}

/* стили для чекбокса, находящегося в состоянии disabled */
.form__agreement .checkbox:disabled + label::before {
    /*background-color: #e9ecef;*/
}

/* Custom Form */
.custom-form {
    width: 370px;
    background: #ffffff;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12), 2px 2px 12px rgba(46, 60, 71, 0.13);
    border-radius: 8px;
}

.custom-form__content {
    padding: 24px 16px;
    text-align: center;
}

.custom-form__title {
    font-weight: 700;
    font-size: 24px;
    color: #2e3c47;
}

.custom-form .form__field input {
    background: #e8f6f7;
    border-radius: 4px;
}

.custom-form .form__agreement {
    font-weight: 400;
    font-size: 14px;
    color: #4f4f4f;
    text-align: left;
}

.custom-form .form__agreement a {
    font-weight: 400;
    font-size: 14px;
    color: #4f4f4f;
}

.custom-form .form__button .form__btn {
    width: 100%;
    justify-content: center;
}

.tabs-nav-mobile {
    display: none;
}

/* Form Full Width */
.form-full-width__content {
    padding: 30px 0;
}

.form-full-width__title {
    font-weight: 700;
    font-size: 20px;
    color: #e8f6f7;
    margin-bottom: 16px;
}

.form-full-width .form__agreement {
    font-weight: 400;
    font-size: 16px;
    color: #e8f6f7;
}

.form-full-width .form__agreement a {
    font-weight: 400;
    font-size: 16px;
    color: #e8f6f7;
}

.form-full-width .form__agreement .checkbox + label::before {
    border: 3px solid #e8f6f7;
}

.form-full-width .form__agreement .checkbox:checked + label::before {
    background-image: url('data:image/svg+xml,%0A%3Csvg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M2 5L5.5 9L12.5 1" stroke="%23E8F6F7" stroke-width="3" stroke-linejoin="round"/%3E%3C/svg%3E');
}

/* Tabs */
.tabs ul.tabs-nav {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.tabs ul.tabs-nav > li {
    width: 100%;
    text-align: center;
    position: relative;
}

.tabs ul.tabs-nav > li span {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
    background: #e8f6f7;
    border-radius: 4px;
}

.tabs ul.tabs-nav > li.active span {
    background: #2e3c47;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25), 2px 2px 8px rgba(46, 60, 71, 0.24);
    border-radius: 4px;
    color: #f2f2f2;
}

.tabs .tabs-items .tabs-item {
    padding: 20px 0;
    display: none;
}

.tabs .tabs-items .tabs-item.active {
    display: block;
}

/* Pagination */
.pagination {
    margin: 20px 0 30px 0;
}

.pagination .pagination__links {
    display: flex;
    align-items: center;
    line-height: 1;
    justify-content: center;
    margin: 0 -3.5px;
}

.pagination__link {
    padding: 0 3.5px;
}

.pagination .pagination__link > a,
.pagination .pagination__link > b {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #e8f6f7;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
}

.pagination .pagination__link > a.pagination__link-control {
    display: flex;
    width: auto;
    padding: 14.5px 16px;
    align-items: center;
}

.pagination .pagination__link > a.pagination__link-control_prev {
    /*border-radius: 5px 0 0 5px;*/
}

.pagination .pagination__link > a.pagination__link-control_prev:before {
    content: "";
    background-image: url("../image/icon/pagination-prev.svg");
    background-size: cover;
    width: 8px;
    height: 14px;
    margin-right: 20px;
    margin-top: 1px;
}

.pagination .pagination__link > a.pagination__link-control_next {
    /*border-radius: 0 5px 5px 0;*/
}

.pagination .pagination__link > a.pagination__link-control_next:after {
    content: "";
    background-image: url("../image/icon/pagination-next.svg");
    background-size: cover;
    width: 8px;
    height: 14px;
    margin-left: 20px;
    margin-top: 1px;
}

.pagination .pagination__link > a:hover {
    opacity: 0.8;
}

.pagination .pagination__link > b {
    color: #fff;
    background: #2e3c47;
    border-radius: 6px;
}

.pagination .pagination__results {
    margin-top: 15px;
    text-align: center;
}

.show-more {
    border: 1px solid #2e3c47;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
    height: 60px;
    cursor: pointer;
}

/* Carousel */
.carousel .slick-prev,
.carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 88px;
    height: 88px;
    display: block;
    transition: all ease 0.3s;
    cursor: pointer;
    background-size: 100%;
    z-index: 1;
}

.carousel .slick-prev {
    right: 100%;
    margin-right: -19px;
    background: url("../image/icon/slide-left.svg") no-repeat 50% 50%;
    background-size: cover;
}

.carousel .slick-next {
    left: 100%;
    margin-left: -10px;
    background: url("../image/icon/slide-right.svg") no-repeat 50% 50%;
    background-size: cover;
}

.carousel .slick-arrow.slick-disabled {
    opacity: 0.3;
}

/* Header */
.header__content {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 15px 0;
}

.header__descriptor {
    color: #727272;
    font-size: 14px;
    margin-top: 3px;
}

.header__geography {
    text-align: center;
}

.header__geography-title {
    font-weight: 400;
    font-size: 14px;
    color: #727272;
}

.header__geography-image img {
    margin: 0 auto;
}

.header__messenger-title {
    font-weight: 400;
    font-size: 14px;
    color: #727272;
	text-align: center;
}

.header__messenger-title a {
    color: #727272;
}

.header__messenger-items {
    display: flex;
    justify-content: space-evenly;
    margin-top: 5px;
}

.header__messenger-items > a {
    margin-left: 8px;
}

.header__messenger-items > a:first-child {
    margin-left: 0;
}

.header__phone-text a {
    font-weight: 700;
    font-size: 24px;
    color: #2e3c47;
}

.header__social-links {
    display: flex;
    margin: 0 -5px;
    margin-top: 8px;
}

.header__social-links > a {
    padding: 0 5px;
}

.header-menu {
    background: #2e3c47;
}

.header-menu__content {
    display: flex;
}

.header-menu__item {
    margin-left: 24px;
    padding: 19px 0;
    position: relative;
}

.header-menu__item:first-child {
    margin-left: 0;
}

.header-menu__item > a,
.header-menu__item > span {
    font-weight: 400;
    font-size: 16px;
    color: #f2f2f2;
    cursor: pointer;
}

.header-menu__item > .active {
    border-bottom: 1px solid #ff2336;
}

.header-menu__submenu {
    display: none;
    position: absolute;
    background: #ffffff;
    box-shadow: 1px 2px 10px rgb(0 0 0 / 10%);
    border-radius: 0px 0px 5px 5px;
    width: 225px;
    padding: 20px 20px;
    z-index: 10;
    top: 100%;
}

.header-menu .header-menu__item_has-child:hover .header-menu__submenu {
    display: block;
}

.header-menu__item.header-menu__item_has-child {
    display: flex;
    align-items: center;
}

.header-menu__item.header-menu__item_has-child:after {
    content: "";
    background: url("../image/icon/dropdown-arrow.svg") no-repeat;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    flex: none;
}

.header-menu__submenu-item > a {
    font-size: 16px;
    color: #333335;
}

.header-menu__submenu-item {
    margin-top: 30px;
}

.header-menu__submenu-item:first-child {
    margin-top: 0;
}

.header__consultation {
    text-align: center;
}

.header__consultation-text {
    font-weight: 400;
    font-size: 14px;
    color: #727272;
    margin-top: 8px;
}

.header__mobile {
    display: none;
}

/* Popup Form */
.form-magnific-popup .mfp-content {
    position: relative;
    background: #fff;
    max-width: 668px;
    margin: 45px auto 20px auto;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 12%), 2px 2px 12px rgb(46 60 71 / 13%);
    border-radius: 8px;
}

.popup-form {
    padding: 40px 60px;
}

.popup-form__close {
    display: inline-flex;
    align-items: center;
    position: absolute;
    bottom: 100%;
    right: 0;
    font-weight: 400;
    font-size: 16px;
    color: #e8f6f7;
    margin-bottom: 10px;
    cursor: pointer;
}

.popup-form__close:hover {
    opacity: 0.8;
}

.popup-form__close:after {
    content: "";
    background-image: url("../image/icon/close.svg");
    width: 9px;
    height: 10px;
    margin-left: 16px;
}

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

.popup-form__title {
    font-weight: 700;
    font-size: 24px;
    color: #2e3c47;
}

.popup-form__subtitle {
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
    margin-top: 24px;
}

.popup-form__phone {
    margin-top: 24px;
}

.popup-form__phone a {
    font-weight: 700;
    font-size: 24px;
    color: #2e3c47;
}

.popup-form .form__field input {
    background: #e8f6f7;
    border-radius: 4px;
}

.popup-form .form__button .form__btn {
    width: 100%;
    justify-content: center;
}

.popup-form .form__agreement {
    color: #4f4f4f;
}

.popup-form .form__agreement a {
    color: #4f4f4f;
}

/* Employees */
.employee-carousel__items {
    overflow: hidden;
}

.employee-carousel__items.slick-initialized {
    overflow: visible;
}

.employee-carousel__items .slick-slide > div {
    height: 100%;
}

.employee-carousel__items {
    margin: 0 -15px;
    display: flex;
}

.employee-carousel .employee-carousel__card {
    padding: 0 15px;
    min-width: 300px;
    max-width: 300px;
    height: 100%;
}

.employee-carousel__items .slick-slide {
    width: 300px;
}

.employee-card {
    height: 100%;
    background: #e8f6f7;
    border-radius: 8px;
}

.employee-card__image img {
    margin: 0 auto;
    border-radius: 7px;
}

.employee-card__info {
    padding: 16px 12px;
}

.employee-card__name {
    font-weight: 700;
    font-size: 16px;
    color: #2e3c47;
}

.employee-card__position {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    margin-top: 12px;
}

.employee-card__description {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-top: 12px;
}

.employee-card__number-cases {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    margin-top: 12px;
}

.employee-card__number-cases > span {
    color: #333333;
}

.employee-card__link {
    margin-top: 15px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    border: none;
    background: transparent;
    font-weight: 400;
    font-size: 16px;
    color: #ff2336;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.employee-card__link:hover {
    opacity: 0.8;
}

.employee-card__link::before {
    content: "";
    background: url("../image/icon/document-fill.svg") no-repeat 50% 50%;
    background-size: cover;
    width: 18px;
    height: 22px;
    margin-left: 0px;
    margin-right: 7px;
}

/* Cases */
.case-carousel__subtitle {
    margin: 16px 0 24px 0;
    font-weight: 400;
    font-size: 16px;
    color: #838383;
}

.case-carousel__items {
    overflow: hidden;
}

.case-carousel__items.slick-initialized {
    overflow: visible;
}

.case-carousel__items .slick-slide > div {
    height: 100%;
}

.case-carousel__items {
    margin: 0 -15px;
    display: flex;
}

.case-carousel .case-carousel__card {
    padding: 0 15px;
    min-width: 300px;
    max-width: 300px;
    height: 100%;
}

.case-carousel .slick-slide {
    width: 300px;
}

.case-card {
    height: 100%;
    background: #e8f6f7;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.case-card__image img {
    margin: 0 auto;
}

.case-card__info {
    padding: 16px 12px;
    text-align: center;
    position: relative;
}

.case-card__info:before {
    content: "";
    background: linear-gradient(180deg, rgba(232, 246, 247, 0) 0%, #e8f6f7 100%);
    width: 100%;
    height: 30px;
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
}

.case-card__watch-btn {
    padding: 18.5px 26px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    border: none;
    background: #ffffff;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    color: #ff2336;
    width: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.case-card__watch-btn:hover {
    opacity: 0.8;
}

.case-card__watch-btn:after {
    content: "";
    background: url("../image/icon/document.svg") no-repeat 50% 50%;
    background-size: cover;
    width: 32px;
    height: 32px;
    margin-left: 7px;
}

.case-card__written-off-debt {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    margin-top: 12px;
}

.case-card__written-off-debt > span {
    font-weight: 700;
    font-size: 16px;
    color: #2e3c47;
}

.case-card__duration {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    margin-top: 12px;
}

.case-card__duration > span {
    font-weight: 700;
    font-size: 16px;
    color: #2e3c47;
}

.case-card__date-range {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    margin-top: 12px;
}

.case-card__name {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-top: 12px;
}

.case-card__city {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    margin-top: 12px;
}

/* Popup Case */
.case-magnific-popup .mfp-content {
    position: relative;
    max-width: 1170px;
    margin: 20px auto 20px auto;
}

.popup-case__close {
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: -30px;
    cursor: pointer;
}

.popup-case__close:hover {
    opacity: 0.8;
}

.popup-case__close:after {
    content: "";
    background-image: url(../image/icon/close.svg);
    background-size: cover;
    width: 20px;
    height: 22px;
}

.case-magnific-popup .mfp-content iframe {
    width: 100%;
    height: calc(100vh - 40px);
}

/* Video Reviews */
.video-review-card {
    background: #e8f6f7;
    border-radius: 8px;
}

.video-review-card__info {
    padding: 16px 12px;
}

.video-review-card__title {
    font-weight: 700;
    font-size: 16px;
    color: #2e3c47;
}

.video-review-card__description {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    margin-top: 12px;
}

.video-review-card__item-image {
    position: relative;
    cursor: pointer;
}

.video-review-card__item-image img {
    border-radius: 2px;
}

.video-review-card__item-image:before {
    content: "";
    background: linear-gradient(0deg, rgb(255 255 255 / 20%), rgb(255 255 255 / 20%));
    border-radius: 5px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-review-card__item-image:after {
    content: "";
    background-image: url("../image/icon/play-video.svg");
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-review-card__item-image iframe {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 100;
}

/* Reviews */
.review-carousel__items {
    overflow: hidden;
}

.review-carousel__items.slick-initialized {
    overflow: visible;
}

.review-carousel__items .slick-slide > div {
    height: 100%;
}

.review-carousel__items {
    margin: 0 -15px;
    display: flex;
}

.review-carousel .review-carousel__card {
    padding: 0 15px;
    min-width: 300px;
    max-width: 300px;
    height: 100%;
}

.review-carousel .slick-slide {
    width: 300px;
}

.review-card {
    background: #e8f6f7;
    border-radius: 2px;
    padding: 16px 12px;
    height: 100%;
}

.review-card__name {
    font-weight: 700;
    font-size: 16px;
    color: #2e3c47;
}

.review-card__profession {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    margin-top: 4px;
}

.review-card__info-items {
    margin-top: 12px;
}

.review-card__info-item {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.review-card__info-item:before {
    content: "";
    width: 19px;
    height: 19px;
    margin-right: 8px;
}

.review-card__info-item_duration:before {
    background: url("../image/icon/clock.svg") no-repeat 50% 50%;
}

.review-card__info-item_written-off-debt:before {
    background: url("../image/icon/cash.svg") no-repeat 50% 50%;
}

.review-card__info-item_city:before {
    background: url("../image/icon/map.svg") no-repeat 50% 50%;
}

.review-card__info-item > span {
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
    margin-left: 8px;
}

.review-card__info-item:first-child {
    margin-top: 0;
}

.review-card__review {
    margin-top: 12px;
}

.review-card__review-title {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
}

.review-card__review-text {
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
    margin-top: 4px;
    height: 150px;
    overflow: hidden;
}

.review-card .readmore-js-toggle {
    margin-top: 12px;
}

.review-card .readmore-js-toggle__btn {
    font-weight: 400;
    font-size: 16px;
    color: #838383;
    cursor: pointer;
}

.review-card__watch-btn {
    color: #ff2336;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}

.review-card__watch-btn:hover {
    opacity: 0.8;
}

.review-card__watch-btn:after {
    content: "";
    background: url("../image/icon/document.svg") no-repeat 50% 50%;
    background-size: cover;
    width: 32px;
    height: 32px;
    margin-left: 7px;
}

/* Articles */
.article-carousel__items {
    overflow: hidden;
}

.article-carousel__items.slick-initialized {
    overflow: visible;
}

.article-carousel__items .slick-slide > div {
    height: 100%;
}

.article-carousel__items {
    margin: 0 -15px;
    display: flex;
}

.article-carousel .article-carousel__card {
    padding: 0 15px;
    min-width: 369px;
    max-width: 369px;
    height: 100%;
}

.article-carousel .slick-slide {
    width: 369px;
}

.article-card {
    height: 100%;
    /*background: #E8F6F7;*/
    border-radius: 8px;
    display: block;
}

.article-card__image img {
    margin: 0 auto;
    border-radius: 2px;
}

.article-card__info {
    /*padding: 16px 12px;*/
    padding: 16px 0;
}

.article-card__title {
    font-weight: 700;
    font-size: 16px;
    color: #2e3c47;
}

.article-card__description {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-top: 12px;
}

/* You are getting */
.you-are-getting__items {
    display: flex;
    margin: 0 -15px;
}

.you-are-getting__items .slick-slide > div {
    height: 100%;
}

.you-are-getting__item {
    flex: 1;
    min-width: 300px;
    max-width: 300px;
    padding: 15px;
}

.you-are-getting__items .slick-slide .you-are-getting__item {
    height: 100%;
}

.you-are-getting__item-content {
    border-radius: 2px;
    height: 100%;
    background: #e8f6f7;
}

.you-are-getting__item-info {
    padding: 16px 12px;
}

.you-are-getting__item-title {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
}

.you-are-getting__item-text {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-top: 12px;
}

/* FAQ */
.questions__tab {
	border-bottom: 1px solid #E8F6F7;
    margin: 0;
    padding: 5px 0;
}

.questions__tabs dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    color: #2E3C47;
	padding: 10px 0;
}

.questions .questions__tabs dt:after {
	content: '';
    width: 44px;
    height: 44px;
    background: url('../image/icon/expand.svg') no-repeat 50% 0%;
}

.questions__tab_active dt {
    font-weight: 700;
    font-size: 16px;
    color: #2E3C47;
	border-bottom: 1px solid #E8F6F7;
}

.questions__tabs .questions__tab_active dt:after {
    background: url('../image/icon/collapse.svg') no-repeat 50% 0%;
}

.questions__tabs dd {
    display: none;
    margin: 20px 0;
    font-weight: 400;
    font-size: 16px;
    color: #2E3C47;
}


.questions__tabs dd ul {
  list-style: none;
}

.questions__tabs dd ul li::before {
  content: '';
  background-color: #FF2336;
  border-radius: 100%;
  color: #FF2336;
  width: 8px;
  height: 8px;
  margin-left: 0;
  margin-right: 20px;
  flex: none;
}

.questions__tabs dd ul li {
    display: flex;
    align-items: center;
    margin-top: 15px;
}


/* Form Widget */
.form-widget {
    background: #e8f6f7;
}

.form-widget__content {
    display: flex;
    align-items: center;
}

.form-widget__image {
    margin: -22px 30px -22px 0;
}

.form-widget__form {
    flex: 1;
    padding: 28px 0;
}

.form-widget__form-title {
    font-weight: 700;
    font-size: 20px;
    color: #2e3c47;
}

.form-widget .form__fields-horizontal {
    margin-top: 16px;
}

/* Footer */
.footer {
    background: #fff;
    padding: 80px 0 60px 0;
}

.footer__content {
    border-top: 1px solid #2e3c47;
    padding-top: 24px;
    display: flex;
}

.footer__descriptor {
    color: #727272;
    font-size: 14px;
    margin-top: 3px;
}

.footer__info {
    margin-right: 60px;
}

.footer__phone-block {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.footer__phone a {
    font-weight: 700;
    font-size: 24px;
    color: #2e3c47;
}

.footer__working-time {
    margin-left: 16px;
}

.footer__social-text {
    font-weight: 400;
    font-size: 14px;
    color: #727272;
    margin-left: 16px;
}

.footer__social {
    display: flex;
    align-items: center;
}

.footer__social-links {
    display: flex;
    justify-content: space-between;
    margin: 0 -4px;
}

.footer__social-links > a {
    padding: 0 4px;
}

.footer__social {
    margin-top: 7px;
}

.footer__email a {
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
}

.footer__email {
    margin-top: 8px;
}

.footer__copyright {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    margin-top: 24px;
}

.footer__columns {
    flex: 1;
    display: flex;
    margin: 0 -15px;
}

.footer__column {
    padding: 0 15px;
}

.footer__column-links > a {
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
    display: flex;
    margin-top: 12px;
}

.footer__column-links > a:first-child {
    margin-top: 0;
}

/* Info Popup */
.info-magnific-popup .mfp-content {
    position: relative;
    background: #fff;
    max-width: 550px;
    margin: 20px auto;
}

.info-popup {
    padding: 60px;
    text-align: center;
}

.info-popup .info-popup__close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.info-popup .info-popup__title {
    font-weight: 500;
    font-size: 36px;
    color: #333335;
}

.info-popup .info-popup__subtitle {
    font-size: 16px;
    color: #595959;
    margin-top: 10px;
}

.info-popup__btn {
    margin-top: 15px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fff;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 99;
    overflow: auto;
}

.mobile-menu__content {
    padding: 15px 30px;
    border-top: 1px solid #eee;
}

.mobile-menu__info {
    margin-top: 20px;
}

.mobile-menu__phone-block {
    margin-top: 24px;
}

.mobile-menu__phone a {
    font-weight: 700;
    font-size: 24px;
    color: #2e3c47;
}

.mobile-menu__working-time {
    margin-top: 6px;
}

.mobile-menu__social-text {
    display: none;
}

.mobile-menu__social-links {
    display: flex;
    margin: 0 -4px;
}

.mobile-menu__social-links > a {
    padding: 0 4px;
}

.mobile-menu__social {
    margin-top: 15px;
}

.mobile-menu__email a {
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
}

.mobile-menu__email {
    margin-top: 8px;
}

.mobile-menu__copyright {
    font-weight: 400;
    font-size: 16px;
    color: #727272;
    margin-top: 24px;
}

.mobile-menu__links > a {
    font-weight: 400;
    font-size: 16px;
    color: #2e3c47;
    display: flex;
    margin-top: 12px;
}

.mobile-menu__links > a:first-child {
    margin-top: 0;
}

.mobile-menu__button {
    padding-top: 24px;
    border-top: 1px solid #2e3c47;
    margin-top: 16px;
}

.mobile-menu__btn {
    width: 100%;
}

#button-up{
  display: none;	
  opacity:0.5;
  filter:alpha(opacity=50);
  position: fixed;
  right: 20px;
  bottom: 100px;			
  color: #000;
  transition: .3s;
}
 
#button-up:hover{
  cursor: pointer;
  opacity: 1;
  filter:alpha(opacity=100);
  transition: .3s;
  color: #FF0000;
}

.review-services-block {
    margin-top: 40px;
}

.review-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Roboto';
  margin-bottom: 3em;
  margin-left: -5px;
  margin-right: -5px;
}
@media (min-width: 470px) {
  .review-services {
    gap: 20px 16px;
    margin-left: 0;
    margin-right: 0;
    justify-content: space-between;
  }
}


.review-services__item,
.review-services a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #F5F9FA;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 14px 10px 15px;
  transition: 0.16s all ease-in-out;
  line-height: 1.3;
  width: calc(50.0% - 10px);
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}
@media (min-width: 470px) {
  .review-services__item,
  .review-services a {
    width: auto;
    min-width: 195px;
    margin: 0;
  }
}
.review-services__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 3px;
}
@media (min-width: 370px) {
  .review-services__img {
    margin-right: 18px;
  }
}
.review-services__logo {
  display: block;
}
.review-services__info {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.review-services__assess {
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
}
.review-services__assess svg {
  display: block;
  margin-left: 9px;
}
.review-services__assess svg path {
  fill: #FFB400;
}
.review-services__rating {
  display: none;
  width: 70px;
  margin-left: -2px;
  margin-top: 2px;
  background-position: center left;
  background-repeat: repeat-x;
  background-image: url('../image/icon/star-inactive.png');
}
@media (min-width: 470px) {
  .review-services__rating {
    display: block;
  }
}
.review-services__line {
  display: block;
  height: 10px;
  background-position: center left;
  background-repeat: repeat-x;
  background-image: url('../image/icon/star-active.png');
}
.review-services__count {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.38);
}
@media (min-width: 470px) {
  .review-services__count {
    font-size: 12px;
  }
}

.page-text {
    line-height: 1.4;
}

/* DEMO 1 */

.wrapper-dropdown {
    position: relative;
    width: 100%;
    padding: 0 30px 0 16px;
    margin: 0 auto;
    background: #e8f6f7;
    outline: none;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    color: #2e3c47;
}

.wrapper-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #2e3c47;
}

.wrapper-dropdown > span {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wrapper-dropdown .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    list-style: none;
    font-weight: normal; /* Cancels previous font-weight: bold; */

    /* Hiding */
    opacity: 0;
    pointer-events: none;
    background: #e8f6f7;
    padding-left: 0;
    margin: 0;
}

.wrapper-dropdown .dropdown li span {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 9px 16px;
    height: 60px;
    justify-content: center;
}

/* Hover state */
.wrapper-dropdown .dropdown li:hover span {
    background: #f3f8f8;
}

/* Active state */
.wrapper-dropdown.active .dropdown {
    opacity: 1;
    pointer-events: auto;
    border-top: 1px solid #cdcdcd;
}

.wrapper-dropdown.active:after {
    border-color: #2e3c47 transparent;
    border-width: 6px 6px 0 6px;
    margin-top: -3px;
}

.wrapper-dropdown.active {
    background: #e8f6f7;
}

/* No CSS3 support */

.no-opacity .wrapper-dropdown .dropdown,
.no-pointerevents .wrapper-dropdown .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity .wrapper-dropdown.active .dropdown,
.no-pointerevents .wrapper-dropdown.active .dropdown {
    display: block;
}

.pagination__results {
    display: none;
}

.pagination__links+.pagination__results {
    display: block;
}

@media (max-width: 1350px) {
    .carousel .slick-prev {
        margin-right: -65px;
    }

    .carousel .slick-next {
        margin-left: -56px;
    }
}

@media (min-width: 1250px) {
    .you-are-getting__items.slick-initialized.slick-slider .slick-prev,
    .you-are-getting__items.slick-initialized.slick-slider .slick-next {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .header__geography {
        display: none;
    }
}

@media (max-width: 950px) {
    .header__logo img {
        max-width: 143px;
    }
}

@media (max-width: 800px) {
    .header {
        background: #ffffff;
        box-shadow: 0px 2px 10px rgb(0 0 0 / 5%);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99;
    }

    body {
        padding-top: 74px;
    }

    .header-menu {
        display: none;
    }

    h1,
    .h1 {
        font-size: 32px;
    }

    .section {
        margin-top: 45px;
    }

    .container {
        padding: 0 16px;
    }

    .carousel .slick-prev,
    .carousel .slick-next {
        display: none !important;
    }

    .popup-form {
        padding: 30px 30px;
    }

    .header__geography {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .header__consultation {
        display: none;
    }

    .header__messenger {
        margin-left: auto;
    }

    .header__messenger-title {
        display: none;
    }

    .header__messenger-items > a {
        margin-right: 8px;
        margin-left: 0px;
    }

    .header__mobile {
        display: flex;
        align-items: center;
    }

    .header__call {
        width: 32px;
        height: 32px;
        background: url("../image/icon/call.svg") no-repeat 50% 0%;
        background-size: cover;
        display: block;
    }

    .header__btn-menu {
        width: 44px;
        height: 44px;
        background: url("../image/icon/menu.svg") no-repeat 50% 0%;
        background-size: cover;
        margin-left: 24px;
    }

    .services-widget__tabs ul.tabs-nav {
        display: none;
    }

    .tabs-nav-mobile {
        display: block;
    }

    .article-carousel .article-carousel__card {
        min-width: 300px;
        max-width: 300px;
    }

    .article-carousel .slick-slide {
        width: 300px;
    }

    .form-widget__content {
        flex-direction: column;
    }

    .form-widget__form-title {
        font-size: 24px;
        text-align: center;
    }

    .form-widget .form__fields-horizontal {
        flex-direction: column;
    }

    .form__fields-horizontal .form__field {
        margin-left: 0;
        margin-top: 16px;
    }

    .form-widget__image img {
        max-width: 85px;
    }

    .form__fields-horizontal .form__button {
        margin-left: 0;
        margin-top: 16px;
    }

    .form__fields-horizontal .form__button .btn {
        width: 100%;
        padding: 18px 37px;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ff2336;
        border-radius: 12px;
        border: none;
        font-weight: 500;
        font-size: 16px;
        color: #ffffff;
    }

    .form__agreement {
        font-size: 14px;
    }

    .form__agreement a {
        font-size: 14px;
    }

    .footer {
        padding: 0 0 30px 0;
        border-top: 1px solid #e8f6f7;
        margin-top: 30px;
    }

    .footer__content {
        flex-direction: column;
        border: none;
    }

    .footer__info {
        order: 2;
        margin-top: 20px;
        margin-right: 0;
    }

    .footer__columns {
        order: 1;
        flex-direction: column;
    }

    .footer__column-links > a:first-child {
        margin-top: 12px;
    }

    .footer__social-links > a > img {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .popup-form {
        padding: 16px;
    }

    .popup-form__subtitle {
        margin-top: 15px;
    }

    .popup-form__phone {
        margin-top: 15px;
    }

    .footer__phone-block {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 16px;
    }

    .footer__working-time {
        margin-left: 0;
        margin-top: 6px;
    }

    .footer__social {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
    }

    .footer__social-text {
        display: none;
    }

    .case-carousel .section-head {
        flex-direction: column;
    }

    .case-carousel .section-head .section-head__button {
        margin-top: 10px;
    }
}