:root {
    --theme-color: #efefef;
    --primary-color: #000e29;
    --max-width: 1440px;
    --font-family: 'Roboto', sans-serif;
    --border-radius: 15px;
}
body {
    font-family: var(--font-family);
}
.page {
    min-width: 320px;
    min-height: 100%;
}
.page__inner {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.page__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
}
.page__footer-wrapper {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.theme {
    -webkit-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -o-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    background: var(--theme-color);
    color: var(--primary-color);
}
.theme__button {
    background: var(--primary-color);
    color: var(--theme-color);
}
[data-theme='light'] {
    --theme-color: #efefef;
    --primary-color: #253c78;
    --main-title: #2f4357;
    --title-shadow-color: #b9c9d0;
    --sub-text-color: #586c9d;
    --icon-color: #879ea8;
    --btn-border-color: #364c62;
    --btn-bg-color: #fff;
    --btn-hover-bg-color: #f1f4f7;
    --btn-title-color: #576a99;
    --email-title-color: #576a99;
    --menu-link-color: #253c78;
}
[data-theme='dark'] {
    --theme-color: #1a1a2e;
    --primary-color: #e7e7de;
    --main-title: #fcfeff;
    --title-shadow-color: #036cb5;
    --sub-text-color: #9caacd;
    --icon-color: #749dd6;
    --btn-border-color: #749dd6;
    --btn-bg-color: #404660;
    --btn-hover-bg-color: #3a3f57;
    --btn-title-color: #fff;
    --email-title-color: #9caacd;
    --menu-link-color: #253c78;
}
[data-theme='dark'] .logo--default {
    display: none;
}
[data-theme='light'] .logo--inverse {
    display: none;
}

/* Section */
.section__title {
    padding: 70px 16px 0;
    text-align: center;
}
.section__title h2 {
    margin: 0;
    font-size: 4rem;
    font-weight: 300;
}
.section__content {
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    padding: 70px 16px;
}

@media screen and (max-width: 1024px) {
    .section__title {
        padding: 40px 16px 0;
    }
    .section__title h2 {
        font-size: 2rem;
    }
    .section__content {
        padding: 40px 16px;
    }
}

/* Services */
.services {
    color: var(--theme-color);
    background-color: var(--primary-color);
}
.services__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 35px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 35px;
    margin: 0;
    padding: 0;
}
.services__list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
.services__list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
.services__item {
    position: relative;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 320px;
    padding: 60px 50px;
    color: var(--primary-color);
    background-color: var(--theme-color);
    border-radius: var(--border-radius);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.services__item:hover {
    opacity: 0.95;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
@media screen and (min-width: 1200px) {
    .services__image {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 25px;
        width: 38%;
        height: auto;
    }
    .services__name,
    .services__descr {
        max-width: 57%;
    }
}
@media screen and (max-width: 1199px) {
    .services__image {
        width: 100%;
        margin-bottom: 20px;
    }
}
.services__image img {
    width: 100%;
    height: 100%;
}
.services__name {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.13;
}
.services__descr {
    margin: 0;
    font-size: 1rem;
}

@media screen and (max-width: 1024px) {
    .services__item {
        min-height: auto;
        padding: 30px 20px;
    }
    .services__item:hover {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
@media screen and (max-width: 768px) {
    .services__list {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/* Products */
.products__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 35px;
    margin: 0;
    padding: 0;
}
.products__list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
.products__list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
.products__list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}
.products__item {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 50px 40px;
    color: var(--theme-color);
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
}
.products__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.products__image {
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: #576a99;
}
.products__name {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
}
.products__descr {
    margin: 0;
    font-size: 1rem;
}
.products__link {
    position: relative;
    margin-top: 20px;
    padding-right: 27px;
    color: var(--theme-color);
    font-weight: 300;
    text-decoration: none !important;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.products__link:after {
    content: '→';
    position: absolute;
    top: 49%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: right 0.2s;
    -o-transition: right 0.2s;
    transition: right 0.2s;
}
.products__link:hover {
    color: inherit;
    opacity: 0.7;
}
.products__link:hover.products__link:after {
    right: 5px;
}

@media screen and (max-width: 1024px) {
    .products__list {
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .products__item {
        padding: 30px 20px;
    }
    .products__top {
        gap: 15px;
        margin-bottom: 15px;
    }
    .products__name {
        font-size: 1rem;
        line-height: normal;
    }
    .products__descr {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .products__list {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
    .products__image {
        padding: 8px;
    }
}

/* Partners */
.partners {
    color: var(--theme-color);
    background-color: var(--primary-color);
}
.partners__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.partners__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 40px;
    max-height: 100px;
    background-color: #efefef;
    border-radius: var(--border-radius);
}
[data-theme='dark'] .partners__item {
    background-color: #fff;
}
.partners__item a {
    display: block;
    width: 100%;
    height: 100%;
}
.partners__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .partners__list {
        gap: 15px;
    }
    .partners__item {
        height: 80px;
        padding: 10px 20px;
    }
}

/* License */
.license__list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.license__item {
    border-radius: var(--border-radius);
}
.license__preview {
    position: relative;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
}
.license__preview:hover .license__link {
    opacity: 1;
}
.license__preview:hover .license__image {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.license__image {
    -webkit-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    transition: all ease 0.6s;
}
.license__image img {
    width: 100%;
}
.license__link {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: opacity ease 0.2s;
    -o-transition: opacity ease 0.2s;
    transition: opacity ease 0.2s;
    font-size: 1.7rem;
    text-decoration: none !important;
}
.license__descr {
    margin: 0;
    padding: 0.9em;
    text-align: center;
    font-size: 1em;
    color: var(--theme-color);
}
@media screen and (max-width: 1024px) {
    .license__link {
        font-size: 1rem;
    }
    .license__descr {
        padding: 1.5em;
    }
}
[data-theme='dark'] .license__descr {
    color: var(--primary-color);
}

/* Documents */
.documents__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.documents__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    background-color: #ffffff;
    border-radius: 4px;
}
.documents__link {
    position: relative;
    padding-left: 25px;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none !important;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.documents__link:hover {
    opacity: 0.7;
}
.documents__link:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 20px;
    background: url('../img/document.svg');
    background-size: cover;
}

.logo {
    display: block;
    width: 45vw;
    margin: 0 auto;
}
.svg-icon {
    display: inline-block;
    width: 20px;
    height: 100%;
    margin-right: 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.sr-only {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    margin: -1px;
}
.page-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    z-index: 5;
}
.page-header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px;
}
.page-footer {
    position: relative;
}
.page-footer__wrap {
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 16px;
}
.page-footer__title {
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1.5rem;
}
.page-footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}
.page-footer__copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    color: var(--sub-text-color);
}
.page-header__phone a,
.page-footer__email a {
    font-size: 1rem;
    text-decoration: none;
    color: var(--email-title-color);
}

.page-footer__email {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media screen and (max-width: 1024px) {
    .page-footer__wrap {
        padding: 30px 16px;
    }
}

.main-content {
    position: relative;
}
.hero {
    text-align: center;
}
.hero,
.hero__title {
    -webkit-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -o-transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: all 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.hero__title {
    color: var(--main-title);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 6px;
    margin: 0;
    text-shadow: 6px 6px var(--title-shadow-color);
    font-size: 9vw;
    text-transform: uppercase;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
@media screen and (min-width: 640px) and (max-width: 1920px) {
    .hero__title {
        font-size: 8.25vw;
    }
}
@media screen and (max-width: 640px) {
    .hero__title {
        font-size: 60px;
        text-shadow: 3px 3px var(--title-shadow-color);
    }
}
.hero__subtitle {
    color: var(--sub-text-color);
    font-size: 1.2vw;
}
@media screen and (min-width: 640px) and (max-width: 1920px) {
    .hero__subtitle {
        font-size: 1.2vw;
    }
}
@media screen and (max-width: 640px) {
    .hero__subtitle {
        font-size: 16px;
    }
}
.hero__nav-wrap {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.toggle-wrap input {
    position: absolute;
    left: -99em;
}
.toggle {
    cursor: pointer;
    width: 70px;
    height: 30px;
    background-color: #83d8ff;
    border-radius: 84px;
    -webkit-transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -o-transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.toggle,
.toggle__handler {
    display: inline-block;
    position: relative;
}
.toggle__handler {
    z-index: 1;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: #ffcf96;
    border-radius: 30px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggle__handler .crater {
    position: absolute;
    background-color: #e8cda5;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    border-radius: 100%;
}
.toggle__handler .crater--1 {
    top: 10px;
    left: 5px;
    width: 4px;
    height: 4px;
}
.toggle__handler .crater--2 {
    top: 15px;
    left: 10px;
    width: 6px;
    height: 6px;
}
.toggle__handler .crater--3 {
    top: 6px;
    left: 13px;
    width: 7px;
    height: 7px;
}
.star {
    position: absolute;
    background-color: #fff;
    -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -o-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    border-radius: 50%;
}
.star--1 {
    top: 8px;
    left: 9px;
    z-index: 0;
    width: 29px;
    height: 3px;
}
.star--2 {
    top: 14px;
    left: 11px;
    z-index: 1;
    width: 23px;
    height: 3px;
}
.star--3 {
    top: 20px;
    left: 14px;
    z-index: 0;
    width: 29px;
    height: 3px;
}
.star--4,
.star--5,
.star--6 {
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0;
    -o-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0;
}
.star--4 {
    top: 9px;
    left: 34px;
    width: 2px;
    height: 2px;
}
.star--4,
.star--5 {
    z-index: 0;
    -webkit-transform: translate3d(3px, 0, 0);
    transform: translate3d(3px, 0, 0);
}
.star--5 {
    top: 19px;
    left: 10px;
    width: 3px;
    height: 3px;
}
.star--6 {
    top: 16px;
    left: 28px;
    z-index: 0;
    width: 2px;
    height: 2px;
    -webkit-transform: translate3d(3px, 0, 0);
    transform: translate3d(3px, 0, 0);
}
input:checked + .toggle {
    background-color: #749dd6;
}
input:checked + .toggle:before {
    color: #749ed7;
}
input:checked + .toggle:after {
    color: #fff;
}
input:checked + .toggle .toggle__handler {
    background-color: #ffe5b5;
    -webkit-transform: translate3d(40px, 0, 0) rotate(0);
    transform: translate3d(40px, 0, 0) rotate(0);
}
input:checked + .toggle .toggle__handler .crater {
    opacity: 1;
}
input:checked + .toggle .star--1 {
    width: 2px;
    height: 2px;
}
input:checked + .toggle .star--2 {
    width: 4px;
    height: 4px;
    -webkit-transform: translate3d(7px, -3px, 0);
    transform: translate3d(7px, -3px, 0);
}
input:checked + .toggle .star--3 {
    width: 2px;
    height: 2px;
    -webkit-transform: translate3d(9px, 4px, 0);
    transform: translate3d(9px, 4px, 0);
}
input:checked + .toggle .star--4,
input:checked + .toggle .star--5,
input:checked + .toggle .star--6 {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
input:checked + .toggle .star--4 {
    -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s;
    -o-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.2s;
}
input:checked + .toggle .star--5 {
    -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.3s;
    -o-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.3s;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.3s;
}
input:checked + .toggle .star--6 {
    -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.4s;
    -o-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.4s;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.4s;
}
.contacts {
    color: var(--sub-text-color);
}

.scroll-chevron {
    position: absolute;
    bottom: 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.chevron {
    position: absolute;
    width: 45px;
    height: 2px;
    opacity: 0;
    top: 20px;
    left: 30%;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    -webkit-animation: move 3s ease-out infinite;
    animation: move 3s ease-out infinite;
}

.chevron:first-child {
    -webkit-animation: move 3s ease-out 1s infinite;
    animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
    -webkit-animation: move 3s ease-out 2s infinite;
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--primary-color);
}

.chevron:before {
    left: 0;
    -webkit-transform: skew(0deg, 30deg);
    -ms-transform: skew(0deg, 30deg);
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    -webkit-transform: skew(0deg, -30deg);
    -ms-transform: skew(0deg, -30deg);
    transform: skew(0deg, -30deg);
}

@-webkit-keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.text {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    -webkit-animation: pulse 2s linear alternate infinite;
    animation: pulse 2s linear alternate infinite;
}

@-webkit-keyframes pulse {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}