/* Font */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter/Inter-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

:root {
    font-size: 16px;
}

/* RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr,
acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    height: 100%;
}

body {
    line-height: 150%;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #101010;
    color: #fefdfd;
    scroll-behavior: smooth;
}

ol, ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    user-select: none;
}

.main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
    width: 100%;
    background: rgba(35, 35, 35, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.container {
    max-width: 1440px;
    margin: auto;
    padding: 0 70px;
}

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

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

.text--small {
    font-size: 0.875rem;
}

.mb-regular {
    margin-bottom: 60px;
}

.mb-increased {
    margin-bottom: 80px;
}

.mb-decreased {
    margin-bottom: 40px;
}

.greeting__buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

.button {
    position: relative;
    overflow: hidden;
    transition: background 400ms;
    color: #fff;
    padding: 0;
    font-size: 1rem;
    outline: 0;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    min-width: 300px;
}

.button__link {
    display: inline-block;
    padding: 1.125rem 2rem;
    width: 100%;
    height: 100%;
}

.button--colored {
    border: 1px solid #e96c24;
    background: #e96c24;
}

.button--small {
    min-width: 240px;
    font-size: 1rem;
}

.button--small .button__link {
    padding: 1rem 2rem;
}

.button--colored:hover {
    background: rgba(16, 16, 16, 0.01);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.button--transparent {
    border: 1px solid #fefdfd;
    background: rgba(16, 16, 16, 0.01);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.button--transparent:hover {
    background: #fefdfd;
    color: #101010;
}

.button--transparent:hover .button__link {
    color: #101010;
}

span.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.button--transparent span.ripple {
    background-color: rgba(16, 16, 16, 0.4);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* Header */

.header {
    padding: 2.25rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

#headerLogo img {
    width: 100%;
    max-width: 80px;
}

#headerLogoSticky img {
    margin-bottom: -4px;
}

.header--bg {
    background-color: #101010;
}

.header__container {
    display: flex;
    justify-items: center;
}

.header__nav {
    flex: 1 0 auto;
    margin: 0 1rem;
}

.header__nav__list {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    font-weight: 500;
}

.header__menu {
    position: relative;
    min-width: 50px;
    margin-left: 15px;
}

.mob-menu__wrapper::-webkit-scrollbar {
    width: 0;
}

.mob-menu__wrapper {
    position: fixed;
    overflow-x: hidden;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #101010;
    transition: all 0.6s ease-in-out;
}

#active:checked ~ .mob-menu__wrapper {
    right: 0;
}

.menu-btn {
    position: absolute;
    z-index: 2;
    right: 0;
    top: -15px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 40%;
    border-bottom: 2px solid #fff;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn:before {
    transform: translateY(-8px);
}

.menu-btn:after {
    transform: translateY(8px);
}

.close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background 0.6s;
}

#active:checked + .menu-btn span {
    transform: scaleX(0);
}

#active:checked + .menu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}

#active:checked + .menu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}


input[type="checkbox"] {
    display: none;
}


#active:checked ~ .mob-menu__wrapper .mob-menu {
    opacity: 1;
}

.mob-menu {
    margin: auto;
    max-width: 1440px;
    padding: 40px 70px 200px 70px;
    opacity: 0;
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(100px);

    display: grid;
    grid-gap: 0 2rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 255px;
}


#active:checked ~ .mob-menu__wrapper .mob-menu {
    transform: none;
    transition-timing-function: ease, cubic-bezier(0.1, 1.3, 0.3, 1);
    transition-delay: 0.6s;
    transform: translateX(0);
}

.mob-menu__lang-switch {
    margin-bottom: 90px;
}

.mob-menu__list {
    font-weight: 700;
    font-size: 42px;
    color: #FEFDFD;
}

.mob-menu__list li {
    margin-bottom: 40px;
    line-height: 130%;
}

.mob-menu__list li:last-of-type {
    margin-bottom: 0;
}

.mob-menu__list li a {
    padding: 5px 0;
}

.mob-menu__logo img {
    width: 100%;
    max-width: 80px;
}

.hidden {
    display: none;
}

.color--secondary {
    color: #a6a6a6;
}

/* top bg*/

.top-bg {
    height: 994px;
    z-index: -1;
    min-width: 1440px;
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
    pointer-events: none;
    user-select: none;
}

.img-cover {
    object-position: top;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.top-bg__cover {
    background-image: radial-gradient(50% 50% at 50% 50%,
    rgba(16, 16, 16, 0.8) 0%,
    rgba(16, 16, 16, 0.9) 49.27%,
    #101010 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 102%;
    height: 101%;
    left: -1%;
    position: absolute;
    top: 0;
}

/* MAIN  */

h1 {
    font-size: 3.875rem;
    font-weight: bold;
    line-height: 120%;
}

.greeting {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 200px;
}

.greeting__advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    grid-gap: 2rem;
}

.greeting__advantages__accent {
    font-size: 2.625rem;
    line-height: 130%;
    font-weight: bold;
}

.greeting__advantages__text {
    line-height: 150%;
    margin: 5px 0px;
}

.greeting__title {
    max-width: 880px;
    margin: 0 auto 1rem auto;
}

.subtitle {
    max-width: 967px;
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 150%;
    margin-left: auto;
    margin-right: auto;
}

.greeting__subtitle {
    margin-bottom: 4.5rem;
    line-height: 160%;
    font-size: 1.125rem;
}

.subtitle--short {
    max-width: 780px;
}

.main {
    margin-top: 200px;
}

/*Section what-we-do*/
.section {
    margin-bottom: 200px;
}

.title {
    font-weight: bold;
    font-size: 2.625rem;
    line-height: 130%;
}

.f-col-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.f-col-2 > * {
    flex: 1 0 calc(50% - 2rem);
}

.what-we-do .f-col-2 {
    justify-content: flex-start;
}

.what-we-do .f-col-2 > * {
    flex: 0 0 calc(50% - 1rem);
}

.service-container {
    padding: 10px;
    background: rgba(35, 35, 35, 0.6);
    border-radius: 3px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.service {
    background: url(../images/pattern-circle.png) right / contain no-repeat;
    padding: 40px;
}

.service__text {
    font-weight: 600;
    font-size: 2rem;
    line-height: 130%;
    margin-bottom: 2rem;
    color: #fefdfd;
    transition-duration: 0s;
}

.service__arrow,
.back-button__arrow,
.news__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: relative;
    transition: 0.3s;
}

.service__arrow span,
.back-button__arrow span,
.news__arrow span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #a6a6a6;
    border-radius: 0 5px 5px 0;
    transition: 0.3s;
}

.service__arrow::before,
.service__arrow::after,
.back-button__arrow::before,
.back-button__arrow::after,
.news__arrow::before,
.news__arrow::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #a6a6a6;
    border-radius: 4px;
    transition: 0.3s;
}

.service__arrow::before,
.news__arrow::before {
    transform: rotate(45deg);
    right: -2px;
    top: 6px;
}

.service__arrow::after,
.news__arrow::after {
    transform: rotate(-45deg);
    right: -2px;
    top: 12px;
}

.back-button__arrow::before {
    transform: rotate(-45deg);
    left: -1px;
    top: 7px;
    width: 7px;
}

.back-button__arrow::after {
    transform: rotate(45deg);
    left: -1px;
    top: 11px;
    width: 7px;
}

.service-container:hover .service__arrow::after,
.service-container:hover .service__arrow::before,
.service-container:hover .service__arrow span,
.back-button:hover .back-button__arrow::after,
.back-button:hover .back-button__arrow::before,
.back-button:hover .back-button__arrow span,
.news__article:hover .news__arrow::after,
.news__article:hover .news__arrow::before,
.news__article:hover .news__arrow span {
    background-color: #e96c24;
}

.back-button {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 20px;
}

.back-button__text {
    font-weight: 500;
    margin-left: 10px;
}

.back-button:hover .back-button__text {
    color: #e96c24;
}

.service-container:hover .service__arrow,
.back-button:hover .back-button__arrow,
.news__article:hover .news__arrow {
    width: 30px;
}

.service-container:hover {
    background: rgba(46, 46, 46, 0.6);
    cursor: pointer;
}

.f-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Section how-we-do*/

.how-we-do__grid {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.how-we-do__grid__item {
    padding: 50px;
    background: rgba(35, 35, 35, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 3px;
    transition: .2s;
}

.how-we-do__grid__item:hover {
    background: rgba(46, 46, 46, 0.6);
}

.how-we-do__grid__item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
}

.how-we-do__grid__title {
    gap: 1rem;
    display: flex;
    font-weight: 600;
    font-size: 2rem;
    line-height: 130%;
    margin-bottom: 20px;
}

.how-we-do__grid__button {
    margin-top: 40px;
}

.how-we-do__grid__text {
    line-height: 150%;
    margin-top: 10px;
}

/* Where we do*/

.map {
    max-width: 100%;
    margin: auto;
    display: block;
    user-select: none;
}

.where-we-do__regions {
    display: none;
}

/* our specialists */

h3, h2, h1, .secondary-title {
    font-weight: 600;
    font-size: 2rem;
    line-height: 130%;
}

.employees-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    grid-auto-rows: 380px;

}

.employee {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    pointer-events: none;
}

.employee.emolyee--pointer-events-all {
    pointer-events: all;
}


.employee::before {
    background: url(../images/svg/phone.svg), rgba(16, 16, 16, 0.6);
    top: 15px;
}

.employee::after {
    background: url(../images/svg/internet.svg), rgba(16, 16, 16, 0.6);
    top: 60px;
}

.employee.employee--without_website::after {
    visibility: hidden;
    display: none;
}


.employee:hover::before,
.employee:hover::after {
    opacity: 0;

}

.employee::before,
.employee::after {
    opacity: 1;
    position: absolute;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    right: 15px;
    transition-property: opacity;
    transition-delay: 0.2s;
    transition-duration: 0.2s;
}

.employee__description__phone,
.employee__description__site,
.employee__description__fb,
.employee__description__cv {
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}


.employee__description__phone::before {
    background-image: url(../images/phone.png);
    background-image: -webkit-image-set(url('../images/svg/phone.svg') 1x);
}

.employee__description__site::before {
    background-image: url(../images/internet.png);
    background-image: -webkit-image-set(url('../images/svg/internet.svg') 1x);
}

.employee__description__fb::before {
    background-image: url(../images/fb.png);
    background-image: -webkit-image-set(url('../images/svg/fb.svg') 1x);
}

.employee__description__cv::before {
    background-image: url(../images/cv.png);
    background-image: -webkit-image-set(url('../images/svg/cv.svg') 1x);
}

.employee__description__phone::before,
.employee__description__site::before,
.employee__description__fb::before,
.employee__description__cv::before {
    position: absolute;
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(16, 16, 16, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 0;
    pointer-events: none;
}

.employee__description__info {
    margin-bottom: 30px;
}

.employee__description {
    position: absolute;
    background: rgba(16, 16, 16, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 3px;
    bottom: 20px;
    left: 15px;
    padding: 20px 15px;
    width: calc(100% - 30px);
    z-index: 9;
    min-height: 50px;
    transition-duration: 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s;
    transition-delay: 0s, 0s, 0s, 0.3s, 0.3s, 0s, 0s;
    transition-property: width, padding-left, padding-right, padding-top, top, left, min-height;
}

.employee__description__name {
    font-weight: bold;
    font-size: 1.375rem;
    line-height: 140%;
    margin-bottom: 7px;
}

.employee:hover .employee__description {
    width: 100%;
    left: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    top: 0 !important;
    min-height: 100%;
}

.employee:hover .employee__description__details {
    padding-top: 20px;
    margin-top: 0;
}

.employee__description__details {
    padding-top: 150px;
    position: absolute;
    font-size: 0.875rem;
    line-height: 150%;
    max-width: calc(100% - 40px);
    transition-duration: 0.3s;
    transition-delay: .3s;
    transition-property: padding-top;
}

.employee__description__details a {
    font-weight: bold;
    padding: 5px 5px 5px 50px;
}

.employee__description.employee_description_return {
    transition-duration: 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s;
    transition-delay: 0.3s, 0.3s, 0.3s, 0.3s, 0s, 0.3s, 0.3s;
    transition-property: width, padding-left, padding-right, padding-top, top, left, min-height;
}

.employee_description_return .employee__description__details {
    transition-delay: .1s;
}

/* download offer */

.card-bg {
    background: rgba(35, 35, 35, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 3px;
}

.download-offer-wrapper {
    position: relative;
    margin: 240px auto 200px;
    padding: 20px;
}

.download-offer {
    padding: 50px;
    background: url(../images/pattern-circle.png) left / contain no-repeat;
    display: flex;
    align-items: center;
}

.download-offer__text {
    font-weight: bold;
    font-size: 2.625rem;
    line-height: 130%;
    margin-left: 270px;
    margin-right: 50px;
}

.download-offer__picture {
    position: absolute;
    left: -80px;
}

.download-offer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-offer__link svg path {
    transition: .3s;
}

.button:hover .download-offer__link svg path {
    fill: #101010;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    grid-gap: 30px;
}

.partners__item,
.community__item {
    background: rgba(35, 35, 35, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 3px;
    position: relative;
    transition: background .3s;
}

.partners__item:hover,
.community__item:hover {
    background: rgba(46, 46, 46, 0.6);
}

.partners__item a,
.community__item a {
    width: 100%;
    height: 100%;
    display: block;
}

.partners__item:hover .show-on-hover,
.community__item:hover .show-on-hover {
    opacity: 1;
}

.hide-on-hover,
.show-on-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    transition-duration: .3s;
    transition-property: opacity;
}

.hide-on-hover {
    opacity: 1;
    transition-duration: .2s;
}

.partners__item:hover .hide-on-hover,
.community__item:hover .hide-on-hover {
    transition-delay: .1s;
    opacity: 0;
}

.img-scale-down {
    object-fit: scale-down;
    width: 100%;
    height: 100%;
}

.show-on-hover {
    opacity: 0;
}

/*footer*/
.footer__content {
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.footer__logo {
    max-width: 60px;
}

.footer__logo img {
    width: 100%;
}

.footer__contacts {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.footer__contacts__address {
    padding: 0 40px;
    line-height: 150%;
}

.footer__contacts__address__title {
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 140%;
}

.footer__contacts__address__title ~ div {
    margin-top: 5px;
}

.footer__contacts__socials__link {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 20px;
}

.footer__contacts__socials__link:last-of-type {
    margin-right: 0;
}

.footer__contacts__socials__link object {
    max-width: 100%;
    pointer-events: none;
}

.scroll-top {
    font-weight: 500;
    margin-left: 30px;
    cursor: pointer;
}

.overflow--hidden {
    overflow: hidden;
}

#popupMap {
    background: rgba(35, 35, 35, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 30px 0;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    overflow-y: auto;
}

#popupMap.popup--open {
    opacity: 1;
    visibility: visible;
}

.popup-map__container {
    padding: 0 50px 50px;
    background: #101010;
    border-radius: 2px;
}

.popup-map {
    width: 100%;
    height: 527px;
}

.popup-map__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
}

.popup-map__close {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    user-select: none;
}

.popup-map__close::before, .popup-map__close::after {
    position: absolute;
    content: ' ';
    height: 44px;
    width: 3px;
    background-color: #999;
    border-radius: 2px;
    transition: .3s;
}

.popup-map__close:hover::before, .popup-map__close:hover::after {
    background-color: #FEFDFD;
}

.popup-map__close::before {
    transform: rotate(45deg);
}

.popup-map__close::after {
    transform: rotate(-45deg);
}

/********************
SERVICES PAGE
********************/

/* CAROUSEL Embla */

.embla {
    overflow: hidden;
}

.embla__viewport {
    overflow: hidden;
    width: 100%;
}

.embla__container {
    display: flex;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.embla__slide {
    position: relative;
}

.employees-carousel__slide {
    flex: 0 0 calc((100% - 90px) / 4);
    margin-left: 30px;
}

.employees-carousel__slide .employee {
    height: 380px;
}

.embla__viewport.is-draggable {
    cursor: move;
    cursor: grab;
}

.embla__viewport.is-dragging {
    cursor: grabbing;
}

.embla__dots {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
    min-height: 12px;
}

.embla__dot {
    background-color: transparent;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: 0;
    border: 0;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    margin-left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.embla__dot::after {
    background-color: #999;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    position: absolute;
    transition: 0.1s;
}

.embla__dot.is-selected::after {
    width: 12px;
    height: 12px;
    background: #FEFDFD;
}


/********************
SERVICE PAGE
********************/

.service_content {
    max-width: 968px;
}

.service_content__text {
    line-height: 150%;
}

.service_content__text__offer {
    list-style-type: disc;
    margin: 1rem 0 1rem 26px;
}


/********************
Specialists PAGE
********************/


.specialists_wrapper {
    overflow: hidden;
}

.specialists_tab {
    margin: 0 auto 40px;
    max-width: 635px;
}

.specialists_tab__nav {
    display: flex;
    position: relative;
}

.specialists__tablink {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 1px solid #999;
    transition: .3s;
}

.specialists_tab__nav .indicator {
    width: 50%;
    height: 2px;
    position: absolute;
    bottom: 0;
    background: #FEFDFD;
    transition: 0.3s ease;
}

.specialists_tabcontent {
    width: 200%;
    height: 100%;
}

.specialists_tabcontent__reel {
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: transform 1s cubic-bezier(0.1, 1.2, 0.3, 1), height 0.3s;
}

.specialists_tabcontent__panel_1,
.specialists_tabcontent__panel_2 {
    width: 50%;
}

.specialists__tablink_1.specialists__tablink--active ~ .indicator {
    left: 0;
}

.specialists__tablink_2.specialists__tablink--active ~ .indicator {
    left: 50%;
}


/********************
Contacts PAGE
********************/

.contacts__subheading {
    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
}

.contacts__address {
    line-height: 150%;
    margin: 20px auto;
}

.contacts__socials {
    gap: 20px;
}

.contacts__socials__link {
    display: block;
    width: 50px;
    height: 50px;
}

.contacts__socials__link object {
    max-width: 100%;
    pointer-events: none;
}

.contacts__subheading--socials {
    margin-top: 50px;
    margin-bottom: 20px;
}

/********************
About PAGE
********************/

.f-col-sb {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

p + p {
    margin-top: 1rem;
}

.ordered-list {
    counter-reset: list-counter;
    list-style: none;
    padding-left: 40px;
}

.ordered-list li {
    margin-bottom: 26px;
    counter-increment: list-counter;
    position: relative;
}

.ordered-list > li:last-child {
    margin-bottom: 40px;
}

.ordered-list li::before {
    content: counter(list-counter);
    color: #A6A6A6;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    --size: 30px;
    left: calc(-1 * var(--size) - 10px);
    line-height: var(--size);
    width: var(--size);
    height: var(--size);
    top: -2px;
    border-radius: 50%;
    text-align: center;
    background: rgba(35, 35, 35, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.card-best {
    padding: 70px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.card-best .secondary-title {
    margin-bottom: 20px;
}

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

.office__description {
    margin-bottom: 30px;
}

#office_slider,
#office_slider * {
    height: 100%;
}

.office_slider__slide {
    flex: 0 0 100%;
    margin-left: 10px;
}

.img-cover.img-center {
    object-position: center;
}

.rounded--slightly {
    border-radius: 2px;
}

#office_slider {
    max-height: 500px;
    border-radius: 2px;
}

/********************
Tenders PAGE
********************/

.ul-title {
    margin-bottom: 26px;
}

.unordered-list {
    list-style: none;
    padding-left: 40px;
}

.unordered-list li {
    margin-bottom: 26px;
    position: relative;
}

.unordered-list > li:last-child {
    margin-bottom: 40px;
}

.unordered-list li::before {
    content: url(../images/svg/ul_marker.svg);
    position: absolute;
    --size: 30px;
    left: calc(-1 * var(--size) - 10px);
    line-height: 12px;
    text-indent: 1px;
    width: var(--size);
    height: var(--size);
    top: -2px;
    border-radius: 50%;
    background: rgba(35, 35, 35, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-best-content-text p a {
    color: #fefdfd;
    position: relative;
    word-break: break-word;
}

.card-best__link,
.news_content__text__link {
    color: #fefdfd;
    position: relative;
    word-break: break-word;
}

.card-best__link::after,
.news_content__text__link::after {
    position: absolute;
    content: '';
    display: block;
    border-bottom: 1px solid #fefdfd;
    width: 100%;
    left: 0;
    bottom: 0;
}

/********************
News PAGE
********************/

.news__contacts {
    margin-top: 15px;
}

.news__contacts .contacts__socials__link {
    width: 32px;
    height: 32px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    grid-auto-rows: 640px;
}

.news__article {
    background: rgba(35, 35, 35, 0.6);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news__article__header {
    height: 303px;
    background: url(../images/pattern-circle.png) 66px 66px / contain no-repeat, linear-gradient(44.7deg, #121116 3.13%, #27282C 96.53%);
    border-radius: 3px 3px 0px 0px;
    position: relative;
}

.news__article__header::before {
    position: absolute;
    display: block;
    content: '';
    top: 20px;
    left: 20px;
    width: 27px;
    height: 44px;
    background: url('../images/svg/logo_anniversary_light.svg') center / cover no-repeat;
}

.news__article__header__title {
    left: 20px;
    max-width: calc(100% - 40px);
    position: absolute;
    bottom: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
}

.news__article__main {
    padding: 30px 20px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news__article__date {
    font-size: 14px;
}

.news__article__preview {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1 0 auto;
}

.news__article__preview p + p {
    margin-top: 0;
}

.news__text--accent {
    font-weight: bold;
}

.news_content {
    max-width: 968px;
}

.news_content__text img {
    margin: 20px 0;
}

.news_content__text__img--small {
    max-width: 50%;
}

.news_content__text__img--medium {
    max-width: 75%;
}

.news_content__text .news_content__text__img--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.news_content__text ul {
    list-style-type: disc;
    margin: 1rem 0 1rem 26px;
}

.news_content__text ol {
    list-style-type: decimal;
    margin: 1rem 0 1rem 26px;
}

.news_content__video {
    width: 100%;
    margin: 20px 0;
}

.news_content__video--prosvetlenie-molodih-uristov {
    height: 547px;
}

.news__2-1-grid {
    display: grid;
    max-width: 800px;
    grid-template-columns: 300px auto;
    grid-auto-rows: 300px auto;
}

.news__2-1-grid > picture:nth-child(3) {
    grid-column: 1/3;
}

/* load more button */

.news .button__link {
    position: relative;
}

.news .button__link::before {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: -14px;
    width: 24px;
    height: 24px;
    border: 2px solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    animation: 0.8s linear infinite loader_rotate;
}

.news .button__link.button__link--active {
    pointer-events: none;
    cursor: not-allowed;
}

.news .button__link.button__link--active::before {
    transition-delay: 0.5s;
    transition-duration: 1s;
    opacity: 1;
}

@keyframes loader_rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* @media (max-width: 1439px) */
@media (max-width: 1439px) {

    /* Header */
    .header {
        padding: 30px 0;
    }

    .header__nav__list {
        display: none;
    }

    .mob-menu {
        padding: 40px 40px 200px 40px;
        max-width: 768px;
    }

    .mob-menu__contacts {
        grid-column: 2/3;
        margin-top: 140px;
    }

    .mob-menu {
        grid-template-rows: auto;
        grid-template-columns: auto 1fr;
        grid-gap: 0 6rem;
    }

    #headerLogo img,
    .mob-menu__logo img {
        max-width: 60px;
    }

    /* MAIN */
    .top-bg {
        min-width: 0;
        width: 100vw;
        max-width: 768px;
    }

    .main {
        margin-top: 170px;
    }

    .container {
        /* padding: 0 40px; */
        padding: 0 10px;
        /* max-width: 768px; */
        max-width: 800px;
    }

    .greeting__title {
        max-width: 660px;
    }

    .subtitle--short,
    .subtitle {
        max-width: 600px;
    }

    .greeting__subtitle {
        margin-bottom: 60px;
    }

    .greeting__buttons {
        margin-bottom: 100px;
        gap: 20px;
    }

    .greeting__advantages {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }

    .greeting {
        padding-bottom: 180px;
    }

    .f-col-2 > * {
        flex: 1 0 100%;
    }

    .what-we-do .f-col-2 > * {
        flex: 1 0 100%;
    }

    .service__text {
        margin-bottom: 0;
        margin-right: 30px;
    }

    .service__arrow {
        width: 30px;
    }

    .service__arrow span {
        width: 30px;
    }

    .service-container:hover .service__arrow span {
        width: 50px;
    }

    .service-container:hover .service__arrow {
        width: 50px;
    }

    .service {
        display: flex;
        align-items: center;
        gap: 2rem;
        justify-content: space-between;
    }

    .section {
        margin-bottom: 180px;
    }

    .how-we-do__grid {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .how-we-do__grid__item {
        padding: 40px;
    }

    .how-we-do__grid__button {
        margin-bottom: 10px;
    }

    .how-we-do .subtitle br {
        display: none;
    }

    .employees-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        grid-auto-rows: 410px;
    }

    .download-offer__picture {
        display: none;
    }

    .download-offer__text {
        margin: 0;
    }

    .download-offer {
        padding: 20px 30px;
        background-position: right;
    }

    .download-offer__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .download-offer-wrapper {
        padding: 30px 10px;
        margin: 180px auto 180px;
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        grid-auto-rows: 178px;
    }

    .partners__item picture {
        max-width: 172px;
    }

    .partners__item:nth-child(1) picture {
        max-width: 116px;
    }

    .partners__item:nth-child(4) picture {
        max-width: 144px;
    }

    .partners__item:nth-child(8) picture {
        max-width: 183px;
    }

    .partners__item:nth-child(9) picture {
        max-width: 166px;
    }

    .partners__item:nth-child(10) picture {
        max-width: 105px;
    }

    .community__item picture {
        max-width: 164px;
    }

    .community__item:nth-child(1) picture {
        max-width: 172px;
    }

    .community__item:nth-child(2) picture {
        max-width: 105px;
    }

    .community__item:nth-child(5) picture {
        max-width: 114px;
    }

    /*FOOTER*/
    .footer__content {
        flex-wrap: wrap;
        padding: 40px 0;
        gap: 40px;
        justify-content: space-between;
    }

    .footer__contacts {
        justify-content: space-between;
    }

    .footer__contacts__address {
        padding: 0;
    }

    /********************
    Specialists PAGE
    ********************/
    .specialists_tab {
        max-width: initial;
    }

    /*Tenders*/
    .card-best {
        padding: 50px 40px;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .hide-on-tablet {
        display: none;
    }

    /*about*/
    .contacts {
        margin-bottom: 30px;
    }

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

    /* Services page */
    .employees-carousel__slide {
        flex: 0 0 calc((100% - 20px) / 2);
        margin-left: 20px;
    }

    .employees-carousel__slide .employee {
        height: 410px;
    }

    /* News page */
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .news_content__text__img--small {
        max-width: 100%;
    }

    .news_content__text__img--medium {
        max-width: 100%;
    }

    .news_content__video--prosvetlenie-molodih-uristov {
        height: 439px;
    }

}

@media (max-width: 767px) {

    /* Header */
    .mob-menu {
        padding: 30px 20px 200px 20px;
        max-width: 360px;
        display: block;
    }

    .mob-menu__contacts {
        margin-top: 80px;
    }

    .mob-menu__list {
        font-size: 24px;
    }

    .mob-menu__lang-switch {
        margin: 40px 0;
    }

    .mob-menu__list li {
        margin-bottom: 30px;
    }

    .button:not(.button--small),
    .mob-menu__contacts .button {
        width: 100%;
        min-width: 0;
    }

    #headerLogo img,
    .mob-menu__logo img {
        max-width: 50px;
    }

    #headerLogoSticky img {
        max-width: 160px;
        margin-bottom: -3px;
    }

    /* MAIN */
    .top-bg {
        margin-top: 50px;
        min-width: 0;
        width: 100vw;
        max-width: 360px;
        height: 464px;
    }

    .main {
        margin-top: 150px;
    }

    .container {
        padding: 0 20px;
        max-width: 360px;
    }

    h1 {
        font-size: 44px;
        line-height: 130%;
    }

    .greeting__subtitle {
        margin-bottom: 40px;
        line-height: 150%;
        font-size: 1rem;
    }

    .greeting__buttons {
        margin-bottom: 60px;
    }

    .greeting__advantages {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .greeting__advantages__accent {
        font-size: 34px;
    }

    .greeting {
        padding-bottom: 150px;
    }

    .title {
        font-size: 34px;
        word-break: break-word;
    }

    .service__text {
        font-size: 24px;
        margin-right: 0;
    }

    .service__arrow {
        flex: 1 0 50px;
        justify-content: flex-end;
    }

    .service__arrow span {
        width: 20px;
    }

    .service-container:hover .service__arrow span {
        width: 30px;
    }

    .service {
        background: none;
        padding: 20px 10px;
        gap: 0;
    }

    .f-col-2 {
        gap: 10px;
    }

    .section {
        margin-bottom: 150px;
    }

    .how-we-do__grid {
        grid-gap: 10px;
    }

    .how-we-do__grid__item {
        padding: 30px 20px 35px;
    }

    .how-we-do__grid__title {
        font-size: 24px;
    }

    .how-we-do__grid__button {
        margin-bottom: 0;
        margin-top: 30px;
    }

    /* Where we do*/
    .where-we-do__regions {
        display: block;
        margin-top: 40px;
    }

    .where-we-do__region {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        background: rgba(35, 35, 35, 0.6);
        border-radius: 3px;
        font-weight: 700;
        margin-top: 10px;
        transition: .3s;
    }

    .where-we-do__region * {
        pointer-events: none;
    }

    .where-we-do__region:hover,
    .where-we-do__region--active {
        background: rgba(46, 46, 46, 0.6);
    }

    .where-we-do__arrow {
        transform: rotate(-90deg);
        width: 15px;
        flex: 0 0 auto;
    }

    .where-we-do__region:hover .where-we-do__arrow::after,
    .where-we-do__region:hover .where-we-do__arrow::before,
    .where-we-do__region:hover .where-we-do__arrow span,
    .where-we-do__region--active .where-we-do__arrow::after,
    .where-we-do__region--active .where-we-do__arrow::before,
    .where-we-do__region--active .where-we-do__arrow span {
        background-color: #e96c24;
    }


    .mb-increased {
        margin-bottom: 60px;
    }

    h3, h2, h1, .secondary-title {
        font-size: 24px;
    }

    .employees-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 380px;
    }

    .download-offer {
        padding: 10px;
    }

    .download-offer__text {
        font-size: 24px;
    }

    .download-offer__text + div {
        width: 100%;
    }

    .download-offer__content {
        gap: 30px;
        max-width: 100%;
    }

    .download-offer__content .button,
    .card-best .button {
        min-width: 0;
    }

    .download-offer-wrapper {
        margin: 100px auto;
    }

    .button__link {
        padding: 20px 24px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        grid-auto-rows: 155px;
    }

    .mb-regular {
        margin-bottom: 40px;
    }

    .partners__item picture {
        max-width: 124px;
    }

    .partners__item:nth-child(1) picture {
        max-width: 83px;
    }

    .partners__item:nth-child(4) picture {
        max-width: 103px;
    }

    .partners__item:nth-child(8) picture {
        max-width: 131px;
    }

    .partners__item:nth-child(9) picture {
        max-width: 119px;
    }

    .partners__item:nth-child(10) picture {
        max-width: 75px;
    }

    .community__item picture {
        max-width: 118px;
    }

    .community__item:nth-child(1) picture {
        max-width: 123px;
    }

    .community__item:nth-child(2) picture {
        max-width: 75px;
    }

    .community__item:nth-child(5) picture {
        max-width: 82px;
    }

    /*FOOTER*/
    .footer__logo {
        max-width: 50px;
    }

    .footer__contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .scroll-top {
        margin-left: 0;
        margin-top: -10px;
    }

    .footer__contacts + div {
        order: 1;
        margin-top: -10px;
    }

    /********************
    Specialists PAGE
    ********************/
    .specialists_tab__nav {
        gap: 15px;
        flex-direction: column;
    }

    .specialists__tablink {
        width: 100%;
    }

    .specialists_tab__nav .indicator {
        width: 100%;
    }

    .specialists__tablink_1.specialists__tablink--active ~ .indicator,
    .specialists__tablink_2.specialists__tablink--active ~ .indicator {
        display: none;
    }

    .specialists__tablink.specialists__tablink--active {
        box-shadow: 0 1px #FEFDFD;
    }

    /* Services page */
    .employees-carousel__slide {
        flex: 0 0 100%;
    }

    .employees-carousel__slide .employee {
        height: 380px;
    }

    /*Tenders*/
    .card-best {
        padding: 30px 20px;
        gap: 30px;
    }

    /*about*/
    .card-best > div {
        width: 100%;
    }

    .employee__description.employee_description_return {
        transition-duration: 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s;
        transition-delay: 0.3s, 0.3s, 0.3s, 0.3s, 0s, 0.3s, 0.3s;
        transition-property: width, padding-left, padding-right, padding-top, top, left, min-height;
    }

    .employee_description_return .employee__description__details {
        transition-delay: .1s;
    }

    /* News page */
    .news_content__video--prosvetlenie-molodih-uristov {
        height: 180px;
    }

    .news-container {
        grid-template-columns: 1fr;
    }

    .news__2-1-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px 239px 234px;
    }

    .news__2-1-grid > picture:nth-child(3) {
        grid-column: 1/2;
    }
}

