/* === FONTS === */
@font-face {
    font-family: 'Open Sans', sans-serif;
    src: url('/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans', sans-serif;
    src: url('/fonts/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans', sans-serif;
    src: url('/fonts/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans Condensed', sans-serif;
    src: url('/fonts/FiraSansCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans Condensed', sans-serif;
    src: url('/fonts/FiraSansCondensed-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
/* === //FONTS === */

/* === GENERAL STYLE === */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 31px;
    color: #272D3A;
    background: #F7F7F7;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.img-fluid {
    display: block;
    width: 100%;
    height: auto;
}

.link,
.link-light {
    display: inline;
    color: #272D3A;
    text-decoration-line: underline;
}

.link-light {
    color: #fff;
}

/* background */
.light-bg {
    background-color: #fff;
}

.dark-bg {
    background-color: #828690;
}

.main-bg {
    background: url(/img/main-bg.jpg) center center no-repeat;
    background-size: cover;
}
/* //background */

/* text */
.light-text {
    color: #fff;
}

.grey-text {
    color: #A3A6AE;
}

.dark-grey-text {
    color: #556179;
}

.italic-text {
    font-style: italic;
    color: #556179;
}

p {
    margin: 0;
}
/* //text */

/* button */
a,
button {
    display: block;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

button,
button:active,
button:focus {
    outline: none;
    border: none;
}

.light-btn,
.dark-btn {
    width: 170px;
    height: 60px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 59px;
    background-color: #828690;
}

.dark-btn {
    background-color: #272D3A;
}

.light-btn:hover {
    color: #556179;
    background-color: #fff;
}

.dark-btn:hover {
    background-color: #828690;
    color: #272D3A;
}
/* //button */

/* heading */
.h1 {
    margin: 0;
    font-weight: 800;
    font-size: 36px;
    line-height: 49px;
    text-transform: uppercase;
    color: #fff;
}

.h3 {
    display: inline-block;
    margin: 0 auto;
    padding: 12px;
    position: relative;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.h3-light,
.h3-big {
    background-color: #828690;
}

.h3-dark {
    background-color: #272D3A;
}

.h3-light::before,
.h3-dark::before,
.h3-big::before {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: -7px;
    left: 18px;
    background-color: #272D3A;
    z-index: -1;
}

.h3-dark::before {
    background-color: #fff;
}

.h3-big {
    width: 477px;
    padding: 10px 0 10px 30px;
    line-height: 54px;
}

.h3-big::before {
    top: 23px;
    left: -63px;
    background: #65686F;
}
/* //heading */
/* === //GENERAL STYLE === */

/* HEADER */
.header {
    padding: 60px 0 130px 0;
}

.instruction .header,
.commands .header {
    padding: 60px 0 60px 0;
}

.header__top {
    padding-bottom: 65px;
    display: grid;
    grid-template-columns: 460px 1fr;
    align-items: center;
}

.logo-wrap a {
    display: inline;
}

.header__lang {
    position: relative;
    margin-left: 35px;
    top: -15px;
}

.header__lang {
    display: inline-block;
}

.header__lang select {
    background-color: transparent;
    border: none;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.header__lang select:focus {
    outline: none;
}

.header__lang option {
    background-color: #272D3A;
}

.header__menu {
    position: relative;
}

.toggle-menu {
    position: absolute;
    top: -25px;
    right: 0;
    padding: 0;
    width: 43px;
    height: 43px;
    background-color: #828690;
    border: none;
    z-index: 100;
    cursor: pointer;
}

.toggle-menu span {
    display: block;
}

.sandwich {
    width: 25px;
    height: 23px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.sw-topper,
.sw-bottom,
.sw-footer {
    position: relative;
    width: 25px;
    height: 4px;
    background: #fff;
    border: none;
    border-radius: 4px 4px 4px 4px;
}

.sw-topper {
    top: 0;
    transition: transform 0.5s, top 0.2s;
}

.sw-bottom {
    top: 5px;
    transition: transform 0.5s, top 0.2s;
    transition-delay: 0.2s, 0s;
}

.sw-footer {
    top: 10px;
    transition: all 0.5s;
    transition-delay: 0.1s;
}

/* gamburger animation */
.sandwich.active .sw-topper {
    top: 9px;
    transform: rotate(140deg);
}

.sandwich.active .sw-bottom {
    top: 5px;
    transform: rotate(-140deg);
}

.sandwich.active .sw-footer {
    opacity: 0;
    top: 0;
    transform: rotate(180deg);
}

/* //gamburger animation */

.menu {
    display: none;
    position: absolute;
    top: 18px;
    right: 0;
    max-width: 290px;
    z-index: 100;
}

.menu ul {
    margin: 0;
    padding: 15px 30px 15px 30px;
    list-style-type: none;
}

.menu ul li {
    font-weight: 800;
    text-transform: uppercase;
    line-height: 40px;
}

.menu ul li a {
    display: inline;
}

.header__bottom {
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-column-gap: 40px;
}

.commands .header__bottom {
    grid-template-columns: 60% 1fr;
}

.header__text p {
    margin: 40px 0 30px 0;
}

.instruction .header__text p,
.commands .header__text p {
    margin: 25px 0 0 0;
}

.breadcrumbs {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    text-align: right;
    align-self: end;
}

.breadcrumbs li,
.breadcrumbs li a {
    display: inline-block;
    color: #828690;
}

.breadcrumbs li a:hover {
    color: #fff;
}

.header__video {
    position: relative;
    width: 100%;
    height: min-content;
    padding: 0;
    overflow: hidden;
    border: 16px solid rgba(89, 94, 104, 0.5);
}

.header__video::before {
    padding-top: 56.25%;
    display: block;
    content: "";
}

.header__video iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.header__not-video {
    width: 100%;
    height: min-content;
    padding: 0;
    border: 16px solid rgba(89, 94, 104, 0.5);
}

.header__not-video img {
    width: 100%;
    height: auto;
    display: block;
}

/* //HEADER */

/* PURPOSE */
.purpose {
    padding-bottom: 160px;
    text-align: center;
}

.purpose__item {
    margin-top: 65px;
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    text-align: left;
}

.purpose__item::after {
    content: "";
    width: 182px;
    height: 100%;
    position: absolute;
    top: -20px;
    right: 15px;
    background: #828690;
    z-index: -1;
}

.purpose__num {
    font-size: 96px;
    text-transform: uppercase;
    color: rgba(46, 48, 52, 0.1);
    text-align: right;
}

.purpose__num::before {
    content: "0";
    padding-left: 25px;
    width: 110px;
    height: 90px;
    position: absolute;
    top: -15px;
    left: -40px;
    font-size: 36px;
    line-height: 60px;
    color: #fff;
    text-align: center;
    background: #272D3A;
    border: 15px solid #F7F7F7;
}

.purpose__num-1::before {
    content: "1";
}

.purpose__num-2::before {
    content: "2";
}

.purpose__item p {
    padding: 40px 30px 40px 36px;
}
/* //PURPOSE */

/* NEED */
.need {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.need::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #fff;
    z-index: -2;
}

.need .container {
    display: grid;
    grid-template-columns: 458px 1fr;
    grid-column-gap: 65px;
}

.need__tittle {
    padding-top: 110px;
    position: relative;
    top: -80px;
    height: calc(100% + 80px);
    z-index: -1;
}

.need-2 .need__tittle {
    top: -60px;
    height: calc(100% + 60px);
}

.need__tittle p {
    padding: 70px 45px 0 45px;
}

.need__text {
    padding: 80px 40px 60px 0;
}

.need__text p {
    margin-bottom: 40px;
}
/* //NEED */

/* HISTORY */
.history {
    text-align: center;
}

.history .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.history__text {
    padding-right: 45px;
    text-align: left;
}

.history__text p:first-child {
    margin-top: 60px;
}

.history-2 .history__text p:first-child {
    margin-top: 0;
}

.history__text p {
    margin-top: 40px;
}

.history__foto {
    margin-top: 60px;
    padding: 30px 30px 45px 30px;
    position: relative;
}

.history-2 .history__foto {
    margin-top: 0;
}

.history__foto::after {
    content: "";
    display: block;
    width: 470px;
    height: 385px;
    position: absolute;
    right: -30px;
    bottom: -17px;
    background-color: #272D3A;
    z-index: -1;
}

.history__foto p {
    padding-top: 30px;
}

.history-2 {
    padding-bottom: 170px;
}

.history-3 a {
    margin-top: 60px;
}

.history-3 .history__foto {
    height: min-content;
}
/* //HISTORY */

/* CALCULATOR */
.calc {
    position: relative;
    text-align: center;
}

.calc::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    background: #fff;
    z-index: -1;
}

.calc__inner {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    align-items: center;
    text-align: left;
}

.calc__text p:first-child {
    margin-bottom: 40px;
}

.calc__item {
    margin-top: 70px;
    padding: 30px 30px 30px 70px;
    position: relative;
    text-align: left;
    background-color: #F7F7F7;
}

.calc__item img {
    display: block;
    position: absolute;
    top: -15px;
    left: -60px;
    border: 15px solid #fff;
}

.calc__item strong {
    margin-bottom: 15px;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
}

.calc__item span {
    font-weight: bold;
}
/* //CALCULATOR */

/* CAPABILITY */
.capability {
    text-align: center;
}

.capability .container {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 35px;
}

.capability__item {
    max-width: 360px;
    height: 170px;
    display: grid;
    align-items: center;
    border: 1px solid #FFFFFF;
}

.capability p {
    margin: 0 auto;
    max-width: 776px; 
}

.capability__text {
    padding-left: 15px;
    padding-right: 15px;
}
/* //CAPABILITY */

/* BUY */
.buy {
    text-align: center;
}

.buy a {
    margin: 40px auto 0 auto;
}

.buy a.dark-btn:hover {
    border: 1px solid #272D3A;
}
/* //BUY */

/* COMMAND */
.command {
    position: relative;
    text-align: center;
}

.command::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background: #fff;
    z-index: -1;
}

.command p {
    text-align: left;
}

.command__outer {
    margin: 40px 0;
}

.command__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}

.command__item {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 59px 1fr;
}

.command__item a {
    color: #272D3A;
}

.item-num {
    width: 45px;
    height: 48px;
    background: #272D3A;
    font-size: 24px;
    line-height: 48px;
    color: #fff;
    border-top: 14px solid #FFFFFF;
    border-right: 14px solid #FFFFFF;
    box-sizing: content-box;
}

.command__item p {
    padding: 20px;
    height: min-content;
    background-color: #F7F7F7;
}

.command__text p {
    margin-top: 30px;
}
/* //COMMAND */

/* NEED 3 */
.need-3::before {
    background: #F7F7F7;
}

.need-3 .need__tittle {
    top: -45px;
    height: calc(100% + 45px);
}
/* //NEED 3 */

/* CALCULATOR 3 */
.calc-2 a {
    margin-top: 40px;
}

.calc-2 .img__wrap p {
    margin-top: 30px;
    text-align: center;
}
/* //CALCULATOR 3 */

/* TRY */
.try {
    position: relative;
    text-align: center;
}

.try::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background: #828690;
    z-index: -1;
}

.try .container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 60px;
}

.try p {
    text-align: left;
}
/* //TRY */

/* BUY 2 */
.capability.buy-2 .h3 {
    margin-bottom: 60px;
}

.capability.buy-2 p {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
}

.capability.buy-2 .container {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
}

.buy-2 .capability__item {
    max-width: 265px;
    height: 170px;
    background: #272D3A;
    display: grid;
}

.buy-2 .capability__item a,
.buy-2 .capability__item.not-active span {
    padding: 25px 0;
    display: block;
    width: 100%;
}

.buy-2 .capability__item:not(.not-active):hover {
    background: #828690;
}

.not-active {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: default;
}

.not-active span {
    opacity: 0.3;
}

.not-active span.soon {
    position: absolute;
    color: #fff;
    opacity: 1;
}

/* .capability__item.not-active::before {
    content: 'Скоро...';
    position: absolute;
    left: 40%;
    color: #fff;
    opacity: 1;
} */

.capability.buy-2 .italic-text {
    max-width: 100%;
    color: #fff;
}
/* //BUY 2 */

/* FOOTER */
.footer {
    padding: 80px 0;
    text-align: center;
}

.footer__icon {
    margin: 30px 0;
}

.footer__icon a {
    margin: 0 8px;
    display: inline-block;
}

.icon__social-1,
.icon__social-2 {
    padding: 8px 5px;
    background-color: #fff;
    border-radius: 2px;
}

.icon__social-2 {
    padding: 9px 8px;
}

.policy {
    max-width: 650px;
    margin: 0 auto;
}
/* //FOOTER */

/* === === === === === === */

/* instruction.html */
/* INDICATOR */
.indicator.light-bg {
    position: relative;
    text-align: center;
    z-index: 0;
}

.indicator__table,
.button__table {
    margin-top: 50px;
    margin-bottom: 80px;
    text-align: left;
    border-collapse: collapse;
}

.indicator__table thead,
.button__table thead {
    border-bottom: 2px solid #272D3A;
}

.indicator__table thead .table__cell-1,
.indicator__table thead .table__cell-2,
.button__table thead .table__cell-1,
.button__table thead .table__cell-2 {
    padding-bottom: 20px;
}

.indicator__table tbody .table__string,
.button__table tbody .table__string {
    border-bottom: 1px solid #828690;
}

.table__string {
    display: block;
}

.table__cell-1,
.table__cell-2 {
    padding: 40px 0;
    vertical-align: top;
}

th.table__cell-1 {
    background-color: #fff;
}

.table__cell-1 {
    width: 165px;
    text-align: center;
    background-color: #F7F7F7;
}

.table__cell-2 {
    padding-left: 30px;
    padding-right: 20px;
}

.table__cell-2 p:not(:last-child) {
    margin-bottom: 30px;
}

.table__cell-2 ul,
.commands .command ul {
    list-style-type: none;
}

.table__cell-2 ul li::before,
.commands .command ul li::before {
    content: "\2BC0";
    margin-right: 15px;
    font-size: 20px;
    color: #272D3A;
}

.mode-grey {
    display: inline-block;
    padding: 0 10px;
    height: 30px;
    font-family: 'Fira Sans Condensed', sans-serif;
    color: #E5E5E5;
    font-weight: 600;
    text-transform: uppercase;
    background: #545454;
    border: 1px solid #1E1E1E;
    border-radius: 3px;
}

.space-bar {
    padding: 1px 30px;
}

.table-img {
    margin: 20px 0 40px 0;
}

.lamp-green,
.lamp-yellow,
.lamp-blue,
.lamp-black,
.lamp-red {
    padding: 0 5px 0 25px;
    display: inline-block;
    height: 30px;
    position: relative;
    font-family: 'Fira Sans Condensed', sans-serif;
    color: #828690;
    font-weight: normal;
    text-transform: uppercase;
    background: #FAFAFA;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
}

.lamp-green::before,
.lamp-yellow::before,
.lamp-blue::before,
.lamp-black::before,
.lamp-red::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 6px;
    left: 5px;
    background: #5FFF37;
    border: 2px solid rgba(26, 26, 27, 0.5);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 100%;
}

.lamp-green::before {
    background: #5FFF37;
}

.lamp-yellow::before {
    background: #FDFC7C;
}

.lamp-blue::before {
    background: #3D87F7;
}

.lamp-black::before {
    background: #1A1A1B;
}

.lamp-red::before {
    background: #f52e2e;
}
/* //INDICATOR */

/* DOWNLOAD */
.download {
    position: relative;
    text-align: center;
    z-index: 0;
}

.download p {
    margin: 60px 0 30px 0;
}

.download .dark-btn {
    display: inline-block;
    margin: 30px 15px 0 15px;
    border: 1px solid transparent;
}

.download button.dark-btn:hover,
.download a.dark-btn:hover {
    border: 1px solid #272D3A;
}
/* //DOWNLOAD */

/* === === === === === === */

/* commands.html */
/* COMMAND */
.commands .command ul {
    text-align: left;
}
/* COMMAND */

/* REGISTERS */
.registers {
    padding-top: 0;
}

.registers strong {
    color: #272D3A;
}
/* // REGISTERS */

/* SYSTEM */
.system.light-bg {
    padding-top: 0;
    position: relative;
    text-align: center;
    z-index: 0;
}

.system p {
    margin-top: 60px;
    text-align: left;
}

.system__table {
    margin-top: 50px;
    text-align: left;
    border-collapse: collapse;
}

.grey-bg {
    background-color: #F7F7F7;
}

.system__table th,
.system__table td {
    padding: 20px;
}

.system__table strong {
    color: #272D3A;
}

.string-border {
    border-bottom: 1px solid #828690;
}
/* //SYSTEM */

.notvis {
    display: none;
}


/* Scroll To Top */
.back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    bottom: 50px;
    right: 15px;
    background-color: #828690;
    color: #272D3A;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
    border: 1px solid #000;
}

.back2Top:hover {
    background-color: #272D3A;
    color: #fff;
}