@font-face {
    font-family: "NTSomic";
    src: url("../fonts/NTSomic-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
}

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

@font-face {
    font-family: "NTSomic";
    src: url("../fonts/NTSomic-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'nx';
    src: url('../fonts/nx/nx.woff');
    src: url('../fonts/nx/nx.eot?#iefix') format('embedded-opentype'),
    url('../fonts/nx/nx.eot') format('embedded-opentype'),
    url('../fonts/nx/nx.ttf') format('truetype'),
    url('../fonts/nx/nx.svg?#nx') format('svg');
    font-weight: normal;
    font-style: normal;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

:root {
    --space-unit: 1em;
    --space-sm: calc(0.75 * var(--space-unit));
    --space-md: calc(1.25 * var(--space-unit));
}

.nx {
    font-family: nx, Tahoma, Geneva, sans-serif;
    color: inherit;
    font-weight: 400;
}

.spin {
    animation: spin 1s linear infinite;
}

* {
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "NTSomic", "Roboto", sans-serif;
    color: #011926;
    font-size: 14px;
    height: 100%;
    width: 100%;
    line-height: 1.2;
}

:focus {
    outline: 0;
}

img {
    border: 0;
}

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

a > SVG {
    fill: currentcolor;
}

p {
    margin: 1em 0;
}

a[role="button"],
.btn {
    color: #011926;
    padding: 0.5em 1.5em;
    background-color: #FFFFFF;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.btn.btn-white {
    color: #005AA7;
}

#calendar .more a[role="button"] {
    background-color: #ECEFF9;
}

@media (max-width: 639px) {
    a[role="button"] {
        padding: 1em 2.5em;
    }
}

a[role="button"].more:after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    background-color: #011926;
    mask: url("../img/arrow.svg") no-repeat center/contain;
}

a[role="button"].more:hover {
    color: #005AA7;
}

a[role="button"].more:hover:after {
    background-color: #005AA7;
}

a[role="button"].blue {
    color: #FFFFFF;
    background-color: #005AA7;
}

a[role="button"].blue:after {
    background-color: #FFFFFF;
}

a[role="button"].blue:hover {
    color: #ECEFF9;
}

a[role="button"].blue:hover:after {
    background-color: #ECEFF9;
}

a[role="button"].dark {
    color: #FFFFFF;
    background-color: #011926;
}

a[role="button"].dark:after {
    background-color: #FFFFFF;
}

a[role="button"].dark:hover {
    color: #ECEFF9;
}

a[role="button"].dark:hover:after {
    background-color: #ECEFF9;
}

.page-body {
    background-color: #FFFFFF;
}

header {
    background-color: #000000;
    overflow: hidden;
}

header .navigation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.25em 2em;
    position: relative;
    z-index: 50;
}

@media (min-width: 640px) {
    header .navigation {
        padding: 0.75em 3em 0;
    }
}

header .navigation .logo {
    /*height: 3.75em;*/
    height: 4.5em;
    margin: 1em 0;
}

@media (max-width: 1170px) {
    header .navigation .logo {
        height: 3.75em;
    }
}

header .header-main {
    min-height: 30em;
}

@media (max-width: 1023px) {
    header .header-main {
        min-height: 20em;
    }
}

@media (max-width: 639px) {
    header .header-main {
        min-height: 40em;
    }
}

header .header-main .spline-video {
    height: 37.5em;
    margin-top: -3.75em;
    margin-left: 58%;
}

@media (max-width: 1023px) {
    header .header-main .spline-video {
        display: block;
       margin: 0 auto;
    }
}

@media (max-width: 639px) {
    header .header-main .spline-video {
        margin-left: 0;
    }
}

header .header-main .title {
    padding: 0 3em 7em;
    /*margin-top: -20em;*/
    margin-top: -25em;
    max-width: 55%;
}

@media (max-width: 1920px) {
    header .header-main .title {
        max-width: calc((100% - 51vw) + 3em);
    }
}

@media (max-width: 1690px) {
    header .header-main .title {
        max-width: calc((100% - 60vw) + 3em);
    }
}

@media (max-width: 1500px) {
    header .header-main .title {
        max-width: calc((100% - 67vw) + 3em);
    }
}

@media (max-width: 1440px) {
    header .header-main .title {
        max-width: calc((100% - 70vw) + 3em);
    }
}

@media (max-width: 1367px) {
    header .header-main .title {
        max-width: 55%;
    }
}

@media (max-width: 1024px) {
    header .header-main .title {
        max-width: 100%;
    }
    header .header-main .title p {
        font-size: 1.5em;
    }
}

@media (max-width: 1023px) {
    header .header-main .title {
        margin-top: 4em;
        padding-bottom: 5em;
    }
}

@media (max-width: 640px) {
    header .header-main .title {
        margin-top: 0;
        padding-left: 2em;
        padding-right: 2em;
    }
}

header .header-main .title h1,
header .header-main .title p {
    width: 100%;
    color: #FFFFFF;
    font-size: 2.25em;
}

header .header-main .title p {
    font-size: 1.55em;
    margin: 0 0 1em 0;
}

header .header-main .title p:last-of-type {
    margin: 0;
}

header .header-main .title .more {
    margin-top: 1em;
}

.ham-icon {
    display: none;
}

@media (max-width: 1023px) {
    .ham-icon {
        display: block;
        width: 2.5em;
        height: 2.5em;
    }
}

@media (max-width: 1023px) {
    .menu {
        display: flex;
        position: fixed;
        left: 0;
        top: 0;
        align-items: flex-start;
        z-index: 1;
        justify-content: space-between;
        bottom: 0;
        right: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .menu .cover {
        width: 100%;
        height: 100%;
        background-color: #000000;
        opacity: 0;
        transition: opacity 0.3s ease 0.3s;
    }
}

.menu .close-icon {
    display: none;
}

@media (max-width: 1023px) {
    .menu .close-icon {
        align-self: flex-end;
        display: inline-block;
    }
}

.menu nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5em;
    align-items: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.3em;
}

@media (max-width: 1023px) {
    .menu nav {
        flex-direction: column;
        align-items: flex-start;
        background-color: #FFFFFF;
        color: black;
        width: 40em;
        z-index: 2;
        height: 100%;
        padding: 1.25em;
    }
}

.menu.open {
    transform: translateX(0);
}

.menu.open .cover {
    display: block;
    opacity: 0.5;
}

section {
    padding-bottom: 2em;
}

section .section-header {
    position: relative;
    z-index: 5;
}

section .section-header:before {
    content: '';
    height: 1.5em;
    width: 15em;
    position: absolute;
    top: -20px;
    left: 0;
    border-radius: 0 1.5em 0 0;
}

@media (max-width: 639px) {
    section .section-header:before {
        width: 100% !important;
    }
}

section .section-header .section-title {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    padding: 0 2em;
    position: relative;
}

@media (max-width: 639px) {
    section .section-header .section-title {
        padding: 0 1em;
    }
}

section .section-header .section-title.with-icon:before {
    display: block;
    width: 3em;
    height: 3em;
    background: #005AA7;
    border-radius: 50px;
    margin-right: 1em;
    font-family: nx;
    line-height: normal;
}

#calendar .section-title.with-icon:before {
    content: 'K';
}

section .section-header .section-title img {
    width: 3em;
    height: 3em;
}

section .section-header .section-title h3,
section .section-header .section-title h1 {
    flex-grow: 1;
    font-size: 2em;
    white-space: nowrap;
}

@media (max-width: 639px) {
    section .section-header .section-title h3,
    section .section-header .section-title h1 {
        white-space: normal;
    }
}

section .section-header .section-title:before {
    content: '';
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    right: 0;
    top: 1.5em;
}

@media (max-width: 639px) {
    section .section-header .section-title:before {
        display: none;
    }
}

section .section-header .section-title:after {
    content: '';
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    right: 0;
    top: 1.5em;
}

@media (max-width: 639px) {
    section .section-header .section-title:after {
        display: none;
    }
}

section .section-header:after {
    content: '';
    height: 1.5em;
    width: calc(100% - 15em);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 1.5em;
}

@media (max-width: 639px) {
    section .section-header:after {
        display: none;
    }
}

section .section-header.w16:before {
    width: 16em;
}

section .section-header.w16:after {
    width: calc(100% - 16em);
}

section .section-header.w17:before {
    width: 17em;
}

section .section-header.w17:after {
    width: calc(100% - 17em);
}

section .section-header.w18:before {
    width: 18em;
}

section .section-header.w18:after {
    width: calc(100% - 18em);
}

section .section-header.w19:before {
    width: 19em;
}

section .section-header.w19:after {
    width: calc(100% - 19em);
}

section .section-header.w20:before {
    width: 20em;
}

section .section-header.w20:after {
    width: calc(100% - 20em);
}

section .section-header.w21:before {
    width: 21em;
}

section .section-header.w21:after {
    width: calc(100% - 21em);
}

section .section-header.w22:before {
    width: 22em;
}

section .section-header.w22:after {
    width: calc(100% - 22em);
}

section .section-header.w23:before {
    width: 23em;
}

section .section-header.w23:after {
    width: calc(100% - 23em);
}

section .section-header.w24:before {
    width: 24em;
}

section .section-header.w24:after {
    width: calc(100% - 24em);
}

section .section-header.w25:before {
    width: 25em;
}

section .section-header.w25:after {
    width: calc(100% - 25em);
}

section.default {
    background-color: #ECEFF9;
    margin: 4em 0.5em;
    border-radius: 0 0 1.5em 1.5em;
}

section.default .section-header:before {
    border-top-left-radius: 1.5em;
    background-color: #ECEFF9;
}

section.default .section-header:after {
    background-color: #FFFFFF;
}

section.default .section-header .section-title:before {
    background-color: #FFFFFF;
}

section.default .section-header .section-title:after {
    background-color: #ECEFF9;
    border-top-right-radius: 1.5em;
}

section.black-white .section-header:before {
    background-color: #FFFFFF;
}

section.black-white .section-header:after {
    background-color: #000000;
}

section.white-black,
section.white-blue {
    background-color: #000000;
    margin: 4em 0.5em;
    border-radius: 0 0 1.5em 1.5em;
}

section.white-blue {
    background-color: #005AA7;
}

section.white-black .section-header:before,
section.white-blue .section-header:before {
    border-top-left-radius: 1.5em;
    background-color: #000000;
}

section.white-blue .section-header:before {
    background-color: #005AA7;
}

section.white-black .section-header:after,
section.white-blue .section-header:after {
    background-color: #FFFFFF;
}

section.white-black .section-header .section-title,
section.white-blue .section-header .section-title {
    color: #FFFFFF;
}

section.white-black .section-header .section-title:before,
section.white-blue .section-header .section-title:before {
    background-color: #FFFFFF;
}

section.white-black .section-header .section-title:after,
section.white-blue .section-header .section-title:after {
    background-color: #000000;
    border-top-right-radius: 1.5em;
}

section.white-blue .section-header .section-title:after {
    background-color: #005AA7;
}

section .section-body {
    margin: 2em 2em 0 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1em;
}

@media (max-width: 639px) {
    section .section-body {
        gap: 1.5em;
        margin: 2em 1em 0 1em;
    }
}

section .section-body.inner {
    font-size: 1.1em;
}

section .section-body.inner .title {
    width: 100%;
}

section .section-body .text-wrapper {
    width: 100%;
}

section .section-body .text-wrapper a {
    color: #005AA7;
}

section .section-body .space {
    flex-grow: 1;
}

section .section-body article,
section .section-body a.article {
    flex-basis: 24%;
    display: flex;
    flex-direction: column;
    border-radius: 1.5em;
    background-color: #FFFFFF;
}

@media (max-width: 1023px) {
    section .section-body article,
    section .section-body a.article {
        min-width: 16em;
    }
}

@media (max-width: 639px) {
    section .section-body article,
    section .section-body a.article {
        min-width: 100%;
        flex-basis: 100%;
    }
}

section .section-body article h4,
section .section-body a.article h4,
#consulting.as-sticky .block h4 {
    overflow: hidden;
    font-weight: 500;
}

section .section-body .more {
    width: 100%;
    text-align: center;
}

section .section-body .more a[role="button"]:after,
section .section-body .more a[role="button"]:before,
section .more a[role="button"]:after,
section .more a[role="button"]:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    background-color: #011926;
    mask: url("../img/arrow-down.svg") no-repeat center/contain;
}

section .section-body .more a[role="button"]:before {
    margin-left: 0;
    margin-right: 0.5em;
}

section .section-body .more a[role="button"]:hover {
    color: #005AA7;
}

section .section-body .more a[role="button"]:hover:after,
section .section-body .more a[role="button"]:hover:before {
    background-color: #005AA7;
}

section .section-body.inner .more a[role="button"]:hover {
    color: #FFF;
}

section .section-body.inner .more a[role="button"]:after,
section .section-body.inner .more a[role="button"]:before,
section .section-body.inner .more a[role="button"]:hover:after,
section .section-body.inner .more a[role="button"]:hover:before {
    background-color: #FFF;
}

section .calendar article,
section .calendar a.article {
    border: 1px solid #ECEFF9;
}

/*@media (max-width: 639px) {
    section .calendar article:nth-child(n + 6) {
        display: none;
    }
}*/

section .calendar a.article:hover,
section .calendar article:hover {
    box-shadow: 0 0 40px rgba(117, 195, 239, 0.27);
}

section .calendar a.article:hover h4,
section .calendar article:hover h4 {
    color: #005AA7;
}

section .calendar a.article:hover .footer:after,
section .calendar article:hover .footer:after {
    background-color: #005AA7;
}

section .calendar a.article .header,
section .calendar article .header {
    flex-grow: 1;
    min-height: 7em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 1.25em 1.25em 1.75em 1.25em;
}

section .calendar a.article .header span,
section .calendar article .header span {
    min-height: 1rem;
}

section .calendar a.article .header h4,
section .calendar article .header h4 {
    font-size: 1.25em;
    flex-grow: 1;
}

section .calendar a.article .footer,
section .calendar article .footer {
    background-color: #011926;
    border-radius: 0 0 1.5em 1.5em;
    position: relative;
}

section .calendar a.article .footer .date,
section .calendar article .footer a {
    color: #FFFFFF;
    font-size: 1.1em;
    padding: 1.25em;
    display: block;
}

section .calendar a.article .footer .date time,
section .calendar article .footer a time {
    padding: 0.25em 1em;
    border-radius: 0.25em;
    display: inline-flex;
    align-items: center;
}

section .calendar a.article .footer .date:hover time,
section .calendar article .footer a:hover time {
    color: #005AA7;
    background-color: #FFFFFF;
}

section .calendar a.article .footer .date:hover time:after,
section .calendar article .footer a:hover time:after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    background-color: #005AA7;
    mask: url("../img/arrow.svg") no-repeat center/contain;
}

section .calendar a.article .footer .icon,
section .calendar article .footer .icon {
    width: 110px;
    height: 90px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0 0 1.5em 0;
    transition: background-color 0.3s ease-in;
}

section .calendar a.article .footer .icon object,
section .calendar article .footer .icon object {
    width: 100%;
    height: 100%;
}

section .calendar a.article:hover .footer .icon object,
section .calendar article:hover .footer .icon object {
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(3251%) hue-rotate(195deg) brightness(98%) contrast(102%);
}

@media (max-width: 1023px) {
    section .calendar a.article .footer .icon,
    section .calendar article .footer .icon {
        width: 82px;
        height: 67px;
    }
}

/*@media (min-width: 1440px) {
    section .calendar .more {
        display: none;
    }
}*/

section .calendar.show-all article {
    display: block !important;
}

section .news article {
    flex-basis: 32.5%;
    border: 1px solid #ECEFF9;
}

section .news article:hover,
section .analytics article:hover {
    -webkit-box-shadow: 0 0 40px rgba(117, 195, 239, 0.27);
    -moz-box-shadow: 0 0 40px rgba(117, 195, 239, 0.27);
    box-shadow: 0 0 40px rgba(117, 195, 239, 0.27);
}

section .news article:hover .header h4,
section .analytics article:hover .header h4 {
    color: #005AA7;
}

section .news article .header {
    flex-grow: 1;
    min-height: 7em;
}

section .news article .header h4 {
    font-size: 1.25em;
    padding: 1.25em;
}

@media (max-width: 639px) {
    section .news article .header h4 {
        font-size: 1em;
    }
}

section .news article time {
    font-size: 0.9em;
    color: rgba(0, 56, 103, 0.5);
    padding: 0.75em 1.25em;
}

section .news article .footer {
    padding: 1.25em;
    background-color: #D5DBEC;
    border-radius: 0 0 1.5em 1.5em;
    min-height: 6em;
}

@keyframes move-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-40%);
    }
}

section .portfolio {
    position: relative;
    overflow: hidden;
    display: block;
    margin-top: -7em;
    margin-right: 0;
    margin-bottom: -6em;
    margin-left: 0;
    height: 37.5em;
    cursor: url("../img/cursor_v2.svg") 100 100, pointer;
}

section .portfolio:after {
    content: '';
    width: 37.5em;
    height: 37.5em;
    background-image: url("../img/portfolio_projects_v2.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    animation: spin 15s linear infinite;
    position: absolute;
    right: 0;
}

@media (max-width: 639px) {
    section .portfolio {
        background-position: center left;
    }
}

section .portfolio .run {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25em;
    position: absolute;
    z-index: 1;
}

section .portfolio .run-big {
    color: #005AA7;
    font-size: 7.5em;
    top: 1.5em;
    font-weight: 600;
    animation: move-left 20s linear infinite alternate;
}

section .portfolio .run-small {
    color: #011926;
    font-size: 2em;
    top: 11em;
    font-weight: 500;
    animation: move-left 15s linear infinite alternate-reverse;
}

section .portfolio .run span {
    white-space: nowrap;
}

section .portfolio .run span:not(:last-child):after {
    content: '\b7';
    margin-left: 0.25em;
}

#team-arrows {
    text-align: right;
    margin: 0 2em;
}

#team-arrows img {
    cursor: pointer;
}

#team-wrapper {
    width: 100%;
}

#team {
    margin: 4em 0.5em;
    transition: transform 0.5s ease 0s;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 0;
}

#team .section-body {
    gap: 0;
    margin: 2em 2em;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

#team .item-person {
    width: calc((100% / 6) - 1em);
    margin: 0 0.5em 1em;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    padding: 0.5em;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

#team .slick-track {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

#team .slick-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

#team .slick-dots,
.gallery-wrapper .slick-dots {
    bottom: -30px;
    z-index: 900;
    height: 8px
}

.inner .gallery-wrapper .slick-dots,
.archive-gallery .gallery-wrapper .slick-dots {
    bottom: -25px;
}

.inner .gallery-wrapper {
    margin-top: 2em;
}

#team .slick-dots li,
.gallery-wrapper .slick-dots li {
    width: 6px;
    height: 6px;
    background: #005AA7;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 5px
}

#team .slick-dots .slick-active,
.gallery-wrapper .slick-dots .slick-active {
    background: #FFF;
    width: 33px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.inner .gallery-wrapper .slick-dots li,
.archive-gallery .gallery-wrapper .slick-dots li {
    background: #ECEFF9;
}

.inner .gallery-wrapper .slick-dots .slick-active,
.archive-gallery .gallery-wrapper .slick-dots .slick-active {
    background: #005AA7;
}

.inner .gallery-wrapper .slick-dots li,
.archive-gallery .gallery-wrapper .arrows span {
    color: #005AA7;
}

/*-- Gallery --*/

.gallery-wrapper {
    position: relative;
    padding: 0 2em;
}

.gallery-wrapper .gallery-item__header {
    width: 85%;
    color: #fff;
    margin: 2em 0 1.5em;
}

.gallery-wrapper .gallery-item__header h3 {
    font-size: 1.438em;
}

.gallery-wrapper .gallery-item__header h3 a:hover {
    color: #005AA7;
}

.gallery-wrapper .arrows {
    color: #fff;
    position: absolute;
    top: -1em;
    right: 2em;
    z-index: 10;
}

.gallery-wrapper .arrows span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 40px;
    cursor: pointer;
    opacity: 0.4;
}

.gallery-wrapper .arrows span:hover {
    opacity: 1;
}

.gallery-wrapper .gallery-images__slider {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.gallery-wrapper .image {
    width: calc((100% / 5) - 1em);
    height: 248px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0.5em;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.gallery-wrapper .image:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.gallery-wrapper .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    overflow: hidden;
}

.gallery-wrapper .slick-track {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: 0 -0.5em;
}

.gallery-wrapper .slick-list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    /*padding: 0 15vw 0 0;
    margin: 0 -2em 0 0;*/
}

.gallery-wrapper .more {
    margin: 1.5em 0 0;
}

.inner .more a,
.gallery-wrapper .more a {
    background-color: #005AA7;
    color: #fff;
}

section .gallery-wrapper .more a:before {
    display: none;
}

section .gallery-wrapper .more a:after {
    background-color: #fff;
    mask: url(../img/arrow-corner-right.svg) no-repeat center;
}

section .gallery-wrapper .more a:hover,
section .gallery-wrapper .more a:hover:after {
    color: #fff;
}

.inner .gallery-wrapper .gallery-item__header,
.archive-gallery .gallery-wrapper .gallery-item__header {
    color: #011926;
}

.inner .gallery-wrapper .gallery-images__slider,
.archive-gallery .gallery-wrapper .gallery-images__slider {
    margin: 0 -0.5em;
}

.inner .gallery-wrapper .image,
.archive-gallery .gallery-wrapper .image {
    padding: 0;
    margin: 0 0.5em 1em;
}

.inner .gallery-wrapper {
    padding: 0;
}

@media (max-width: 1367px) {
    .archive-gallery .gallery-wrapper .image,
    .inner .gallery-wrapper .image {
        width: calc((100% / 4) - 1em);
    }
}

@media (max-width: 1200px) {
    #team .item-person {
        width: calc((100% / 4) - 1em);
    }
}

@media (max-width: 868px) {
    #team .item-person {
        width: calc((100% / 3) - 1em);
    }
    .gallery-wrapper .gallery-item__header {
        width: 100%;
    }
    .gallery-wrapper .arrows {
        display: none;
    }
    .gallery-wrapper .more {
        margin: 4em 0 0;
    }
}

@media (max-width: 640px) {
    #team .item-person {
        width: calc((100% / 2) - 1em);
    }
    .gallery-wrapper {
        padding: 0 1em;
    }
    .inner .gallery-wrapper {
        margin-bottom: 2em;
    }
    .archive-gallery .gallery-wrapper {
        padding: 0 1em 2em;
    }
    .inner .gallery-wrapper .gallery-images__slider,
    .archive-gallery .gallery-wrapper .gallery-images__slider,
    .gallery-wrapper .slick-track {
        margin: 0;
    }
    .gallery-wrapper .image {
        padding: 0;
    }
}

@media (max-width: 520px) {
    .inner .gallery-wrapper .image,
    .archive-gallery .gallery-wrapper .image {
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 500px) {
    #team .section-body {
        margin: 2em 0.5em;
    }
    #team .slick-list {
        margin: 0 -1em 0 0;
        padding: 0 150px 0 0;
    }
    /*.gallery-wrapper .slick-list {
        padding: 0 150px 0 0;
        margin: 0 -3em 0 0;
    }*/
}

@media (max-width: 350px) {
    #team .slick-list,
    .gallery-wrapper .slick-list {
        padding-right: 0;
        margin-right: 0;
    }
    .gallery-wrapper .slick-track {
        margin: 0;
    }
    .gallery-wrapper .image {
        padding: 0;
    }
    .gallery-wrapper .more {
        margin: 5em 0 0;
    }
}

#team .item-person .image {
    width: 100%;
    min-height: 13.75em;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-position: top center;
    background-size: cover;
    aspect-ratio: 1.1;
}

@media (max-width: 639px) {
    #team .item-person .image {
        min-height: 16.25em;
    }
}

#team .item-person .info {
    margin: 0 0.75em 0.5em;
}

#team .item-person .info p {
    margin-bottom: 0;
    font-size: 12px;
}

#team .item-person h4 {
    margin-top: 0.75em;
    flex-grow: 1;
    font-size: 16px;
}

.club {
    padding: 0 2em 2em 2em;
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

@media (max-width: 768px) {
    .club {
        flex-direction: column;
    }
    #consulting.as-cols .items-block__wrapper h4 {
        font-size: 1.1em;
    }
}

.club .section-title {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    position: relative;
}

.club .section-title img {
    width: 3em;
    height: 3em;
}

.club .section-title h3 {
    flex-grow: 1;
    font-size: 2em;
    white-space: nowrap;
}

.club .first {
    flex-basis: 45%;
}

.club .first p {
    margin: 2em 0;
    font-size: 1.1em;
}

/*.club .first p:first-of-type {
    text-indent: 3em;
}*/

@media (max-width: 768px) {
    .club .first .more {
        width: 100%;
        justify-content: center;
    }
}

.club .second {
    flex-basis: 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
    flex-direction: column;
}

.club .second .club-logo {
    background-color: #011926;
    border-radius: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3em;
}

@media (max-width: 868px) {
    .club .second .club-logo img {
        width: 100%;
    }
}

.club .second .club-image {
    display: flex;
    justify-content: space-between;
    gap: 0.75em;
}

.club .second .club-image .image {
    border-radius: 1.5em;
    flex-basis: 50%;
    height: 15em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.club .second .club-image .image.im01 {
    background-image: url("../img/club01.jpg");
}

.club .second .club-image .image.im02 {
    background-image: url("../img/club02.jpg");
}

.club-sign {
    font-size: 0.8em;
    display: flex;
    gap: 1em;
    margin-top: 4em;
    margin-bottom: -5em;
}

@media (max-width: 639px) {
    .club-sign {
        margin-bottom: 0em;
    }
}

.club-sign img {
    width: 2.5em;
}

section .analytics {
    gap: 0.5em;
}

@media (max-width: 639px) {
    section .analytics {
        gap: 1em;
    }
}

section .analytics .text {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

@media (max-width: 639px) {
    section .analytics .text {
        flex-direction: column;
        gap: 0;
    }
}

section .analytics .text .first {
    flex-basis: 50%;
    line-height: 1.3;
    /*text-indent: 3em;*/
}

section .analytics .text .second {
    flex-basis: 50%;
    /*text-indent: 3em;*/
}

section .analytics article {
    flex-basis: 16%;
    background-color: #FFFFFF;
    border: 1px solid #ECEFF9;
    min-width: 13em;
}

@media (max-width: 639px) {
    section .analytics article {
        flex-basis: 100%;
    }

    section .analytics article:nth-child(n + 6) {
        display: none;
    }
}

section .analytics article .header {
    flex-grow: 1;
    min-height: 7em;
}

section .analytics article .header h4 {
    font-size: 1.1em;
    padding: 1.25em;
}

section .analytics article .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8em;
    padding: 1.25em;
    background-color: #D5DBEC;
    border-radius: 0 0 1.5em 1.5em;
}

section .analytics article .footer img {
    width: 1.75em;
    height: 1.75em;
}

section .analytics .more {
    margin-top: 0.75em;
}

.anal-sign {
    font-size: 0.8em;
    display: flex;
    gap: 1em;
    padding: 0 2em;
    margin-left: 53%;
    width: 45%;
    margin-bottom: -5em;
}

.events-partners__wrapper {
    width: 100%;
    margin: 0 -1em;
}

.events-partner__wrapper {
    width: calc(100% / 4 - 2em);
    margin: 0 1em;
}

.events-partner__wrapper p {
    width: 50%;
}

.events-partner__wrapper:before {
    content: '';
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    margin-right: 1em;
}

.events-partner__wrapper.lukoil:before {
    width: 90px;
    height: 100px;
    background: url(../img/lukoil.svg) no-repeat center center;
    background-size: 100%;
}

.events-partner__wrapper.skolkovo:before {
    width: 160px;
    height: 50px;
    background: url(../img/skolkovo.svg) no-repeat center center;
    background-size: 100%;
}

@media (max-width: 1690px) {
    .events-partner__wrapper {
        width: calc(100% / 3 - 2em);
    }
}

@media (max-width: 1280px) {
    .events-partner__wrapper {
        width: calc(100% / 2 - 2em);
    }
}

@media (max-width: 868px) {
    .events-partners__wrapper {
        margin: 0;
    }
    .events-partner__wrapper.nx-flex-row-l-c {
        width: 100%;
        margin: 0;
        margin-bottom: 1em;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }
    .events-partner__wrapper:last-of-type {
        margin-bottom: 0;
    }
    .events-partner__wrapper p {
        width: 100%;
        margin: 1em 0 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 639px) {
    .anal-sign {
        margin-left: 0;
        width: 100%;
        margin-bottom: 0;
    }
}

.anal-sign img {
    width: 2.5em;
}

.archive {
    padding: 0 2em 2em 2em;
}

.archive .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 639px) {
    .archive .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
}

.archive .section-header .section-title {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    position: relative;
}

.archive .section-header .section-title img {
    width: 3em;
    height: 3em;
}

.archive .section-header .section-title h3 {
    flex-grow: 1;
    font-size: 2em;
    white-space: nowrap;
}

.archive .section-header .filters {
    display: flex;
    background-color: #EEF1F7;
    border-radius: 0.5em;
    font-size: 0.9em;
}

@media (max-width: 639px) {
    .archive .section-header .filters {
        flex-wrap: wrap;
        gap: 0.75em;
    }
}

.archive .section-header .filters a {
    padding: 0.25em 1em;
}

@media (max-width: 639px) {
    .archive .section-header .filters a {
        padding: 0.5em 1.5em;
    }
}

.archive .section-header .filters a.selected {
    border-radius: 0.5em;
    color: #FFFFFF;
    background-color: #005AA7;
}

.archive .section-body {
    margin: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75em;
}

@media (max-width: 639px) {
    .archive .section-body {
        gap: 1.5em;
    }
}

.archive .section-body article {
    flex-basis: 24%;
    display: flex;
    flex-direction: column;
    border-radius: 1.5em;
    border: 1px solid #ECEFF9;
}

@media (max-width: 639px) {
    .archive .section-body article {
        flex-basis: 100%;
    }
}

.archive .section-body article:hover {
    box-shadow: 0 0 40px rgba(117, 195, 239, 0.27);
}

.archive .section-body article:hover h4 {
    color: #005AA7;
}

.archive .section-body article:hover .footer:after {
    background-color: #005AA7;
}

.archive .section-body article .header {
    flex-grow: 1;
    min-height: 7em;
}

.archive .section-body article .header h4 {
    font-size: 1.25em;
    padding: 1.25em 1.25em 2.5em 1.25em;
}

.archive .section-body article .footer {
    background-color: #011926;
    border-radius: 0 0 1.5em 1.5em;
    position: relative;
}

.archive .section-body article .footer a {
    color: #FFFFFF;
    font-size: 1.1em;
    padding: 1.25em;
    display: block;
}

.archive .section-body article .footer a time {
    padding: 0.25em 1em;
    border-radius: 0.25em;
    display: inline-flex;
    align-items: center;
}

.archive .section-body article .footer a:hover time {
    color: #005AA7;
    background-color: #FFFFFF;
}

.archive .section-body article .footer a:hover time:after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5em;
    background-color: #005AA7;
    mask: url("../img/arrow.svg") no-repeat center/contain;
}

.archive .section-body article .footer:after {
    content: '';
    background-color: #ECEFF9;
    width: 110px;
    height: 90px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0 0 1.5em 0;
    transition: background-color 0.3s ease-in;
}

@media (max-width: 639px) {
    .archive .section-body article .footer:after {
        width: 167px;
        height: 118px;
    }
}

.archive .section-body article .footer.icon001:after {
    mask: url("../img/001.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon002:after {
    mask: url("../img/002.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon003:after {
    mask: url("../img/003.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon004:after {
    mask: url("../img/004.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon005:after {
    mask: url("../img/005.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon006:after {
    mask: url("../img/006.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon007:after {
    mask: url("../img/007.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon008:after {
    mask: url("../img/008.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon009:after {
    mask: url("../img/009.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon010:after {
    mask: url("../img/010.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon011:after {
    mask: url("../img/011.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon012:after {
    mask: url("../img/012.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon013:after {
    mask: url("../img/013.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon014:after {
    mask: url("../img/014.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon015:after {
    mask: url("../img/015.svg") no-repeat center/contain;
}

.archive .section-body article .footer.icon016:after {
    mask: url("../img/016.svg") no-repeat center/contain;
}

.archive .all {
    display: flex;
    justify-content: center;
}

section.feedback {
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding-bottom: 0;
}

section .feedback {
    margin: 0;
    justify-content: stretch;
    gap: 0;
}

section .feedback > div {
    flex-basis: 50%;
}

#request .feedback > div {
    flex-basis: 100%;
}

#request .feedback .background {
    flex-basis: 45%;
    background-image: url(../img/consulting_image.jpg);
}

@media (max-width: 639px) {
    section .feedback > div,
    #request .feedback > div,
    #request .feedback .background {
        flex-basis: 100%;
    }
}

section .feedback .background {
    background-image: url(../img/feedback-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -1.5em;
    border-top-right-radius: 1.5em;
}

@media (max-width: 639px) {
    section .feedback .background {
        display: none;
    }
}

section .feedback #feedback {
    padding: 1.75em;
}

footer {
    margin: 0 0.5em;
}

@media (max-width: 639px) {
}

footer .wrapper {
    width: calc(100% - 430px);
    padding: 0 2em;
    background-color: #011926;
}

footer .wrapper .contacts {
    width: 100%;
    padding: 2em 0;
}

@media (max-width: 639px) {
    footer .wrapper .contacts {
        flex-direction: column;
        align-items: center;
    }
    footer .wrapper .contacts .item {
        text-align: center;
    }
    footer .wrapper .contacts .projects .project-col {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-align-content: center;
        -ms-flex-line-pack: center;
        align-content: center;
    }
}

footer .wrapper .contacts .projects a {
    color: #fff;
    margin: 0 0 5px;
}

footer .wrapper .contacts .projects a:hover {
    color: #005AA7;
}

footer .wrapper .contacts .projects a:last-of-type {
    margin: 0;
}

footer .wrapper .contacts .item p {
    margin: 0 0 15px 0;
}

footer .wrapper .contacts .item.projects {
    min-width: 33%;
}

footer .wrapper .contacts .logo {
    height: 4.5em;
}

footer .wrapper .contacts .mail-phone {
    font-size: 1.1em;
    color: #FFFFFF;
}

footer .wrapper .contacts .desc {
    width: 30%;
    color: #ECEFF9;
    font-size: 0.9em;
}

footer .wrapper .contacts .desc .text {
    opacity: 0.5;
}


footer .wrapper .copy {
    display: flex;
    color: #ECEFF9;
    font-size: 0.9em;
}

@media (max-width: 639px) {
    footer .wrapper .copy {

    }
}

footer .wrapper .copy {
    padding: 0 0 2em 0;
    width: 100%;
    opacity: 0.5;
}

@media (max-width: 1367px) {
    footer .wrapper .contacts .item {
        width: 50%;
    }
}

@media (max-width: 868px) {
    footer .wrapper .contacts .item {
        width: 100%;
        margin-bottom: 2em;
    }
    footer .wrapper .contacts .item:last-of-type {
        margin-bottom: 0;
    }
    footer .wrapper .contacts {
        padding-bottom: 0;
    }
    footer .wrapper .contacts .projects .project-col {
        width: 50%;
    }
}

@media (max-width: 325px) {
    footer .wrapper .contacts .projects .project-col {
        width: 100%;
    }
}

footer .wrapper .copy span {
    width: 100%;
    margin-bottom: 1em;
}

footer .wrapper .copy a {
    width: 100%;
    color: #ECEFF9;
    margin-bottom: 1em;
    text-decoration: none;
}

@media (max-width: 868px) {
    footer .wrapper .copy span,
    footer .wrapper .copy a {
        text-align: center;
    }
}

@media (max-width: 639px) {
    footer .wrapper .copy {
        padding-bottom: 2em;
    }
}

footer {
    background: #011926;
}

footer .merch-block {
    width: 430px;
    padding: 1.5em 2em 4em;
}

footer .merch-block .merch-img {
    width: 100%;
    height: 85%;
    /*background-color: #005AA7;
    background-image: url("../img/banner-merch-01.png");
    background-size: cover;*/
    background-color: #011926;
    background-image: url(../img/merch_430x200_v2-min.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    text-indent: -9999em;
}

footer .merch-block .merch-logo {
    background: url(../img/energy-style_logo.svg) no-repeat center center;
    width: 215px;
    height: 35px;
    margin: 10px auto;
}

footer .merch-block .text {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 1170px) {
    footer .wrapper {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    footer .merch-block {
        width: 100%;
        height: 278px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        padding-bottom: 0;
    }
    #request .feedback .background {
        display: none;
    }
    #request .feedback > div {
        width: 100%;
    }
}

/*-- Pagination --*/

.section-body .navigation {
    width: 100%;
    margin-top: 50px;
}

.section-body .navigation a,
.section-body .navigation span {
    display: block;
    float: left;
    color: #011926;
    text-decoration: none;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 2;
    margin: 0 5px;
    font-size: 16px;
    border: 1px solid #ECEFF9;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.section-body .navigation a:hover,
.section-body .navigation span:hover,
.section-body .navigation .current {
    background-color: #D5DBEC;
}

/*-- Consulting block --*/
#consulting .text-block__wrapper {
    width: 100%;
    color: #fff;
}

#consulting .text-block__wrapper p {
    width: 100%;
}

#consulting .text-block__wrapper p:first-of-type {
    width: 49%;
    font-size: 18px;
}

#consulting .text-block__wrapper ul {
    margin-bottom: 1em;
}

#consulting .items-block__wrapper {
    margin: 0 -0.5em;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

#consulting article {
    flex-basis: unset;
    width: calc(100% / 6 - 1em);
    margin: 0 0.5em 1em;
    overflow: hidden;
}

#consulting article .header {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 1.25em;
}

#consulting .items-block__wrapper h4,
#consulting.as-sticky .block h4 {
    font-size: 1.25em;
    margin-bottom: 0.5em;
}

#consulting .items-block__wrapper h4:last-of-type {
    margin-bottom: 0;
}

/*#consulting .items-block__wrapper h4:before {
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #005AA7;
    margin-right: 0.5em;
}*/

#consulting article .footer {
    width: 100%;
    height: 20px;
    background-color: #D5DBEC;
}

#consulting.as-cols article {
    width: calc(100% / 2 - 1em);
    padding: 1.25em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

#consulting.as-cols .with-icon .icon {
    width: 80px;
    height: 80px;
}

#consulting.as-cols .with-icon object {
    width: 100%;
    height: 100%;
}

#consulting.as-cols .header {
    width: 100%;
    padding: 0 1.25em;
}

#consulting.as-cols .with-icon .header {
    width: calc(100% - 110px);
}

#consulting.as-cols h4 {
    padding-bottom: 0.5em;
    border-bottom: 1px solid #CAC4D0;
}

#consulting.as-cols h4:last-of-type {
    margin-bottom: 0;
    border: none;
}

/*-- Consulting block sticky --*/

#consulting.as-sticky .stack-cards {
    width: 100%;
    --stack-cards-gap: var(--space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

#consulting.as-sticky .stack-cards__item {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: var(--space-md);
    /*height: 0;
    padding-bottom: calc(100vh / 8);*/
    -webkit-transform-origin: center top;
    transform-origin: center top;
    overflow: hidden;
    margin: 0 0 2em;
}

#consulting.as-sticky .stack-cards__item > * {
    /*position: absolute;
    top: 0;*/
    /*left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);*/
    /*left: 0;*/
    width: 100%;
}

#consulting.as-sticky .item-col {
    width: 100%;
    background: #ECEFF9;
    padding: 1.5em 1.25em;
    -webkit-border-radius: 1.5em;
    -moz-border-radius: 1.5em;
    border-radius: 1.5em;
    border-top: 1px solid transparent;
}

#consulting.as-sticky .block {
    width: 49%;
}

#consulting.as-sticky .stack-cards__item.scaled .item-col {
    border-top: 1px solid #005AA7;
    background: #FFF;
}

#consulting.as-sticky .block.with-icon .icon {
    width: 80px;
    height: 80px;
}

#consulting.as-sticky .block.with-icon object {
    width: 100%;
    height: 100%;
}

#consulting.as-sticky .block .header {
    width: 100%;
}

#consulting.as-sticky .block.with-icon .header {
    width: calc(100% - 110px);
}

#consulting.as-sticky .block h4 {
    /*padding-bottom: 0.5em;
    border-bottom: 2px solid #CAC4D0;*/
}

#consulting.as-sticky .block h4:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 1690px) {
    #consulting article {
        width: calc(100% / 3 - 1em);
    }
    /*#consulting.as-sticky .stack-cards__item {
        padding-bottom: calc(100vh / 6);
    }*/
}

@media (max-width: 868px) {
    #consulting .text-block__wrapper p {
        width: 100%;
    }
    #consulting.as-sticky .block {
        width: 100%;
        margin-bottom: 0.5em;
    }
    #consulting.as-sticky .block:last-of-type {
        margin-bottom: 0;
    }
    #consulting .text-block__wrapper p:first-of-type {
        margin-bottom: 0;
    }
    #consulting article {
        width: calc(100% / 2 - 1em);
    }
}

@media (max-width: 798px) {
    /*#consulting.as-sticky .stack-cards__item {
        padding-bottom: calc(100vh / 3);
    }*/
    #consulting.as-sticky .block.with-icon .icon {
        margin: 0 auto;
    }
    #consulting.as-sticky .block.with-icon .header {
        width: 100%;
        margin-top: 1em;
    }
}

@media (max-width: 640px) {
    #consulting .items-block__wrapper {
        margin: 0;
    }
    #consulting article {
        width: 100%;
        margin: 0 0 1em;
    }
}

/****************** FLEXBOX PRESET ******************/

.nx-flex-row,
.nx-flex-col,
.nx-flex-col-st,
.nx-flex-row-btw,
.nx-flex-col-btw,
.nx-flex-row-btw-st,
.nx-flex-col-btw-st,
.nx-flex-row-btw-c,
.nx-flex-row-c-c,
.nx-flex-col-c-c,
.nx-flex-row-b-c,
.nx-flex-row-t-c,
.nx-flex-col-t-c,
.nx-flex-row-t-r,
.nx-flex-col-t-r,
.nx-flex-row-l-c,
.nx-flex-col-l-c,
.nx-flex-row-r-c,
.nx-flex-col-r-c,

.nx-flex-col-btw-r,
.nx-flex-col-b-l,
.nx-flex-col-b-r,
.nx-flex-row-b-l,
.nx-flex-row-b-r,
.nx-flex-row-btw-b-r
{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.nx-flex-row-btw,
.nx-flex-col-btw,
.nx-flex-row-btw-st,
.nx-flex-col-btw-st,
.nx-flex-row-btw-c,
.nx-flex-col-btw-r,
.nx-flex-row-btw-b-r{
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nx-flex-col-st,
.nx-flex-row-btw-st,
.nx-flex-col-btw-st {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.nx-flex-row-t-r,
.nx-flex-row-r-c,
.nx-flex-col-r-c,
.nx-flex-col-b-l,
.nx-flex-col-b-r,
.nx-flex-row-b-r{
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.nx-flex-row-c-c,
.nx-flex-col-c-c,
.nx-flex-row-b-c,
.nx-flex-col-l-c,
.nx-flex-row-t-c,
.nx-flex-col-r-c {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.nx-flex-row-btw-c,
.nx-flex-row-c-c,
.nx-flex-col-c-c,
.nx-flex-col-t-c,
.nx-flex-row-l-c,
.nx-flex-row-r-c,
.nx-flex-row-ar-c,
.nx-flex-col-ar-c {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}
.nx-flex-col-t-r,
.nx-flex-row-b-c,
.nx-flex-col-r-c,
.nx-flex-col-btw-r,
.nx-flex-col-b-r,
.nx-flex-row-b-l,
.nx-flex-row-b-r,
.nx-flex-row-btw-b-r,
.nx-flex-row-ar-b,
.nx-flex-col-ar-r {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.nx-flex-col,
.nx-flex-col-st,
.nx-flex-col-btw,
.nx-flex-col-btw-c,
.nx-flex-col-btw-st,
.nx-flex-col-t-c,
.nx-flex-col-t-r,
.nx-flex-col-c-c,
.nx-flex-col-l-c,
.nx-flex-col-r-c,
.nx-flex-col-btw-r,
.nx-flex-col-b-l,
.nx-flex-col-b-c,
.nx-flex-col-b-r,
.nx-flex-col-st-b,
.nx-flex-col-ar,
.nx-flex-col-ar-c,
.nx-flex-col-ar-r {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/*-- Form --*/

::-webkit-input-placeholder {
    color: #00386766;
}

:-moz-placeholder {
    color: #00386766;
    opacity:  1;
}

::-moz-placeholder {
    color: #00386766;
    opacity:  1;
}

:-ms-input-placeholder {
    color: #00386766;
}

::-ms-input-placeholder {
    color: #00386766;
}

::placeholder {
    color: #00386766;
}

#feedback .form-col {
    width: 49.5%;
}

#request #feedback .form-col {
    width: 48.5%;
}

#request #feedback .form-col.btn-wrapper {
    margin: 0 auto;
}

#feedback .form-col p {
    margin: 0 0 0.5em;
}

.wpcf7-spinner-spinner {
    display: none !important;
    visibility: hidden !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 1.75em 1.75em;
    padding: 10px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    #feedback .form-col,
    #request #feedback .form-col {
        width: 100%;
    }
    #consulting.as-cols article {
        width: 100%;
    }
}

.b-top {
    width: 34%;
    z-index: 2600;
    position: fixed;
    right: 0;
    bottom: 2vh;
    margin-left: 50%;
    opacity: 0.7;
    display: none;
}

.b-top:hover {opacity: 1; cursor: auto;}
.b-top-but {
    margin: 0 0 0 100%;
    padding: 0;
    z-index: 2600;
    position: absolute;
    display: block;
    right: 2vh;
    bottom: 0;
    background-color: #005AA7;
    font-size: 10px;
    width: 50px;
    height: 50px;
    text-indent: -9999em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    border: 0;
    overflow: hidden;
    cursor: pointer;
}

.b-top-but:after{
    content: '˄';
    font-family: nx;
    font-size: 20px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 50px;
    text-indent: 0;
    border: 0;
}

/*-- Modal --*/

.nx-modal {
    background: #000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 999;
    opacity: 0.6;
}

/*.social-icons__wrapper {
    width: 100%;
    padding: 2em 0 0;
    color: #fff;
    text-align: center;
}

.social-icons__wrapper .social_item {
    width: 100%;
}*/

.social-icons__wrapper {
    margin: 0;
}

.social-icons__wrapper .icon {
    /*font-size: 20px;*/
    color: #fff;
}

.social-icons__wrapper .icon:after {
    margin-left: 5px;
    font-family: nx, Tahoma, Geneva, sans-serif;
    color: inherit;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
}

.social-icons__wrapper .icon.tg:after {
    content: 'Г';
    color: #229ED9;
}

#telegram {
    color: #fff;
}

#telegram .additional {
    display: none;
}

#telegram .telegram-block__wrapper {
    margin: 2em 2em 0 2em;
}

#telegram .text {
    width: 500px;
    font-size: 32px;
}

#telegram .qr {
    width: 200px;
    height: 200px;
}

#telegram .qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#telegram .link {
    width: 280px;
}

#telegram .btn {
    display: block;
    width: 100%;
    padding: 14px;
    font-weight: 700;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 20px;
}

@media (max-width: 1270px) {
    #telegram .text {
        width: 300px;
    }
}

@media (max-width: 1024px) {
    #telegram .text {
        width: 100%;
        margin-bottom: 1em;
    }
}

@media (max-width: 768px) {
    #telegram .qr {
        margin: 0 auto;
    }
    #telegram .link {
        margin-top: 2em;
        width: 100%;
    }
    #telegram .btn {
        font-weight: 400;
        font-size: 16px;
        -webkit-border-radius: 16px;
        -moz-border-radius: 16px;
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    #telegram h3 {
        display: none;
    }
    #telegram .additional {
        display: block;
        font-weight: 400;
        font-size: 2em;
        margin: 0;
    }
    #telegram .text {
        display: none;
    }
}