:root {
    --font: "Stapel", sans-serif;
    --font-text: "Stapel", sans-serif;
    --font-accent: "Stapel", sans-serif;
    --accent: #0C95FD;
    --accent-red: #FF0073;
    --after-bg: url(../img/news1.png);
}

html {
    font-size: calc(100vw / 105);
}

.tns-outer {
    position: relative;
}
.tns-nav {
    position: absolute;
    width: 100%;
    bottom: -2rem;
    display: flex;
    justify-content: center;
    gap: 0 .4rem;
}
.tns-nav button {
    width: .5rem;
    height: .5rem;
    padding: 0;
    border-radius: 100%;
    background-color: #e7e7e7;
    border: none;
    transition: all .3s ease;
}
.tns-nav .tns-nav-active {
    background-color: var(--accent);
    transform: scale(1.5);
}

img {
    max-width: 100%;
}
body {
    background-color: #000;
    color: #fff;
    font-weight: 300;
    line-height: 1.2;
    font-family: var(--font);
}
section {
    position: relative;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.pagination span,
.pagination a {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.pagination [aria-current="page"],
.pagination a:hover {
    color: var(--accent);
}
.title {
    font-family: var(--font-accent);
    font-weight: bold;
    font-size: 4rem;
    font-variant: small-caps;
    line-height: .9;
    font-style: italic;
    text-transform: lowercase;
}
.title span {
    font-variant: common-ligatures;
    font-size: 96%;
}
.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1.5rem;
}
.btn {
    font-size: 1rem;
    text-decoration: none;
    display: block;
    padding: 1rem 1.4rem .7rem;
    transition: all .3s ease;
    border-radius: .3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 500;
}
.btn--solid {
    background: #fff;
    color: #000;
}
.btn--solid:hover {
    background-color: var(--accent);
    color: #fff;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all .3s ease;
}
.header--scrolled {
    background: #000;
}
.header__burger {
    background: #2D2D35;
    padding: .6rem 1rem;
    border-radius: .3rem;
    gap: 0 .4rem;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}
.header__burger svg {
    transition: all .3s ease;
    transform:  scale(1.5);
}
.header__burger.active svg {
    transform: rotate(215deg) scale(1.5);
}
.header__burger.active svg rect:nth-child(1) {
    transform: translateY(.4rem) rotate(0deg);
}
.header__burger.active svg rect:nth-child(2) {
    opacity: 0;
}
.header__burger.active svg rect:nth-child(3) {
    transform: translate(-.4rem, 1rem) rotate(-90deg);
}
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav__menu {
    padding: 6rem 1rem;
}
.mobile-nav__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav__menu ul li {
    margin-bottom: .5rem;
}
.mobile-nav__menu ul li a {
    font-size: .7rem;
    color: #000;
    text-decoration: none;
    display: block;
    padding: .5rem 0;
    transition: all .3s ease;
    border-radius: .3rem;
    background: #fff;
    text-align: center;
}
.mobile-nav__menu ul li a:hover {
    color: var(--accent);
}
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    min-height: 100vh;
}
.hero .container-fluid {
    position: relative;
    height: 100%;
}
.hero__title {
    font-family: var(--font-accent);
    font-weight: bold;
    font-size: 6rem;
    font-feature-settings: "salt" 1;
    line-height: .75;
    font-variant: small-caps;
    font-style: italic;
    position: absolute;
    bottom: 5rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    letter-spacing: -.1rem;
    padding: 0 1rem;
}
.hero__video video {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__title div {
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    font-family: var(--font);
    bottom: .4rem;
    width: 19rem;
    letter-spacing: 0;
    left: 58rem;
    font-weight: 400;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}
.header__menu ul li a {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    background: #2D2D35;
    display: block;
    padding: .8rem 1rem;
    transition: all .3s ease;
    border-radius: .3rem;
}
.header__menu ul li a:hover {
    background: var(--accent);
}
.future {
    padding: 12rem 0;
    height: auto;
}
.future__title {
    width: 30rem;
    max-width: 100%;
}
.future__caption {
    width: 50%;
}
.future__text {
    margin-top: 1rem;
    font-size: 1.5rem;
    width: 32rem;
    max-width: 100%;
}
.future__btn {
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}
.future__images-triangle,
.future__images img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    cursor: pointer;
    transition: all .3s ease;
}
.future__images img:nth-child(1) {
    top: 54rem;
    left: 36rem;
    width: 44rem;
    z-index: 1;
}
.future__images img:nth-child(2) {
    top: 26rem;
    left: 0;
    width: 44rem;
    z-index: 1;
}
.future__images img:nth-child(3) {
    top: 11rem;
    left: 49rem;
    width: 44rem;
    z-index: 1;
}
.future__images img:hover {
    transform: scale(1.2);
}
.future__images-triangle {
    background: transparent;
    mask-image: url(../img/triangle.png);
    mask-size: 100%;
    top: 32rem;
    left: 22rem;
    width: 50rem;
    z-index: 2;
    height: 50rem;
    background-size: 100%;
    pointer-events: none;
}
.future__images-triangle div {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background-color: #fff;
    z-index: 99999;
    display: block;
    top: 15.4rem;
    left: 0;
}
.future__images-triangle:after {
    content: '';
    position: absolute;
    transition: all 2s cubic-bezier(0.42, 0, 0, 0.97);
    transform-origin: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 61% 48%;
    background-image: var(--after-bg);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: scale(0);
}
.future__images-triangle.active:after {
    transform: scale(1);
}
.future__images-triangle div:nth-child(2) {
    left: auto;
    top: 0;
    right: 0;
}
.future__images-triangle div:nth-child(3) {
    left: 35.8rem;
    top: 48.5rem;
}
.future__items {
    pointer-events: none;
}
.future__items .item {
    position: relative;
    pointer-events: none;
}
.future__items .item:nth-child(1) {
    width: 19rem;
    top: 13rem;
    left: 0;
}
.future__items .item:nth-child(2) {
    width: 23rem;
    top: -30rem;
    left: 75rem;
}
.future__items .item:nth-child(3) {
    width: 23rem;
    margin-top: 5rem;
    left: 62rem;
}
.future__items .item__title {
    font-size: 2.4rem;
    font-weight: 500;
    text-transform: lowercase;
    color: #FFFFFF;
    font-stretch: 100;
    font-style: italic;
    leading-trim: Cap height;
    line-height: 1.1;
    letter-spacing: -0.5%;
}
.future__items .item__text {
    margin-top: 1rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #D1D6FB;
    font-weight: 500;
    leading-trim: Cap height;
    line-height: 124%;

}
.page {
    padding-top: 12rem;
}
.page__title {
    margin-bottom: 2rem;
}
.page__content {
    margin: auto;
    width: 60%;
    padding-top: 3rem;
}
.page__content a {
    color: var(--accent-red);
}
.page__content blockquote {
    border-left: .3rem solid var(--accent-red);
    padding-left: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.page__content img {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.page__content h2,
.page__content h3,
.page__content h4 {
    font-weight: 500;
    font-style: italic;
    text-transform: lowercase;
    margin-top: 2rem;
}
.page__content h2 {
    font-size: 2rem;
}
.page__content h3 {
    font-size: 1.5rem;
}
.page__content h4 {
    font-size: 1.2rem;
}
.page__content ul {
    padding-left: 1rem;
}
.page__content ul li {
    margin-bottom: 1rem;
}
.page__content ul li:last-child {
    margin-bottom: 0;
}
.about {
    padding-top: 6rem;
}
.about__cover {
    min-height: 30rem;
}
.about__cover video {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.about__title {
    margin-top: -2rem;
}
.about__content {
    font-size: 1.5rem;
    margin-top: 2rem;
}
.about__content a {
    color: var(--accent-red);
}
.about__content blockquote {
    border-left: .3rem solid var(--accent-red);
    padding-left: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.about__content img {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.about__content h1 {
    font-family: var(--font-accent);
    font-weight: bold;
    font-size: 4rem;
    font-feature-settings: "salt" 1;
    line-height: .9;
    font-style: italic;
    text-transform: lowercase;
}
.about__content h1 span {
    font-variant: small-caps;
    font-size: 105%;
}
.about__content h2,
.about__content h3,
.about__content h4 {
    font-weight: 500;
    font-style: italic;
    text-transform: lowercase;
    margin-top: 2rem;
}
.about__content h2 {
    font-size: 3rem;
}
.about__content h3 {
    font-size: 1.5rem;
}
.about__content h4 {
    font-size: 1.2rem;
}
.about__content ul {
    padding-left: 1rem;
}
.about__content ul li {
    margin-bottom: 1rem;
}
.about__content ul li:last-child {
    margin-bottom: 0;
}
.expanded {
    margin-top: 10rem;
}
.expanded__content {
    font-size: 1.5rem;
    margin-top: 2rem;
}
.expanded__link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    font-size: 2rem;
    color: #fff;
    font-style: italic;
    font-weight: 500;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}
.expanded__link svg,
.expanded__link img {
    width: 3rem;
}
.links {
    padding: 10rem 0;
}
.links__title {
    text-transform: uppercase;
}
.links__item {
    position: relative;
}
.links__item.active svg {
    transform: rotate(90deg);
}
.links__content-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.links__content-box a {
    color: #fff;
    display: flex;
    margin-bottom: 1rem;
}
.links__content-box a:last-child {
    margin-bottom: 0;
}
.links__content-box a:hover {
    color: var(--accent);
}
.links__content-inner {
    padding: 2rem 0;
}

.links__item.active .links__content-box {
    max-height: 500px;
}
.links__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 1rem;
    font-size: 2rem;
    color: #fff;
    font-style: italic;
    font-weight: 500;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.links__content a svg {
    width: 3rem;
    transition: transform 0.3s ease;
    height: 1rem;
}
.links__content a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.links__content a.active svg {
    transform: rotate(90deg);
}
.links__content a.active svg path {
    fill: var(--accent);
}
.contacts {
    padding-top: 12rem;
    min-height: auto;
}
.contacts__links a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
}
.contacts__social a svg {
    transition: all .3s ease;
}
.contacts__links a:last-child {
    margin-bottom: 0;
}
.contacts__social a:hover svg path {
    fill: var(--accent);
}
.contacts__social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.errorPage {
    padding: 12rem 0;
    text-align: center;
}
.errorPage__title {
    font-size: 8rem;
}
.errorPage p {
    font-size: 1.5rem;
}
.projects {
    padding: 12rem 0;
}
.projects .item {
    text-decoration: none;
    color: #fff;
    display: block;
    transition: all .3s ease;
}
.projects .item:hover img {
    transform: scale(1.02) rotate(-1deg);
}
.projects .item__img img {
    transition: all .3s ease;
}
.projects .item__title {
    transition: all .3s ease;
}
.projects .item:hover .item__title {
    color: var(--accent);
}
.projects .item__badge {
    margin-top: 1rem;
}
.projects .item__badge span {
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .3rem .5rem 0;
}
.projects .item__badge--soon span {
    background-color: #FF0073;
    color: #fff;
}
.projects .item__badge--working span {
    background-color: #0C95FD;
    color: #000;
}
.projects .item__title {
    margin-top: 1rem;
    font-size: 2.2rem;
    font-weight: 500;
    font-style: italic;
    text-transform: lowercase;
}
.projects .item__text {
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    color: #D1D6FB;
}
.triggers {
    position: relative;
    padding-bottom: 12rem;
    overflow: hidden;
}
.triggers__items .item {
    font-family: var(--font-accent);
    font-weight: bold;
    font-size: 4.5rem;
    line-height: .8;
    font-style: italic;
    letter-spacing: -.1rem;
    font-variant: small-caps;
    width: 50rem;
    max-width: 100%;
}
.triggers__items .item span {
    font-variant: common-ligatures;
    font-size: 96%;
}
.triggers__items .item i {
    color: var(--accent);
}
.triggers__items .item:nth-child(2) {
    margin-top: 3rem;
    margin-left: 10rem;
}
.triggers__items .item:nth-child(3) {
    margin-top: 3rem;
    margin-left: 20rem;
}
.triggers__items {
    padding-top: 31rem;
}
.triggers__images img {
    position: absolute;
    width: 24rem;
    top: 26rem;
    right: 0;
    transition: all .3s ease;
}
.triggers__images img:nth-child(2) {
    transform: translate(6rem, -16rem) scale(0.5);
    transform-origin: bottom;
}
.triggers__images img:nth-child(3) {
    transform: translate(7rem, -26rem) scale(.3);
    transform-origin: bottom;
}
.triggers__images img:nth-child(4) {
    transform: translate(-14rem, -16rem) scale(.8);
    transform-origin: bottom right;
}
.triggers__images img:nth-child(5) {
    transform: translate(-28rem, 0rem) scale(.8);
    transform-origin: top right;
}
.triggers__images img:nth-child(6) {
    transform: translate(-35rem, -16rem) scale(.6);
    transform-origin: bottom right;
}
.triggers__images img:nth-child(7) {
    transform: translate(-29rem, -27rem) scale(.3);
    transform-origin: bottom center;
}
.triggers__images img:nth-child(8) {
    transform: translate(-44rem, -21rem) scale(.4);
    transform-origin: bottom center;
}
.triggers__images img:nth-child(9) {
    transform: translate(-50rem, -1.3rem) scale(.5);
    transform-origin: center right;
}
.triggers__images img:nth-child(10) {
    transform: translate(-24rem, 13rem) scale(.6);
    transform-origin: top right;
}
.triggers__images img:nth-child(11) {
    transform: translate(-42rem, 14rem) scale(.4);
    transform-origin: top right;
}
.triggers__images img:nth-child(12) {
    transform: translate(-30rem, 24rem) scale(.4);
    transform-origin: top right;
}
.triggers__images img:nth-child(13) {
    transform: translate(2rem, 14rem) scale(0.9);
    transform-origin: bottom;
}
.news {
    min-height: auto;
    padding-bottom: 10rem;
}
.news .item {
    display: block;
    overflow: hidden;
    text-decoration: none;
}
.news .item:hover .item__title {
    color: var(--accent);
}
.news .item__title {
    color: #fff;
    text-decoration: none;
}
.news .item__caption {
    margin-top: 2rem;
}
.news .item__img img {
    transition: all .3s ease;
}
.news .item:hover img {
    transform: scale(1.05) rotate(-1deg);
}
.news .item__date span {
    text-transform: uppercase;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .3rem .5rem 0;
    background-color: #0C95FD;
    color: #000;
}
.news .item__title {
    margin-top: 1rem;
    font-size: 2.2rem;
    font-weight: 500;
    font-style: italic;
    text-transform: lowercase;
}
.news .item__title a {
    text-decoration: none;
    transition: all .3s ease;
    color: #fff;
}
.news .item__title a:hover {
    color: var(--accent);
}
.news .item__text {
    margin-top: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    color: #D1D6FB;
}
.news .title {
    margin-bottom: 2rem;
}
.promo {
    min-height: auto;
    padding: 12rem 0;
    margin-bottom: 10rem;
}
.promo__btn {
    width: 100%;
}
.promo__btn a {
    width: 100%;
}
.footer {
    padding-bottom: 4rem;
}
.footer__menu {
    padding-left: 2rem;
}
.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}
.footer__menu ul li a {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    background: #2D2D35;
    display: block;
    padding: .8rem 1rem;
    transition: all .3s ease;
    border-radius: .3rem;
}
.footer__menu ul li a:hover {
    background: var(--accent);
}
.footer__copy {
    margin-top: 4rem;
    text-transform: uppercase;
    line-height: 1.6;
    font-size: .9rem;
    font-weight: 500;
}
.footer__info {
    text-align: right;
    margin-top: 4rem;
}
.footer__info-email a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
    justify-content: flex-end;
}
.footer__info-email a svg {
    width: 2rem;
    height: 2rem;
}
.footer__info-email a:hover {
    color: var(--accent);
}
.footer__info-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}
.footer__info-social a {
    color: #fff;
    text-decoration: none;
}
.footer__info-social a svg {
    transition: all .3s ease;
}
.footer__info-social a:hover svg path {
    fill: var(--accent);
}

@media (max-width: 991px) {
    html {
        font-size: calc(100vw / 28);
    }
    body {
        padding-top: 4rem;
    }
    .triggers__items .item:nth-child(1),
    .triggers__items .item:nth-child(2),
    .triggers__items .item:nth-child(3) {
        margin-left: 0;
    }
    .future__caption {
        width: 100%;
    }
    .title {
        font-size: 1.5rem;
        letter-spacing: 0;
    }
    .hero__title {
        bottom: inherit;
        top: 5rem;
        font-size: 1.7rem;
        line-height: .8;
    }
    .hero__title div {
        left: 8rem;
        max-width: 100%;
        font-size: .7rem;
        line-height: 1;
        width: 10rem;
        top: 2.7rem;
    }
    .btn {
        font-size: .5rem;
        padding: .6rem 1rem .3rem;
    }
    .news__btn .btn {
        width: 100%;
        font-size: 1rem;
    }
    .news__btn {
        margin-bottom: 2rem;
    }
    .future {
        min-height: auto;
    }
    .future__title br {
        display: none;
    }
    .future__text {
        font-size: .9rem;
    }
    .header {
        padding: .5rem 0;
    }
    .future__btn {
        margin-top: 1rem;
    }
    .header__logo img {
        width: 6rem;
    }
    .header__burger {
        font-size: 0.6rem;
        padding: .5rem .5rem .2rem;
    }
    .header__burger svg {
        width: .5rem;
        height: .5rem;
        position: relative;
        top: -.15rem;
    }
    .future__images {
        display: none;
    }
    .future__items {
        position: relative;
        background: url(../img/triangle.png) no-repeat center center;
        background-size: 40%;
        height: 28rem;
        margin-top: -9rem;
        z-index: -1;
    }
    .future__items .item {
        position: absolute;
        width: 100%;
    }
    .future__items .item__title {
        font-size: .9rem;
    }
    .future__items .item:nth-child(1) {
        width: 10rem;
        top: 12rem;
    }
    .future__items .item:nth-child(2) {
        top: 8.5rem;
        right: 0;
        left: inherit;
        width: 7rem;
    }
    .future__items .item:nth-child(3) {
        left: inherit;
        margin-top: 0;
        top: 19rem;
        width: 9rem;
        right: 0;
    }
    .projects {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .future {
        padding-top: 2rem;
        padding-bottom: 0;
    }
    .future__items .item__text {
        font-size: .45rem;
        margin-top: .5rem;
    }
    .hero {
        height: auto;
    }
    .projects__btn a {
        width: 100%;
    }
    .projects .item {
        margin-bottom: 2rem;
    }
    .projects .item__title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    .projects .item__text {
        font-size: 1rem;
    }
    .triggers {
        padding-bottom: 4rem;  
    }
    .triggers__items {
        padding-top: 2rem;
    }
    .triggers__images img {
        position: static;
    }
    .triggers__items .item {
        font-size: 1.5rem;
    }
    .triggers__items .item br {
        display: none;
    }
    .triggers__items .item:nth-child(2) {
        text-align: right;
    }
    .triggers__items .item:nth-child(2),
    .triggers__items .item:nth-child(3) {
        margin-top: 2rem;
    }
    .news .item {
        margin-bottom: 2rem;
    }
    .news .item__title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    .news .item__text {
        font-size: 1rem;
    }
    .projects .item__badge {
        font-size: 1rem;
    }
    .news {
        padding-bottom: 0;
    }
    .promo {
        padding: 8rem 0;
        margin-bottom: 0;
    }
    .subtitle {
        font-size: 1rem;
    }
    .promo__btn {
        margin-top: 2rem;
    }
    .promo__btn a {
        width: auto;
    }
    .footer {
        padding-bottom: 1rem;
        background: url(../img/logo.svg) no-repeat right 1rem bottom 1.5rem;
        background-size: 7rem;
    }
    .footer__menu {
        padding-left: 0;
    }
    .footer__menu ul {
        gap: 0 .3rem;
        justify-content: space-between;
    }
    .footer__menu ul li a {
        font-size: .7rem;
    }
    .footer__copy {
        margin-top: 1rem;
        font-size: .6rem;
    }
    .footer__info {
        margin-top: 1rem;
    }
    .footer__info-social,
    .footer__info-email a {
        justify-content: flex-start;
    }
    .footer__info-email a {
        font-size: 1rem;
    }
    .footer__info-social {
        margin-top: 0;
    }
    .footer__info-email a svg,
    .footer__info-social a svg {
        width: 1.5rem;
    }
    .contacts,
    .page {
        padding-top: 2rem;
    }
    .page__content {
        width: 100%;
    }
    .contacts__title {
        margin-bottom: 2rem;
    }
    .contacts__links a {
        font-size: 1rem;
    }
    .contacts__social a svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    .about {
        min-height: auto;
        padding-top: 1rem;
    }
    .expanded {
        margin-top: 2rem;
    }
    body {
        padding-top: 0;
    }
}

@media (max-width: 576px) {
    html {
        font-size: calc(100vw / 21);
    }
    .future__items .item {
        position: static;
        width: 100% !important;
    }
    .footer__copy {
        width: 60%;
    }
    .footer__copy br {
        display: none;
    }
    .promo__btn a {
        width: 100%;
        font-size: 1rem;
    }
    .future__items {
        padding-top: 17rem;
        background-size: 70%;
        height: auto;
        margin-top: 2rem;
        background-position: top;
    }
    .future__btn .btn {
        width: 100%;
        font-size: 1rem;
    }
    .header__burger {
        font-size: .9rem;
    }
    .news .item__title {
        font-size: 1.2rem;
    }
    .future__items .item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #fff;
    }
    .future__items .item:last-child {
        border-bottom: none;
    }
    .footer {
        background: none;
        position: relative;
    }
    .footer__logo img {
        width: 10rem;
    }
    .footer__menu {
        padding-left: 0;
        position: absolute;
        right: 1rem;
        top: 0;
    }
    .footer ul {
        display: block;
    }
    .footer__menu ul li a {
        margin-bottom: .5rem;
    }
    .future__items .item__title {
        font-size: 1rem;
    }
    .future__items .item__text {
        font-size: .7rem;
    }
    .projects__btn a {
        font-size: 1rem;
    }
    .links__link {
        padding: 1rem 0;
        font-size: 1.2rem;
    }
    .links__content-inner {
        font-size: 1rem;
        padding: 1rem 0;
    }
    .expanded__content,
    .about__content {
        font-size: 1rem;
    }
    .links {
        padding-bottom: 0;
    }
    .triggers {
        padding-bottom: 0;
    }
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__title div {
        left: 10rem;
        top: 5.3rem;
    }
}