@font-face {
	 font-family: "roboto-c";
	 src: url(../fonts/Roboto-condensed/RobotoCondensed-Light.woff2);
	 font-weight: 300;
	 font-style: normal;
	 font-display: swap;
}
 @font-face {
	 font-family: "roboto-c";
	 src: url(../fonts/Roboto-condensed/RobotoCondensed-Regular.woff2);
	 font-weight: 400;
	 font-style: normal;
	 font-display: swap;
}
 @font-face {
	 font-family: "roboto-c";
	 src: url(../fonts/Roboto-condensed/RobotoCondensed-Bold.woff2);
	 font-weight: 700;
	 font-style: normal;
	 font-display: swap;
}
 @font-face {
	 font-family: "impact";
	 src: url(../fonts/Impact/impact.woff2);
	 font-weight: normal;
	 font-style: normal;
	 font-display: swap;
}
 @font-face {
	 font-family: "icon";
	 src: url(../fonts/icon.woff2);
	 font-weight: normal;
	 font-style: normal;
	 font-display: swap;
}
 * {
	 margin: 0;
	 padding: 0;
	 box-sizing: border-box;
	 font-family: 'roboto-c', system-ui, sans-serif;
	 font-weight: 400;
	 color: var(--dark);
}
 html {
	 scroll-behavior: smooth;
}
 :root {
	 --accent: #fe471c;
	 --white: #fff;
	 --light: #d9d9d9;
	 --dark: #292929;
	 --main: #007500;
	 --success: #ceffbc;
	 --danger: #ffbcc7;
	 --danger-b: #f00;
	 --warning: #fffd89;
	 --light-gradient: linear-gradient(to bottom, var(--white), #e9eaea);
	 --accent-shadow: 0 4px 4px 0 rgba(254, 71, 28, 0.25);
	 --main-shadow: 0 4px 4px 0 rgba(0, 117, 0, 0.25);
}
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
body.no-scroll {
	 overflow: hidden;
}
 h2 {
	 font-size: 20px;
	 font-weight: 700;
}
 a {
	 text-decoration: none;
}
 section > .desc {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 20px;
	 align-items: center;
	 margin-bottom: 20px;
}
 section > .desc .btn {
	 height: 40px;
	 width: 160px;
}
 .btn {
	 border: none;
	 outline: none;
	 background: none;
	 cursor: pointer;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 text-align: center;
	 height: fit-content;
	 padding: 5px;
	 border-radius: 30px;
	 transition: 0.2s linear;
}
 .btn.accent {
	 background: var(--accent);
	 border: 1px solid var(--accent);
	 color: var(--white);
	 box-shadow: var(--accent-shadow);
	 line-height: 1;
	 font-weight: 700;
	 font-size: 14px;
}
 .btn.main {
	 background: var(--main);
	 border: 1px solid var(--main);
	 color: var(--white);
	 box-shadow: var(--main-shadow);
	 line-height: 1;
	 font-weight: 700;
	 font-size: 14px;
}
 .before-circle::before {
	 font-family: icon;
	 grid-row: span 2;
	 border: 1px solid var(--light);
	 border-radius: 50%;
	 width: 28px;
	 display: flex;
	 align-items: center;
	 text-align: center;
	 justify-content: center;
	 color: var(--white);
	 min-width: 28px;
	 height: 28px;
	 background: var(--main);
	 box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35);
}
 .wrapper {
	 width: 100%;
	 max-width: 1240px;
	 margin-left: auto;
	 margin-right: auto;
}
 .alert {
	 position: fixed;
	 top: 20px;
	 left: 50%;
	 transform: translateX(-50%);
	 z-index: 9999;
	 max-width: 600px;
	 width: calc(100% - 30px);
}
 .alert p, .alert span {
	 color: var(--white);
	 margin-bottom: 15px;
}
 .alert .alert-inner {
	 background: #222;
	 color: #fff;
	 padding: 34px 14px 18px;
	 border-radius: 6px;
	 display: flex;
	 align-items: center;
}
 .alert .alert-close {
	 background: none;
	 border: none;
	 color: #fff;
	 font-size: 18px;
	 cursor: pointer;
	 position: absolute;
	 right: 10px;
	 top: 10px;
}
 .alert.alert-success .alert-inner {
	 background: #2e7d32;
}
 .alert.alert-error .alert-inner {
	 background: #c62828;
}
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    &::before {
        font-family: icon;
        content: '\e90e';
        color: var(--white);
        font-size: 22px;
    }
}
 header {
	 padding: 20px 0;
	 display: flex;
}
 header .logo {
	 display: flex;
	 flex-direction: column;
	 margin-left: 400px;
	 margin-right: 80px;
	 max-width: 168px;
	 width: 100%;
}
 header .logo img {
	width: 100%;
 }
 header .btn.burger {
	 display: none;
}
 header nav {
	 width: 610px;
	 display: flex;
	 align-items: center;
}
 header nav ul {
	 list-style: none;
	 display: flex;
	 justify-content: space-between;
	 width: 100%;
}
 header nav ul li {
	 display: flex;
	 align-items: center;
	 position: relative;
}
 header nav ul li a, header nav ul li p {
	 color: var(--main);
	 font-weight: 700;
	 padding: 3px;
	 cursor: pointer;
}
 header nav ul li.menu-item-has-children .sub-menu {
	 position: absolute;
	 display: flex;
	 flex-direction: column;
	 background: var(--white);
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 padding: 15px;
	 width: 220px;
	 min-width: 220px;
	 z-index: 999;
	 top: -100%;
	 visibility: hidden;
	 opacity: 0;
	 transition: 0.2s linear;
	 pointer-events: none;
}
 header nav ul li.menu-item-has-children .sub-menu li {
	 display: flex;
	 border-bottom: 1px solid var(--light);
}
 header nav ul li.menu-item-has-children .sub-menu li a {
	 padding: 5px 3px;
	 width: 100%;
	 transition: 0.2s linear;
}
 header nav ul li.menu-item-has-children .sub-menu li:last-child {
	 border-bottom: none;
}
 header nav ul li.menu-item-has-children:has(.sub-menu) p {
	 display: flex;
	 align-items: center;
}
 header nav ul li.menu-item-has-children:has(.sub-menu) p::after {
	 margin-left: 5px;
	 content: '\e90d';
	 font-family: icon;
	 font-size: 12px;
	 transform: rotate(90deg);
	 line-height: 12px;
	 transition: 0.2s linear;
}
 header nav ul li.menu-item-has-children.active > p::after {
	 transform: rotate(270deg);
}
 header nav ul li.menu-item-has-children.active .sub-menu {
	 top: 100%;
	 visibility: visible;
	 opacity: 1;
	 pointer-events: all;
}
 header nav ul li:nth-last-child(2).menu-item-has-children .sub-menu, header nav ul li:nth-last-child(1).menu-item-has-children .sub-menu {
	 left: auto;
	 right: 0;
}
 footer {
	 display: grid;
	 border-radius: 20px 20px 0 0;
	 grid-template-columns: repeat(4, 1fr);
	 overflow: hidden;
}
 footer .info {
	 grid-column: span 2;
	 background: rgba(0, 117, 0, 0.8);
	 padding: 30px 70px 50px 30px;
}
 footer .info .container {
	 position: relative;
	 justify-content: space-between;
	 display: flex;
	 gap: 20px;
	 padding-bottom: 20px;
}
 footer .info .container * {
	 color: var(--white);
}
 footer .info .container .company .logo {
	max-width: 140px;
	width: 100%;
	display: flex;
}
 footer .info .container .company .logo img {
	width: 100%;
}
 footer .info .container .company ul {
	 list-style: none;
	 margin-top: 10px;
}
 footer .info .container .company ul li {
	 line-height: 20px;
	 font-size: 14px;
	 display: flex;
}
 footer .info .container .company ul li::before {
	 content: '';
	 display: block;
	 width: 4px;
	 height: 4px;
	 background: var(--white);
	 border-radius: 50%;
	 margin-right: 7px;
	 margin-top: 9px;
}
 footer .info .container .menu nav {
	 margin-top: 13px;
}
 footer .info .container .menu nav ul {
	 display: flex;
	 list-style: none;
	 margin-bottom: 50px;
	 justify-content: end;
}
 footer .info .container .menu nav ul li {
	 margin-right: 20px;
}
 footer .info .container .menu nav ul li a {
	 font-weight: 700;
}
 footer .info .container .menu nav ul li:last-child {
	 margin-right: 0;
}
 footer .info .container .menu > p {
	 font-size: 14px;
	 text-align: right;
	 max-width: 280px;
}
 footer .info .container::after {
	 position: absolute;
	 content: '';
	 width: 100%;
	 height: 1px;
	 background: var(--white);
	 bottom: 0;
	 left: 0;
}
 footer .contacts {
	 background: rgba(0, 117, 0, 0.8);
	 position: relative;
	 padding-top: 40px;
	 padding-left: 40px;
	 display: flex;
	 flex-direction: column;
	 align-items: start;
}
 footer .contacts * {
	 position: relative;
	 z-index: 9;
}
 footer .contacts h2 {
	 color: var(--main);
	 margin-bottom: 20px;
}
 footer .contacts a.call {
	 padding: 0;
	 font-weight: 700;
	 font-size: 20px;
	 margin-bottom: 20px;
}
 footer .contacts .message {
	 display: flex;
}
 footer .contacts .message a, footer .contacts .message button {
	 font-size: 14px;
	 padding: 1px;
	 margin-right: 5px;
}
 footer .contacts .message a:last-child, footer .contacts .message button:last-child {
	 margin-right: 0;
}
 footer .contacts .message .vb {
	 color: #7360f2;
}
 footer .contacts .message .wa {
	 color: var(--main);
}
 footer .contacts .message .tg {
	 color: #08c;
}
 footer .contacts::after {
	 position: absolute;
	 content: '';
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 background: rgba(255, 255, 255, .8);
	 z-index: 1;
}
 footer .order-cta {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position: relative;
}
 footer .order-cta .btn {
	 width: 160px;
	 height: 40px;
	 position: relative;
	 z-index: 9;
}
 footer .order-cta img {
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 z-index: 1;
}
 footer .order-cta::after {
	 position: absolute;
	 content: '';
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 background: rgba(255, 255, 255, .8);
	 z-index: 1;
}
 section.top {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 20px;
	 margin-bottom: 20px;
}
 section.top .view {
	 display: grid;
	 grid-template-columns: minmax(0, 380px) minmax(0, 230px);
	 align-items: center;
	 gap: 10px;
}
 section.top .view img {
	 max-width: 380px;
	 width: 100%;
}
 section.top .view h1 {
	 max-width: 230px;
	 width: 100%;
	 font-size: 20px;
}
 section.top .view .breadcrumbs {
	 display: flex;
	 flex-wrap: wrap;
	 align-items: center;
	 margin-top: 20px;
}
 section.top .view .breadcrumbs * {
	 font-size: 14px;
}
 section.top .view .breadcrumbs a {
	 color: var(--main);
	 margin-right: 5px;
}
 section.top .view .breadcrumbs span {
	 margin-right: 5px;
	 display: block;
}
 section.top .view .breadcrumbs p {
	 display: block;
}
 section.top .info .banner {
	 padding: 10px 20px;
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 position: relative;
	 margin-bottom: 20px;
}
 section.top .info .banner > span {
	 color: var(--accent);
	 display: block;
	 font-size: 14px;
	 line-height: 16px;
}
 section.top .info .banner h2 {
	 font-size: 20px;
	 font-weight: 400;
	 margin-bottom: 20px;
}
 section.top .info .banner .bottom {
	 max-width: 470px;
	 width: 100%;
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
}
 section.top .info .banner .bottom .btn {
	 height: 40px;
	 width: 160px;
}
 section.top .info .banner .bottom .call {
	 font-size: 20px;
	 font-weight: 700;
	 white-space: nowrap;
	 padding: 3px;
	 height: fit-content;
}
 section.top .info .banner .bottom .chat {
	 font-size: 12px;
}
 section.top .info .banner .bottom .message .links {
	 display: flex;
}
 section.top .info .banner .bottom .message .links a {
	 width: 22px;
	 height: 22px;
	 display: flex;
	 overflow: hidden;
	 margin-right: 4px;
}
 section.top .info .banner .bottom .message .links a img {
	 width: 100%;
	 height: 100%;
}
 section.top .info .banner .bottom .message .links a.viber img {
	 scale: 1.2;
}
 section.top .info .banner .bottom .message .links a.whatsapp img {
	 scale: 0.9;
}
 section.top .info .banner .bottom .message .links a.telegram img {
	 scale: 0.8;
}
 section.top .info .banner .bottom .message .links a:last-child {
	 margin-right: 0;
}
 section.top .info .banner > img {
	 position: absolute;
	 bottom: 0;
	 height: 100%;
	 right: 0;
}
 section.top .info .number {
	 display: grid;
	 grid-template-columns: repeat(3, 1fr);
	 gap: 20px;
}
 section.top .info .number .item {
	 padding: 9px;
	 border-radius: 20px;
	 border: 1px solid var(--light);
	 display: grid;
	 grid-template-columns: 28px 1fr;
	 gap: 0 20px;
	 align-items: center;
	 background: var(--light-gradient);
}
 section.top .info .number .item span {
	 font-size: 14px;
	 font-weight: 700;
}
 section.top .info .number .item h3 {
	 font-weight: 300;
	 font-size: 14px;
}
 section.top .info .number .item.calendar::before {
	 content: '\e90b';
}
 section.top .info .number .item.cars::before {
	 content: '\e90a';
}
 section.top .info .number .item.clients::before {
	 content: '\e909';
}
 .cta-banner {
	 margin-top: 20px;
	 border-radius: 20px;
	 position: relative;
	 height: 500px;
	 border: 1px solid var(--light);
	 padding: 70px 110px;
	 display: flex;
	 flex-direction: column;
	 justify-content: end;
	 position: relative;
	 z-index: 2;
}
 .cta-banner img {
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 border-radius: 20px;
	 z-index: 0;
}
 .cta-banner span {
	 display: flex;
	 width: 220px;
	 height: 40px;
	 align-items: center;
	 justify-content: center;
	 font-weight: 700;
	 color: var(--white);
	 background: var(--main);
	 box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.15);
	 border-radius: 20px;
	 position: relative;
	 z-index: 9;
}
 .cta-banner h2 {
	 position: relative;
	 z-index: 9;
	 color: var(--white);
	 font-size: 64px;
	 margin-top: 20px;
	 line-height: 1;
	 font-weight: 300;
}
 .cta-banner::after {
	 content: '';
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 bottom: 0;
	 left: 0;
	 background: rgba(0, 0, 0, 0.1);
	 border-radius: 20px;
	 z-index: 2;
}
 .cta-after {
	 background: #f4f5fc;
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 padding: 60px 20px 20px;
	 transform: translateY(-40px);
	 position: relative;
	 z-index: 1;
}
 .cta-after .desc .actions {
	 display: flex;
}
 .cta-after .desc .actions .btn {
	 height: 40px;
	 margin-right: 30px;
}
 .cta-after .desc .actions .btn.main {
	 width: 300px;
}
 .cta-after .desc .actions .btn.accent {
	 width: 160px;
}
 .cta-after .desc .actions .btn:last-child {
	 margin-right: 0;
}
 .cta-after .items {
	 display: grid;
	 grid-template-columns: 1fr;
	 gap: 20px;
}
 .cta-after .items .item {
	 display: flex;
	 flex-direction: column;
	 max-width: 760px;
}
 .cta-after .items .item > * {
	 margin-bottom: 10px;
}
 .cta-after .items .item > *:last-child {
	 margin-bottom: 0;
}
 .cta-after .items .item p {
	 text-align: justify;
}
 .cta-after .items .item b, .cta-after .items .item strong {
	 font-weight: 700;
	 font-size: 14px;
	 color: var(--main);
}
 .cta-after .items .item ul {
	 list-style: none;
	 display: flex;
	 flex-direction: column;
}
 .cta-after .items .item ul li {
	 font-size: 14px;
	 position: relative;
	 padding-left: 10px;
	 margin-bottom: 10px;
}
 .cta-after .items .item ul li::before {
	 content: '';
	 position: absolute;
	 min-width: 4px;
	 top: 6px;
	 left: 0;
	 width: 4px;
	 display: flex;
	 height: 4px;
	 background: var(--main);
	 border-radius: 50%;
}
 .cta-after .items .item ul li:last-child {
	 margin-bottom: 0;
}
 section.why-us {
	 margin-top: 30px;
}
 section.why-us h2 {
	 margin-left: 20px;
	 margin-bottom: 10px;
}
 section.why-us .items {
	 display: grid;
	 grid-template-columns: repeat(4, 1fr);
	 gap: 20px;
}
 section.why-us .items .item {
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 padding: 20px;
	 background: var(--light-gradient);
}
 section.why-us .items .item h3 {
	 font-size: 14px;
	 font-weight: 700;
	 color: var(--main);
	 line-height: 20px;
	 display: flex;
	 flex-direction: column;
	 margin-bottom: 10px;
}
 section.why-us .items .item h3::before {
	 height: 38px;
	 width: 38px;
	 min-width: 38px;
	 font-weight: 300;
	 margin-bottom: 10px;
}
 section.why-us .items .item h3.price::before {
	 content: '\e907';
}
 section.why-us .items .item h3.calendar::before {
	 content: '\e90b';
}
 section.why-us .items .item h3.to::before {
	 content: '\e906';
}
 section.why-us .items .item h3.time::before {
	 content: '\e900';
}
 section.why-us .items .item p {
	 font-size: 14px;
	 line-height: 20px;
}
 section.cta-text {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 height: 140px;
	 align-items: center;
	 gap: 40px;
	 border-radius: 20px;
	 padding: 20px;
	 margin-top: 20px;
}
 section.cta-text .text {
	 display: flex;
	 flex-direction: column;
	 align-items: end;
}
 section.cta-text .text h2 {
	 color: var(--main);
	 font-weight: 300;
	 font-size: 32px;
}
 section.cta-text .text p {
	 color: var(--main);
	 font-size: 18px;
}
 section.cta-text .actions {
	 display: flex;
}
 section.cta-text .actions .btn {
	 height: 40px;
	 margin-right: 30px;
}
 section.cta-text .actions .btn.main {
	 width: 300px;
}
 section.cta-text .actions .btn.accent {
	 width: 160px;
}
 section.cta-text .actions .btn:last-child {
	 margin-right: 0;
}
 section.cta-text.main {
	 background: rgba(0, 117, 0, .25);
	 border: 1px solid var(--main);
}
 section.cta-text.accent {
	 background: rgba(254, 71, 28, .25);
	 border: 1px solid var(--accent);
}
 section.cta-text.accent .text h2, section.cta-text.accent .text p {
	 color: var(--accent);
}
 section.price {
	 margin-top: 20px;
	 border-radius: 20px;
	 border: 1px solid var(--light);
	 background: var(--white);
	 padding: 10px 20px 20px;
}
 section.price h2 {
	 color: var(--main);
	 max-width: 600px;
	 width: fit-content;
	 margin: 0 auto 10px;
}
 section.price .rates-table {
	 display: flex;
	 flex-direction: column;
}
 section.price .rates-table .head {
	 margin-bottom: 30px;
}
 section.price .rates-table .head .item {
	 background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #e9eaea 100%);
}
 section.price .rates-table .head .item p {
	 font-size: 14px;
	 font-weight: 700;
}
 section.price .rates-table .head .item::after {
	 content: '';
	 display: block;
	 width: 160px;
}
 section.price .rates-table .content {
	 display: grid;
	 grid-template-columns: 1fr;
	 gap: 30px;
}
 section.price .rates-table .content .item {
	 background: var(--light-gradient);
}
 section.price .rates-table .content .item p {
	 font-weight: 700;
	 color: var(--main);
}
 section.price .rates-table .content .item .price-min {
	 color: var(--accent);
}
 section.price .rates-table .content .item .price-km {
	 color: var(--dark);
}
 section.price .rates-table .content .item .img {
	 position: relative;
	 height: 100%;
}
 section.price .rates-table .content .item .img img {
	 width: 85px;
	 position: absolute;
	 max-height: 60px;
	 object-fit: contain;
	 bottom: 0;
	 left: 50%;
	 transform: translateX(-50%);
}
 section.price .rates-table .item {
	 display: flex;
	 align-items: center;
	 padding: 0 0 0 20px;
	 border-radius: 20px;
	 width: 100%;
	 height: 40px;
}
 section.price .rates-table .item > * {
	 margin-right: 20px;
}
 section.price .rates-table .item > *:last-child {
	 margin-right: 0;
}
 section.price .rates-table .item p {
	 text-align: center;
}
 section.price .rates-table .item .r-name {
	 width: 10%;
}
 section.price .rates-table .item .img {
	 width: 10%;
}
 section.price .rates-table .item .price-h {
	 width: 15%;
}
 section.price .rates-table .item .price-min {
	 width: 20%;
}
 section.price .rates-table .item .price-min.m {
	 display: none;
}
 section.price .rates-table .item .capacity {
	 width: 15%;
}
 section.price .rates-table .item .price-km {
	 width: 20%;
}
 section.price .rates-table .item .btn {
	 width: 160px;
	 height: 40px;
}
 section.callback {
	 margin-top: 40px;
	 position: relative;
	 margin-bottom: 50px;
	 width: 100%;
	 overflow: hidden;
}
 section.callback .container {
	 max-width: 650px;
	 width: 100%;
	 margin: 0 auto;
	 background: #f4f5fc;
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 padding: 20px;
	 position: relative;
	 z-index: 9;
}
 section.callback .container h2 {
	 margin-bottom: 10px;
	 color: var(--accent);
}
 section.callback .container > p {
	 margin-bottom: 20px;
}
 section.callback .container form {
	 background: var(--main);
	 border-radius: 10px;
	 padding: 20px;
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 30px 20px;
}
 section.callback .container form .box {
	 display: flex;
	 flex-direction: column;
}
 section.callback .container form .box label {
	 color: var(--white);
	 margin-bottom: 10px;
	 font-size: 14px;
}
 section.callback .container form .box input, section.callback .container form .box textarea {
	 padding: 10px;
	 display: flex;
	 align-items: center;
	 border: none;
	 outline: none;
	 border-radius: 10px;
}
 section.callback .container form .box input {
	 height: 40px;
}
 section.callback .container form .box input.error {
	 border: 2px solid var(--danger);
}
 section.callback .container form .box textarea {
	 resize: vertical;
	 height: 120px;
	 min-height: 120px;
	 max-height: 200px;
}
 section.callback .container form .box.full {
	 grid-column: span 2;
}
 section.callback .container form .box.terms {
	 flex-direction: row;
}
 section.callback .container form .box.terms label {
	 margin-left: 20px;
	 margin-bottom: 0;
}
 section.callback .container form .box.terms input[type="checkbox"] {
	 min-width: 20px;
	 width: 20px;
	 height: 20px;
}
 section.callback .container form .btn {
	 width: 160px;
	 height: 40px;
	 margin-left: 40px;
}
 section.callback img {
	 position: absolute;
	 width: 860px;
	 object-fit: contain;
	 z-index: 1;
	 opacity: 0.2;
}
 section.callback img.btm {
	 bottom: 0;
	 right: calc(50% + 325px);
}
 section.callback img.top {
	 top: 0;
	 left: calc(50% + 325px);
}
 section.services {
	 margin-top: 20px;
	 border-radius: 20px;
	 background: #f4f5fc;
	 padding: 20px;
}
 section.services h2 {
	 margin-bottom: 20px;
}
 section.services .content {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 20px;
}
 section.services .content > div {
	 display: grid;
	 grid-template-columns: 1fr;
	 gap: 20px;
}
 section.services .content > div .item {
	 padding: 20px;
	 border-radius: 20px;
	 background: #fff;
	 border: 1px solid var(--light);
}
 section.services .content > div .item h3 {
	 font-size: 16px;
	 padding: 0 0 10px 0;
	 font-weight: 700;
}
 section.services .content > div .item > b {
	 margin: 10px 0;
	 font-weight: 700;
	 font-size: 14px;
}
 section.services .content > div .item > p {
	 margin: 10px 0;
}
 section.services .content > div .item b, section.services .content > div .item strong, section.services .content > div .item a {
	 font-weight: 700;
	 font-size: 14px;
	 color: var(--main);
}
 section.services .content > div .item ul {
	 list-style: none;
	 display: flex;
	 flex-direction: column;
}
 section.services .content > div .item ul li {
	 font-size: 14px;
	 position: relative;
	 padding-left: 10px;
	 margin-bottom: 10px;
}
 section.services .content > div .item ul li::before {
	 content: '';
	 position: absolute;
	 min-width: 4px;
	 top: 6px;
	 left: 0;
	 width: 4px;
	 display: flex;
	 height: 4px;
	 background: var(--main);
	 border-radius: 50%;
}
 section.services .content > div .item ul li:last-child {
	 margin-bottom: 0;
}
 section.services .content > div .item p {
	 font-size: 14px;
}
 section.services .content > div .item p.q {
	 max-width: 270px;
	 width: 100%;
	 align-self: end;
	 text-align: right;
	 color: var(--main);
	 font-size: 14px;
	 margin-top: 20px;
}
 section.services .content > div .item.excl h3 {
	 font-weight: 600;
	 font-size: 16px;
	 color: var(--accent);
	 margin-bottom: 20px;
}
 section.services .content > div .item.excl p {
	 font-size: 14px;
	 color: var(--main);
}
 section.services .content > div > .services-img {
	 width: 100%;
}
 section.client-info, div.client-info {
	 display: grid;
	 grid-template-columns: repeat(2, 1fr);
	 grid-template-rows: auto 1fr;
	 gap: 20px;
	 margin-top: 20px;
}
 section.client-info > section, div.client-info > section {
	 background: var(--light-gradient);
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 padding: 20px;
}
 section.client-info h2, div.client-info h2 {
	 margin-bottom: 20px;
}
 section.client-info .content, div.client-info .content {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 40px;
}
 section.client-info .workflow, div.client-info .workflow {
	 grid-row: span 2;
}
 section.client-info .workflow .items, div.client-info .workflow .items {
	 --active-top: 0px;
	 --line-height: 100px;
	 display: flex;
	 flex-direction: column;
	 gap: 40px;
	 padding: 20px 0;
	 position: relative;
}
 section.client-info .workflow .items .item, div.client-info .workflow .items .item {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 0 60px;
}
 section.client-info .workflow .items .item h3, div.client-info .workflow .items .item h3 {
	 color: var(--main);
	 font-weight: 700;
	 line-height: 20px;
}
 section.client-info .workflow .items .item h3::before, div.client-info .workflow .items .item h3::before {
	 margin-bottom: 10px;
	 font-family: 'roboto-c', system-ui, sans-serif;
	 font-weight: 700;
	 font-size: 20px;
	 height: 38px;
	 width: 38px;
	 min-width: 38px;
}
 section.client-info .workflow .items .item p, div.client-info .workflow .items .item p {
	 line-height: 20px;
}
 section.client-info .workflow .items .item::before, div.client-info .workflow .items .item::before {
	 font-family: icon;
	 grid-row: span 2;
	 font-size: 66px;
	 align-self: center;
	 justify-self: end;
	 color: rgba(0, 117, 0, 0.25);
}
 section.client-info .workflow .items .item:nth-child(1) h3::before, div.client-info .workflow .items .item:nth-child(1) h3::before {
	 content: '1';
}
 section.client-info .workflow .items .item:nth-child(2) h3::before, div.client-info .workflow .items .item:nth-child(2) h3::before {
	 content: '2';
}
 section.client-info .workflow .items .item:nth-child(3) h3::before, div.client-info .workflow .items .item:nth-child(3) h3::before {
	 content: '3';
}
 section.client-info .workflow .items .item:nth-child(4) h3::before, div.client-info .workflow .items .item:nth-child(4) h3::before {
	 content: '4';
}
 section.client-info .workflow .items .item:nth-child(5) h3::before, div.client-info .workflow .items .item:nth-child(5) h3::before {
	 content: '5';
}
 section.client-info .workflow .items .item:nth-child(2n) h3, div.client-info .workflow .items .item:nth-child(2n) h3 {
	 grid-row: 1;
}
 section.client-info .workflow .items .item:nth-child(2n) h3::before, div.client-info .workflow .items .item:nth-child(2n) h3::before {
	 justify-self: end;
}
 section.client-info .workflow .items .item:nth-child(2n) h3, div.client-info .workflow .items .item:nth-child(2n) h3, section.client-info .workflow .items .item:nth-child(2n) p, div.client-info .workflow .items .item:nth-child(2n) p {
	 grid-column: 1;
	 text-align: right;
}
 section.client-info .workflow .items .item:nth-child(2n)::before, div.client-info .workflow .items .item:nth-child(2n)::before {
	 grid-column: 2;
	 justify-self: start;
}
 section.client-info .workflow .items .item.req::before, div.client-info .workflow .items .item.req::before {
	 content: '\e905';
}
 section.client-info .workflow .items .item.clarify::before, div.client-info .workflow .items .item.clarify::before {
	 content: '\e904';
}
 section.client-info .workflow .items .item.appr::before, div.client-info .workflow .items .item.appr::before {
	 content: '\e902';
}
 section.client-info .workflow .items .item.complete::before, div.client-info .workflow .items .item.complete::before {
	 content: '\e903';
}
 section.client-info .workflow .items .item.ready::before, div.client-info .workflow .items .item.ready::before {
	 content: '\e901';
}
 section.client-info .workflow .items::before, div.client-info .workflow .items::before {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 50%;
	 transform: translateX(-50%);
	 width: 5px;
	 height: 100%;
	 background: var(--light);
	 border-radius: 20px;
}
 section.client-info .workflow .items::after, div.client-info .workflow .items::after {
	 content: '';
	 position: absolute;
	 top: 20px;
	 bottom: 20px;
	 right: 50%;
	 transform: translateX(50%);
	 width: 5px;
	 height: var(--line-height);
	 background: var(--main);
	 border-radius: 20px;
	 top: var(--active-top);
	 transition: top 0.5s cubic-bezier(0.77, 0, 0.18, 1), height 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
 section.client-info .text-info, div.client-info .text-info {
	 display: flex;
	 flex-direction: column;
	 height: fit-content;
}
 section.client-info .text-info p, div.client-info .text-info p {
	 font-size: 14px;
	 text-align: justify;
}
 section.client-info .text-info .q, div.client-info .text-info .q {
	 max-width: 400px;
	 width: 100%;
	 color: var(--main);
	 margin-top: 20px;
	 text-align: right;
	 align-self: end;
}
 section.client-info .text-info b, div.client-info .text-info b, section.client-info .text-info strong, div.client-info .text-info strong {
	 font-weight: 700;
	 font-size: 14px;
	 color: var(--main);
}
 section.client-info .text-info ul, div.client-info .text-info ul {
	 list-style: none;
	 display: flex;
	 flex-direction: column;
}
 section.client-info .text-info ul li, div.client-info .text-info ul li {
	 font-size: 14px;
	 position: relative;
	 padding-left: 10px;
	 margin-bottom: 10px;
}
 section.client-info .text-info ul li::before, div.client-info .text-info ul li::before {
	 content: '';
	 position: absolute;
	 min-width: 4px;
	 top: 6px;
	 left: 0;
	 width: 4px;
	 display: flex;
	 height: 4px;
	 background: var(--main);
	 border-radius: 50%;
}
 section.client-info .text-info ul li:last-child, div.client-info .text-info ul li:last-child {
	 margin-bottom: 0;
}
 section.client-info .faq .items, div.client-info .faq .items {
	 display: grid;
	 grid-template-columns: 1fr;
	 gap: 20px;
}
 section.client-info .faq .items .item, div.client-info .faq .items .item {
	 border-radius: 20px;
	 background: var(--white);
	 border: 1px solid var(--light);
}
 section.client-info .faq .items .item .title, div.client-info .faq .items .item .title {
	 padding: 10px 15px;
	 display: flex;
	 gap: 20px;
	 justify-content: space-between;
	 align-items: center;
	 border-radius: 20px;
	 cursor: pointer;
	 transition: 0.2s linear;
}
 section.client-info .faq .items .item .title h3, div.client-info .faq .items .item .title h3 {
	 font-weight: 700;
	 color: var(--main);
}
 section.client-info .faq .items .item .title span, div.client-info .faq .items .item .title span {
	 width: 20px;
	 min-width: 20px;
	 height: 20px;
	 position: relative;
}
 section.client-info .faq .items .item .title span::before, div.client-info .faq .items .item .title span::before, section.client-info .faq .items .item .title span::after, div.client-info .faq .items .item .title span::after {
	 content: '';
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 background: var(--accent);
	 width: 18px;
	 height: 2px;
	 border-radius: 2px;
}
 section.client-info .faq .items .item .title span::after, div.client-info .faq .items .item .title span::after {
	 transform: translate(-50%, -50%) rotate(90deg);
	 transition: 0.3s linear;
}
 section.client-info .faq .items .item .info, div.client-info .faq .items .item .info {
	 overflow: hidden;
	 max-height: 0;
	 opacity: 0;
	 transition: 0.3s linear;
}
 section.client-info .faq .items .item .info .inner, div.client-info .faq .items .item .info .inner {
	 padding: 10px 15px;
}
 section.client-info .faq .items .item.active .title span::after, div.client-info .faq .items .item.active .title span::after {
	 transform: translate(-50%, -50%) rotate(0deg);
	 opacity: 0;
	 visibility: hidden;
}
 section.client-info .faq .items .item.active .info, div.client-info .faq .items .item.active .info {
	 opacity: 1;
}
 section.client-info.fc, div.client-info.fc {
	 background: #f4f5fc;
	 border: 1px solid var(--light);
	 border-radius: 20px;
	 display: flex;
	 flex-direction: column;
	 padding: 20px;
}
 section.client-info.fc > .desc, div.client-info.fc > .desc {
	 gap: 40px;
}
 section.client-info.fc .text-info, div.client-info.fc .text-info {
	 background: none;
	 border-radius: 0;
	 border: none;
}
 section.client-info.fc .workflow, div.client-info.fc .workflow {
	 background: none;
	 border-radius: 0;
	 border: none;
	 grid-row: auto;
}
 section.client-info.bg .content .faq, div.client-info.bg .content .faq {
	 background: var(--light-gradient);
	 border-radius: 20px;
	 padding: 20px;
	 border: 1px solid var(--light);
}
 section.client-info.di .text-info h3, div.client-info.di .text-info h3 {
	 font-size: 20px;
	 font-weight: 700;
	 color: var(--dark);
	 margin-bottom: 20px;
}
 section.client-info.di .text-info .item, div.client-info.di .text-info .item {
	 margin: 20px 0;
}
 section.client-info.fc .text-info, div.client-info.fc .text-info, section.client-info.di .text-info, div.client-info.di .text-info {
	 height: 100%;
}
 section.client-info.fc .text-info img, div.client-info.fc .text-info img, section.client-info.di .text-info img, div.client-info.di .text-info img {
	 width: 100%;
}
 section.client-info.fc .text-info .item, div.client-info.fc .text-info .item, section.client-info.di .text-info .item, div.client-info.di .text-info .item {
	 padding: 20px;
	 border-radius: 20px;
	 background: #fff;
	 border: 1px solid var(--light);
	 display: grid;
	 grid-template-columns: 1fr;
	 gap: 10px;
}
 section.client-info.fc .text-info .item h3, div.client-info.fc .text-info .item h3, section.client-info.di .text-info .item h3, div.client-info.di .text-info .item h3 {
	 font-size: 16px;
	 font-weight: 700;
}
 section.client-info.fc .text-info .item > b, div.client-info.fc .text-info .item > b, section.client-info.di .text-info .item > b, div.client-info.di .text-info .item > b {
	 margin: 10px 0;
	 font-weight: 700;
	 font-size: 14px;
}
 section.client-info.fc .text-info .item b, div.client-info.fc .text-info .item b, section.client-info.di .text-info .item b, div.client-info.di .text-info .item b, section.client-info.fc .text-info .item strong, div.client-info.fc .text-info .item strong, section.client-info.di .text-info .item strong, div.client-info.di .text-info .item strong {
	 font-weight: 700;
	 font-size: 14px;
	 color: var(--main);
}
 section.client-info.fc .text-info .item ul, div.client-info.fc .text-info .item ul, section.client-info.di .text-info .item ul, div.client-info.di .text-info .item ul {
	 list-style: none;
	 display: flex;
	 flex-direction: column;
}
 section.client-info.fc .text-info .item ul li, div.client-info.fc .text-info .item ul li, section.client-info.di .text-info .item ul li, div.client-info.di .text-info .item ul li {
	 font-size: 14px;
	 position: relative;
	 padding-left: 10px;
	 margin-bottom: 10px;
}
 section.client-info.fc .text-info .item ul li::before, div.client-info.fc .text-info .item ul li::before, section.client-info.di .text-info .item ul li::before, div.client-info.di .text-info .item ul li::before {
	 content: '';
	 position: absolute;
	 min-width: 4px;
	 top: 6px;
	 left: 0;
	 width: 4px;
	 display: flex;
	 height: 4px;
	 background: var(--main);
	 border-radius: 50%;
}
 section.client-info.fc .text-info .item ul li:last-child, div.client-info.fc .text-info .item ul li:last-child, section.client-info.di .text-info .item ul li:last-child, div.client-info.di .text-info .item ul li:last-child {
	 margin-bottom: 0;
}
 section.client-info.fc .text-info .item p, div.client-info.fc .text-info .item p, section.client-info.di .text-info .item p, div.client-info.di .text-info .item p {
	 font-size: 14px;
}
 section.client-info.fc .text-info .item blockquote, div.client-info.fc .text-info .item blockquote, section.client-info.di .text-info .item blockquote, div.client-info.di .text-info .item blockquote {
	 max-width: 270px;
	 width: 100%;
	 align-self: end;
	 margin-top: 20px;
}
 section.client-info.fc .text-info .item blockquote p, div.client-info.fc .text-info .item blockquote p, section.client-info.di .text-info .item blockquote p, div.client-info.di .text-info .item blockquote p {
	 text-align: right;
	 font-size: 14px;
	 color: var(--main);
}
 section.items-grid {
	 margin-top: 40px;
}
 section.items-grid h2 {
	 margin-bottom: 10px;
	 padding: 0 20px;
}
 section.items-grid .desc {
	 padding: 0 20px;
}
 section.items-grid .desc .btns {
	 display: flex;
	 gap: 20px;
}
 section.items-grid .desc .btns .btn {
	 height: 40px;
	 width: 160px;
}
 section.items-grid .items {
	 display: grid;
	 grid-template-columns: repeat(4, 1fr);
	 gap: 30px 20px;
}
 section.items-grid .items .item {
	 width: 100%;
	 position: relative;
}
 section.items-grid .items .item img {
	 width: 100%;
	 object-fit: cover;
	 height: 200px;
	 border-radius: 20px;
	 display: flex;
}
 section.items-grid .items .item h3 {
	 font-weight: 700;
	 color: var(--main);
	 padding: 10px 20px;
	 max-width: 240px;
}
 section.items-grid .items .item a {
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
}
 section.items-grid.more {
	 padding: 20px 10px 10px;
	 background: var(--light-gradient);
	 border-radius: 20px;
	 border: 1px solid var(--light);
}
 section.items-grid.gallery .items {
	 gap: 20px;
}
 section.main-data.banner {
	 background: #f4f5fc;
	 border-radius: 20px;
	 padding: 20px;
	 display: grid;
	 gap: 50px;
	 border: 1px solid var(--light);
	 grid-template-columns: 1fr 1fr;
}
 section.main-data.banner .left {
	 display: flex;
	 flex-direction: column;
}
 section.main-data.banner .left h2 {
	 color: var(--dark);
	 font-size: 36px;
	 margin-bottom: 40px;
}
 section.main-data.banner .left b, section.main-data.banner .left strong {
	 color: var(--main);
	 font-weight: 700;
}
 section.main-data.banner .left p {
	 text-align: justify;
}
 section.main-data.banner .left blockquote {
	 align-self: end;
	 margin-bottom: 40px;
	 margin-top: 20px;
}
 section.main-data.banner .left blockquote p {
	 text-align: right;
	 color: var(--main);
}
 section.main-data.banner .left .actions {
	 display: flex;
	 margin-bottom: 40px;
	 align-self: end;
}
 section.main-data.banner .left .actions .btn {
	 height: 40px;
	 margin-right: 30px;
}
 section.main-data.banner .left .actions .btn.main {
	 width: 300px;
}
 section.main-data.banner .left .actions .btn.accent {
	 width: 160px;
}
 section.main-data.banner .left .actions .btn:last-child {
	 margin-right: 0;
}
 section.main-data.banner .right {
	 display: flex;
	 flex-direction: column;
}
 section.main-data.banner .right > img {
	 width: 100%;
	 height: 100%;
	 object-fit: contain;
}
 section.main-data.banner .right > img.ss {
	 border-radius: 10px;
	 border: 1px solid var(--light);
	 height: fit-content;
}
 section.main-data.banner .right .items {
	 display: flex;
	 gap: 20px;
	 justify-content: space-between;
	 margin-bottom: 40px;
}
 section.main-data.banner .right .items .item {
	 display: grid;
	 grid-template-columns: 50px 1fr;
	 gap: 0 20px;
}
 section.main-data.banner .right .items .item span {
	 display: block;
	 margin-bottom: 10px;
	 line-height: 1;
	 color: var(--accent);
	 font-size: 36px;
	 font-weight: 700;
}
 section.main-data.banner .right .items .item p {
	 color: var(--accent);
	 font-size: 14px;
	 font-weight: 700;
	 margin-bottom: 10px;
}
 section.main-data.banner .right .items .item h3 {
	 font-size: 14px;
	 color: var(--dark);
}
 section.main-data.banner .right .items .item::before {
	 font-family: icon;
	 content: '\e900';
	 grid-row: span 3;
	 border: 1px solid var(--light);
	 border-radius: 50%;
	 width: 48px;
	 display: flex;
	 align-items: center;
	 text-align: center;
	 justify-content: center;
	 color: var(--white);
	 min-width: 48px;
	 height: 48px;
	 background: var(--accent);
	 box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.35);
}
 section.main-data.banner.ss {
	 grid-template-columns: calc(58% - 25px) calc(42% - 25px);
}
.content-404 {
	height: 100%;
	margin-top: auto;
	margin-bottom: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 60px 0;
	max-width: 920px;
	width: calc(100% - 40px);
	gap: 80px;
	.text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: end;
		h1 {
			margin-bottom: 20px;
			font-weight: 700;
			text-align: right;
		}
		a {
			color: var(--main);
			margin-top: 40px;
			text-align: right;
		}
		p {
			text-align: right;
		}
	}
	img {
		width: 100%;
	}
}
 @media screen and (max-width: 1279px) {
	 .wrapper {
		 max-width: unset;
		 width: calc(100% - 40px);
	}
	 section > .desc {
		 display: flex;
		 justify-content: space-between;
	}
	 section > .desc .btn {
		 min-width: 160px;
		 width: 160px;
	}
	 header {
		 gap: 30px;
		 justify-content: space-between;
	}
	 header .logo {
		 margin-left: 0;
		 margin-right: 30px;
		 max-width: 150px;
	}
	 header .logo span {
		 font-size: 30px;
	}
	 header nav ul li a, header nav ul li p {
		 font-size: 15px;
	}
	 section.top {
		 flex-direction: column;
		 display: flex;
		 margin-top: 20px;
		 gap: 20px;
	}
	 section.top .view {
		 width: 100%;
		 display: flex;
		 gap: 20px;
	}
	 section.top .info {
		 width: 100%;
	}
	 section.why-us .items {
		 display: grid;
		 grid-template-columns: repeat(2, 1fr);
	}
	 section.why-us .items .item {
		 width: 100%;
	}
	 section.services {
		 padding: 15px;
	}
	 section.services .content > div .item {
		 padding: 15px;
	}
	 section.services .content > div .item .title {
		 padding-top: 0;
	}
	 section.cta-text {
		 height: auto;
		 min-height: 140px;
	}
	 section.cta-text .text h2 {
		 font-size: 28px;
		 text-align: right;
	}
	 section.cta-text .text p {
		 font-size: 16px;
		 text-align: right;
	}
	 section.cta-text .actions {
		 gap: 15px;
	}
	 section.cta-text .actions .btn {
		 margin: 0;
	}
	 section.price {
		 padding: 10px;
	}
	 section.price .rates-table .item {
		 padding-left: 10px;
		 gap: 10px;
	}
	 section.price .rates-table .item > * {
		 margin-right: 0;
	}
	 section.price .rates-table .item p {
		 font-size: 14px;
	}
	 section.price .rates-table .item .img {
		 width: 20%;
	}
	 section.price .rates-table .item .price-h {
		 width: 13%;
	}
	 section.price .rates-table .item .price-min {
		 width: 17%;
	}
	 section.price .rates-table .item .price-min.m {
		 display: block;
	}
	 section.price .rates-table .item .price-min.d {
		 display: none;
	}
	 .cta-banner {
		 padding: 60px;
	}
	 .cta-banner h2 {
		 font-size: 58px;
	}
	 section.items-grid .desc p {
		 width: 100%;
	}
	 section.items-grid .items {
		 grid-template-columns: repeat(3, 1fr);
	}
	 section.items-grid.more .items {
		 grid-template-columns: repeat(2, 1fr);
	}
	 .cta-after .desc h2 {
		 min-width: 260px;
	}
	 .cta-after .desc .actions {
		 gap: 15px;
	}
	 .cta-after .desc .actions .btn {
		 margin: 0;
	}
	 .cta-after .desc .actions .btn.accent {
		 width: 150px;
	}
	 .cta-after .desc .actions .btn.main {
		 max-width: 300px;
		 width: 100%;
		 padding: 5px 15px;
	}
	 .cta-after .items {
		 grid-template-columns: 1fr;
	}
	 section.main-data.banner {
		 display: flex;
		 flex-direction: column;
	}
	 section.main-data.banner .left {
		 width: 100%;
	}
	 section.main-data.banner .right {
		 width: 100%;
		 display: flex;
		 flex-direction: column;
	}
	 section.main-data.banner .right img {
		 max-width: 600px;
		 align-self: center;
	}
	 section.main-data.banner .right .items {
		 justify-content: start;
	}
	 section.main-data.banner .right .items .item {
		 max-width: 300px;
	}
	 section.main-data.banner.ss .left {
		 width: 100%;
	}
	 section.main-data.banner.ss .right {
		 width: 100%;
	}
	 footer {
		 grid-template-columns: repeat(2, 1fr);
	}
	 footer.wrapper {
		 width: 100%;
		 margin: 0;
	}
	 footer .info {
		 grid-row: 2;
	}
	 footer .info .container .company ul {
		 margin-top: 20px;
	}
	 footer .contacts, footer .order-cta {
		 grid-row: 1;
	}
	 footer .contacts {
		 padding: 40px;
	}
}
 @media screen and (max-width: 767px) {
	 .btn.main {
		 font-weight: 500;
	}
	 .btn.accent {
		 font-weight: 500;
	}
    .mobile-call-btn {
        display: flex;
        &::before {
            transform: rotate(90deg);
        }
    }
	 header {
		 position: relative;
		 align-items: center;
		 justify-content: space-between;
		 z-index: 999;
	}
	 header .logo p {
		 font-size: 16px;
	}
	 header .logo span {
		 font-size: 26px;
		 line-height: 26px;
	}
	 header .btn.burger {
		 display: flex;
		 flex-direction: column;
		 position: relative;
		 height: 24px;
		 width: 30px;
		 min-width: 30px;
	}
	 header .btn.burger span, header .btn.burger::before, header .btn.burger::after {
		 content: '';
		 width: 20px;
		 height: 2px;
		 background: var(--main);
		 border-radius: 2px;
		 position: absolute;
		 left: 50%;
		 transform: translate(-50%, -50%);
		 transition: 0.2s linear;
	}
	 header .btn.burger span {
		 top: 50%;
	}
	 header .btn.burger::before {
		 top: 7px;
	}
	 header .btn.burger::after {
		 bottom: 5px;
	}
	 header .btn.burger.active span {
		 opacity: 0;
		 visibility: hidden;
	}
	 header .btn.burger.active::before {
		 transform: translate(-50%, -50%) rotate(45deg);
		 top: 50%;
	}
	 header .btn.burger.active::after {
		 transform: translate(-50%, -50%) rotate(-45deg);
		 top: 50%;
	}
	 header nav {
		 position: absolute;
		 background: var(--white);
		 z-index: 99;
		 left: -20px;
		 top: 100%;
		 width: calc(100% + 35px);
		 box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
		 padding: 0 20px;
		 max-height: 0;
		 overflow: hidden;
		 opacity: 0;
		 transition: 0.3s linear;
	}
	 header nav ul {
		 flex-direction: column;
		 gap: 10px;
	}
	 header nav ul li {
		 flex-direction: column;
		 align-items: start;
	}
	 header nav ul li a, header nav ul li > p {
		 width: 100%;
		 justify-content: space-between;
	}
	 header nav ul li.menu-item-has-children .sub-menu {
		 position: static;
		 width: 100%;
		 border: none;
		 overflow: hidden;
		 max-height: 0;
		 padding: 0 15px;
	}
	 header nav.active {
		 padding: 20px;
		 overflow: visible;
		 opacity: 1;
	}
	 header nav::before {
		 content: '';
		 position: absolute;
		 top: 0;
		 left: 0;
		 width: 100%;
		 background: var(--light);
		 height: 1px;
		 z-index: 999;
	}
	 section > .desc {
		 display: flex;
		 flex-direction: column;
		 gap: 20px;
		 align-items: start;
	}
	 section > .desc p {
		 font-size: 14px;
	}
	 section > .desc .btns {
		 flex-direction: column;
		 gap: 10px;
	}
	 .wrapper {
		 width: calc(100% - 30px);
	}
	 section.top .view {
		 flex-direction: column-reverse;
	}
	 section.top .view h1 {
		 max-width: unset;
		 font-weight: 700;
		 text-align: center;
	}
	 section.top .info .banner {
		 padding: 15px;
		 overflow: hidden;
	}
	 section.top .info .banner > img {
		 height: auto;
		 max-width: 170px;
		 width: 100%;
		 right: -20px;
	}
	 section.top .info .banner span {
		 margin-bottom: 2px;
	}
	 section.top .info .banner .bottom {
		 flex-direction: column;
		 align-items: start;
		 gap: 5px;
	}
	 section.top .info .banner .bottom .btn {
		 height: 34px;
		 font-weight: 500;
	}
	 section.top .info .banner .bottom .call {
		 font-size: 18px;
	}
	 section.top .info .banner .bottom .message .links img {
		 width: 24px;
	}
	 section.top .info .number {
		 display: flex;
		 flex-direction: column;
		 gap: 10px;
	}
	 section.top .info .number .item {
		 width: 100%;
	}
	 section.why-us .items {
		 display: flex;
		 flex-direction: column;
		 gap: 10px;
	}
	 section.services .content {
		 display: flex;
		 flex-direction: column;
	}
	 section.services .content .left {
		 width: 100%;
		 gap: 10px;
	}
	 section.services .content .right {
		 width: 100%;
		 gap: 10px;
	}
	 section.services .content .right .items {
		 flex-direction: column;
	}
	 section.cta-text {
		 display: flex;
		 flex-direction: column;
		 gap: 30px;
	}
	 section.cta-text .text {
		 width: 100%;
	}
	 section.cta-text .text h2 {
		 width: 100%;
		 text-align: center;
	}
	 section.cta-text .text p {
		 width: 100%;
		 text-align: center;
	}
	 section.cta-text .actions {
		 width: 100%;
		 flex-direction: column;
		 gap: 10px;
	}
	 section.cta-text .actions .btn.main {
		 width: 100%;
	}
	 section.cta-text .actions .btn.accent {
		 width: 100%;
	}
	 .cta-banner {
		 padding: 40px 15px;
		 height: 240px;
	}
	 .cta-banner span {
		 width: 140px;
		 justify-self: 34px;
		 font-size: 14px;
	}
	 .cta-banner h2 {
		 font-size: 28px;
	}
	 .cta-after .desc {
		 gap: 15px;
	}
	 .cta-after .desc h2 {
		 min-width: unset;
	}
	 .cta-after .desc .actions {
		 display: flex;
		 flex-direction: column;
		 width: 100%;
		 gap: 10px;
	}
	 .cta-after .desc .actions .btn.accent {
		 width: 100%;
		 max-width: 300px;
	}
	 .cta-after .desc .actions .btn.main {
		 width: 100%;
		 padding: 5px 15px;
		 max-width: 300px;
	}
	 .cta-after .items .item {
		 font-size: 14px;
	}
	 section.client-info, div.client-info {
		 display: flex;
		 flex-direction: column;
	}
	 section.client-info .workflow, div.client-info .workflow {
		 padding: 15px;
	}
	 section.client-info .workflow .items .item, div.client-info .workflow .items .item {
		 grid-template-columns: 1fr 4fr;
		 gap: 0 40px;
	}
	 section.client-info .workflow .items .item:nth-child(2n) h3, div.client-info .workflow .items .item:nth-child(2n) h3, section.client-info .workflow .items .item:nth-child(2n) p, div.client-info .workflow .items .item:nth-child(2n) p {
		 grid-column: 2;
		 text-align: left;
	}
	 section.client-info .workflow .items .item:nth-child(2n) h3::before, div.client-info .workflow .items .item:nth-child(2n) h3::before {
		 justify-self: start;
	}
	 section.client-info .workflow .items .item:nth-child(2n)::before, div.client-info .workflow .items .item:nth-child(2n)::before {
		 grid-column: 1;
		 justify-self: start;
	}
	 section.client-info .workflow .items .item::before, div.client-info .workflow .items .item::before {
		 justify-self: start;
		 font-size: 52px;
	}
	 section.client-info .workflow .items::before, div.client-info .workflow .items::before {
		 left: 68px;
	}
	 section.client-info .workflow .items::after, div.client-info .workflow .items::after {
		 left: 63px;
	}
	 section.client-info .faq, div.client-info .faq {
		 padding: 15px;
	}
	 section.client-info .faq .items, div.client-info .faq .items {
		 gap: 10px;
	}
	 section.client-info .faq .items .item, div.client-info .faq .items .item {
		 border-radius: 10px;
	}
	 section.client-info .faq .items .item .title, div.client-info .faq .items .item .title {
		 border-radius: 10px;
	}
	 section.client-info.bg, div.client-info.bg {
		 gap: 0;
	}
	 section.client-info.bg .content, div.client-info.bg .content {
		 flex-direction: column;
	}
	 section.client-info.bg .content .faq, div.client-info.bg .content .faq {
		 width: 100%;
	}
	 section.client-info.bg .content .workflow, div.client-info.bg .content .workflow {
		 width: 100%;
	}
	 section.items-grid .desc .btns {
		 width: 100%;
		 gap: 10px;
	}
	 section.items-grid .items {
		 grid-template-columns: 1fr;
		 gap: 20px;
	}
	 section.items-grid .items .item img {
		 aspect-ratio: 1.5;
		 height: auto;
		 max-height: 400px;
	}
	 section.items-grid.more {
		 padding: 15px 10px;
		 margin-top: 20px;
	}
	 section.items-grid.more .items {
		 grid-template-columns: 1fr;
	}
	 section.main-data.banner {
		 padding: 15px;
	}
	 section.main-data.banner .left h2 {
		 font-size: 20px;
		 margin-bottom: 20px;
	}
	 section.main-data.banner .left p {
		 font-size: 14px;
	}
	 section.main-data.banner .left blockquote {
		 margin-bottom: 20px;
		 margin-top: 10px;
	}
	 section.main-data.banner .left .actions {
		 flex-direction: column;
		 gap: 10px;
		 width: 100%;
		 margin-bottom: 20px;
	}
	 section.main-data.banner .left .actions .btn.main {
		 width: 100%;
	}
	 section.main-data.banner .left .actions .btn.accent {
		 width: 100%;
	}
	 section.main-data.banner .right .items {
		 flex-direction: column;
	}
	 section.main-data.banner .right .items .item {
		 grid-template-columns: 40px 1fr;
	}
	 section.main-data.banner .right .items .item span {
		 font-size: 30px;
		 margin-bottom: 5px;
	}
	 section.main-data.banner .right .items .item p {
		 margin-bottom: 5px;
	}
	 section.main-data.banner .right .items .item::before {
		 height: 38px;
		 width: 38px;
		 min-width: 38px;
	}
	 section.price h2 {
		 text-align: center;
	}
	 section.price .rates-table {
		 overflow: auto;
	}
	 section.price .rates-table .inner {
		 min-width: 700px;
	}
	 section.callback {
		 width: calc(100% - 40px);
		 margin: 20px auto 20px;
	}
	 section.callback > img {
		 display: none;
	}
	 section.callback .container {
		 padding: 15px;
	}
	 section.callback .container > p {
		 font-size: 14px;
	}
	 section.callback .container form {
		 display: flex;
		 flex-direction: column;
		 padding: 15px;
		 gap: 12px;
	}
	 section.callback .container form .box {
		 gap: 4px;
	}
	 section.callback .container form .box label {
		 margin-bottom: 0;
	}
	 section.callback .container form .box.terms label {
		 margin-left: 4px;
	}
	 footer.wrapper {
		 grid-template-columns: 1fr;
	}
	 footer.wrapper .info {
		 grid-row: 3;
		 padding: 40px 20px;
	}
	 footer.wrapper .info .container {
		 flex-direction: column;
	}
	 footer.wrapper .contacts {
		 grid-row: 2;
		 padding: 40px 20px;
	}
	 footer.wrapper .order-cta {
		 height: 140px;
		 grid-row: 1;
	}
	.content-404 {
		grid-template-columns: 1fr;
		gap: 60px;
	}
}
 @media screen and (hover: hover) {
	 a:hover {
		 color: #070012;
	}
	 .btn:hover.accent {
		 background: var(--white);
		 color: var(--accent);
	}
	 .btn:hover.main {
		 background: var(--white);
		 color: var(--main);
	}
	 header nav ul li.menu-item-has-children .sub-menu a:hover {
		 transform: translateX(10px);
	}
	 header nav ul li.menu-item-has-children:hover > p::after {
		 transform: rotate(270deg);
	}
	 header nav ul li.menu-item-has-children:hover .sub-menu {
		 top: 100%;
		 visibility: visible;
		 opacity: 1;
		 pointer-events: all;
	}
	 section.client-info .faq .items .item .title:hover, div.client-info .faq .items .item .title:hover {
		 background: rgba(0, 117, 0, 0.15);
	}
}
