* {
    margin: 0;
    padding: 0;
}

:root {
    --padding: 1.5rem;
    --color-black: #000;
    --color-white: #fff;
    --color-grey: #777;
    --color-light: #efefef;
    --color-text: var(--color-black);
    --color-text-grey: var(--color-grey);
    --color-background: var(--color-white);
    --color-code-light-grey: #cacbd1;
    --color-code-comment: #a9aaad;
    --color-code-white: #c5c9c6;
    --color-code-red: #d16464;
    --color-code-orange: #de935f;
    --color-code-yellow: #f0c674;
    --color-code-green: #a7bd68;
    --color-code-aqua: #8abeb7;
    --color-code-blue: #7e9abf;
    --color-code-purple: #b294bb;
    --font-family-sans: inherit;
    --font-family-mono: inherit;
}

html {
    font-family: var(--font-family-sans);
    color: var(--color-text);
    background: var(--color-background);
}

img {
    width: 100%;
}

body {
    overflow-x: hidden;
}

li {
    list-style: none;
}

a {
    color: currentColor;
    text-decoration: none;
}

button {
    font: inherit;
    background: none;
    border: 0;
    color: currentColor;
    cursor: pointer;
}

strong,
b {
    font-weight: 600;
}

small {
    font-size: inherit;
    color: var(--color-text-grey);
}

.bg-light {
    background-color: var(--color-light);
}

.color-grey {
    color: var(--color-text-grey);
}

.logo {
    padding: 1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.menu {
    display: flex;
}

.menu a {
    padding: 1rem;
    display: block;
}

.menu a[aria-current] {
    text-decoration: underline;
}

.social {
    display: flex;
    padding: 0 0.5rem;
}

.social a {
    padding: 10px 12px;
}

.section {
    padding: 3rem 0;
}

.grid {
    --columns: 12;
    --gutter: 3rem;
    display: grid;
    grid-gap: var(--gutter);
    grid-template-columns: 1fr;
}

.grid>.column {
    margin-bottom: var(--gutter);
}

.autogrid {
    --gutter: 3rem;
    --min: 10rem;
    display: grid;
    grid-gap: var(--gutter);
    grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
    grid-auto-flow: dense;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.text {
    line-height: 1.5em;
}

.text p {
    font-size: 22px;
    font-family: "URWEurostile";
    color: rgb(60, 60, 60);
    line-height: 1.273;
}

.text a {
    text-decoration: underline;
}

.text :first-child {
    margin-top: 0;
}

.text :last-child {
    margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
    margin-bottom: 1.5rem;
}

.text ul,
.text ol {
    margin-left: 1rem;
    font-size: 22px;
    font-family: "URWEurostile";
    color: rgb(60, 60, 60);
    line-height: 1.273;
}

.text ul p,
.text ol p {
    margin-bottom: 0;
}

.text ul>li {
    list-style: disc;
}

.text ol>li {
    list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
    margin-bottom: 0;
}

.text h1,
.h1,
.intro {
    font-size: 2rem;
    margin-bottom: 3rem;
    line-height: 1.25em;
}

.text h2,
.h2 {
    font-size: 35px;
    font-family: "EurostileExt-Med";
    color: #0c141e;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 1.25rem;
}

.text h3,
.h3 {
    font-weight: 600;
}

.text .codeblock {
    display: grid;
}

.text code {
    font-family: var(--font-family-mono);
    font-size: 1em;
    background: var(--color-light);
    padding: 0 0.5rem;
    display: inline-block;
    color: var(--color-black);
}

.text pre {
    margin: 3rem 0;
    background: var(--color-black);
    color: var(--color-white);
    padding: 1.5rem;
    overflow-x: scroll;
    overflow-y: hidden;
    line-height: 1.5rem;
}

.text pre code {
    padding: 0;
    background: none;
    color: inherit;
}

.text hr {
    margin: 1rem 0;
    border-bottom: 1px solid #000;
}

.text dt {
    font-weight: 600;
}

.text blockquote {
    font-size: 1.25rem;
    line-height: 1.325em;
    border-left: 2px solid var(--color-black);
    padding-left: 1rem;
    margin: 3rem 0;
    max-width: 25rem;
}

.text blockquote footer {
    font-size: 0.875rem;
    font-style: italic;
}

.text figure {
    margin: 3rem 0;
}

.text figcaption {
    padding-top: 0.75rem;
    color: var(--color-text-grey);
}

hr {
    border: 0;
    background: currentColor;
    height: 2px;
    width: 1.5rem;
    margin: 3rem auto;
}

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

.intro {
    max-width: 40rem;
}

.intro *:not(:last-child) {
    margin-bottom: 1em;
}

.cta {
    background: var(--color-black);
    color: var(--color-white);
    display: inline-flex;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 4px solid var(--color-white);
    outline: 2px solid var(--color-black);
}

.box {
    background: var(--color-light);
    padding: 1.5rem;
    border: 4px solid var(--color-white);
    outline: 2px solid var(--color-light);
}

.video,
.img {
    position: relative;
    display: block;
    --w: 1;
    --h: 1;
    padding-bottom: calc(100% / var(--w) * var(--h));
    background: var(--color-black);
}

.img img,
.video iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.img[data-contain] img {
    object-fit: contain;
}

.img-caption,
.video-caption {
    padding-top: 0.75rem;
    line-height: 1.5em;
}

.map {
    --w: 2;
    --h: 1;
    padding-bottom: calc(100% / var(--w) * var(--h));
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.map iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.margin-s {
    margin-bottom: 0.75rem;
}

.margin-m {
    margin-bottom: 1.5rem;
}

.margin-l {
    margin-bottom: 3rem;
}

.margin-xl {
    margin-bottom: 0;
}

.margin-xxl {
    margin-bottom: 6rem;
}

@media screen and (min-width: 60rem) {
    body {
        --padding: 3rem;
    }
    .grid {
        grid-template-columns: repeat(12, 1fr);
    }
    .grid>.column {
        grid-column: span var(--columns);
    }
}

.pagination {
    display: flex;
    padding-top: 6rem;
}

.pagination>span {
    color: var(--color-text-grey);
}

.pagination>* {
    padding: 0.5rem;
    width: 3rem;
    text-align: center;
    border: 2px solid currentColor;
    margin-right: 1.5rem;
}

.pagination>a:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.note-excerpt {
    line-height: 1.5em;
}

.note-excerpt header {
    margin-bottom: 1.5rem;
}

.note-excerpt figure {
    margin-bottom: 0.5rem;
}

.note-excerpt-title {
    font-weight: 600;
}

.note-excerpt-date {
    color: var(--color-text-grey);
}

.blog {
    margin: 2em 0;
}

.blog__img {
    max-width: 320px;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 20%);
}

.blog-prevnext {
    margin-top: 83px;
}

.blog-prevnext h2 {
    margin-bottom: 60px;
}

.blog__content {
    margin: 2em 0;
}

.blog__content figure {
    width: 90%;
}

.pages-news .team {
    box-shadow: unset;
}

.pages-news .team__row {
    padding-bottom: 92px;
}

.uniform__potty {
    position: absolute;
    left: -9999px;
}

.load-more,
#more {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    height: 43px;
    color: #78bb56;
    border: 1px solid #78bb56;
    border-radius: 20px;
    font-size: 25px;
    font-weight: 700;
    width: 100%;
}

.icon-plus {
    position: relative;
    padding-right: 17px;
    height: 25px;
}

.icon-plus:before {
    content: url(../../img/icon-plus.svg);
}

.blog__content_headline {
    background-color: #fafafa;
}

.blog__content {
    padding: 0 0 0;
}

.text h6 {
    font-size: 25px;
    font-family: "URWEurostile";
    color: #71cd55;
    line-height: 1;
    margin-bottom: 40px;
}

.img-classic {
    width: auto;
}

.offer__header {
    max-width: 800px;
    margin: auto;
}

.offer__icon--7::after {
    content: url(../../img/table.svg);
}

.icon-one-services::before {
    content: url(../../img/icon-one-service.svg);
}

.icon-two-services::before {
    content: url(../../img/icon-two-service.svg);
}

.icon-three-services::before {
    content: url(../../img/icon-three-service.svg);
}

.process__info.process__info_services {
    background-image: url(../../img/lamp.jpg);
    padding: 26px 170px;
}

.pages-services .header__title {
    max-width: 810px;
}

.pages-services .header__button .btn i,
.pages-about-us .header__button .btn i {
    display: none;
}

.pages-about-us .album__item img {
    object-position: top;
}

.pages-about-us .album__subtitle {
    max-width: max-content;
}

.pages-about-us .software__info {
    font-weight: 400;
}

.pages-about-us .software__info a {
    font-weight: 700;
}

.pages-about-us .header__button .btn {
    max-width: 305px;
    padding-right: 36px;
}

.pages-about-us .header__subtitle {
    padding: 20px 7px 37px;
    max-width: 540px;
}

.pages-about-us .header__main {
    padding: 89px 0 90px;
}

.pages-services .header__button .btn {
    max-width: 305px;
    padding-right: 36px;
}

.pages-services .header__main {
    padding: 82px 0 80px;
}

.pages-services .offer__row {
    padding: 63px 0 38px;
}

.pages-services .career__row {
    padding: 0 10px 20px 0;
}

.pages-services .team__row {
    padding-bottom: 54px;
}

.pages-services .banners__row {
    padding-top: 24px;
}

.pages-career .header__button .btn {
    max-width: 260px;
}

.pages-career .header__button .btn i {
    margin-left: 20px;
}

.pages-career .advantage__title {
    padding: 45px 0 16px;
}

.pages-career .advantage__subtitle {
    padding: 0 0 25px;
}

.pages-career .advantage__blocks {
    padding-top: 28px;
}

.pages-career .advantage__row {
    padding-bottom: 0;
}

.author span {
    font-size: 22px;
    font-family: "URWEurostile";
    color: rgb(113, 205, 85);
    line-height: 1.2;
    text-align: left;
    padding-top: 15px;
    border-top: 1px solid #d9d9da;
    width: 100%;
    display: inline-block;
}

.blog-load {
    padding: 0 0 90px;
}

.pages-services .team {
    box-shadow: none;
}

.pages-services .team__list {
    border-top: 1px solid #d9d9da;
}

.pages-services .team__list ul li {
    font-size: 22px;
    font-family: "URWEurostile";
    color: #000;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 45px;
    position: relative;
    max-width: 500px;
}

.team__block {
    background-image: url(../../img/team__block.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 38px 20px;
    margin: 64px 0 45px;
    box-shadow: 0 0 20px 1px rgb(0 0 0 / 30%);
    ;
}

.team__r {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 37px 0 50px;
}

.team__item {
    flex: 0 0 30%;
    position: relative;
}

.team__item p {
    font-size: 22px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    line-height: 1.2;
    text-align: center;
    z-index: 99;
    position: relative;
}

.team-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 159px;
    font-family: "URWEurostile";
    color: rgba(221, 221, 221, 0.502);
    line-height: 1.2;
    text-align: center;
    font-style: normal;
    font-weight: 700;
}

.pages-career .header__title {
    max-width: 960px;
}

.pages-career .header__subtitle {
    max-width: max-content;
}

.lg-css3.lg-slide-circular .lg-item {
    opacity: 0;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide-circular .lg-item.lg-next-slide {
    -moz-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    -o-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    -ms-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.lg-css3.lg-slide-circular .lg-item.lg-current {
    -moz-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -o-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -ms-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    opacity: 1;
}

.lg-css3.lg-slide-circular .lg-item.lg-prev-slide,
.lg-css3.lg-slide-circular .lg-item.lg-next-slide,
.lg-css3.lg-slide-circular .lg-item.lg-current {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 1s ease 0s;
}

.alert {
    width: 22.5rem;
    margin: 1.5rem auto;
    color: red;
}

.alert ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.alert a {
    text-decoration: underline;
}

.help {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
}