
:root {
    --ec-navy: #080d28;
    --ec-navy-2: #0c1232;
    --ec-orange: #f26a21;
    --ec-white: #ffffff;
    --ec-text: #151b34;
    --ec-muted: #6b7280;
    --ec-line: #e5e8ef;
    --ec-footer-text: rgba(255, 255, 255, .72);
    --ec-container: 1440px;
    --ec-container-offset: 60px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:Montserrat, sans-serif;
    color: var(--ec-text);
    background: var(--ec-white);
}

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



.ec-container,
.ec-hero__container,
.ec-hero__services-inner,
.ec-about__container,
.ec-services__container,
.ec-directions__container,
.ec-geo__container,
.ec-projects__container,
.ec-team__container,
.ec-partners__container,
.ec-news__container {
    width: min(100% - var(--ec-container-offset) * 2, var(--ec-container));
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1539px) {
    :root {
        --ec-container: 1320px;
        --ec-container-offset: 48px;
    }
}

@media (max-width: 1199px) {
    :root {
        --ec-container-offset: 36px;
    }
}

@media (max-width: 991px) {
    :root {
        --ec-container-offset: 28px;
    }
}

@media (max-width: 575px) {
    :root {
        --ec-container-offset: 16px;
    }
}

.ec-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--ec-white);
}

.ec-container {
    width: min(100% - 60px, var(--ec-container));
    margin: 0 auto;
}

/* Header */
.ec-header {
    width: 100%;
    background: var(--ec-navy);
    color: var(--ec-white);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ec-header__inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.ec-nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.ec-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ec-nav__arrow {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: .25s ease;
}

.ec-nav__dropdown:hover .ec-nav__arrow,
.ec-nav__dropdown.is-open .ec-nav__arrow {
  transform: rotate(225deg) translateY(-1px);
}

.ec-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 30;
  min-width: 250px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #dfe3ec;
  box-shadow: 0 24px 54px rgba(8, 13, 40, .14);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
}

.ec-nav__dropdown-menu--wide {
  min-width: 390px;
}

.ec-nav__dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
}

.ec-nav__dropdown:hover .ec-nav__dropdown-menu,
.ec-nav__dropdown:focus-within .ec-nav__dropdown-menu,
.ec-nav__dropdown.is-open .ec-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ec-nav__dropdown-link {
  position: relative;
  display: block;
  padding: 13px 14px;
  color: #080d28;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
  transition: .25s ease;
}

.ec-nav__dropdown-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  bottom: 13px;
  width: 2px;
  background: #f26a21;
  transform: scaleY(0);
  transition: .25s ease;
}

.ec-nav__dropdown-link:hover {
  background: #f7f8fb;
  color: #f26a21;
  padding-left: 20px;
}

.ec-nav__dropdown-link:hover::before {
  transform: scaleY(1);
}

@media (max-width: 1199px) {
  .ec-nav__dropdown-menu--wide {
    min-width: 340px;
  }
}

@media (max-width: 991px) {
  .ec-nav {
    align-items: stretch;
  }

  .ec-nav__dropdown {
    display: block;
  }

  .ec-nav__dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .ec-nav__dropdown-menu,
  .ec-nav__dropdown-menu--wide {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
    background: rgba(8, 13, 40, .04);
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .ec-nav__dropdown-menu::before {
    display: none;
  }

  .ec-nav__dropdown.is-open .ec-nav__dropdown-menu {
    display: block;
  }

  .ec-nav__dropdown.is-open .ec-nav__arrow {
    transform: rotate(225deg) translateY(-1px);
  }

  .ec-nav__dropdown-link {
    padding: 12px 18px;
    font-size: 13px;
  }

  .ec-nav__dropdown-link:hover {
    padding-left: 22px;
  }
}
.ec-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    width: 156px;
}

.ec-logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.ec-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-left: auto;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.ec-nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    transition: color .2s ease;
}

.ec-nav__item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--ec-orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.ec-header-phone{
    border: 1px solid white;
    padding: 10px;
}
.ec-nav__item:hover,
.ec-nav__item.is-active {
    color: var(--ec-white);
}

.ec-nav__item:hover::after,
.ec-nav__item.is-active::after {
    transform: scaleX(1);
}

.ec-header__right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 0 0 auto;
}

.ec-lang {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1;
}

.ec-lang a {
    transition: color .2s ease;
}

.ec-lang a:hover,
.ec-lang a.is-active {
    color: var(--ec-white);
}

.ec-header-phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding-left: 22px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1;
    transition: color .2s ease;
}

.ec-header-phone::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: rgba(255, 255, 255, .22);
}

.ec-header-phone:hover {
    color: var(--ec-orange);
}

.ec-burger {
    display: none;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .24);
    background: transparent;
    padding: 0;
}

.ec-burger span,
.ec-burger span::before,
.ec-burger span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ec-white);
    content: "";
}

.ec-burger span::before {
    transform: translateY(-6px);
}

.ec-burger span::after {
    transform: translateY(4px);
}

/* Empty content block */
.ec-empty {
    flex: 1;
    min-height: 620px;
    padding: 70px 0;
    background: #ffffff;
}

.ec-empty__placeholder {
    min-height: 480px;
    border: 1px dashed #d7dbe6;
    background: #fafbfe;
}

/* Footer */
.ec-footer {
    background: var(--ec-navy);
    color: var(--ec-footer-text);
}

.ec-footer__main {
    padding: 58px 0 34px;
}

.ec-footer__grid {
    display: grid;
    grid-template-columns: minmax(220px, auto) repeat(3, minmax(0, auto));
    justify-content: space-between;
    gap: 40px 56px;
    align-items: start;
}

.ec-footer__brand img {
    display: block;
    width: 155px;
    height: auto;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}

.ec-footer__brand-text {
    max-width: 230px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.55;
}

.ec-footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.ec-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: .25s ease;
}

.ec-footer__social:hover {
    border-color: var(--ec-orange);
    background: var(--ec-orange);
    color: #ffffff;
}

.ec-footer__title {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 13px;
    color: var(--ec-white);
    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;
}

.ec-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: var(--ec-orange);
}

.ec-footer__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.4;
}

.ec-footer__list a {
    color: rgba(255, 255, 255, .66);
    transition: color .2s ease, padding-left .2s ease;
}

.ec-footer__list a:hover {
    color: var(--ec-white);
    padding-left: 4px;
}

.ec-footer__contacts {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    line-height: 1.55;
}

.ec-footer__contacts a {
    color: rgba(255, 255, 255, .75);
    transition: color .2s ease;
}

.ec-footer__contacts a:hover {
    color: var(--ec-orange);
}

.ec-footer__bottom {
    padding: 17px 0 20px;
    border-top: 1px solid rgba(242, 106, 33, .55);
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.ec-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1199px) {
    .ec-nav {
        gap: 20px;
    }

    .ec-footer__grid {
        gap: 34px;
    }
}

@media (max-width: 991px) {
    .ec-container {
        width: min(100% - 32px, var(--ec-container));
    }

    .ec-nav,
    .ec-header__right {
        display: none;
    }

    .ec-burger {
        display: inline-flex;
        margin-left: auto;
    }

    .ec-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .ec-header__inner {
        min-height: 54px;
    }

    .ec-logo {
        width: 145px;
    }

    .ec-empty {
        min-height: 440px;
        padding: 40px 0;
    }

    .ec-empty__placeholder {
        min-height: 360px;
    }

    .ec-footer__main {
        padding: 42px 0 28px;
    }

    .ec-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.ec-modal .modal-dialog {
    max-width: 820px;
}

.ec-modal .modal-content {
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: #080d28;
    box-shadow: 0 30px 80px rgba(8, 13, 40, .24);
}

.ec-modal__inner {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: 560px;
}

.ec-modal__side {
    position: relative;
    padding: 34px 28px;
    background:
            linear-gradient(180deg, rgba(8, 13, 40, .82), rgba(8, 13, 40, .96)),
            url("../img/photo-1503387762-592deb58ef4e.jpg") center / cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.ec-modal__side::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(242, 106, 33, .32);
    border-radius: 50%;
}

.ec-modal__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #f26a21;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ec-modal__label::after {
    content: "";
    width: 48px;
    height: 1px;
    background: #f26a21;
}

.ec-modal__side-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ec-modal__side-text {
    position: relative;
    z-index: 2;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.55;
}

.ec-modal__body {
    position: relative;
    padding: 38px 42px 42px;
}

.ec-modal__close {
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 1px solid #dfe3ec;
    background: #ffffff;
    color: #080d28;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: .25s ease;
}

.ec-modal__close:hover {
    border-color: #f26a21;
    background: #f26a21;
    color: #ffffff;
}

.ec-modal__title {
    max-width: 460px;
    margin: 0 44px 30px 0;
    color: #080d28;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ec-form {
    display: grid;
    gap: 22px;
}

.ec-form__field {
    position: relative;
}

.ec-form__input,
.ec-form__textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(8, 13, 40, .42);
    border-radius: 0;
    padding: 0 0 14px;
    background: transparent;
    color: #080d28;
    font-size: 18px;
    line-height: 1.3;
    outline: none;
    transition: .25s ease;
}

.ec-form__textarea {
    min-height: 104px;
    resize: vertical;
}

.ec-form__input::placeholder,
.ec-form__textarea::placeholder {
    color: rgba(8, 13, 40, .48);
}

.ec-form__input:focus,
.ec-form__textarea:focus {
    border-color: #f26a21;
}

.ec-form__file {
    position: relative;
}

.ec-form__file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ec-form__file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 134px;
    padding: 24px;
    border: 1px dashed rgba(8, 13, 40, .34);
    background: #f7f8fb;
    color: rgba(8, 13, 40, .55);
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
    cursor: pointer;
    transition: .25s ease;
}

.ec-form__file-label:hover {
    border-color: #f26a21;
    background: rgba(242, 106, 33, .06);
    color: #080d28;
}

.ec-form__file-icon {
    display: block;
    margin: 0 auto 12px;
    color: rgba(8, 13, 40, .32);
    font-size: 28px;
    line-height: 1;
}

.ec-form__file-name {
    display: block;
    margin-top: 10px;
    color: #f26a21;
    font-size: 13px;
    line-height: 1.35;
}

.ec-form__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 6px;
}

.ec-form__note {
    max-width: 320px;
    margin: 0;
    color: #777b86;
    font-size: 12px;
    line-height: 1.45;
}

.ec-form__submit {
    flex: 0 0 auto;
    min-width: 210px;
    min-height: 48px;
    border: 1px solid #080d28;
    background: #080d28;
    color: #ffffff;
    padding: 13px 28px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .04em;
    cursor: pointer;
    transition: .25s ease;
}

.ec-form__submit:hover {
    border-color: #f26a21;
    background: #f26a21;
    color: #ffffff;
}

@media (max-width: 767px) {
    .ec-modal .modal-dialog {
        max-width: calc(100% - 24px);
        margin-inline: auto;
    }

    .ec-modal__inner {
        grid-template-columns: 1fr;
    }

    .ec-modal__side {
        min-height: 190px;
    }

    .ec-modal__body {
        padding: 32px 24px 28px;
    }

    .ec-modal__title {
        margin-right: 44px;
        font-size: 24px;
    }

    .ec-form__input,
    .ec-form__textarea {
        font-size: 16px;
    }

    .ec-form__bottom {
        display: grid;
    }

    .ec-form__submit {
        width: 100%;
    }
}


 :root {
     --ec-navy: #080d28;
     --ec-orange: #f26a21;
     --ec-white: #ffffff;
     --ec-light: rgba(255, 255, 255, .78);
 }

.ec-hero {
    position: relative;
    min-height: calc(100vh - 46px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ec-navy);
    color: var(--ec-white);
}

.ec-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ec-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(
                    90deg,
                    rgba(8, 13, 40, .92) 0%,
                    rgba(8, 13, 40, .72) 38%,
                    rgba(8, 13, 40, .38) 68%,
                    rgba(8, 13, 40, .62) 100%
            ),
            linear-gradient(
                    180deg,
                    rgba(8, 13, 40, .45) 0%,
                    rgba(8, 13, 40, .15) 45%,
                    rgba(8, 13, 40, .86) 100%
            );
}

.ec-hero__container {
    position: relative;
    z-index: 3;

    margin: 0 auto;
    padding: 92px 0 58px;
}

.ec-hero__content {
    max-width: 760px;
}

.ec-hero__company {
    position: relative;
    display: inline-block;
    margin: 0 0 20px;
    padding-bottom: 8px;
    color: var(--ec-white);
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.ec-hero__company::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--ec-orange);
}

.ec-hero__title {
    max-width: 720px;
    margin: 0 0 28px;
    color: var(--ec-white);
    font-size: 42px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: .015em;
}

.ec-hero__text {
    max-width: 740px;
    margin: 0 0 34px;
    color: var(--ec-white);
    font-size: 24px;
    line-height: 1.48;
    font-weight: 400;
}

.ec-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 248px;
    min-height: 44px;
    padding: 12px 28px;
    border: 1px solid var(--ec-orange);
    background: var(--ec-orange);
    color: var(--ec-white);
    font-size: 13px;
    line-height: 1;
    transition: .25s ease;
}

.ec-hero__btn:hover {
    background: transparent;
    color: var(--ec-white);
}

.ec-hero__services {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 4;
}

.ec-hero__services-inner {

    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ec-hero__service-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.2;
    transition: .25s ease;
}

.ec-hero__service-link::after {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--ec-orange);
}

.ec-hero__service-link:hover {
    color: var(--ec-white);
}

.ec-hero__scroll-line {
    position: absolute;
    left: 50%;
    bottom: 86px;
    z-index: 4;
    width: 1px;
    height: 46px;
    background: rgba(255, 255, 255, .35);
    overflow: hidden;
}

.ec-hero__scroll-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: -46px;
    width: 1px;
    height: 46px;
    background: var(--ec-orange);
    animation: ecHeroScroll 1.8s infinite;
}

@keyframes ecHeroScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(92px);
    }
}

@media (max-width: 1199px) {
    .ec-hero__company {
        font-size: 42px;
    }

    .ec-hero__title {
        font-size: 36px;
    }

    .ec-hero__text {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .ec-hero {
        min-height: 720px;
    }

    .ec-hero__container {
        padding: 86px 0 140px;
    }

    .ec-hero__content {
        max-width: 100%;
    }

    .ec-hero__company {
        font-size: 34px;
    }

    .ec-hero__title {
        font-size: 30px;
    }

    .ec-hero__text {
        font-size: 19px;
    }

    .ec-hero__services {
        bottom: 24px;
    }

    .ec-hero__services-inner {
        justify-content: flex-start;
    }

    .ec-hero__scroll-line {
        display: none;
    }
}

@media (max-width: 575px) {
    .ec-hero {
        min-height: 680px;
    }

    .ec-hero__container,
    .ec-hero__services-inner {

    }

    .ec-hero__container {
        padding: 70px 0 160px;
    }

    .ec-hero__company {
        font-size: 28px;
        letter-spacing: .04em;
    }

    .ec-hero__title {
        font-size: 25px;
        line-height: 1.22;
    }

    .ec-hero__text {
        font-size: 17px;
        line-height: 1.5;
    }

    .ec-hero__btn {
        width: 100%;
        min-width: 0;
    }

    .ec-hero__services-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .ec-hero__service-link {
        font-size: 12px;
    }
}


 .ec-about {
     padding: 78px 0 70px;
     background: #ffffff;
 }

.ec-about__container {

    margin: 0 auto;
}

.ec-about__grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 48px;
    align-items: stretch;
}

.ec-about__media {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: #080d28;
}

.ec-about__media video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.ec-about__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            180deg,
            rgba(8, 13, 40, .06) 0%,
            rgba(8, 13, 40, .18) 100%
    );
    pointer-events: none;
}

.ec-about__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 4px 0;
}

.ec-about__title {
    margin: 0 0 24px;
    color: #080d28;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.ec-about__title-accent {
    color: #f26a21;
}

.ec-about__lead {
    margin: 0 0 20px;
    color: #151b34;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}

.ec-about__scroll {
    max-height: 268px;
    overflow-y: auto;
    padding-right: 18px;
    margin-bottom: 28px;
    scrollbar-width: thin;
    scrollbar-color: #f26a21 #edf0f5;
}

.ec-about__scroll::-webkit-scrollbar {
    width: 4px;
}

.ec-about__scroll::-webkit-scrollbar-track {
    background: #edf0f5;
}

.ec-about__scroll::-webkit-scrollbar-thumb {
    background: #f26a21;
}

.ec-about__text {
    margin: 0 0 17px;
    color: #252b3f;
    font-size: 14px;
    line-height: 1.62;
    font-weight: 400;
}

.ec-about__text:last-child {
    margin-bottom: 0;
}

.ec-about__text strong {
    color: #080d28;
    font-weight: 800;
}

.ec-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 245px;
    min-height: 46px;
    padding: 12px 30px;
    border: 1px solid #080d28;
    background: #080d28;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    transition: .25s ease;
}

.ec-about__btn:hover {
    background: #f26a21;
    border-color: #f26a21;
    color: #ffffff;
}

@media (max-width: 1199px) {
    .ec-about__grid {
        gap: 36px;
    }

    .ec-about__title {
        font-size: 30px;
    }

    .ec-about__media,
    .ec-about__media video {
        min-height: 430px;
    }
}

@media (max-width: 991px) {
    .ec-about {
        padding: 58px 0;
    }

    .ec-about__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ec-about__media,
    .ec-about__media video {
        min-height: 390px;
    }

    .ec-about__scroll {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .ec-about__container {

    }

    .ec-about {
        padding: 42px 0;
    }

    .ec-about__media,
    .ec-about__media video {
        min-height: 280px;
    }

    .ec-about__title {
        margin-bottom: 18px;
        font-size: 25px;
        line-height: 1.12;
    }

    .ec-about__lead {
        font-size: 14px;
    }

    .ec-about__text {
        font-size: 13px;
    }

    .ec-about__btn {
        width: 100%;
        min-width: 0;
    }
}


 .ec-services {
     padding: 82px 0 86px;
     background: #ffffff;
     color: #080d28;
 }

.ec-services__container {

    margin: 0 auto;
}

.ec-section-title {
    position: relative;
    margin: 0 0 54px;
    padding-bottom: 20px;
    color: #080d28;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ec-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    height: 2px;
    background: #f26a21;
}

.ec-services__layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 54px;
    align-items: stretch;
}

.ec-services__tabs {
    position: relative;
    display: grid;
    gap: 10px;
}

.ec-services__tabs::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 26px;
    bottom: 26px;
    width: 1px;
    background: #dfe3ec;
}

.ec-service-tab {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 68px;
    padding: 10px 18px 10px 0;
    border: 0;
    background: transparent;
    color: #080d28;
    text-align: left;
    cursor: pointer;
}

.ec-service-tab__num {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe3ec;
    background: #ffffff;
    color: #8a90a3;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.ec-service-tab__name {
    position: relative;
    display: block;
    padding-bottom: 6px;
    color: #252b3f;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    transition: .25s ease;
}

.ec-service-tab__name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #f26a21;
    transition: .25s ease;
}

.ec-service-tab:hover .ec-service-tab__num,
.ec-service-tab.is-active .ec-service-tab__num {
    border-color: #f26a21;
    background: #f26a21;
    color: #ffffff;
}

.ec-service-tab:hover .ec-service-tab__name,
.ec-service-tab.is-active .ec-service-tab__name {
    color: #080d28;
    font-weight: 700;
}

.ec-service-tab:hover .ec-service-tab__name::after,
.ec-service-tab.is-active .ec-service-tab__name::after {
    width: 74px;
}

.ec-services__content {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: #080d28;
    color: #ffffff;
}

.ec-service-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 34px;
    padding: 46px 46px 42px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: .35s ease;
    pointer-events: none;
}

.ec-service-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/*
            .ec-service-panel::before {
                content: "";
                position: absolute;
                right: -110px;
                top: -110px;
                width: 320px;
                height: 320px;
                border: 1px solid rgba(242, 106, 33, .36);
                border-radius: 50%;
            }
*/
.ec-service-panel::after {
    content: "";
    position: absolute;
    right: 96px;
    bottom: 58px;
    width: 74px;
    height: 74px;
    border: 12px solid rgba(242, 106, 33, .16);
    border-radius: 50%;
}

.ec-service-panel__main {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.ec-service-panel__icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: #ffffff;
    color: #f26a21;
}

.ec-service-panel__icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
}

.ec-service-panel__title {
    max-width: 620px;
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ec-service-panel__text {
    max-width: 690px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.7;
}

.ec-service-panel__list {
    display: grid;
    gap: 12px;
    max-width: 700px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.ec-service-panel__list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.5;
}

.ec-service-panel__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    background: #f26a21;
}

.ec-service-panel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 218px;
    min-height: 44px;
    padding: 12px 24px;
    border: 1px solid #f26a21;
    background: #f26a21;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    transition: .25s ease;
}

.ec-service-panel__btn:hover {
    background: transparent;
    color: #ffffff;
}

.ec-service-panel__side {
    position: relative;
    z-index: 2;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-left: 1px solid rgba(255, 255, 255, .18);
    padding-left: 28px;
}

.ec-service-panel__side-num {
    display: block;
    margin-bottom: 10px;
    color: #f26a21;
    font-size: 66px;
    line-height: 1;
    font-weight: 800;
}

.ec-service-panel__side-text {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1199px) {
    .ec-services__layout {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 34px;
    }

    .ec-service-panel {
        grid-template-columns: 1fr 210px;
        padding: 38px;
    }

    .ec-service-panel__title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .ec-services {
        padding: 58px 0;
    }

    .ec-services__layout {
        grid-template-columns: 1fr;
    }

    .ec-services__tabs {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .ec-services__tabs::before {
        display: none;
    }

    .ec-service-tab {
        flex: 0 0 270px;
        grid-template-columns: 44px minmax(0, 1fr);
        min-height: 58px;
        padding-right: 12px;
        border: 1px solid #dfe3ec;
        background: #ffffff;
    }

    .ec-service-tab__num {
        width: 44px;
        height: 44px;
        border-left: 0;
        border-top: 0;
        border-bottom: 0;
    }

    .ec-service-tab__name {
        font-size: 15px;
    }

    .ec-services__content {
        min-height: auto;
        overflow: visible;
        background: transparent;
    }

    .ec-service-panel {
        position: relative;
        display: none;
        grid-template-columns: 1fr;
        min-height: auto;
        background: #080d28;
    }

    .ec-service-panel.is-active {
        display: grid;
    }

    .ec-service-panel__side {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .18);
        padding-left: 0;
        padding-top: 22px;
    }
}

@media (max-width: 575px) {
    .ec-services__container {

    }

    .ec-section-title {
        margin-bottom: 34px;
        font-size: 24px;
    }

    .ec-section-title::after {
        width: 170px;
    }

    .ec-service-tab {
        flex-basis: 245px;
    }

    .ec-service-panel {
        padding: 30px 24px;
    }

    .ec-service-panel__icon {
        width: 58px;
        height: 58px;
        margin-bottom: 24px;
    }

    .ec-service-panel__title {
        font-size: 24px;
    }

    .ec-service-panel__text {
        font-size: 14px;
    }

    .ec-service-panel__btn {
        width: 100%;
    }

    .ec-service-panel__side-num {
        font-size: 50px;
    }
}


 .ec-directions {
     padding: 78px 0 86px;
     background: #fff;
     color: #080d28;
     overflow: hidden;
 }

.ec-directions__container {

    margin: 0 auto;
}

.ec-directions__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}

.ec-directions__title {
    position: relative;
    margin: 0;
    padding-bottom: 18px;
    color: #080d28;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ec-directions__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    height: 2px;
    background: #f26a21;
}

.ec-directions__intro {
    max-width: 470px;
    margin: 0;
    color: #5d6475;
    font-size: 15px;
    line-height: 1.6;
}

.ec-directions__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
    align-items: stretch;
}

.ec-directions-slider {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 520px;
    background: #080d28;
    overflow: hidden;
}

.ec-directions-slider .swiper-wrapper,
.ec-directions-slider .swiper-slide {
    height: 100%;
}

.ec-direction-slide {
    position: relative;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #080d28;
}

.ec-direction-slide__img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ec-direction-slide__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform .9s ease;
}

.swiper-slide-active .ec-direction-slide__img img {
    transform: scale(1);
}

.ec-direction-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(90deg, rgba(8, 13, 40, .94) 0%, rgba(8, 13, 40, .68) 45%, rgba(8, 13, 40, .25) 100%),
            linear-gradient(180deg, rgba(8, 13, 40, .08) 0%, rgba(8, 13, 40, .88) 100%);
}

.ec-direction-slide__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    padding: 52px 52px 72px;
    color: #fff;
}

.ec-direction-slide__num {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: #f26a21;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ec-direction-slide__num::after {
    content: "";
    width: 72px;
    height: 1px;
    background: #f26a21;
}

.ec-direction-slide__title {
    max-width: 640px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ec-direction-slide__text {
    max-width: 590px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .76);
    font-size: 17px;
    line-height: 1.65;
}

.ec-direction-slide__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 44px;
    padding: 12px 24px;
    border: 1px solid #f26a21;
    background: #f26a21;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    transition: .25s ease;
}

.ec-direction-slide__link:hover {
    background: transparent;
    color: #fff;
}

.ec-directions__side {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ec-directions__nav {
    display: grid;
    gap: 10px;
}

.ec-direction-nav {
    position: relative;
    min-height: 96px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 18px 20px 18px 0;
    border: 1px solid #dfe3ec;
    background: #fff;
    color: #080d28;
    cursor: pointer;
    transition: .25s ease;
    overflow: hidden;
    text-align: left;
}

.ec-direction-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #080d28;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
    z-index: 0;
}

.ec-direction-nav.is-active::before,
.ec-direction-nav:hover::before {
    transform: scaleX(1);
}

.ec-direction-nav__num,
.ec-direction-nav__name {
    position: relative;
    z-index: 1;
}

.ec-direction-nav__num {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dfe3ec;
    color: #8a90a3;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.ec-direction-nav__name {
    color: #252b3f;
    font-size: 17px;
    line-height: 1.22;
    font-weight: 600;
    transition: .25s ease;
}

.ec-direction-nav.is-active {
    border-color: #080d28;
}

.ec-direction-nav.is-active .ec-direction-nav__num,
.ec-direction-nav:hover .ec-direction-nav__num {
    color: #f26a21;
    border-color: rgba(255, 255, 255, .18);
}

.ec-direction-nav.is-active .ec-direction-nav__name,
.ec-direction-nav:hover .ec-direction-nav__name {
    color: #fff;
}

.ec-directions__controls {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.ec-directions__btn {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #080d28;
    background: #080d28;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: .25s ease;
}

.ec-directions__btn:hover {
    border-color: #f26a21;
    background: #f26a21;
}

.ec-directions__progress {
    position: absolute;
    left: 52px;
    right: 52px;
    bottom: 34px;
    z-index: 5;
    height: 2px;
    background: rgba(255, 255, 255, .22);
}

.ec-directions__progress .swiper-pagination-progressbar-fill {
    background: #f26a21;
}

@media (max-width: 991px) {
    .ec-directions {
        padding: 58px 0;
    }

    .ec-directions__head {
        display: block;
        margin-bottom: 34px;
    }

    .ec-directions__intro {
        margin-top: 22px;
    }

    .ec-directions__layout {
        grid-template-columns: 1fr;
    }

    .ec-directions__nav {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .ec-direction-nav {
        flex: 0 0 270px;
        min-height: 78px;
    }

    .ec-directions__controls {
        display: none;
    }
}

@media (max-width: 575px) {
    .ec-directions__container {

    }

    .ec-directions-slider,
    .ec-direction-slide {
        height: 520px;
        min-height: 520px;
    }

    .ec-direction-slide__content {
        padding: 32px 24px 58px;
    }

    .ec-direction-slide__title {
        font-size: 30px;
    }

    .ec-direction-slide__text {
        font-size: 14px;
    }

    .ec-direction-slide__link {
        width: 100%;
    }

    .ec-directions__progress {
        left: 24px;
        right: 24px;
        bottom: 26px;
    }
}


 .ec-geo {
     padding: 82px 0 88px;
     background: #ffffff;
     color: #080d28;
     overflow: hidden;
 }

.ec-geo__container {

    margin: 0 auto;
}

.ec-geo__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 28px;
    align-items: stretch;
}

.ec-geo__title {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 18px;
    color: #080d28;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ec-geo__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    height: 2px;
    background: #f26a21;
}

.ec-geo__text {
    max-width: 780px;
    margin: 0 0 28px;
    color: #3c4257;
    font-size: 15px;
    line-height: 1.58;
}

.ec-geo__map-card {
    position: relative;
    min-height: 485px;
    overflow: hidden;
    background:
            radial-gradient(circle at 24% 32%, rgba(242, 106, 33, .14), transparent 22%),
            radial-gradient(circle at 78% 62%, rgba(12, 55, 130, .4), transparent 34%),
            linear-gradient(135deg, #121936 0%, #080d28 100%);
}

.ec-geo__map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .7;
    pointer-events: none;
}

.ec-geo__map-card::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(242, 106, 33, .28);
    border-radius: 50%;
    pointer-events: none;
}

.ec-geo__map-head {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px 0;
}

.ec-geo__map-title {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.ec-geo__map-subtitle {
    margin-top: 7px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.45;
}

.ec-geo__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(242, 106, 33, .42);
    color: #f26a21;
    background: rgba(255, 255, 255, .04);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ec-geo__status::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #f26a21;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(242, 106, 33, .14);
}

.ec-geo__map-area {
    position: relative;
    height: 501px;
    margin: 8px 30px 0;
}

.ec-geo__map-shape {
    position: absolute;
    inset: 18px 20px 4px;
    background:
            linear-gradient(135deg, rgba(18, 75, 166, .95), rgba(7, 31, 80, .95));
    mask-image: url("../img/ua.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/ua.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, .38));
}

.ec-geo__map-shape-glow {
    position: absolute;
    inset: 18px 20px 4px;
    background: rgba(242, 106, 33, .22);
    mask-image: url("../img/ua.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/ua.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    filter: blur(20px);
    opacity: .55;
}



.ec-geo-marker {
    position: absolute;
    z-index: 6;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.ec-geo-marker__dot {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #f26a21;
    box-shadow: 0 0 0 0 rgba(242, 106, 33, .48);
}

.ec-geo-marker__dot::before,
.ec-geo-marker__dot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(242, 106, 33, .52);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ecGeoPulse 2.4s infinite;
}

.ec-geo-marker__dot::after {
    animation-delay: .8s;
}

.ec-geo-marker__label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 13px);
    transform: translateX(-50%) translateY(8px);
    padding: 8px 11px;
    background: rgba(8, 13, 40, .94);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.ec-geo-marker:hover .ec-geo-marker__label,
.ec-geo-marker.is-active .ec-geo-marker__label {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ec-geo-marker.is-active .ec-geo-marker__dot {
    background: #ffd34e;
}

@keyframes ecGeoPulse {
    0% {
        width: 16px;
        height: 16px;
        opacity: .9;
    }

    100% {
        width: 52px;
        height: 52px;
        opacity: 0;
    }
}

.ec-geo__cities {
    position: relative;
    z-index: 6;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0 30px 30px;
}

.ec-geo-city {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .72);
    padding: 9px 13px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: .25s ease;
}

.ec-geo-city:hover,
.ec-geo-city.is-active {
    border-color: #f26a21;
    background: #f26a21;
    color: #ffffff;
}

.ec-geo__stats {
    display: grid;
    gap: 12px;
}

.ec-geo-stat {
    min-height: 147px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 22px;
    background: #080d28;
    color: #ffffff;
    text-align: center;
}

.ec-geo-stat__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.ec-geo-stat__line {
    width: 58px;
    height: 2px;
    margin: 0 auto 12px;
    background: #f26a21;
}

.ec-geo-stat__label {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.35;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .ec-geo {
        padding: 58px 0;
    }

    .ec-geo__grid {
        grid-template-columns: 1fr;
    }

    .ec-geo__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .ec-geo__stats {
        grid-template-columns: 1fr;
    }

    .ec-geo__map-card {
        min-height: 0;
    }

    .ec-geo__map-head {
        display: block;
    }

    .ec-geo__status {
        margin-top: 16px;
    }

    .ec-geo__map-area {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .ec-geo__container {

    }

    .ec-geo {
        padding: 44px 0;
    }

    .ec-geo__title {
        font-size: 24px;
    }

    .ec-geo__title::after {
        width: 170px;
    }

    .ec-geo__map-head {
        padding: 22px 18px 0;
    }

    .ec-geo__map-area {
        height: 240px;
        margin: 8px 18px 0;
    }

    .ec-geo__cities {
        padding: 0 18px 22px;
    }

    .ec-geo-city {
        font-size: 11px;
        padding: 8px 10px;
    }
}


 .ec-projects {
     padding: 82px 0 88px;
     background: #ffffff;
     color: #080d28;
     overflow: hidden;
 }

.ec-projects__container {

    margin: 0 auto;
}

.ec-projects__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 46px;
}

.ec-projects__title {
    position: relative;
    margin: 0;
    padding-bottom: 20px;
    color: #080d28;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ec-projects__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    height: 2px;
    background: #f26a21;
}

.ec-projects__intro {
    max-width: 460px;
    margin: 0;
    color: #5d6475;
    font-size: 15px;
    line-height: 1.6;
}

.ec-projects__slider-wrap {
    position: relative;
}

.ec-projects-slider {
    position: relative;
    overflow: hidden;
    background: #080d28;
}

.ec-projects-slider .swiper-slide {
    height: auto;
}

.ec-project {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    background: #080d28;
    color: #ffffff;
}

.ec-project__media {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #121936;
}

.ec-project__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform .9s ease;
}

.swiper-slide-active .ec-project__media img {
    transform: scale(1);
}

.ec-project__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(8, 13, 40, .08), rgba(8, 13, 40, .24)),
            linear-gradient(180deg, transparent 55%, rgba(8, 13, 40, .56));
    pointer-events: none;
}

.ec-project__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 58px 86px;
    overflow: hidden;
}

.ec-project__content::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(242, 106, 33, .28);
    border-radius: 50%;
    pointer-events: none;
}

.ec-project__num {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    color: #f26a21;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ec-project__num::after {
    content: "";
    width: 72px;
    height: 1px;
    background: #f26a21;
}

.ec-project__name {
    max-width: 620px;
    margin: 0 0 24px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: .01em;
}

.ec-project__text {
    max-width: 580px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.65;
}

.ec-project__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 560px;
    margin-bottom: 34px;
}

.ec-project__meta-item {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .04);
}

.ec-project__meta-label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.ec-project__meta-value {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.ec-project__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 190px;
    min-height: 44px;
    padding: 12px 24px;
    border: 1px solid #f26a21;
    background: #f26a21;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    transition: .25s ease;
}

.ec-project__link:hover {
    background: transparent;
    color: #ffffff;
}

.ec-projects__nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 84px;
    min-height: 70px;
    pointer-events: none;
}

.ec-projects__btn {
    pointer-events: auto;
    width: 84px;
    height: 70px;
    border: 0;
    background: #080d28;
    color: #f26a21;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    transition: .25s ease;
}

.ec-projects__btn:hover {
    background: #f26a21;
    color: #ffffff;
}

.ec-projects__progress-wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 34px;
    background: rgba(8, 13, 40, .92);
    pointer-events: auto;
}

.ec-projects__progress {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .18);
}

.ec-projects__progress .swiper-pagination-progressbar-fill {
    background: #f26a21;
}

.ec-projects__counter {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .06em;
}

.ec-projects__counter-current {
    color: #ffffff;
}

.ec-projects__thumbs-wrap {
    position: relative;
    margin-top: 18px;
}

.ec-projects__thumbs-wrap::before,
.ec-projects__thumbs-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 8px;
    z-index: 3;
    width: 54px;
    pointer-events: none;
}

.ec-projects__thumbs-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.ec-projects__thumbs-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.ec-projects__thumbs {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #f26a21 #e5e8ef;
}

.ec-projects__thumbs::-webkit-scrollbar {
    height: 5px;
}

.ec-projects__thumbs::-webkit-scrollbar-track {
    background: #e5e8ef;
}

.ec-projects__thumbs::-webkit-scrollbar-thumb {
    background: #f26a21;
}

.ec-project-thumb {
    position: relative;
    flex: 0 0 370px;
    min-height: 92px;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 10px 16px 10px 10px;
    border: 1px solid #dfe3ec;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: .25s ease;
}

.ec-project-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #080d28;
    transform: scaleX(0);
    transform-origin: left;
    transition: .28s ease;
}

.ec-project-thumb.is-active::before,
.ec-project-thumb:hover::before {
    transform: scaleX(1);
}

.ec-project-thumb__img,
.ec-project-thumb__text {
    position: relative;
    z-index: 1;
}

.ec-project-thumb__img {
    width: 84px;
    height: 68px;
    overflow: hidden;
    background: #e8ebf2;
}

.ec-project-thumb__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-project-thumb__text {
    min-width: 0;
}

.ec-project-thumb__num {
    display: block;
    margin-bottom: 7px;
    color: #f26a21;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.ec-project-thumb__name {
    display: -webkit-box;
    color: #252b3f;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    transition: .25s ease;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ec-project-thumb.is-active {
    border-color: #080d28;
}

.ec-project-thumb.is-active .ec-project-thumb__name,
.ec-project-thumb:hover .ec-project-thumb__name {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .ec-project {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
    }

    .ec-project__content {
        padding: 46px 44px 86px;
    }

    .ec-project__name {
        font-size: 30px;
    }

    .ec-project-thumb {
        flex-basis: 340px;
    }
}

@media (max-width: 991px) {
    .ec-projects {
        padding: 58px 0;
    }

    .ec-projects__head {
        display: block;
        margin-bottom: 34px;
    }

    .ec-projects__intro {
        margin-top: 22px;
    }

    .ec-project {
        grid-template-columns: 1fr;
    }

    .ec-project__media {
        min-height: 360px;
    }

    .ec-project__content {
        padding: 38px 34px 96px;
    }

    .ec-projects__thumbs-wrap::before,
    .ec-projects__thumbs-wrap::after {
        width: 32px;
    }
}

@media (max-width: 575px) {
    .ec-projects__container {

    }

    .ec-projects {
        padding: 44px 0;
    }

    .ec-projects__title {
        font-size: 28px;
    }

    .ec-projects__title::after {
        width: 170px;
    }

    .ec-project__media {
        min-height: 260px;
    }

    .ec-project__content {
        padding: 30px 24px 94px;
    }

    .ec-project__name {
        font-size: 23px;
    }

    .ec-project__text {
        font-size: 14px;
    }

    .ec-project__meta {
        grid-template-columns: 1fr;
    }

    .ec-project__link {
        width: 100%;
    }

    .ec-projects__nav {
        grid-template-columns: 62px minmax(0, 1fr) 62px;
    }

    .ec-projects__btn {
        width: 62px;
        height: 64px;
        font-size: 32px;
    }

    .ec-projects__progress-wrap {
        padding: 0 18px;
    }

    .ec-projects__counter {
        display: none;
    }

    .ec-project-thumb {
        flex-basis: 292px;
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
        padding: 9px 12px 9px 9px;
    }

    .ec-project-thumb__img {
        width: 74px;
        height: 62px;
    }

    .ec-project-thumb__name {
        font-size: 12px;
    }
}


 .ec-team {
     padding: 82px 0 88px;
     background: #ffffff;
     color: #080d28;
     overflow: hidden;
 }

.ec-team__container {

    margin: 0 auto;
}
.ec-team-card__email {
  overflow-wrap: anywhere;
}

.ec-team-card__bottom {
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ec-team__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.ec-team__intro {
    grid-column: span 2;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 34px;
}

.ec-team__title {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 20px;
    color: #080d28;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ec-team__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    height: 2px;
    background: #f26a21;
}

.ec-team__text {
    max-width: 360px;
    margin: 0 0 34px;
    color: #777b86;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: .015em;
}

.ec-team__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 252px;
    min-height: 48px;
    padding: 13px 28px;
    border: 1px solid #080d28;
    background: #080d28;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .04em;
    transition: .25s ease;
}

.ec-team__btn:hover {
    border-color: #f26a21;
    background: #f26a21;
    color: #ffffff;
}

.ec-team-card {
    position: relative;
    min-height: 350px;
    display: block;
    overflow: hidden;
    background: #080d28;
    color: #ffffff;
}

.ec-team-card--large {
    min-height: 350px;
}

.ec-team-card__photo {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ec-team-card__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transform: scale(1);
    transition: transform .45s ease, filter .45s ease;
}

.ec-team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(180deg, rgba(8, 13, 40, 0) 32%, rgba(8, 13, 40, .88) 100%),
            linear-gradient(180deg, rgba(8, 13, 40, .05), rgba(8, 13, 40, .18));
    transition: background .35s ease;
}

.ec-team-card:hover .ec-team-card__photo img {
    transform: scale(1.055);
    filter: saturate(.95) contrast(1.02);
}

.ec-team-card:hover::after {
    background:
            linear-gradient(180deg, rgba(8, 13, 40, .08) 0%, rgba(8, 13, 40, .36) 42%, rgba(8, 13, 40, .94) 100%),
            linear-gradient(180deg, rgba(8, 13, 40, .08), rgba(8, 13, 40, .3));
}

.ec-team-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 0 20px 18px;
    transform: translateY(0);
    transition: transform .35s ease, padding-bottom .35s ease;
}

.ec-team-card:hover .ec-team-card__content {
    transform: translateY(-72px);
}

.ec-team-card__position {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: .035em;
    display: block;
}

.ec-team-card__name {
    display: block;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: .035em;
}

.ec-team-card__email {
    margin-top: 22px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: .035em;
    opacity: 0;
    transform: translateY(10px);
    transition: .3s ease;
}

.ec-team-card:hover .ec-team-card__email {
    opacity: 1;
    transform: translateY(0);
}

.ec-team-card__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 14px;
    background: #f26a21;
    color: #ffffff;
    text-align: center;
    transform: translateY(100%);
    transition: transform .35s ease;
}

.ec-team-card:hover .ec-team-card__bottom {
    transform: translateY(0);
}

.ec-team-join {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 26px;
    background: #080d28;
    color: #ffffff;
}

.ec-team-join__text {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: .02em;
}

.ec-team-join__link {
    color: #f26a21;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: .04em;
    transition: .25s ease;
}

.ec-team-join__link:hover {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .ec-team__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }

    .ec-team__intro {
        grid-column: span 2;
    }

    .ec-team-card--large {
        min-height: 270px;
    }
}

@media (max-width: 991px) {
    .ec-team {
        padding: 58px 0;
    }

    .ec-team__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ec-team__intro {
        grid-column: span 2;
        min-height: auto;
        padding-right: 0;
        margin-bottom: 10px;
    }

    .ec-team-card,
    .ec-team-card--large,
    .ec-team-join {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .ec-team {
        padding: 44px 0;
    }

    .ec-team__container {

    }

    .ec-team__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ec-team__intro {
        grid-column: span 1;
    }

    .ec-team__title {
        font-size: 28px;
    }

    .ec-team__title::after {
        width: 170px;
    }

    .ec-team__text {
        font-size: 16px;
    }

    .ec-team__btn {
        width: 100%;
    }

    .ec-team-card,
    .ec-team-card--large,
    .ec-team-join {
        min-height: 430px;
    }

    .ec-team-card__position {
        font-size: 20px;
    }

    .ec-team-card__name {
        font-size: 19px;
    }

}


 .ec-partners {
     padding: 82px 0 88px;
     background: #ffffff;
     color: #080d28;
     overflow: hidden;
 }

.ec-partners__container {

    margin: 0 auto;
}

.ec-partners__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.ec-partners__title {
    position: relative;
    margin: 0;
    padding-bottom: 20px;
    color: #080d28;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ec-partners__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    height: 2px;
    background: #f26a21;
}

.ec-partners__text {
    max-width: 460px;
    margin: 0;
    color: #5d6475;
    font-size: 15px;
    line-height: 1.6;
}

.ec-partners__panel {
    position: relative;
    padding: 34px 0;
    background:
            linear-gradient(135deg, rgba(8, 13, 40, .04), rgba(242, 106, 33, .035)),
            #f7f8fb;
    border-top: 1px solid #e2e6ef;
    border-bottom: 1px solid #e2e6ef;
    overflow: hidden;
}

.ec-partners__panel::before,
.ec-partners__panel::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 5;
    width: 160px;
    height: 100%;
    pointer-events: none;
}

.ec-partners__panel::before {
    left: 0;
    background: linear-gradient(90deg, #f7f8fb 0%, rgba(247, 248, 251, 0) 100%);
}

.ec-partners__panel::after {
    right: 0;
    background: linear-gradient(270deg, #f7f8fb 0%, rgba(247, 248, 251, 0) 100%);
}

.ec-partners__row {
    display: flex;
    width: max-content;
    gap: 14px;
}

.ec-partners__row + .ec-partners__row {
    margin-top: 14px;
}

.ec-partners__row--first {
    animation: ecPartnersMarqueeLeft 42s linear infinite;
}

.ec-partners__row--second {
    animation: ecPartnersMarqueeRight 48s linear infinite;
}

.ec-partners__panel:hover .ec-partners__row {
    animation-play-state: paused;
}

.ec-partner-logo {
    flex: 0 0 220px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 26px;
    border: 1px solid #dfe3ec;
    background: #ffffff;
    transition: .25s ease;
}

.ec-partner-logo img {
    display: block;
    max-width: 100%;
    max-height: 68px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .78;
    transition: .25s ease;
}

.ec-partner-logo:hover {
    border-color: rgba(242, 106, 33, .45);
    box-shadow: 0 18px 34px rgba(8, 13, 40, .08);
    transform: translateY(-2px);
}

.ec-partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes ecPartnersMarqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes ecPartnersMarqueeRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .ec-partners {
        padding: 58px 0;
    }

    .ec-partners__head {
        display: block;
        margin-bottom: 34px;
    }

    .ec-partners__text {
        margin-top: 22px;
    }

    .ec-partner-logo {
        flex-basis: 190px;
        height: 98px;
        padding: 18px 22px;
    }

    .ec-partner-logo img {
        max-height: 58px;
    }
}

@media (max-width: 575px) {
    .ec-partners {
        padding: 44px 0;
    }

    .ec-partners__container {

    }

    .ec-partners__title {
        font-size: 28px;
    }

    .ec-partners__title::after {
        width: 170px;
    }

    .ec-partners__panel {
        padding: 24px 0;
    }

    .ec-partners__panel::before,
    .ec-partners__panel::after {
        width: 70px;
    }

    .ec-partner-logo {
        flex-basis: 160px;
        height: 84px;
        padding: 14px 18px;
    }

    .ec-partner-logo img {
        max-height: 48px;
    }
}


 .ec-news {
     padding: 82px 0 88px;
     background: #ffffff;
     color: #080d28;
     overflow: hidden;
 }

.ec-news__container {

    margin: 0 auto;
}

.ec-news__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 46px;
}

.ec-news__title {
    position: relative;
    margin: 0;
    padding-bottom: 20px;
    color: #080d28;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ec-news__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    height: 2px;
    background: #f26a21;
}

.ec-news__intro {
    max-width: 460px;
    margin: 0;
    color: #5d6475;
    font-size: 15px;
    line-height: 1.6;
}

.ec-news__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 26px;
    align-items: stretch;
}

.ec-news-featured {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #080d28;
    color: #ffffff;
}

.ec-news-featured__img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ec-news-featured__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform .55s ease;
}

.ec-news-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(180deg, rgba(8, 13, 40, .04) 0%, rgba(8, 13, 40, .35) 42%, rgba(8, 13, 40, .96) 100%),
            linear-gradient(90deg, rgba(8, 13, 40, .65), rgba(8, 13, 40, .12));
}

.ec-news-featured:hover .ec-news-featured__img img {
    transform: scale(1.055);
}

.ec-news-featured__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 42px 44px;
}

.ec-news-featured__label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #f26a21;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ec-news-featured__label::after {
    content: "";
    width: 64px;
    height: 1px;
    background: #f26a21;
}

.ec-news-featured__date {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1;
}

.ec-news-featured__title {
    max-width: 650px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: .01em;
}

.ec-news-featured__desc {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    line-height: 1.62;
}

.ec-news__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    min-height: 44px;
    padding: 12px 24px;
    border: 1px solid #f26a21;
    background: #f26a21;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    transition: .25s ease;
}

.ec-news__link:hover {
    background: transparent;
    color: #ffffff;
}

.ec-news__side {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 590px;
}

.ec-news-slider {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.ec-news-slider .swiper-wrapper {
    height: 100%;
}

.ec-news-slider .swiper-slide {
    height: auto;
}

.ec-news-card {
    position: relative;
    height: 164px;
    min-height: 164px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    background: #f7f8fb;
    border: 1px solid #dfe3ec;
    color: #080d28;
    overflow: hidden;
    transition: .25s ease;
}

.ec-news-card__img img {
    width: 100%;
    height: 100%;
    min-height: 164px;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.ec-news-card__body {
    min-width: 0;
    padding: 18px 22px;
}

.ec-news-card__date {
    display: block;
    margin-bottom: 10px;
    color: #f26a21;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.ec-news-card__title {
    display: -webkit-box;
    margin: 0 0 10px;
    color: inherit;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ec-news-card__desc {
    display: -webkit-box;
    margin: 0;
    color: #687083;
    font-size: 13px;
    line-height: 1.45;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: .25s ease;
}

.ec-news__controls {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
}

@media (max-width: 991px) {
    .ec-news__side {
        height: auto;
    }

    .ec-news-slider {
        height: auto;
        overflow: hidden;
    }

    .ec-news-slider .swiper-wrapper {
        height: auto;
    }

    .ec-news-card {
        height: 100%;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .ec-news-card__img {
        height: 190px;
        flex: 0 0 190px;
    }

    .ec-news-card__img img {
        height: 100%;
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .ec-news-card__img {
        height: 180px;
        flex-basis: 180px;
    }
}

.ec-news-slider .swiper-slide {
    height: auto;
}

.ec-news-card {
    position: relative;
    min-height: 178px;
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    background: #f7f8fb;
    border: 1px solid #dfe3ec;
    color: #080d28;
    overflow: hidden;
    transition: .25s ease;
}

.ec-news-card + .ec-news-card {
    margin-top: 14px;
}

.ec-news-card:hover {
    border-color: #080d28;
    background: #080d28;
    color: #ffffff;
}

.ec-news-card__img {
    position: relative;
    overflow: hidden;
    background: #dfe3ec;
}

.ec-news-card__img img {
    width: 100%;
    height: 100%;
    min-height: 178px;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.ec-news-card:hover .ec-news-card__img img {
    transform: scale(1.06);
}

.ec-news-card__body {
    min-width: 0;
    padding: 22px 24px;
}

.ec-news-card__date {
    display: block;
    margin-bottom: 12px;
    color: #f26a21;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.ec-news-card__title {
    display: -webkit-box;
    margin: 0 0 13px;
    color: inherit;
    font-size: 18px;
    line-height: 1.26;
    font-weight: 700;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ec-news-card__desc {
    display: -webkit-box;
    margin: 0;
    color: #687083;
    font-size: 14px;
    line-height: 1.48;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: .25s ease;
}

.ec-news-card:hover .ec-news-card__desc {
    color: rgba(255, 255, 255, .66);
}

.ec-news-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: #f26a21;
    font-size: 24px;
    line-height: 1;
    opacity: 0;
    transform: translateX(-8px);
    transition: .25s ease;
}

.ec-news-card:hover .ec-news-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.ec-news__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
}

.ec-news__progress {
    flex: 1 1 auto;
    height: 2px;
    background: #dfe3ec;
}

.ec-news__progress .swiper-pagination-progressbar-fill {
    background: #f26a21;
}

.ec-news__buttons {
    display: flex;
    gap: 10px;
}

.ec-news__btn {
    width: 48px;
    height: 48px;
    border: 1px solid #080d28;
    background: #080d28;
    color: #f26a21;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: .25s ease;
}

.ec-news__btn:hover {
    background: #f26a21;
    border-color: #f26a21;
    color: #ffffff;
}

.ec-news__all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #080d28;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    transition: .25s ease;
}

.ec-news__all::after {
    content: "→";
    color: #f26a21;
    font-size: 18px;
    line-height: 1;
}

.ec-news__all:hover {
    color: #f26a21;
}

@media (max-width: 1199px) {
    .ec-news__layout {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
        gap: 20px;
    }

    .ec-news-featured__title {
        font-size: 28px;
    }

    .ec-news-card {
        grid-template-columns: 150px minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .ec-news {
        padding: 58px 0;
    }

    .ec-news__head {
        display: block;
        margin-bottom: 34px;
    }

    .ec-news__intro {
        margin-top: 22px;
    }

    .ec-news__layout {
        grid-template-columns: 1fr;
    }

    .ec-news-featured {
        min-height: 480px;
    }

    .ec-news-slider {
        overflow: visible;
    }

    .ec-news-card {
        min-height: 220px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .ec-news-card + .ec-news-card {
        margin-top: 0;
    }

    .ec-news-card__img img {
        min-height: 180px;
    }
}

@media (max-width: 575px) {
    .ec-news {
        padding: 44px 0;
    }

    .ec-news__container {

    }

    .ec-news__title {
        font-size: 28px;
    }

    .ec-news__title::after {
        width: 170px;
    }

    .ec-news-featured {
        min-height: 520px;
    }

    .ec-news-featured__content {
        padding: 30px 24px;
    }

    .ec-news-featured__title {
        font-size: 23px;
    }

    .ec-news-featured__desc {
        font-size: 14px;
    }

    .ec-news__link {
        width: 100%;
    }

    .ec-news-card__body {
        padding: 20px;
    }

    .ec-news__controls {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .ec-news__progress {
        grid-column: 1 / -1;
        order: 2;
    }
}
.ec-burger {
  display: none;
}

@media (max-width: 991px) {
  body.ec-menu-open {
    overflow: hidden;
  }

  .ec-header {
    position: relative;
    z-index: 100;
  }

  .ec-header__inner {
    position: relative;
  }

  .ec-burger {
    position: relative;
    z-index: 120;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 13, 40, .18);
    background: #ffffff;
    padding: 0;
    cursor: pointer;
  }

  .ec-burger span,
  .ec-burger span::before,
  .ec-burger span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #080d28;
    transition: .25s ease;
  }

  .ec-burger span {
    position: relative;
  }

  .ec-burger span::before,
  .ec-burger span::after {
    position: absolute;
    left: 0;
  }

  .ec-burger span::before {
    top: -7px;
  }

  .ec-burger span::after {
    top: 7px;
  }

  .ec-burger.is-active span {
    background: transparent;
  }

  .ec-burger.is-active span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .ec-burger.is-active span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .ec-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--ec-header-height, 82px);
    z-index: 110;
    height: calc(100vh - var(--ec-header-height, 82px));
    display: block;
    padding: 22px 16px 120px;
    background: #ffffff;
    border-top: 1px solid #dfe3ec;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }

  .ec-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .ec-nav__item {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #dfe3ec;
    color: #080d28;
    font-size: 15px;
    line-height: 1.2;
  }

  .ec-nav__dropdown {
    display: block;
  }

  .ec-nav__dropdown-toggle {
    width: 100%;
  }

  .ec-nav__dropdown-menu,
  .ec-nav__dropdown-menu--wide {
    position: static;
    width: 100%;
    min-width: 0;
    display: none;
    padding: 8px 0 10px;
    margin: 0;
    background: #f7f8fb;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .ec-nav__dropdown.is-open .ec-nav__dropdown-menu {
    display: block;
  }

  .ec-nav__dropdown-menu::before {
    display: none;
  }

  .ec-nav__dropdown-link {
    display: block;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(8, 13, 40, .08);
    color: #080d28;
    font-size: 13px;
    line-height: 1.35;
  }

  .ec-nav__dropdown-link:last-child {
    border-bottom: 0;
  }

  .ec-nav__arrow {
    flex: 0 0 auto;
  }

  .ec-nav__dropdown.is-open .ec-nav__arrow {
    transform: rotate(225deg) translateY(-1px);
  }

  .ec-header__right {
    display: none;
  }
}
@media (max-width: 991px) {   .ec-nav {     display: block !important;   } }