@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
}
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 0.875em;
    line-height: 1.6;
    width: 100%;
    min-width: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #222222;
    background-color: #fff;
    font-weight: 400;
}

header,
footer {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

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

p {
    font-style: normal;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    margin: 0;
}

.heading {
    margin-bottom: 50px;
}
@media all and (max-width: 991px) {
    .heading {
        margin-bottom: 40px;
    }
}
.heading h2,
.heading h1 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 400;
}
@media all and (max-width: 575px) {
    .heading h2,
    .heading h1 {
        font-size: 32px;
        line-height: 44px;
    }
}
.heading p {
    font-size: 18px;
    line-height: 28px;
    margin-top: 30px;
}
@media all and (max-width: 991px) {
    .heading p {
        font-size: 16px;
        margin-top: 16px;
    }
}

.btn {
    display: inline-block;
    text-align: center;
    color: #fff;
    padding: 13px 30px;
    font-size: 13px;
    line-height: 24px;
    font-weight: 700;
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    border-radius: 25px;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f6813b),
        to(#f6a83b)
    );
    background: linear-gradient(90deg, #f6813b 0%, #f6a83b 100%);
    -webkit-box-shadow: 0px 10px 30px rgba(255, 150, 26, 0.4);
    box-shadow: 0px 10px 30px rgba(255, 150, 26, 0.4);
    border: none;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.btn::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ffb739;
    z-index: -1;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
    opacity: 0;
}
.btn::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #dc7523;
    z-index: -1;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
    opacity: 0;
}
.btn:hover {
    color: #fff;
}
.btn:hover::before {
    opacity: 1;
}
.btn:active::before {
    opacity: 0;
}
.btn:active::after {
    opacity: 1;
}
.btn.btn-border {
    border: 2px solid #f6943b;
    color: #222222;
    font-size: 15px;
    line-height: 24px;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 11.3px 30px;
}
.btn.btn-border:hover {
    border: 2px solid #ffb739;
    color: #fff;
}
.btn.btn-border:active {
    border: 2px solid #dc7523;
}

a {
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    text-decoration: none;
}
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

button {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
button:active,
button:focus {
    outline: none;
}

button:disabled,
button[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
    pointer-events: all !important;
}
button:disabled:hover,
button[disabled]:hover {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
    pointer-events: all !important;
}

*:focus {
    outline: none;
}

* {
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.center {
    text-align: center;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

input,
textarea {
    outline: none !important;
    border-radius: 0;
}

input.wpcf7-submit {
    cursor: pointer;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

details summary::-webkit-details-marker {
    display: none;
}

details > summary {
    list-style: none;
}

@-webkit-keyframes showBlock {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes showBlock {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
section {
    margin-bottom: 90px;
}
@media all and (max-width: 1400px) {
    section {
        margin-bottom: 70px;
    }
}
@media all and (max-width: 1199px) {
    section {
        margin-bottom: 60px;
    }
}
/********************  MODAL  **********************/
.modal {
    max-width: 498px;
    width: 100%;
    color: #222222;
    border-radius: 15px;
    border: 1px solid #626262;
    padding: 60px;
}
@media all and (max-width: 991px) {
    .modal {
        padding: 30px;
    }
}
.modal .modal__heading {
    text-align: center;
    margin-bottom: 30px;
}
@media all and (max-width: 991px) {
    .modal .modal__heading {
        margin-bottom: 26px;
    }
}
.modal .modal__heading h2, .modal .modal__heading .title {
    font-size: 28px;
    line-height: 120%;
    font-weight: 600;
}
.modal .modal__heading p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
}
.heading.heading-big h1 {
    font-size: 40px;
    line-height: 48px;
}
@media all and (max-width: 575px) {
    .heading.heading-big h1 {
        font-size: 32px;
        line-height: 44px;
    }
}

#modal_thanks .modal__heading {
    margin-bottom: 0;
}

.form__inner form .form__item {
    margin-bottom: 30px;
}
@media all and (max-width: 991px) {
    .form__inner form .form__item {
        margin-bottom: 20px;
    }
}
.form__inner form .form__item input {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: none;
    background-color: #f4f4f4;
    padding-left: 16px;
    padding-right: 10px;
}
.form__inner form .form__policy .policy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    margin: 5px auto 20px auto;
}
.form__inner form .form__policy .policy .text p {
    color: #959ba1;
    font-size: 13px;
    line-height: 22px;
    font-weight: 500;
}
.form__inner form .form__policy .policy .text p a {
    text-decoration: underline;
    color: #854fc9;
}
.form__inner form .form__policy .policy .checkbox {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #e1e1e1;
}
.form__inner form .form__policy .policy .checkbox span.wpcf7-form-control-wrap {
    margin-bottom: 0;
    height: auto;
}
.form__inner
    form
    .form__policy
    .policy
    .checkbox
    span.wpcf7-form-control-wrap:before {
    display: none;
}
.form__inner
    form
    .form__policy
    .policy
    .checkbox
    span.wpcf7-form-control-wrap
    span.wpcf7-acceptance
    span.wpcf7-list-item
    input {
    position: absolute;
    opacity: 0;
    top: 0px;
    bottom: 0;
    left: 0px;
    right: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1000;
}
.form__inner
    form
    .form__policy
    .policy
    .checkbox
    span.wpcf7-form-control-wrap
    span.wpcf7-acceptance
    span.wpcf7-list-item
    input:checked
    ~ .wpcf7-list-item-label {
    background-color: #fff;
}
.form__inner
    form
    .form__policy
    .policy
    .checkbox
    span.wpcf7-form-control-wrap
    span.wpcf7-acceptance
    span.wpcf7-list-item
    input:checked
    ~ .wpcf7-list-item-label:after {
    display: block;
}
.form__inner
    form
    .form__policy
    .policy
    .checkbox
    span.wpcf7-form-control-wrap
    span.wpcf7-acceptance
    span.wpcf7-list-item
    span.wpcf7-list-item-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 0 !important;
    color: transparent;
}
.form__inner
    form
    .form__policy
    .policy
    .checkbox
    span.wpcf7-form-control-wrap
    span.wpcf7-acceptance
    span.wpcf7-list-item
    span.wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    margin: auto;
    width: 6px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.form__inner form .form__submit {
    text-align: center;
    position: relative;
}

.wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

/*********************  HEADER  ************************/
header {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
}
header.page {
    margin-bottom: 80px;
}
@media all and (max-width: 1199px) {
    header.page {
        margin-bottom: 60px;
    }
}
header .header__top {
    padding-top: 13px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eeeeee;
}
@media all and (max-width: 991px) {
    header .header__top {
        padding-bottom: 13px;
    }
}
header .header__top .header__logo .logo__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
@media all and (max-width: 991px) {
    header .header__top .header__logo .logo__inner {
        gap: 10px;
    }
}
header .header__top .header__logo .logo__inner a {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
header .header__top .header__logo .logo__inner a img {
    width: 64px;
    height: auto;
}
@media all and (max-width: 991px) {
    header .header__top .header__logo .logo__inner a img {
        width: 40px;
    }
}
header .header__top .header__logo .logo__inner .slogan {
    color: #555555;
    font-weight: 500;
    text-transform: uppercase;
}
@media all and (max-width: 1400px) {
    header .header__top .header__logo .logo__inner .slogan {
        font-size: 12px;
    }
}
@media all and (max-width: 991px) {
    header .header__top .header__logo .logo__inner .slogan {
        font-size: 10px;
    }
}
header .header__top .header__contacts .contacts__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 50px;
}
header .header__top .header__contacts .contacts__inner .contacts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: #555555;
}
@media all and (max-width: 991px) {
    header .header__top .header__contacts .contacts__inner .contacts__item {
        display: none;
    }
}
header .header__top .header__contacts .contacts__inner .contacts__item .icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
header .header__top .header__contacts .contacts__inner .contacts__item a {
    color: #555555;
	white-space: nowrap;
}
header .header__top .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 5px;
}
@media all and (max-width: 991px) {
    header .header__top .social {
        display: none;
    }
}
header .header__top .social img {
    width: 36px;
    height: 36px;
}
header .header__top .social a:hover {
    opacity: 0.8;
}
@media all and (max-width: 1199px) {
    header .header__top .btn {
        display: none;
    }
}
header .header__top .header_burger {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media all and (max-width: 991px) {
    header .header__top .header_burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
header .header__top .header_burger .burger_button {
    position: relative;
    top: 2px;
    width: 30px;
    height: 30px;
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 20;
}
header .header__top .header_burger .burger_button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #222222;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}
header .header__top .header_burger .burger_button span:nth-child(1) {
    top: 4px;
}
header .header__top .header_burger .burger_button span:nth-child(2) {
    top: 12px;
}
header .header__top .header_burger .burger_button span:nth-child(3) {
    top: 20px;
}
header .header__top .header_burger .burger_button.open span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}
header .header__top .header_burger .burger_button.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
header .header__top .header_burger .burger_button.open span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
header .header__top .header_burger .menu_toggle {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    margin: 0;
    overflow: auto;
    text-align: center;
    z-index: 11;
    padding-top: 60px;
    top: 0;
    padding-bottom: 70px;
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
header .header__top .header_burger .menu_toggle.slide {
    -webkit-transform: translateY(70px);
    -ms-transform: translateY(70px);
    transform: translateY(70px);
}
header .header__top .header_burger .menu_toggle.menuopen {
    -webkit-transform: translateX(0%) !important;
    -ms-transform: translateX(0%) !important;
    transform: translateX(0%) !important;
}
header .header__top .header_burger .menu_toggle .toggle__inner {
    width: 100%;
    margin: 0 auto;
    max-width: 690px;
}
@media all and (max-width: 767px) {
    header .header__top .header_burger .menu_toggle .toggle__inner {
        max-width: 510px;
    }
}
@media all and (max-width: 575px) {
    header .header__top .header_burger .menu_toggle .toggle__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}
header .header__top .header_burger .menu_toggle .toggle__inner .mobile__menu {
    margin-bottom: 30px;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li {
    padding-top: 6px;
    padding-bottom: 6px;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.current-menu-item
    a {
    color: #f6943b;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li
    a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li
    a:hover {
    color: #f6943b;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    > a {
    position: relative;
    display: inline-block;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    > a.active {
    color: #f6943b;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    > a.active:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    > a:after {
    position: absolute;
    content: "";
    right: -20px;
    top: 3px;
    bottom: 0;
    margin: auto;
    background-image: url("../img/icon_6.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 8px;
    height: 5px;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    ul.sub-menu {
    display: none;
    margin-top: 3px;
    padding-left: 20px;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    ul.sub-menu.slide {
    display: block;
    -webkit-animation: showBlock 0.2s linear forwards;
    animation: showBlock 0.2s linear forwards;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    ul.sub-menu
    li {
    padding-top: 3px;
    padding-bottom: 3px;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    ul.sub-menu
    li
    a {
    font-size: 14px;
    text-decoration: underline;
    font-weight: 300;
    color: #222222;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li.menu-item-has-children
    ul.sub-menu
    li
    a:hover {
    color: #f6943b;
}
header
    .header__top
    .header_burger
    .menu_toggle
    .toggle__inner
    .mobile__menu
    li
    a {
    font-size: 16px;
    display: block;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #000;
}
header .header__top .header_burger .menu_toggle .toggle__inner .phone {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    display: inline-block;
    margin-bottom: 30px;
}
header .header__top .header_burger .menu_toggle .toggle__inner .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media all and (max-width: 991px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu .menu__inner {
    padding-top: 10px;
    padding-bottom: 10px;
}
header .header__menu .menu__inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 60px;
}
header .header__menu .menu__inner ul li {
    position: relative;
}
header .header__menu .menu__inner ul li.current-menu-item > a {
    color: #f6943b;
}
header .header__menu .menu__inner ul li:hover::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
header .header__menu .menu__inner ul li:hover > a {
    color: #f6943b;
}
header .header__menu .menu__inner ul li a {
    color: #222222;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 10px 15px;
    display: inline-block;
    cursor: pointer;
}
header .header__menu .menu__inner ul li.menu-item-has-children {
    position: relative;
}
header .header__menu .menu__inner ul li.menu-item-has-children > a {
    padding-right: 20px;
}
header .header__menu .menu__inner ul li.menu-item-has-children:before {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon_6.svg");
    width: 8px;
    height: 5px;
    top: 1px;
    bottom: 0;
    right: 0;
    margin: auto;
}
header
    .header__menu
    .menu__inner
    ul
    li.menu-item-has-children:hover
    > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
header .header__menu .menu__inner ul li.menu-item-has-children ul.sub-menu {
    position: absolute;
    top: 40px;
    left: -20px;
    padding: 33px 35px;
    width: 349px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    display: block;
    z-index: 10;
    background-color: #ffffff;
    -webkit-box-shadow: -5px 10px 40px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}
@media all and (max-width: 991px) {
    header .header__menu .menu__inner ul li.menu-item-has-children ul.sub-menu {
        width: 180px;
    }
}
header .header__menu .menu__inner ul li.menu-item-has-children ul.sub-menu li {
    margin-right: 0;
}
header
    .header__menu
    .menu__inner
    ul
    li.menu-item-has-children
    ul.sub-menu
    li:not(:last-child) {
    margin-bottom: 20px;
}
header
    .header__menu
    .menu__inner
    ul
    li.menu-item-has-children
    ul.sub-menu
    li:after {
    left: 16px;
}
header
    .header__menu
    .menu__inner
    ul
    li.menu-item-has-children
    ul.sub-menu
    li:before {
    right: 8px;
    top: 13px;
    bottom: auto;
}
@media all and (max-width: 991px) {
    header
        .header__menu
        .menu__inner
        ul
        li.menu-item-has-children
        ul.sub-menu
        li:before {
        right: 6px;
    }
}
header
    .header__menu
    .menu__inner
    ul
    li.menu-item-has-children
    ul.sub-menu
    li
    a {
    font-size: 16px;
    line-height: 20px;
    display: block;
    text-transform: none;
    padding: 0;
}
header
    .header__menu
    .menu__inner
    ul
    li.menu-item-has-children
    ul.sub-menu
    ul.sub-menu {
    left: 198px;
    top: -5px;
}

/*****************  contact form 7 style  *****************/
.wpcf7-validation-errors {
    display: none !important;
}

.wpcf7-form .wpcf7-response-output {
    font-size: 13px;
    line-height: 17px;
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
}

select.wpcf7-not-valid,
input[type="text"].wpcf7-not-valid,
input[type="date"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
input[type="tel"].wpcf7-not-valid,
textarea.wpcf7-not-valid,
#block-7 input[type="text"].wpcf7-not-valid,
#block-7 input[type="tel"].wpcf7-not-valid,
#block-15 input[type="tel"].wpcf7-not-valid,
#block-15 input[type="text"].wpcf7-not-valid {
    border: 2px solid #ec3c06 !important;
    position: relative;
}

body span.wpcf7-not-valid-tip {
    display: none !important;
    color: #ec3c06;
    border: none;
    background: none;
}

body span.wpcf7-not-valid-tip-no-ajax {
    display: inline-block;
    font-size: 18px;
    margin: 0 0 0 10px;
}

body div.wpcf7-validation-errors {
    background: #ffe2e2;
    border: 2px solid #ff8a8a;
    color: #ec3c06;
    font-size: 18px;
    text-align: center;
    position: relative;
    z-index: 12000;
}

.contact-inner-form .wpcf7-response-output {
    width: 95%;
}

body div.wpcf7-response-output {
    padding: 6px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 3px;
}

body .wpcf7-mail-sent-ng {
    background: #fff2e2;
    border: 1px solid #ffbc8a;
    color: #e17731;
}

body .wpcf7-mail-sent-ok {
    border: 1px solid transparent;
    color: #ff5805;
    text-align: center;
}

/*************************  mainblock  ***********************/
#mainblock {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 117px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}
@media all and (max-width: 575px) {
    #mainblock {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
#mainblock::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
}
@media all and (max-width: 991px) {
    #mainblock::after {
        display: block;
    }
}
#mainblock h1 {
    font-size: 42px;
    line-height: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}
@media all and (max-width: 575px) {
    #mainblock h1 {
        font-size: 36px;
        line-height: 120%;
    }
}
#mainblock ul {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
#mainblock ul li {
    display: inline-block;
    background-color: #fff;
    border-radius: 24px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 25px 10px 55px;
    position: relative;
}
@media all and (max-width: 575px) {
    #mainblock ul li {
        line-height: 22px;
    }
}
#mainblock ul li:not(:last-child) {
    margin-bottom: 10px;
}
#mainblock ul li:after {
    position: absolute;
    content: "";
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon_7.svg");
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    left: 25px;
    margin: auto;
}

/*************************  services  *********************/
#services .services__item {
    margin-bottom: 24px;
}
#services .services__item .item__inner {
    background-color: #ffffff;
    -webkit-box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 25px 10px;
    display: block;
    color: #222222;
}
#services .services__item .item__inner:hover {
    color: #f6943b;
}
#services .services__item .item__inner .icon {
    margin-bottom: 20px;
}
#services .services__item .item__inner h3, #services .services__item .item__inner p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: inherit;
}

/**************************  lawyers   *********************/
#lawyers {
    background-color: #f4f4f4;
    padding-top: 90px;
    padding-bottom: 90px;
}
@media all and (max-width: 1400px) {
    #lawyers {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media all and (max-width: 1199px) {
    #lawyers {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
#lawyers .heading {
    margin-bottom: 45px;
}
#lawyers .heading p {
    max-width: 545px;
    width: 100%;
    margin: 30px auto 0 auto;
}
#lawyers .tabs {
    max-width: 1144px;
    width: 100%;
    margin: 0 auto;
}
#lawyers .tabs .tabs__caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
@media all and (max-width: 575px) {
    #lawyers .tabs .tabs__caption {
        gap: 10px;
    }
}
#lawyers .tabs .tabs__caption li {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #f4f4f4;
    cursor: pointer;
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    background: linear-gradient(45deg, #f1f0f3 20.71%, #eae4f2 73.57%);
    position: relative;
}
@media all and (max-width: 575px) {
    #lawyers .tabs .tabs__caption li {
        width: 60px;
        height: 60px;
    }
}
#lawyers .tabs .tabs__caption li img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
#lawyers .tabs .tabs__caption li.active {
    border: 2px solid #f6943b;
}
#lawyers .tabs .tabs__caption li.active::after {
    display: block;
}
#lawyers .tabs .tabs__caption li:after {
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 13px;
    display: none;
    z-index: 1;
}
#lawyers .tabs .tabs__content {
    display: none;
    background-color: #ffffff;
    -webkit-box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    padding: 40px 70px 50px 70px;
}
@media all and (max-width: 991px) {
    #lawyers .tabs .tabs__content {
        padding: 40px;
    }
}
@media all and (max-width: 575px) {
    #lawyers .tabs .tabs__content {
        padding: 30px;
    }
}
#lawyers .tabs .tabs__content.active {
    display: block;
    -webkit-animation: showBlock 0.3s linear forwards;
    animation: showBlock 0.3s linear forwards;
}
@media all and (max-width: 991px) {
    #lawyers .tabs .tabs__content .lawyer__photo {
        margin-bottom: 26px;
    }
}
#lawyers .tabs .tabs__content .lawyer__photo .photo__inner {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #f1f0f3 20.71%, #eae4f2 73.57%);
}
@media all and (max-width: 575px) {
    #lawyers .tabs .tabs__content .lawyer__photo .photo__inner {
        width: 200px;
        height: 200px;
    }
}
#lawyers .tabs .tabs__content .lawyer__photo .photo__inner img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
#lawyers .tabs .tabs__content .lawyer__details .details__inner h3, #lawyers .tabs .tabs__content .lawyer__details .details__inner .lawyer__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 14px;
}
#lawyers .tabs .tabs__content .lawyer__details .details__inner h3 .rating, #lawyers .tabs .tabs__content .lawyer__details .details__inner .lawyer__name .rating  {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}
#lawyers .tabs .tabs__content .lawyer__details .details__inner h3 .rating img, #lawyers .tabs .tabs__content .lawyer__details .details__inner .lawyer__name .rating img  {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
#lawyers .tabs .tabs__content .lawyer__details .details__inner .post {
    font-size: 13px;
    line-height: 28px;
    color: #854fc9;
    font-weight: 500;
    margin-bottom: 18px;
}
#lawyers .tabs .tabs__content .lawyer__details .details__inner h4, #lawyers .tabs .tabs__content .lawyer__details .details__inner .lawyer__prof {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
#lawyers
    .tabs
    .tabs__content
    .lawyer__details
    .details__inner
    .experience__reviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 43px;
    margin-bottom: 30px;
}
#lawyers
    .tabs
    .tabs__content
    .lawyer__details
    .details__inner
    .experience__reviews
    .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
#lawyers
    .tabs
    .tabs__content
    .lawyer__details
    .details__inner
    .experience__reviews
    .item
    img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
#lawyers
    .tabs
    .tabs__content
    .lawyer__details
    .details__inner
    .experience__reviews
    .item
    p {
    color: #bec0c0;
    font-weight: 500;
}
#lawyers
    .tabs
    .tabs__content
    .lawyer__details
    .details__inner
    .experience__reviews
    .item
    p
    strong {
    font-weight: 500;
    color: #222222;
}
#lawyers .tabs .tabs__content .lawyer__details .details__inner .content {
    padding-bottom: 26px;
}
#lawyers
    .tabs
    .tabs__content
    .lawyer__details
    .details__inner
    .content
    p:not(:last-child) {
    margin-bottom: 10px;
}

/****************************  partners  *************************/
#partners .partners__slider .slide__inner {
    text-align: center;
}
#partners .partners__slider .slide__inner .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
}
#partners .partners__slider .slide__inner .image:hover {
    -webkit-filter: none;
    filter: none;
}
#partners .partners__slider .slide__inner img {
    max-height: 70px;
}

#consultation .consultation__item {
    margin-bottom: 30px;
}
@media all and (max-width: 991px) {
    #consultation .consultation__item {
        margin-bottom: 24px;
    }
}
#consultation .consultation__item .item__inner {
    background-color: #fff;
    -webkit-box-shadow: 15px 0 50px rgba(0, 0, 0, 0.05);
    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
}
#consultation .consultation__item .item__inner .image {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
}
#consultation .consultation__item .item__inner .image img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
#consultation .consultation__item .item__inner h3, #consultation .consultation__item .item__inner .item__title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    padding-left: 60px;
    position: relative;
    margin-bottom: 28px;
}
#consultation .consultation__item .item__inner h3:after, #consultation .consultation__item .item__inner .item__title:after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url(../img/icon_12.svg);
    width: 40px;
    height: 40px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
#consultation .consultation__item .item__inner h3 a, #consultation .consultation__item .item__inner .item__title a {
    color: #222;
}
#consultation .consultation__item .item__inner h3 a:hover, #consultation .consultation__item .item__inner .item__title a:hover {
    color: #f6943b;
}
#consultation .consultation__item .item__inner ul li {
    position: relative;
    padding-left: 35px;
    font-weight: 500;
}
#consultation .consultation__item .item__inner ul li:not(:last-child) {
    margin-bottom: 9px;
}
#consultation .consultation__item .item__inner ul li:after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url(../img/icon_7.svg);
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}
#consultation .consultation__item .item__inner ul li a {
    color: #222;
}
#consultation .consultation__item .item__inner ul li a:hover {
    color: #f6943b;
}

/************************  textblock  *********************/
#textblock h3, #textblock .block__title {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 43px;
    font-weight: 600;
}
@media all and (max-width: 991px) {
    #textblock h3, #textblock .block__title {
        margin-bottom: 28px;
    }
}
#textblock h4 {
    position: relative;
    padding-left: 36px;
    margin-bottom: 10px;
}
#textblock h4:after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon_14.svg");
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}
#textblock p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}
#textblock p:not(:last-child) {
    margin-bottom: 16px;
}
#textblock li {
    font-size: 16px;
    line-height: 26px;
    position: relative;
    padding-left: 36px;
    font-weight: 500;
}
#textblock li:not(:last-child) {
    margin-bottom: 15px;
}
@media all and (max-width: 575px) {
    #textblock li:not(:last-child) {
        margin-bottom: 10px;
    }
}
#textblock li:after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon_7.svg");
    width: 20px;
    height: 20px;
    top: 3px;
    left: 0;
}
#textblock .textblock__content {
    padding-top: 74px;
    padding-bottom: 74px;
}
@media all and (max-width: 1199px) {
    #textblock .textblock__content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
#textblock .textblock__content-left {
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(#466b59),
        to(#71865d)
    );
    background: linear-gradient(270deg, #466b59 0%, #71865d 100%);
    border-radius: 15px;
    color: #fff;
    position: relative;
    right: 40px;
}
@media all and (max-width: 1400px) {
    #textblock .textblock__content-left {
        right: 0;
    }
}
#textblock .textblock__content-left .content__inner {
    padding-right: 70px;
    max-width: 590px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}
@media all and (max-width: 991px) {
    #textblock .textblock__content-left .content__inner {
        max-width: none;
        padding: 0 10px;
    }
}
@media all and (max-width: 991px) {
    #textblock .textblock__content-right {
        padding-top: 30px;
        padding-bottom: 0;
    }
}
#textblock .textblock__content-right .content__inner {
    padding-left: 38px;
    max-width: 586px;
    width: 100%;
}
@media all and (max-width: 991px) {
    #textblock .textblock__content-right .content__inner {
        max-width: none;
        padding: 0 10px;
    }
}

/************************  textblock-two  *********************/
#textblock-two h3, #textblock-two .section-title {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 43px;
    font-weight: 600;
}
@media all and (max-width: 991px) {
    #textblock-two h3, #textblock-two .section-title {
        margin-bottom: 28px;
    }
}
#textblock-two p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
}
#textblock-two p:not(:last-child) {
    margin-bottom: 30px;
}
#textblock-two .textblock__content {
    padding-top: 74px;
    padding-bottom: 74px;
}
@media all and (max-width: 1199px) {
    #textblock-two .textblock__content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
#textblock-two .textblock__content-left {
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(#6e885b),
        to(#436d57)
    );
    background: linear-gradient(270deg, #6e885b 0%, #436d57 100%);
    border-radius: 15px;
    color: #fff;
    position: relative;
    right: 40px;
}
@media all and (max-width: 1400px) {
    #textblock-two .textblock__content-left {
        right: 0;
    }
}
#textblock-two .textblock__content-left .content__inner {
    padding-right: 70px;
    max-width: 590px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}
@media all and (max-width: 991px) {
    #textblock-two .textblock__content-left .content__inner {
        max-width: none;
        padding: 0 10px;
    }
}
#textblock-two .textblock__content-left .content__inner h5, #textblock-two .textblock__content-left .content__inner .text-tite {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    position: relative;
    padding-left: 36px;
    margin-bottom: 10px;
}
#textblock-two .textblock__content-left .content__inner h5:after, #textblock-two .textblock__content-left .content__inner .text-tite:after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon_14.svg");
    width: 20px;
    height: 20px;
    top: 2.3px;
    left: 0;
}
@media all and (max-width: 991px) {
    #textblock-two .textblock__content-right {
        padding-top: 30px;
        padding-bottom: 0;
    }
}
#textblock-two .textblock__content-right .content__inner {
    padding-left: 38px;
    max-width: 586px;
    width: 100%;
}
@media all and (max-width: 991px) {
    #textblock-two .textblock__content-right .content__inner {
        max-width: none;
        padding: 0 10px;
    }
}
#textblock-two .textblock__content-right .content__inner h5, #textblock-two .textblock__content-right .content__inner .text-tite {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    position: relative;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
#textblock-two .textblock__content-right .content__inner h5 img, #textblock-two .textblock__content-right .content__inner .text-tite img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    order: 0;
}

/*************************  stages  *********************/
#stages .stages__item {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    -webkit-box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 190px;
}
@media all and (max-width: 991px) {
    #stages .stages__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
    }
}
#stages .stages__item:not(:last-child) {
    margin-bottom: 20px;
}
#stages .stages__item:last-child {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media all and (max-width: 991px) {
    #stages .stages__item:last-child {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
#stages .stages__item:last-child .step__list {
    padding-top: 40px;
    padding-bottom: 40px;
}
#stages .stages__item .stages__name {
    padding: 24px 8px;
    color: #fff;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(#6e885b),
        to(#436d57)
    );
    background: linear-gradient(270deg, #6e885b 0%, #436d57 100%);
    text-align: center;
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    text-transform: uppercase;
    width: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
@media all and (max-width: 991px) {
    #stages .stages__item .stages__name {
        width: 100%;
        height: auto;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 20px;
    }
}
#stages .stages__item .stages__name p {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    white-space: nowrap;
}
@media all and (max-width: 991px) {
    #stages .stages__item .stages__name p {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
#stages .stages__item .step__list {
    padding: 15px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 50px;
}
@media all and (max-width: 991px) {
    #stages .stages__item .step__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px !important;
        padding: 20px 20px !important;
    }
}
#stages .stages__item .step__list .list__item {
    position: relative;
}
#stages .stages__item .step__list .list__item:not(:last-child):after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/arrow.svg");
    width: 24px;
    height: 16px;
    top: 0;
    bottom: 0;
    right: -34px;
    margin: auto;
}
@media all and (max-width: 991px) {
    #stages .stages__item .step__list .list__item:not(:last-child):after {
        display: none;
    }
}
#stages .stages__item .step__list .list__item h5, #stages .stages__item .step__list .list__item .step__title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
#stages .stages__item .step__list .list__item p {
    font-size: 15px;
    line-height: 24px;
}
#stages .stages__item .step__list .list__item p a {
    color: #222222;
}
@media all and (min-width: 991px) {
    #stages .stages__item .step__list .btn {
        height: 74px;
        border-radius: 37px;
    }
}

/*************************  cases  *********************/
#cases {
    overflow: hidden;
}
#cases .wrapper {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 58px;
}
#cases .cases__slider {
    padding: 10px !important;
}
#cases .cases__slider .swiper-slide {
    height: auto;
}
#cases .cases__slider .slide__inner {
    min-height: 280px;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    -webkit-box-shadow: 2px 1px 8px 2px rgba(0, 0, 0, 0.08);
    box-shadow: 2px 1px 8px 2px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}
@media all and (max-width: 575px) {
    #cases .cases__slider .slide__inner {
        padding: 25px;
    }
}
#cases .cases__slider .slide__inner .content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
@media all and (max-width: 575px) {
    #cases .cases__slider .slide__inner .content {
        font-size: 13px;
    }
}
#cases .cases__slider .slide__inner .content p {
    margin-bottom: 16px;
}
#cases .cases__slider .slide__inner .content a {
    color: #854fc9;
}
#cases .cases__slider .slide__inner .content a:hover {
    text-decoration: underline;
}
#cases .cases__slider .slide__inner .lawyer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
}
@media all and (max-width: 575px) {
    #cases .cases__slider .slide__inner .lawyer {
        gap: 15px;
    }
}
#cases .cases__slider .slide__inner .lawyer .lawyer__photo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #f1f0f3 20.71%, #eae4f2 73.57%);
}
@media all and (max-width: 575px) {
    #cases .cases__slider .slide__inner .lawyer .lawyer__photo {
        width: 60px;
        height: 60px;
    }
}
#cases .cases__slider .slide__inner .lawyer .lawyer__photo img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
#cases .cases__slider .slide__inner .lawyer .lawyer__details {
    position: relative;
    padding-right: 58px;
    font-weight: 500;
}
#cases .cases__slider .slide__inner .lawyer .lawyer__details .rating {
    color: #000;
    position: absolute;
    top: 3px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
#cases .cases__slider .slide__inner .lawyer .lawyer__details .rating img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
#cases .cases__slider .slide__inner .lawyer .lawyer__details h5, #cases .cases__slider .slide__inner .lawyer .lawyer__details .lawyer__name {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 1px;
}
@media all and (max-width: 575px) {
    #cases .cases__slider .slide__inner .lawyer .lawyer__details h5, #cases .cases__slider .slide__inner .lawyer .lawyer__details .lawyer__name {
        font-size: 16px;
        line-height: 22px;
    }
}
#cases .cases__slider .slide__inner .lawyer .lawyer__details p {
    font-size: 13px;
    line-height: 28px;
    color: #854fc9;
}

.swiper__nav {
    height: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.swiper__nav .swiper-button {
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    top: 0;
    bottom: 0;
    position: absolute;
    cursor: pointer;
    margin: auto;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f6943b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-size: 15px;
    background-position: calc(50% + 3px) 50%;
    background-repeat: no-repeat;
    background-image: url("../img/arrow_right.svg");
}
@media all and (max-width: 575px) {
    .swiper__nav .swiper-button {
        background-size: 10px;
        background-position: calc(50% + 1px) 50%;
        width: 40px;
        height: 40px;
    }
}
.swiper__nav .swiper-button:hover {
    background-color: #feb739;
}
.swiper__nav .swiper-button:active {
    background-color: #dc7624;
}
.swiper__nav .swiper-button:after {
    display: none !important;
}
.swiper__nav .swiper-button.swiper-button-prev {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    left: -100px;
}
@media all and (max-width: 1360px) {
    .swiper__nav .swiper-button.swiper-button-prev {
        left: -34px;
    }
}
@media all and (max-width: 1199px) {
    .swiper__nav .swiper-button.swiper-button-prev {
        left: -20px;
    }
}
@media all and (max-width: 575px) {
    .swiper__nav .swiper-button.swiper-button-prev {
        left: -8px;
    }
}
.swiper__nav .swiper-button.swiper-button-next {
    right: -100px;
}
@media all and (max-width: 1360px) {
    .swiper__nav .swiper-button.swiper-button-next {
        right: -34px;
    }
}
@media all and (max-width: 1199px) {
    .swiper__nav .swiper-button.swiper-button-next {
        right: -20px;
    }
}
@media all and (max-width: 575px) {
    .swiper__nav .swiper-button.swiper-button-next {
        right: -8px;
    }
}

.swiper-pagination {
    bottom: 0 !important;
}
.swiper-pagination span {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid #f6943b;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
}
.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #f6943b;
}

/************************  freecons  *************************/
.freecons {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#466b59),
        to(#6e8859)
    );
    background: linear-gradient(90deg, #466b59 0%, #6e8859 100%);
    padding-top: 95px;
    padding-bottom: 125px;
}
@media all and (max-width: 991px) {
    .freecons {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
.freecons.mb-0 {
    margin-bottom: 0;
}
.freecons .wpcf7-response-output {
    color: #f00;
}
.freecons .heading {
    color: #fff;
    margin-bottom: 44px;
}
.freecons .heading p strong {
    font-size: 36px;
    line-height: 48px;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}
.freecons .heading p {
    margin-top: 8px;
}
.freecons .wrapper {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.freecons .wrapper.wrapper-big {
    max-width: none;
}
.freecons .wrapper.wrapper-big .form__inner form .form__wrapper {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.freecons .wrapper.wrapper-big .form__inner form .form__policy {
    margin-bottom: 40px;
}
.freecons .wrapper .form__inner {
    padding-bottom: 20px;
}
.freecons .wrapper .form__inner form .form__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
@media all and (max-width: 991px) {
    .freecons .wrapper .form__inner form .form__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.freecons .wrapper .form__inner form .form__item {
    width: 225px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 20px;
}
@media all and (max-width: 991px) {
    .freecons .wrapper .form__inner form .form__item {
        width: 100%;
        margin-bottom: 15px;
    }
}
.freecons .wrapper .form__inner form .form__submit {
    width: 211px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 20px;
}
@media all and (max-width: 991px) {
    .freecons .wrapper .form__inner form .form__submit {
        width: 100%;
        margin-bottom: 15px;
    }
}
.freecons .wrapper .form__inner form .form__item-big {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 100%;
}
.freecons .wrapper .form__inner form .form__policy .policy {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.freecons .wrapper .form__inner form .form__policy .policy p {
    color: #fff;
}
.freecons .wrapper .form__inner form .form__policy .policy p a {
    color: #fff;
}
.freecons .wrapper .leave {
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
}

/************************  testimonials  ***********************/
#testimonials .wrapper {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 58px;
}
#testimonials .testimonials__slider {
    padding: 10px !important;
}
#testimonials .testimonials__slider .slide__inner .wrapper {
    width: 255px;
    height: 490px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/watsapp_img.webp");
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding: 60px 10px 10px 10px;
}
#testimonials .testimonials__slider .slide__inner .wrapper .text {
    background-color: #fff;
    border-radius: 5px;
    margin: 0 auto;
    padding: 10px;
    font-size: 12px;
    line-height: 16px;
}
#testimonials .testimonials__slider .slide__inner .wrapper .text h5, #testimonials .testimonials__slider .slide__inner .wrapper .text .user__name {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 20px;
}
#testimonials .testimonials__slider .slide__inner .wrapper .text .user__city {
    font-size: 10px;
    line-height: 14px;
}

/*************************  faq  *************************/
.faq_tabs .tabs__wrapper:not(:last-child) {
    margin-bottom: 40px;
}
.faq_tabs .tabs__wrapper h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}
@media all and (max-width: 575px) {
    .faq_tabs .tabs__wrapper h3 {
        font-size: 24px;
        line-height: 30px;
    }
}
.faq_tabs .tabs_item {
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 10px;
}
.faq_tabs .tabs_item:not(:last-child) {
    margin-bottom: 15px;
}
.faq_tabs .tabs_item .title {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 15px 35px 15px 0;
}
@media all and (max-width: 575px) {
    .faq_tabs .tabs_item .title {
        font-size: 16px;
        line-height: 24px;
    }
}
.faq_tabs .tabs_item .title:after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon_13.svg");
    width: 20px;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
}
.faq_tabs .tabs_item .title.active {
    color: #f6943b;
}
.faq_tabs .tabs_item .title.active:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.faq_tabs .tabs_item .tab_content {
    display: none;
    padding-left: 35px;
    padding-right: 20px;
}
/************************  footer  *********************/
#footer {
    background-color: #f4f4f4;
    margin-bottom: 0;
    padding-top: 58px;
    padding-bottom: 58px;
}
@media all and (max-width: 991px) {
    #footer {
        padding-top: 0;
        padding-bottom: 40px;
        text-align: center;
    }
}
#footer h3, #footer .footer__title {
    font-size: 18px;
    line-height: 40px;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 21px;
}
#footer .textblock__content {
    padding-top: 47px;
    padding-bottom: 47px;
    margin-bottom: 65px;
}
@media all and (max-width: 1199px) {
    #footer .textblock__content {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
@media all and (max-width: 991px) {
    #footer .textblock__content {
        margin-bottom: 0;
    }
}
#footer .address {
    line-height: 27px;
}
@media all and (max-width: 575px) {
    #footer .address:not(:last-child) {
        margin-bottom: 16px;
    }
}
#footer .address a {
    color: #854fc9;
    text-decoration: underline;
}
#footer .textblock__content-left {
    background-color: #fff;
    -webkit-box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    box-shadow: 15px 0px 50px rgba(0, 0, 0, 0.05);
    border-radius: 0 20px 20px 0;
    position: relative;
}
@media all and (max-width: 991px) {
    #footer .textblock__content-left {
        border-radius: 0;
    }
}
#footer .textblock__content-left .content__inner {
    padding-right: 70px;
    max-width: 610px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}
@media all and (max-width: 991px) {
    #footer .textblock__content-left .content__inner {
        max-width: none;
        padding: 0 10px;
    }
}
#footer .textblock__content-left .content__inner ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    margin-bottom: 34px;
}
@media all and (max-width: 575px) {
    #footer .textblock__content-left .content__inner ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}
#footer .textblock__content-left .content__inner ul li:not(:last-child) {
    margin-bottom: 10px;
}
#footer .textblock__content-left .content__inner ul li.current-menu-item a {
    text-decoration: underline;
}
#footer .textblock__content-left .content__inner ul li a {
    line-height: 16px;
    font-weight: 600;
    color: #854fc9;
    display: inline-block;
}
#footer .textblock__content-left .content__inner ul li a:hover {
    text-decoration: underline;
}
#footer .textblock__content-right .content__inner {
    padding-left: 38px;
    max-width: 586px;
    width: 100%;
}
@media all and (max-width: 991px) {
    #footer .textblock__content-right .content__inner {
        max-width: none;
        padding: 0 10px;
    }
}
#footer .textblock__content-right .content__inner ul li:not(:last-child) {
    margin-bottom: 10px;
}
#footer .textblock__content-right .content__inner ul li.current-menu-item a {
    text-decoration: underline;
}
#footer .textblock__content-right .content__inner ul li a {
    line-height: 16px;
    font-weight: 600;
    color: #466b59;
    display: inline-block;
}
#footer .textblock__content-right .content__inner ul li a:hover {
    text-decoration: underline;
}
#footer .footer__bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 37px;
    margin-bottom: 11px;
}
@media all and (max-width: 991px) {
    #footer .footer__bottom ul {
        display: block;
    }
}
#footer .footer__bottom ul li {
    position: relative;
}
@media all and (max-width: 991px) {
    #footer .footer__bottom ul li:not(:last-child) {
        margin-bottom: 10px;
    }
}
#footer .footer__bottom ul li:not(:last-child):after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #999999;
    top: 0;
    bottom: 0;
    right: -22px;
    margin: auto;
}
@media all and (max-width: 991px) {
    #footer .footer__bottom ul li:not(:last-child):after {
        display: none;
    }
}
#footer .footer__bottom ul li:not(:last-child).current-menu-item a {
    text-decoration: underline;
}
#footer .footer__bottom ul li a {
    color: #854fc9;
    font-weight: 600;
}
#footer .footer__bottom ul li a:hover {
    text-decoration: underline;
}
#footer .footer__bottom .content {
    max-width: 625px;
    width: 100%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 20px;
    color: #6c757d;
}

article img {
    /*width: auto;*/
    /*height: auto; */
    /*height: 100%; */
}

article img.centered,
article .aligncenter,
article div.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

article img.alignright {
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
}

article img.alignleft {
    padding: 4px;
    margin: 0 7px 2px 0;
    display: inline;
}

article .alignright {
    float: right;
}

article .alignleft {
    float: left;
}

article h2,
article h3,
article h4,
article h5,
article h6 {
    font-weight: 400;
    margin-bottom: 0.525em;
}

article h2 {
    font-size: 32px;
    line-height: 38px;
}

article h3 {
    font-size: 26px;
    line-height: 34px;
}

article h4 {
    font-size: 22px;
}

article h5 {
    font-size: 18px;
}

article h6 {
    font-size: 16px;
}

article p {
    margin-bottom: 1em;
}

article a {
    color: #854fc9;
}
article a:hover {
    color: #854fc9;
    text-decoration: underline;
}

article ul {
    margin-bottom: 1em;
}
article ul li {
    position: relative;
    padding-left: 36px;
}
article ul li:not(:last-child) {
    margin-bottom: 15px;
}
article ul li:after {
    position: absolute;
    content: "";
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("../img/icon_7.svg");
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
}

article ul ul {
    margin-bottom: 0;
}

article ol li {
    margin-bottom: 4px;
}

article ol {
    margin-bottom: 1em;
    padding-left: 15px;
}

article .rating__wrapper {
    padding-top: 20px;
}
@media all and (max-width: 575px) {
    article .rating__wrapper {
        padding-top: 10px;
    }
}

/************************************************
     Tables
   ************************************************/
article table,
article .wp-block-table {
    overflow-x: auto;
    width: 100%;
    text-align: left;
    margin: 0px 0px 33px 0;
    padding: 0px;
    -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(0, 0, 0, 0.12);
    border-spacing: 0;
    border-radius: 4px;
}

article table p,
article table form,
article table ul,
article table li {
    margin: 6px 0px;
    padding: 0px;
}

article table thead,
article table tfoot,
article table.wp-block-table thead,
article table.wp-block-table tfoot {
    border: 1px solid #dddddd;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

article table tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.04);
}

article table th,
article table.wp-block-table th {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0px;
    padding: 12px;
    border-top: 1px solid #dddddd;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media all and (max-width: 575px) {
    article table th,
    article table td {
        min-width: 180px;
    }
}
article table td,
article table.wp-block-table td {
    padding: 12px;
    margin: 0px;
    border-top: 1px solid #dddddd;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article table.wp-block-table.is-style-stripes {
    border-collapse: collapse;
}

article table.wp-block-table.is-style-stripes td {
    border: 1px solid #dddddd;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

/**************************  page  **************************/

#breadcrumbs {
    margin-bottom: 40px;
}
.breadcrumbs {
    color: #777777;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin-bottom: 39px;
}
.breadcrumbs span {
    color: #777777;
    display: inline-block;
}
.breadcrumbs span a {
    color: #777777;
    display: inline-block;
}
.breadcrumbs span a span {
    color: inherit;
}

/****************************  service  *********************/
@media all and (max-width: 1199px) {
    #service .service__content {
        margin-bottom: 50px;
    }
}
#service .service__content .content__inner h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    margin-bottom: 44px;
}
@media all and (max-width: 575px) {
    #service .service__content .content__inner h1 {
        font-size: 34px;
        line-height: 120%;
        margin-bottom: 36px;
    }
}
#service .service__content .content__inner .rating h6, #service .service__content .content__inner .rating .rating__title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #6c757d;
}
#service .service__content .content__inner .service__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3px 15px;
}
#service .service__content .content__inner .service__menu li a {
    font-size: 16px;
    line-height: 24px;
    color: #854fc9;
    display: inline-block;
    white-space: nowrap;
    -webkit-transition: text-shadow 0.25s;
    transition: text-shadow 0.25s;
    padding: 8px 14px;
}
#service .service__content .content__inner .service__menu li a:hover {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#4c29b0),
        to(#8550c9)
    );
    background: linear-gradient(90deg, #4c29b0 0%, #8550c9 100%);
    color: #fff;
    border-radius: 21px;
    text-shadow: 0 0 2px #fff, 0 0 2px #fff;
}
#service .service__cons .cons__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 20px;
    border: 2px solid #466b59;
    padding: 20px 37px 20px 20px;
    position: relative;
    max-width: 545px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    overflow: hidden;
}
@media all and (max-width: 1199px) {
    #service .service__cons .cons__inner {
        margin-left: 0;
        margin-right: auto;
    }
}
@media all and (max-width: 767px) {
    #service .service__cons .cons__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
    }
}
#service .service__cons .cons__inner .lawyer {
    position: absolute;
    top: 20px;
    left: 0;
    width: 248px;
    color: #fff;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(#466b59),
        to(#71865d)
    );
    background: linear-gradient(270deg, #466b59 0%, #71865d 100%);
    border-radius: 0px 20px 20px 0px;
    padding: 40px 20px 20px 20px;
}
@media all and (max-width: 767px) {
    #service .service__cons .cons__inner .lawyer {
        position: relative;
        width: 100%;
        border-radius: 0;
        top: 0;
    }
}
#service .service__cons .cons__inner .lawyer .lawyer__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(51.22deg, #f1f0f3 15.04%, #e9e2f1 83.17%);
    margin: 0 auto 25px auto;
}
#service .service__cons .cons__inner .lawyer .lawyer__photo img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
#service .service__cons .cons__inner .lawyer h6, #service .service__cons .cons__inner .lawyer .lawyer__name {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 4px;
}
#service .service__cons .cons__inner .lawyer p {
    font-size: 13px;
    line-height: 17px;
    font-weight: 600;
}
@media all and (max-width: 767px) {
    #service .service__cons .cons__inner .form__inner {
        padding: 30px 20px;
    }
}
#service .service__cons .cons__inner .form__inner h3, #service .service__cons .cons__inner .form__inner .form__title {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}
@media all and (min-width: 767px) {
    #service .service__cons .cons__inner .form__inner h3, #service .service__cons .cons__inner .form__inner .form__title {
        max-width: 227px;
        width: 100%;
        margin-left: auto;
        margin-right: 0;
    }
}
@media all and (min-width: 767px) {
    #service .service__cons .cons__inner .form__inner .form__item,
    #service .service__cons .cons__inner .form__inner .form__submit {
        max-width: 227px;
        width: 100%;
        margin-left: auto;
        margin-right: 0;
        margin-bottom: 16px;
    }
}
#service .service__cons .cons__inner .form__inner .form__policy {
    padding-top: 40px;
}
@media all and (max-width: 767px) {
    #service .service__cons .cons__inner .form__inner .form__policy {
        padding-top: 16px;
    }
}
#service .service__cons .cons__inner .form__inner .form__policy .policy {
    margin-bottom: 0;
}

.rating__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 85px;
    margin-bottom: 40px;
}
@media all and (max-width: 767px) {
    .rating__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.rating__wrapper .rating__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    color: #22222f;
    position: relative;
}
@media all and (max-width: 767px) {
    .rating__wrapper .rating__item {
        font-size: 24px;
        line-height: 120%;
    }
}
.rating__wrapper .rating__item:hover .text {
    opacity: 1;
    visibility: visible;
}
.rating__wrapper .rating__item img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    top: -8px;
}
.rating__wrapper .rating__item img.image__yandex {
    top: -4px;
}
.rating__wrapper .rating__item .text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% + 10px);
    margin: auto;
    -webkit-box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 10px;
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    border-radius: 5px;
    width: 260px;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    min-height: 60px;
}
@media all and (max-width: 991px) {
    .rating__wrapper .rating__item .text {
        bottom: calc(100% + 1px);
        left: 0;
        right: 0;
        top: auto;
    }
}
.rating__wrapper .rating__item .text:after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #fff;
    border-width: 5px;
    margin-top: -5px;
}
@media all and (max-width: 991px) {
    .rating__wrapper .rating__item .text:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(136, 183, 213, 0);
        border-top-color: #fff;
        border-width: 5px;
        margin-left: -5px;
        margin-top: 0;
    }
}

/***************************  price  ***********************/
#price .price__wrapper .price__item {
    border-radius: 20px;
    -webkit-box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}
#price .price__wrapper .price__item:not(:last-child) {
    margin-bottom: 12px;
}
#price .price__wrapper .price__item .price__title .title__inner {
    font-size: 16px;
    line-height: 22px;
    padding: 10px 16px 10px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media all and (max-width: 991px) {
    #price .price__wrapper .price__item .price__title .title__inner {
        padding: 16px 30px;
    }
}
#price .price__wrapper .price__item .price__cost .cost__inner {
    background-color: #fef4eb;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    padding: 32px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media all and (min-width: 991px) {
    #price .price__wrapper .price__item .price__cost .cost__inner {
        max-width: 279px;
        width: 100%;
        margin-left: auto;
        margin-right: 0;
    }
}
@media all and (max-width: 991px) {
    #price .price__wrapper .price__item .price__cost .cost__inner {
        padding: 16px 30px;
    }
}
#price .price__wrapper .price__item .price__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
}
#price .price__wrapper .price__item .price__button .button__inner {
    text-align: right;
    padding: 0 33px;
}
@media all and (max-width: 991px) {
    #price .price__wrapper .price__item .price__button .button__inner {
        text-align: left;
        padding: 16px 30px 14px 30px;
    }
}

/**************************  seo  ***********************/
#seo {
    padding-top: 90px;
}
@media all and (max-width: 1400px) {
    #seo {
        padding-top: 70px;
    }
}
@media all and (max-width: 1199px) {
    #seo {
        padding-top: 60px;
    }
}
#seo article h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 400;
    margin-bottom: 50px;
}
@media all and (max-width: 991px) {
    #seo article h2 {
        margin-bottom: 40px;
    }
}
@media all and (max-width: 575px) {
    #seo article h2 {
        font-size: 32px;
        line-height: 44px;
    }
}

/*************************  news-articles  ********************/
.news-articles.news-articles-balck {
    background-color: #f4f4f4;
    padding-top: 90px;
    padding-bottom: 90px;
}
@media all and (max-width: 1400px) {
    .news-articles.news-articles-balck {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media all and (max-width: 1199px) {
    .news-articles.news-articles-balck {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
.news-articles .all__news {
    padding-top: 20px;
}

.news__item {
    margin-bottom: 30px;
}
@media all and (max-width: 575px) {
    .news__item {
        margin-bottom: 20px;
    }
}
.news__item .item__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    background-color: #fff;
    -webkit-box-shadow: 15px 0 50px rgba(0, 0, 0, 0.05);
    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 35px;
}
@media all and (max-width: 575px) {
    .news__item .item__inner {
        padding: 30px 20px;
        gap: 24px;
    }
}
.news__item .item__inner .item__image {
    display: block;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}
.news__item .item__inner .item__image:hover {
    opacity: 0.8;
}
.news__item .item__inner .item__image img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
.news__item .item__inner .item__top {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.news__item .item__inner .item__top .date {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 29px;
    color: #bec0c0;
}
.news__item .item__inner .item__top .news__title {
    display: block;
    color: #222;
}
.news__item .item__inner .item__top .news__title:hover {
    color: #f6943b;
}
.news__item .item__inner .item__top .news__title h3 {
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    color: inherit;
}
@media all and (max-width: 575px) {
    .news__item .item__inner .item__top .news__title h3 {
        font-size: 20px;
    }
}
.news__item .item__inner .item__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.news__item .item__inner .item__bottom .news__more {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 13px;
    line-height: 16px;
    color: #854fc9;
    font-weight: 500;
}
.news__item .item__inner .item__bottom .news__more:hover {
    text-decoration: underline;
}

.like__view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.like__view .like,
.like__view .view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    color: #bec0c0;
}
.like__view .like img,
.like__view .view img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.box__pagination {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}
.box__pagination a,
.box__pagination span {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    padding: 4px 8px;
    color: #222222;
    text-decoration: none;
    margin: 3px 10px;
    display: inline-block;
    border: none;
}
@media all and (max-width: 575px) {
    .box__pagination a,
    .box__pagination span {
        margin: 3px 3px;
    }
}
.box__pagination a {
    color: #854fc9;
}
.box__pagination span {
    color: #222222;
}

/***************************  page  ***********************/
#page .post__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-weight: 500;
    color: #bec0c0;
    margin-bottom: 20px;
}
#page .post__top img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
#page .post__top .date {
    margin-right: 10px;
}
#page .post__top .date,
#page .post__top .reading__time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
#page .post__top .like__view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
#page .post__bottom {
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px 40px;
    color: #bec0c0;
}
#page .post__bottom .post-ratings {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
#page .post__bottom .post-ratings img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
#page .post__bottom .share {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
#page .post__bottom .share p {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* Основные стили */
.article__custom .military-payments-article {
    /* max-width: 800px; */
    /* margin: 0 auto; */
    line-height: 1.6;
    /* padding: 20px; */
    /* font-family: Arial, sans-serif; */
    /* color: #333; */
}

/* Оглавление */
.article__custom .toc-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
}
.article__custom .toc-title {
    color: #2a4365;
    margin-top: 0;
    font-size: 1.3em;
}
.article__custom .toc-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 0;
}
.article__custom .toc-list li {
    margin-bottom: 10px;
}
.article__custom .toc-list a {
    color: #436d57;
    text-decoration: none;
    transition: color 0.3s;
}
.article__custom .toc-list a:hover {
    color: #2a4365;
    text-decoration: underline;
}

/* Блоки выплат */
.article__custom .payment-item {
    margin: 25px 0;
    padding: 20px;
    background: #fff;
    border-left: 4px solid #436d57;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}
.article__custom .payment-item h3 {
    color: #436d57;
    margin-top: 0;
    font-size: 1.2em;
}

/* Предупреждения и заметки */
.article__custom .notice,
.warning {
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}
.article__custom .notice {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}
.article__custom .warning {
    background: #ffecb3;
    border-left: 4px solid #ffc107;
}

/* Кнопки и CTA */
.article__custom .cta-box {
    background: #f8f9fa;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: center;
}
.article__custom .seo-cta {
    background: #436d57;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    margin: 40px 0;
}
.article__custom .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #436d57;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid transparent;
}
.article__custom .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    border-color: #436d57;
}

/* Заголовки */
.article__custom h1 {
    color: #222222;
    text-align: center;
    margin-bottom: 30px;
}
.article__custom h2 {
    color: #222222;
    margin: 40px 0 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

@media all and (max-width: 1199px) {
    #page .page__main {
        margin-bottom: 50px;
    }
}
#page .page__main .article {
    padding-right: 90px;
}
@media all and (max-width: 1400px) {
    #page .page__main .article {
        padding-right: 20px;
    }
}
@media all and (max-width: 1199px) {
    #page .page__main .article {
        padding-right: 0;
    }
}
#page .page__main .article .post__image {
    margin-bottom: 20px;
}
#page .page__main .article .post__image img {
    height: auto;
    border-radius: 20px;
    max-height: 500px;
}
#page .page__aside aside .aside__item:not(:last-child) {
    margin-bottom: 70px;
}
@media all and (max-width: 1199px) {
    #page .page__aside aside .aside__item:not(:last-child) {
        margin-bottom: 40px;
    }
}
#page .page__aside aside .aside__item-author .author__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 22px;
    background: -webkit-gradient(
        linear,
        right top,
        left top,
        from(#466b59),
        to(#71865d)
    );
    background: linear-gradient(270deg, #466b59 0, #71865d 100%);
    border-radius: 15px;
    padding: 35px 20px;
    color: #fff;
}
@media all and (max-width: 575px) {
    #page .page__aside aside .aside__item-author .author__inner {
        padding: 30px 20px;
    }
}
#page .page__aside aside .aside__item-author .author__inner .author__image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #f1f0f3 20.71%, #eae4f2 73.57%);
}
#page .page__aside aside .aside__item-author .author__inner .author__image img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
#page
    .page__aside
    aside
    .aside__item-author
    .author__inner
    .author__details
    h4 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}
#page
    .page__aside
    aside
    .aside__item-author
    .author__inner
    .author__details
    h5 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 3px;
}
#page
    .page__aside
    aside
    .aside__item-author
    .author__inner
    .author__details
    .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
}
#page
    .page__aside
    aside
    .aside__item-author
    .author__inner
    .author__details
    .rating
    img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
#page
    .page__aside
    aside
    .aside__item-author
    .author__inner
    .author__details
    .post {
    font-size: 13px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 18px;
}
#page .page__aside aside .aside__item-posts .posts__inner ul li {
    background-color: #fff;
    -webkit-box-shadow: 15px 0 50px rgba(0, 0, 0, 0.05);
    box-shadow: 15px 0 50px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 35px;
}
@media all and (max-width: 575px) {
    #page .page__aside aside .aside__item-posts .posts__inner ul li {
        padding: 30px 20px;
    }
}
#page
    .page__aside
    aside
    .aside__item-posts
    .posts__inner
    ul
    li:not(:last-child) {
    margin-bottom: 25px;
}
@media all and (max-width: 575px) {
    #page
        .page__aside
        aside
        .aside__item-posts
        .posts__inner
        ul
        li:not(:last-child) {
        margin-bottom: 20px;
    }
}
#page .page__aside aside .aside__item-posts .posts__inner ul li .post__date {
    display: block;
    font-size: 13px;
    line-height: 29px;
    font-weight: 500;
    color: #bec0c0;
    margin-bottom: 10px;
}
#page .page__aside aside .aside__item-posts .posts__inner ul li .post__title {
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    display: inline-block;
    color: #222;
    margin-bottom: 10px;
}
#page
    .page__aside
    aside
    .aside__item-posts
    .posts__inner
    ul
    li
    .post__title:hover {
    color: #f6943b;
}
#page
    .page__aside
    aside
    .aside__item-posts
    .posts__inner
    ul
    li
    .post__title
    h5 {
    color: inherit;
}
#page .page__aside aside .aside__item-posts .posts__inner ul li .post__bottom {
    margin-top: 0;
}
#page
    .page__aside
    aside
    .aside__item-posts
    .posts__inner
    ul
    li
    .post__bottom
    .post__more {
    font-size: 13px;
    line-height: 28px;
    font-weight: 500;
    color: #854fc9;
}
#page
    .page__aside
    aside
    .aside__item-posts
    .posts__inner
    ul
    li
    .post__bottom
    .post__more:hover {
    color: #f6943b;
}
#page .page__aside aside .aside__item-menu .menu__inner {
    background-color: #fff;
    -webkit-box-shadow: -5px 10px 40px rgba(0, 0, 0, 0.1);
    box-shadow: -5px 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 13px 35px;
}
@media all and (max-width: 575px) {
    #page .page__aside aside .aside__item-menu .menu__inner {
        padding: 18px 20px;
    }
}
#page .page__aside aside .aside__item-menu .menu__inner ul li:not(:last-child) {
    border-bottom: 1px solid #f4f4f4;
}
#page .page__aside aside .aside__item-menu .menu__inner ul li a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #222;
    display: inline-block;
    padding: 20px 0;
}
@media all and (max-width: 575px) {
    #page .page__aside aside .aside__item-menu .menu__inner ul li a {
        padding: 12px 0;
    }
}
#page .page__aside aside .aside__item-menu .menu__inner ul li a:hover {
    color: #f6943b;
}
