blockquote,body,dd,dl,figcaption,figure,h1,h2,h3,h4,li,ol[class],p,ul[class]{margin:0}:focus{outline:0}body{min-height:100vh;scroll-behavior:smooth;text-rendering:optimizeSpeed;line-height:1.3}ol[class],ul[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img{max-width:100%;max-height:100vh;display:block;height:auto}button,input,select,textarea{padding:5px}iframe{max-width:100%;aspect-ratio:16/9}a{text-decoration:none}*{box-sizing:border-box}ul{padding:0}html,html a{-webkit-font-smoothing:antialiased}

html {
    scroll-behavior: smooth;
}

:root {
    --color_bg: #111;
    --color_grey: #222;
    --color_white: #f1f1f1;
    --color_border: #b6b6b6;
    --color_footer: #b8b8b8;
    --color_grey_btn: #353434;
    --color_grey_btn_hover: #4d4d4d;
    --content_width:1280px;
}

*::selection {
    background: var(--color_white);
    color: var(--color_bg);
}

.text-logo {
    color: var(--f-button-bg);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 47px;
}

a.logo {
    color: var(--f-button-bg);
}

body {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    background: var(--color_bg);
    font-size: 18px;
}

header > div.header_body,
main,
footer {
    width: var(--content_width);
    max-width: 100%;
    margin: auto;
}

main {
    padding-bottom: 40px;
}

header {
    width: 100%;
    min-height: 100px;
    border-bottom: 1px solid var(--color_border);
}

main > .page-app {
    display: none;
}

main > .page-app.active {
    display: block;
}

div.header_body {
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0px 40px;
}

.logo {
    display: flex;
    max-width: 100%;
    width: 320px;
    aspect-ratio: 468 / 51;
    align-items: center;
}

.logo .frame-1 {
    background: url(../images/logo_innovation_lab_white.svg) no-repeat center;
    background-size: contain;
    height: 100%;
    min-width: 90%;
    width: 90%;
    margin-right: 1%;
    transform: translateX(-20px);
    opacity: 0;
    animation: show-right .5s 0s forwards;
}

.logo .frame-2 {
    background: url(../images/lab.svg) no-repeat center;
    background-size: contain;
    height: 100%;
    min-width: 9%;
    width: 9%;
    transform: translateX(-20px);
    opacity: 0;
    animation: show-right .5s .2s forwards;
}

.page-app-link {
    cursor: pointer;
    text-decoration: underline;
}

.page-app-link:hover {
    color: var(--color_white);
}

/*

div.logo a {
    display: block;
    background: url("../images/logo.svg") no-repeat center;
    background-size: contain;
    width: 300px;
    height: 80px;
}

*/

div.content-box {
    color: var(--color_white);
    padding: 40px;
}

div.content-box a {
    color: var(--color_footer);
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-decoration-color:var(--color_footer);
    text-decoration-style:dashed; 
}

div.content-box ul {
    padding:0px 0px 0px 40px;
}

div.content-box li::marker {
    display: none;
}

div.content-box .content hr {
    margin: 20px 0;
	padding: 0;
	height: 0;
	border: none;
	border-top: 1px solid var(--color_grey_btn_hover);
}

div.content-box .content h2,
div.content-box .content h3,
div.content-box .content h4,
div.content-box .content h5,
div.content-box .content h6 {
    margin-bottom: 15px;
}

div.content-box a:hover {
    color: var(--color_white);
    text-decoration-style:solid; 
}

div.content-box.m-t-80 {
    margin-top: 80px;
}

div.content-box > div {
    position: relative;
}

div.second-box .title,
div.main-box .title {
    height: 600px;
    display: flex;
    align-items: center;
}

div.main-box div.title label {
    font-size: 44px;
    font-weight: 600;
    cursor: text;
}

div.second-box .title label {
    font-size: 34px;
    font-weight: 600;
    cursor: text;
}

div.main-box div.title div.desc label {
    font-size: 18px;
    font-weight: 500;
}

div.second-box div.title div.desc label {
    font-size: 18px;
    font-weight: 500;
}

div.second-box div.title div.desc,
div.main-box div.title div.desc {
    margin-top: 40px;
}

.flex {
    display: flex;
}

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

.flex-2 > div {
    width: 50%;
    min-width: 50%;
}

.flex-3 > div {
    width: 33.333333%;
    min-width: 33.333333%;
}

.flex-4 > div {
    width: 25%;
    min-width: 25%;
}

.flex-4 > div {
    flex: 1;
    min-width: calc((100% - 120px) / 4);
}

.flex-4 > div:not(:last-child) {
    margin-right: 40px;
}

.magic-text p span,
.magic-text label span {
    opacity: 0;
    transform: translateY(-15px);
}

.magic-text:not(.hide-me) p span:nth-child(1),
.magic-text:not(.hide-me) label span:nth-child(1) {
    animation: 0.4s forwards show-text;
    animation-delay: 0.3s;
}

.magic-text:not(.hide-me) p span:nth-child(2),
.magic-text:not(.hide-me) label span:nth-child(2) {
    animation: 0.4s forwards show-text;
    animation-delay: 0.4s;
}

.magic-text:not(.hide-me) p span:nth-child(3),
.magic-text:not(.hide-me) label span:nth-child(3) {
    animation: 0.4s forwards show-text;
    animation-delay: 0.5s;
}

.magic-text:not(.hide-me) p span:nth-child(4),
.magic-text:not(.hide-me) label span:nth-child(4) {
    animation: 0.4s forwards show-text;
    animation-delay: 0.6s;
}

.magic-text:not(.hide-me) p span:nth-child(5),
.magic-text:not(.hide-me) label span:nth-child(5) {
    animation: 0.4s forwards show-text;
    animation-delay: 0.7s;
}

.magic-text:not(.hide-me) p span:nth-child(6),
.magic-text:not(.hide-me) label span:nth-child(6) {
    animation: 0.4s forwards show-text;
    animation-delay: 0.8s;
}

.magic-text:not(.hide-me) p span:nth-child(7),
.magic-text:not(.hide-me) label span:nth-child(7) {
    animation: 0.4s forwards show-text;
    animation-delay: 0.9s;
}

.magic-text:not(.hide-me) p span:nth-child(8),
.magic-text:not(.hide-me) label span:nth-child(8) {
    animation: 0.4s forwards show-text;
    animation-delay: 1s;
}


.magic-text:not(.hide-me) p span:nth-child(9),
.magic-text:not(.hide-me) label span:nth-child(9) {
    animation: 0.4s forwards show-text;
    animation-delay: 1.1s;
}


@keyframes show-text {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

.content-box .image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.content-box .image.center {
    justify-content: center;
}

.skin-box-animation {
    width: 80%;
    position: relative;
}

.skin-box-animation > div.display {
    background: var(--color_white);
    width: 100%;
    height: 40px;
    border-radius: 40px;
}

.skin-box-animation > div.footer {
    width: 100%;
    margin-top: 20px;
    height: 40px;
    border-radius: 40px; 
    background: var(--color_white);
}

.content .desc {
    font-size: 18px;
}

div.m-box .text,
div.display .text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
    position: relative;
}

div.m-box {
    z-index: 10;
}

div.m-box.text span,
div.display .text span {
    line-height: 34px;
}

div.m-box .text i,
div.display .text i {
    font-style: normal;
    font-size: 37px;
}

div.m-box .text span,
div.display .text span {
    will-change: transform;
    transition: 0.4s;
}

.m-box:hover .text span,
div.display:hover .text span {
    scale: 1.2;
    transition: 0.4s;
}

.skin-box-animation > * {
    opacity: 0;
    transform: translateY(40px);
}

.skin-box-animation > .display .text span > * {
    opacity: 0;
}

.skin-box-animation > .display .text span > b {
    transform: translateX(-20px);
    animation: show-from-left .3s 1.7s forwards;
    display: inline-block;
}

.m-box .text > .hide-help,
.skin-box-animation > .display .text > .hide-help {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    display: block;
    font-size: 21px;
    text-transform: none;
    font-weight: 500;
    cursor: pointer;
}

.m-box .text,
.skin-box-animation > .display .text {
    opacity: 0;
}

.m-box .text:hover > .hide-help,
.skin-box-animation > .display .text:hover > .hide-help {
    opacity: 1;
    transform: translateY(0px);
    transition: 0.5s;
}

.skin-box-animation > .display .text span > i {
    transform: translateX(20px);
    animation: show-from-right .3s 1.7s forwards;
    display: inline-block;
}

.state-bg {
    position: absolute;
    background: url(../images/state.png) no-repeat center;
    background-size: contain;
    width: 40%;
    height: 100%;
    right: -10%;
    top: -5%;
    transform: translateX(20px);
    opacity: 0;
}

div:not(.hide-me) .skin-box-animation > .footer {
    animation: show-from-bottom .5s .5s forwards;
}

div:not(.hide-me) .skin-box-animation > .display {
    animation: show-display 1s .7s forwards;
    position: relative;
    z-index: 10;
}

div:not(.hide-me) .skin-box-animation > .state-bg {
    animation: show-from-right .5s 1.7s forwards;
}

div:not(.hide-me) .skin-box-animation > .display .text {
    animation: show-me .3s 1.7s forwards;
}

@keyframes show-me {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes show-from-bottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes show-from-bottom-v-2 {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes show-from-bottom-v-3 {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes show-from-top-v-2 {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes show-display {
    0% {
        opacity: 0;
        transform: translateY(40px);
        height: 40px;
    }
    50% {
        opacity: 1;
        transform: translateY(0);
        height: 40px;
        background: var(--color_white);
        border: 6px solid var(--color_white);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        height: 300px;
        background: transparent;
        color: var(--color_white);
        border:6px solid var(--color_white);
    }
}

@keyframes show-from-left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes show-from-right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.content-box {
    position: relative;
}

.content-box .anchor {
    position: absolute;
    top: 0;
}

.content-box > * {
    position: relative;
    z-index: 10;
}

.content-box .main-box-bg {
    position: absolute;
    width: 60%;
    height: 100%;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
}

.content-box .second-box-bg {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
}

div.main-box-,
div.second-box-bg {
    pointer-events: none;
}

.stats-items .item {
    display: none;
}

.stats-items .item .value {
    display: block;
    font-size: 62px;
    font-weight: 700;
}

.stats-items .item .value i {
    font-style: normal;
    font-size: 44px;
    margin-left: 4px;
}

.stats-box:not(.hide-me) .item {
    display: block;
}

.stats-items .item .value {
    opacity: 0;
    transform: translateY(40px);
}

.stats-items .item .desc {
    opacity: 0;
    transform: translateY(-40px);
    display: block;
}

.stats-box:not(.hide-me) .item:nth-child(1) .value {
    animation: show-from-bottom-v-2 .3s .5s forwards;
}

.stats-box:not(.hide-me) .item:nth-child(1) .desc {
    animation: show-from-top-v-2 .3s .5s forwards;
}

.stats-box:not(.hide-me) .item:nth-child(2) .value {
    animation: show-from-bottom-v-2 .3s .7s forwards;
}

.stats-box:not(.hide-me) .item:nth-child(2) .desc {
    animation: show-from-top-v-2 .3s .7s forwards;
}

.stats-box:not(.hide-me) .item:nth-child(3) .value {
    animation: show-from-bottom-v-2 .3s .9s forwards;
}

.stats-box:not(.hide-me) .item:nth-child(3) .desc {
    animation: show-from-top-v-2 .3s .9s forwards;
}

div.second-box div.title div.desc p:not(:last-child) {
    margin-bottom: 20px;
}

.mobile-box-ghost,
.mobile-box-animation {
    width: 53%;
    height: 100%;
    border: 6px solid var(--color_white);
    border-radius: 40px;
    aspect-ratio: 1 / 1.8;
    opacity: 0;
    transform: translateY(40px);
}

.m-box {
    width: 53%;
    height: 100%;
}

.m-box,
.mobile-box-animation {
    position: relative;
}

.mobile-box-animation {
    width: 100%;
    height: 100%;
    z-index: 20;
}

.mobile-box-bg-2,
.mobile-box-bg {
    height: 0;
    background: var(--color_white);
    color: var(--color_bg);
    width: 90%;
    margin: auto;
    border-radius: 34px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.mobile-box-bg-2 {
    background: var(--color_bg);
    color: var(--color_white);
}

.mobile-box-ghost {
    position: absolute;
    left: 0;
    bottom: -10%;
}

div.second-box:not(.hide-me) .mobile-box-ghost {
    animation: show-from-bottom .5s .5s forwards;
}

div.second-box:not(.hide-me) .mobile-box-animation {
    animation: show-from-bottom .5s .9s forwards;
}

div.second-box:not(.hide-me) .mobile-box-bg {
    animation: move-bg-bottom .5s 1.4s forwards ease-in;
}

div.second-box:not(.hide-me) .mobile-box-bg-2 {
    animation: move-bg-bottom .5s 1.9s forwards ease-in;
}

@keyframes move-bg-bottom {
    0% {
        height: 0;
        width: 90%;
        border-radius: 34px;
    }
    10% {
        height: 10%;
        width: 94%;
        border-radius: 36px;
    }
    20% {
        height: 20%;
        width: 96%;
        border-radius: 38px;
    }
    100% {
        height: 100%;
        width: 100%;
        border-radius: 40px;
    }
}

@keyframes change-bg {
    0% {
        background: transparent;
    }
    100% {
        background: var(--color_white);
    } 
}

.mobile-box-animation .text span {
    opacity: 0;
}

div.second-box:not(.hide-me) .mobile-box-animation .text span {
    animation: show-from-bottom .3s 1.9s forwards;
}

div.second-box:not(.hide-me) .m-box .text {
    animation: show-me .1s 2s forwards;
}

.tech-items {
    width: 100%;
    margin-top: 40px;
}

.tech-items .row > div {
    flex: 1;
    min-height: 320px;
    min-width: calc((100% - 40px) / 2);
    padding: 40px;
    background: var(--color_grey);
    border-radius: 40px;
}

.tech-items .row > div:not(:last-child) {
    margin-right: 40px;
}

.tech-items .row:not(:last-child) {
    margin-bottom: 40px;
}

.default-title {
    font-size: 34px;
    font-weight: 600;
    cursor: text;
}

.default-desc {
    margin-top: 40px;
}

.default-desc > p:not(:last-child) {
    margin-bottom: 20px;
}

.tech-items .title {
    font-size: 24px;
    text-transform: uppercase;
}

.tech-items ul {
    padding: 0px 0px 0px 35px;
}

.tech-items ul li {
    position: relative;
    font-weight: 400;
}

.tech-items ul li:not(:last-child) {
    margin-bottom: 5px;
}

.tech-items .content-item.item {
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.tech-items .content-item.item:not(.hide-me):nth-child(1) {
    animation: show-from-bottom .4s .2s forwards;
}

.tech-items .content-item.item:not(.hide-me):nth-child(2) {
    animation: show-from-bottom .4s .4s forwards;
}

.tech-items div.icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 90px;
    line-height: 90px;
    height: 90px;
    overflow: hidden;
    color: #555;
}

.contacts-body {
    min-height: 600px;
}

.contacts-body .info-box {
    display: flex;
    align-items: center;
}

.contacts-body a {
    text-decoration: none;
    color: var(--color_white);
}

.info-box-data > div:not(:last-child) {
    margin-bottom: 40px;
}

.info-box-data > div {
    display: flex;
    align-items: center;
    font-size: 27px;
}

.info-box-data > div > div.icon {
    width: 100px;
    min-width: 100px;
}

.info-box-data > div > div.icon {
    font-size: 60px;
    line-height: 60px;
    width: 60px;
}

@keyframes show-right {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.map-box {
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 80px;
}

.map-box::after {
    content: "";
    position: absolute;
    display: block;
    z-index: 10;
    width: calc(100% - 80px);
    height: 100%;
    top: 40px;
    left: 120px;
    right: 0;
    bottom: 0;
    border: 6px solid #555555;
    border-radius: 40px;
    transform: translateY(-40px);
    opacity: 0;
}

.map-box > div {
    background: url(../images/map.svg) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 600px;
    border-radius: 40px;
    transform: translateY(-40px);
    opacity: 0;
    position: relative;
    z-index: 88;
}

.map-box > div > .map-mark {
    height: 120px;
    width: 120px;
    position: absolute;
    top: 4%;
    left: 29%;
    background: url(../images/gps.svg) no-repeat center;
    background-size: contain;
    z-index: 30;
    opacity: 0;
    transform: translateY(-40px);
    cursor: pointer;
    transition: 0.2s;
}

.map-box > div > .map-mark:hover {
    scale: 1.2;
    transition: 0.2s;
}

.map-box > div > .map-mark > .in-lab {
    height: 57px;
    width: 57px;
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    margin: auto;
    background: url(../images/logo_in_lab_white.svg) no-repeat center #111;
    border-radius: 30px;
    background-size: 80% 80%;
    z-index: 30;
    opacity: 0;
    transform: translateY(-40px);  
}

.feedback-box .info-box-data .icon,
.feedback-box .info-box-data .text {
    opacity: 0;
}

.feedback-box .info-box-data .icon {
    transform: translateX(-20px);
}

.feedback-box .info-box-data .text {
    transform: translateX(20px);
}

.feedback-box .info-box-data div:not(.hide-me) .icon {
    animation: show-from-left .4s .6s forwards;
}

.feedback-box .info-box-data div:not(.hide-me) .text {
    animation: show-from-right .4s .8s forwards;
}

.feedback-box:not(.hide-me) .map-box > div {
    animation: show-from-bottom .6s .8s forwards;
}

.feedback-box:not(.hide-me) .map-box::after {
    animation: show-from-bottom .6s .6s forwards;
}

.feedback-box:not(.hide-me) .map-box > div > .map-mark {
    animation: show-from-bottom .6s 1s forwards;
}

.feedback-box:not(.hide-me) .map-box > div > .map-mark > .in-lab {
    animation: show-from-bottom .6s 1.2s forwards;
}

div.content-box-footer.footer-body {
    color: var(--color_footer);
}

div.content-box-footer.footer-body a {
    color: var(--color_footer);
    text-decoration: underline;
}

div.content-box-footer.footer-body a:hover {
    color: var(--color_white);
}

footer div > p:not(:last-child) {
    margin-bottom: 20px;
}

div.content-box-footer.footer-body .social-box a {
    color: var(--color_white);
    text-decoration: none;
}

div.content-box-footer.footer-body .social-box {
    display: flex;
    justify-content: flex-end;
    font-size: 34px;
}

.social-box > a {
    display: block;
    margin-left: 20px;
    transition: 0.2s;
    opacity: 0;
    transform: translateX(-20px);
}

.social-box > a:hover {
    scale: 1.2;
    transition: 0.2s;
}

footer {
    padding: 40px;
}

.content-box-footer:not(.hide-me) .social-box a:nth-child(1) {
    animation: show-from-left .4s .5s forwards;
}

.content-box-footer:not(.hide-me) .social-box a:nth-child(2) {
    animation: show-from-left .4s .8s forwards;
}

.codeConsole {
    margin-top: 40px;
    min-height: 210px;
    white-space: pre;
    background: #000;
    padding: 40px;
    border-radius: 40px;
    color: #7ca495;
}

.codeConsole li::marker {
    color: #555555;
}

.formats-box {
    margin-top: 40px;
}

.formats-box .item {
    width: 100%;
    border-radius: 30px;
    min-height: 380px;
    background: var(--color_grey);
    padding: 30px;
    position: relative;
}

.formats-box .item .title {
    font-size: 21px;
    text-transform: uppercase;
}

.formats-box .item .icons {
    position: absolute;
    display: flex;
    right: 30px;
    top: 30px;
}

.formats-box .item .icons,
.formats-box .item .icons i {
    font-size: 21px;
    height: 18px;
    line-height: 18px;
}

.formats-box .item .icons i {
    margin-left: 5px;
    color: var(--color_footer);
}

.formats-box .flex-2 > div {
    flex: 1;
    min-width: calc((100% - 80px) / 2);
}

.formats-box .flex-2 > div:not(:last-child) {
    margin-right: 40px;
}

.formats-box .row:not(:last-child) {
    margin-bottom: 40px;
}

.formats-box ul {
    padding: 0px 0px 0px 35px;
}

.formats-box ul li {
    position: relative;
    font-weight: 400;
}

.formats-box ul li:not(:last-child) {
    margin-bottom: 5px;
}

.formats-box .content-item.item {
    opacity: 0;
    transform: translateY(40px);
    position: relative;
}

.formats-box .content-item.item:nth-child(1):not(.hide-me) {
    animation: show-from-bottom .4s .2s forwards;
}

.formats-box .content-item.item:nth-child(2):not(.hide-me) {
    animation: show-from-bottom .4s .4s forwards;
}

.formats-box  .btn {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 20;
}

.formats-box .btn a {
    color: var(--color_white);
    display: block;
    padding: 20px;
    min-width: 120px;
    border-radius: 20px;
    background: var(--color_grey_btn);
    text-align: center;
    transition: 0.3s;
    font-weight: 500;
}

.formats-box .btn a:hover {
    background: var(--color_grey_btn_hover);
    transition: 0.3s;
}

.header-menu {
    display: flex;
    margin-left: auto;
    font-weight: 500;
}

.header-menu ul {
    padding: 0;
    display: flex;
}

.header-menu ul li {
    list-style-type: none;
}

.header-menu ul li a {
    color: var(--color_white);
    padding: 0px 0px 0px 40px;
}

.header-menu ul li a:hover {
    text-decoration: underline;
}

.menu-tools {
    display: none;
}

.gallery-box {
    display: table;
    padding: 0px 40px 40px 40px;
    width: 100%;
    color: var(--color_white);
}

.gallery-box .gallery-item {
    width: calc(50% - 20px);
    border-radius: 30px;
    min-height: 440px;
    background: var(--color_grey);
    position: relative;
    display: inline-table;
    margin-top: 40px;
}

.gallery-item .title {
    font-size: 24px;
    text-transform: uppercase;
    padding: 30px 30px 20px 30px;
}

.gallery-box .gallery-item:nth-child(2n+1) {
    margin-right: 20px;
}

.gallery-box .gallery-item:nth-child(2n) {
    margin-left: 20px;
}

.gallery-box .gallery-item .images-box div:nth-child(2n+1) img {
    border-radius: 0px 15px 15px 0px;
}

.gallery-box .gallery-item .images-box div:nth-child(2n) img {
    border-radius: 15px 0px 0px 15px;
}

.images-box {
    display: flex;
    justify-content: center;
}

.images-box > div:not(:last-child) {
    margin-right: 20px;
}

.images-box img {
    height: 240px;
    object-fit: cover;
}

.btn-box {
    padding: 20px 30px 30px 30px;
    display: flex;
}

.btn-box > .btn:not(:last-child) {
    margin-right: 10px;
}

.btn-box > .btn a {
    color: var(--color_white);
    display: block;
    padding: 20px;
    border-radius: 20px;
    background: var(--color_grey_btn);
    text-align: center;
    transition: 0.3s;
    font-weight: 500;
    font-size: 24px;
}

.btn-box > .btn a:hover {
    background: var(--color_grey_btn_hover);
}

.qr-code > img {
    display: none !important;
}

.pages {
    padding: 40px 0px 0px 0px;
    color: var(--color_white);
}

.pages > * {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color_footer);
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid var(--color_grey_btn_hover);
    transition: 0.2s;
}

.pages > *:hover,
.pages > span {
    border: 2px solid var(--color_white);
    color: var(--color_white);
    transition: 0.2s;
}

.page_next-prev {
    display: none;
}

.tag-title-box {
    padding: 40px 40px 0px 40px;
    color: var(--color_white);
}

span.tag-title {
    display: inline-block;
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 600;
    cursor: text;
}

.inlab-news {
    padding: 40px;
    color: var(--color_white);
}

.inlab-news h1 {
    margin-bottom: 20px;
}

body .news-item .article-image img {
    width: 800px;
    min-height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.article-box {
    margin-top: 40px;
    max-width: 800px;
}

.article-box p:not(:last-child) {
    margin-bottom: 20px;
}

.article-image {
    display: flex;
}

.author-box {
    margin-left: auto;
    align-items: center;
    height: 90px;
    border-radius: 5px;
}

.author-box .job {
    color: #6c6c6c;
}

.author-box,
.photo-box {
    display: flex;
}

.photo-box {
    margin-right: 15px;
}

.photo-box img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 100%;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news-item {
  height: 100%;
  position: relative;
  border-radius: 15px;
  cursor: pointer;
  transform: translateZ(0);
}

.news-item .article-image {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
  height: 100%;
}

.news-item .article-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: .5s;
}

.news-item:hover .article-image img {
  
}

.news-content {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: inherit;
}

.news-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, .92), rgba(0, 0, 0, 0) 100%);
  border-radius: inherit;
  pointer-events: none;
  transform: translateY(2px);
}

.news-content-body {
  position: relative;
  z-index: 10;
  width: 100%;
  color: var(--color_white);
}

.news-content-body a {
  color: var(--color_white);
}

.news-body {
  padding: 40px;
  color: var(--color_white);
}

.news-content-body .title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  transform: translateY(0);
  transition: transform 2s cubic-bezier(.19, 1, .22, 1);
  will-change: transform;
}

.news-content-body .desc {
  font-size: 16px;
  line-height: 1.4;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(4px);
  transition:
    max-height .35s ease,
    opacity .22s ease .2s,
    transform .42s ease .2s;
  will-change: opacity, transform;
}

.news-item:hover .news-content-body .title {
  transform: translateY(-16px);
}

.news-item:hover .news-content-body .desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.news-item .date {
    position: absolute;
    font-size: 14px;
    left: 10px;
    top: 10px;
    z-index: 15;
}

.news-item .date span {
    display: inline-block;
    background: rgba(0, 0, 0, .4);
    padding: 4px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 14px;
}

@media only screen and (max-width:680px) {

    .formats-box .item .title {
        padding-right: 50px;
    }

    .news-content-body .title {
        display: block;
        font-size: 21px;
        font-weight: 400;
    }

    .news-body {
        padding: 20px;
    }

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

    .news-content-body {
        transform: none !important;
        transition: none !important;
    }

    .news-content-body .title {
        transform: none !important;
        transition: none !important;
    }

    .news-content-body .desc {
        display: none !important;
    }

    .news-item::after {
        background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .25) 100%);
    }


    .inlab-news {
        padding: 20px;
        color: var(--color_white);
    }

    .inlab-news h1 {
        margin-bottom: 20px;
        font-size: 27px;
    }

    body .photo-box img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 100%;
    }

    .article-box {
        margin-top: 30px;
        max-width: 800px;
    }

    .article-image {
        display: block;
    }

    .article-image img {
        width: 100%;
        height: 220px;
        border-radius: 5px;
        object-fit: cover;
    }

    .tag-title-box {
        padding: 20px 20px 0px 20px;
        color: var(--color_white);
    }

    span.tag-title {
        display: inline-block;
        text-transform: uppercase;
        font-size: 28px;
        font-weight: 600;
        cursor: text;
    }

    .header-menu ul li a {
        color: var(--color_white);
        padding: 0px 0px 0px 20px;
    }

    .gallery-box .gallery-item {
        min-height: unset;
    }
    

    .gallery-item .title {
        font-size: 18px;
        text-transform: uppercase;
        padding: 30px 30px 20px 30px;
    }

    .images-box img {
        height: 160px;
        object-fit: cover;
    }

    .gallery-box .gallery-item:nth-child(2n+1) {
        margin-right: 0px;
    }
    
    .gallery-box .gallery-item:nth-child(2n) {
        margin-left: 0px;
    }


    .gallery-box .gallery-item {
        width: 100%;
        margin-right: 0px;
    }

    .gallery-box {
        padding: 0px 20px 20px 20px;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    body .flex {
        display: block;
    }

    div.second-box .title, div.main-box .title {
        height: auto;
    }

    body .flex-2 > div {
        width: 100%;
        min-width: 100%;
    }

    div.main-box div.title label {
        font-size: 31px;
        line-height: 35px;
    }

    div.main-box div.title p label {
        line-height: 21px;
    }

    .skin-box-animation {
        width: 100%;
        position: relative;
    }

    .content-box .image {
        margin-top: 40px;
    }

    .second-box.content-box .image {
        margin-bottom: 80px;
    }

    .content-box .main-box-bg {
        opacity: 0.3;
    }

    .content-box .main-box-bg {
        position: absolute;
        width: 100%;
        height: 60%;
        left: 0;
        right: 0;
        bottom: 0;
        top: unset;
        z-index: 0;
    }

    header,
    div.header_body {
        height: 60px;
        min-height: 60px;
    }

    div.header_body {
        padding: 0px 20px;
    }

    div.content-box {
        padding: 20px;
    }

    .logo {
        width: 200px;
    }

    .stats-box:not(.hide-me) .item {
        width: 100%;
    }

    .skin-box-animation {
        min-height: 295px;
    }

    @keyframes show-display {
        0% {
            opacity: 0;
            transform: translateY(40px);
            height: 40px;
        }
        50% {
            opacity: 1;
            transform: translateY(0);
            height: 40px;
            background: var(--color_white);
            border: 6px solid var(--color_white);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
            height: 240px;
            background: transparent;
            color: var(--color_white);
            border:6px solid var(--color_white);
        }
    }

    .stats-items .item {
        text-align: center;
    }

    .stats-items .item:not(:last-child) {
        margin-bottom: 40px;
    }

    .mobile-box-ghost {
        left: 40px;
    }

    .m-box {
        margin-right: -40px;
    }

    .m-box .text > .hide-help, .skin-box-animation > .display .text > .hide-help {
        font-size: 18px;
    }

    div.content-box.m-t-80 {
        margin-top: 40px;
    }

    .formats-box .item {
        min-height: 470px;
        margin-bottom: 40px;
    }

    .text-logo {
        color: var(--f-button-bg);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 37px;
    }

    .formats-box .btn {
        left: 30px;
    }

    .formats-box .btn a {
        width: 100%;
    }
    
    .map-box {
        display: none;
    }

    .contacts-body {
        min-height: auto;
    }

    .contacts-body .info-box {
        margin-top: 40px;
    }

    .info-box-data > div > div.icon {
        font-size: 44px;
        line-height: 44px;
        width: 44px;
    }

    .info-box-data > div {
        font-size: 21px;
    }

    .info-box-data > div > div.icon {
        width: 70px;
        min-width: 70px;
    }

    footer {
        padding: 20px;
    }

    div.content-box-footer.footer-body .social-box {
        justify-content: center;
        margin-top: 20px;
    }

    .codeConsole {
        margin-top: 20px;
        border-radius: 20px;
    }

    .tech-map .default-desc {
        margin-top: 20px;
    }

    .tech-items .row > div {
        margin-right: 0px;
        margin-bottom: 40px;
    }

    .tech-items div.icon {
        font-size: 50px;
        line-height: 50px;
    }

    main {
        padding-bottom: 0px;
    }

    .info-box-data {
        margin-bottom: 20px;
    }

    body .hide-help {
        display: none !important;
    }

    .tech-items .row > div {
        padding: 30px;
    }

    .tech-items div.icon {
        right: 30px;
        bottom: 30px;
        height: 50px;
    }

    .default-title,
    div.second-box .title label {
        font-size: 28px;
    }

    .header-menu {
        display: none;
        margin-left: auto;
        font-weight: 500;
        position: fixed;
        top: 60px;
        background: var(--color_bg);
        width: 100%;
        z-index: 99;
        left: 0;
        right: 0;
        height: auto;
        overflow: hidden;
    }

    .header-menu ul {
        display: block;
    }

    .header-menu ul li {
        padding: 10px 0px;
        font-size: 21px;
        opacity: 0;
        transform: translateY(20px);
    }

    .menu-tools {
        margin-left: auto;
        display: block;
    }
    
    .menu-tools > .menu-btn {
        position: relative;
        height: 60px;
        display: flex;
        align-items: center;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .menu-tools > .menu-btn span {
        display: block;
        position: relative;
        width: 36px;
    }
    
    .menu-tools > .menu-btn span::after,
    .menu-tools > .menu-btn span::before {
        content: "";
        height: 3px;
        width: 36px;
        border-radius: 3px;
        background: var(--color_white);
        display: block;
        transition: 0.2s;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    
    .menu-tools > .menu-btn span::before {
        transform: translateY(-5px);
    }
    
    .menu-tools > .menu-btn span::after {
        transform: translateY(5px);
    }
    
    .menu-tools > .menu-btn.is-visible span::before {
        transform: translateY(0px) rotate(45deg);
    }
    
    .menu-tools > .menu-btn.is-visible span::after {
        transform: translateY(0px) rotate(-45deg);
    }

    #header {
        transition: 0.4s; 
    }

    #header.fullscreen {
        height: calc(100dvh + 1px);
        transition: 0.2s;
        border-radius: 0px 0px 0px 0px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        position: fixed;
        z-index: 999;
        overflow-y: auto;
        background: var(--color_bg);
    }

    html.mobile-hidden body {
        padding-top: 60px;
    }

    html.mobile-hidden,
    html.mobile-hidden body {
        overflow-y: hidden;
    }

    html.mobile-hidden .header-menu {
        display: flex;
    }

    html.mobile-hidden .header-menu ul li:nth-child(1) {
        animation: show-from-bottom-v-3 .2s .2s forwards;
    }

    html.mobile-hidden .header-menu ul li:nth-child(2) {
        animation: show-from-bottom-v-3 .2s .25s forwards;
    }

    html.mobile-hidden .header-menu ul li:nth-child(3) {
        animation: show-from-bottom-v-3 .2s .3s forwards;
    }

    html.mobile-hidden .header-menu ul li:nth-child(4) {
        animation: show-from-bottom-v-3 .2s .35s forwards;
    }

    html.mobile-hidden .header-menu ul li:nth-child(5) {
        animation: show-from-bottom-v-3 .2s .4s forwards;
    }

    html.mobile-hidden .header-menu ul li:nth-child(6) {
        animation: show-from-bottom-v-3 .2s .45s forwards;
    }

    html.mobile-hidden .header-menu ul li:nth-child(7) {
        animation: show-from-bottom-v-3 .2s .5s forwards;
    }

    html.mobile-hidden .header-menu ul li:nth-child(8) {
        animation: show-from-bottom-v-3 .2s .55s forwards;
    }

    .content-box .anchor {
        position: absolute;
        top: calc(-90dvh);
    }

    .stats-box {
        min-height: 350px;
    }
}