*{
    padding: 0;
    margin: 0;
    border: 0;
}
*,*:before,*::after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0; border: 0;}
a,a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size: inherit; font-weight: 400; text-align: center;}

:root {
    --index: calc(1vh + 1vw);
    --main-color: rgb(255, 199, 0);
}

@font-face {
    font-family: Roboto-light;
    src: url('../fonts/Roboto-Light.eot'),
         url('../fonts/Roboto-Light.woff'),
         url('../fonts/Roboto-Light.ttf');
}

@font-face {
    font-family: PTserif;
    src: url('../fonts/PTF55F.ttf');
}
@font-face {
    font-family: Yeseva;
    src: url('../fonts/YesevaOne-Regular.ttf')
}

body {
    position: relative;
    background-color: rgb(24, 24, 24);
}

h1, h2, h3, h4, h5 {
    color: white;
}

.subtitle {
    font-family: PTserif;
}
.title {
    font-family: Yeseva;
}
.description {
    font-family: PTserif;
    font-size: 24px;
    letter-spacing: 1px;

}
.button {
    display: block;
    width: 280px;
    height: 52px;
    border-radius: 26px;
    margin: 0 auto;
    font-family: PTserif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 52px;
    font-size: 24px;
    color: black;
    box-shadow: 0px 4px 10px grey inset;
}

.menu {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    padding: 19.5vh 0 0 4vh;
    background-color: rgb(24, 24, 24);
    font-family: Roboto-light;
    font-weight: 300;
    font-size: 32px;
    color: white;
    transition: all .6s ease;
    overflow: hidden;
    z-index: 10;
}
.menu.active {
    transform: translateX(100%);
}   

.menu__nav ul li {
    line-height: 1.2;
    cursor: pointer;
    display: block;
    width: fit-content;
    text-transform: uppercase;
}
.menu__nav ul li:not(:first-child) {
    margin-top: 40px;
}
.menu__nav ul li a {
    text-decoration: none;
    color: white;
}
.menu__nav ul li a:hover {
    color: rgb(244, 206, 12);
}
.cross {
    width: 36px;
    height: 32px;
    position: absolute;
    display: flex;
    align-items: center;
    top: calc(var(--index) * 1.6);
    right: calc(var(--index) * 1.6);
    cursor: pointer;
}
.cross__line {
    position: absolute;
    width: 40px;
    height: 5px;
    background-color: var(--main-color);
}
.cross__line:first-of-type {
    transform: rotate(45deg);
}
.cross__line:last-of-type {
    transform: rotate(315deg);
}

.header{
    width: 100%;
    height: 60px;
    background-color: rgb(39, 39, 39);
    display: flex;
}
.header__title {
    flex-grow: 1;
}
.header__title__wrap {
    display: flex;
    height: 100%;
    width: 100%;
}
.header__img {
    height: 100%;
    margin: 0 40px;
    img {
        height: 100%;
    }
}
.header__label {
    align-self: center;
    h2 {
        font-size: 16px;
        color: var(--main-color);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}
.hamburger {
    width: 30px;
    height: 20px;
    margin: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger__line {
    width: 100%;
    height: 4px;
    background-color: rgb(105, 105, 105);
}

.slogan {
    width: 100%;
    min-height: calc(100vh - 60px);
    padding: 4vh 0;
    background: url('../img/background_space.jpg');
}
.slogan {
    display: flex;
    justify-content: center;
    align-items: center;
}
.slogan__wrap {
    width: fit-content;
    height: fit-content;
    padding: 4,8vh 0;
}
.slogan__subtitle {
    font-size: 24px;
    letter-spacing: 1px;
}
.slogan__title {
    width: min-content;
    margin: 4vh auto 0;
    font-size: 48px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--main-color);
}
.slogan__img {
    display: flex;
    justify-content: center;
    align-items: center;
    img {
        height: 100%;
    }
}
.slogan__button {
    background: var(--main-color);
    margin-top: 2vh;
}
.slogan__description {
    max-width: 400px;
    line-height: 1.2;
} 
.slogan__description_top {
    margin: 4vh auto 0;
    color: var(--main-color);
}
.slogan__link {
    display: block;
    width: 20px;
    height: 20px;
    margin: 3vh auto 0;
    a {
        width: 100%;
        height: 100%;
        img {
            width: 100%;
            height: 100%;
        }
    }
}
.slogan__link__label {
    color: white;
    font-family: PTserif;
    font-size: 16px;
    text-align: center;
    margin-top: 1vh;
    letter-spacing: 1px;
}.quotation {
    width: 100%;
    height: 60vh;
    min-height: 340px;
    background:  url("../img/Rectangle_1.png") center no-repeat;
    background-size: cover;
    position: relative;
}
.quotation__wrap {
    width: 420px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Yeseva;
    color: white;
    text-align: center;
}
.quotation__sheet_middle, .quotation__sheet_top {
    width: 100%;
    height: 60vh;
    min-height: 340px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    img {
        width: 100%;
        min-height: 100%;
    }
}
.quotation__description {
    font-size: 26px;
    line-height: 1.4;
    max-width: 386px;
    margin: 2vh auto 0;
}
.quotation__brackets {
    text-align: right;
    height: 32px;
    img {
        height: 100%;
    }
}
.quotation__brackets_top {
    transform: rotate(180deg);
}

.promises {
    padding: 7vh 2vw;
    background: white;
}
.promises__description {
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    span {
        font-weight: bold;
    }
}
.promises__img {
    width: 800px;
    margin: 0 auto;
    height: 620px;
    overflow: hidden;
    img {
        width: 100%;
    }
}
.promises__button {
    background-color: var(--main-color);
}

.final {
    position: relative;
    padding: 7vh 2vw 3vh;
    background: url("../img/background_space.jpg");
    overflow: hidden;
}
.final__description {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
    z-index: 2;
    span {
        font-weight: bold;
    }
}
.final__description_top {
    color: white;
    span {
        color: var(--main-color);
    }
    .span_bold {
        color: white;
    }
}
.final__description_bottom {
    background-color: rgba(243, 243, 242, 0.8);
    padding: 3vh 1.5vw;
    margin-top: 3vh;
    border-radius: 20px;
}
.final__button {
    position: relative;
    background: bottom;
    border: 1px solid white;
    color: white;
    margin-top: 5vh;
    z-index: 2;
}
.final__copy {
    margin-top: 7vh;
    text-align: center;
    font-family: Roboto-light;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    span {
        display: inline-block;
        width: 15px;
        height: 1px;
    }
}
.final__lightning {
    position: absolute;
}
.final__lightning_top {
    top: 0vh;
    right: -120px;
    transform: rotate(33deg);
}
.final__lightning_bottom {
    top: 15vh;
    left: -100px;
    transform: rotate(-33deg);
}

.slider {
    display: none;
    width: 100%;
    min-height: 100vh;
    background: url("../img/background_space.jpg");
    position: absolute;
    top: -100vh;
    left: 0;
}
.slider.active {
    display: block;
    animation: show_slider 0.6s ease forwards;
}
@keyframes show_slider {0% {top:-100vh}100% {top:0vh}}
.slider__shade {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(13, 12, 17, 0.73);
}
.slider__progress {
    width: 400px;
    height: 11px;
    margin: 3vh auto;
    background-color: #959597;
    border-radius: 5px;
}
.slider__progress_front {
    width: 0%;
    height: 100%;
    border-radius: 5px;
    background-color: #3BDE7C;
    transition: all .2s ease;
}
.slider__wrap {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.slider__window {
    position: relative;
    height: 500px;
    width: 320px;
    overflow: hidden;
}
.slider__tape {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}
.slider__button {
    margin: 4vh auto;
    color: rgb(142, 142, 142);
}
.slider__button.active  {
    background-color: var(--main-color);
    color: black;
}
.slide {
    height: fit-content;
    width: 320px;
    color: white;
}
.slide__title {
    max-width: 90%;
    margin: 0 auto;
    font-family: PTserif;
    font-size: 22px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 1px;
}
.slide__subtitle_list {
    margin: 2vh 0;
    font-family: PTserif;
    font-size: 18px;
    text-align: center;
    li {
        margin: 0 3vw;
    }
}
.slide__list {
    font-size: 18px;
    font-family: PTserif;
    letter-spacing: 1.2px;
}
.slide__list_list, .slide__list_img  {
    margin-top: 3vh;
    display: grid;
    grid-template: auto / 1fr;
    gap: 10px;
    li {
        position: relative;
        width: 100%;
        background-color: rgba(242, 243, 243, .2);
        min-height: 50px;
        padding: 10px 10px 10px 25%;
        display: flex;
        align-items: center;
    }
    li:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 35px;
        width: 18px;
        height: 18px;
        border: 1px solid white;
        border-radius: 50%;
    }
}
.li {
    cursor: pointer;
}
.li-list.active {
    background-color: var(--main-color);
    color: black; 
}
.li-list.active::before {
    background-color: rgb(41, 80, 194);
    border: 1px solid black;
}

.li-color.active {
    border: 6px solid var(--main-color);
}
.slide__list_color {
    margin: 4vh auto;
    width: fit-content;
    display: grid;
    grid-template: 75px 75px 75px / 75px 75px 75px;
    gap: 24px;
    font-size: 0px;
}
.slide__img_img, .slide__img_number {
    display: block;
    max-height: 235px;
    margin: 3vh auto 4vh;
}
.slide__list_number {
    display: flex;
    justify-content: space-between;
    width: 85%;
    margin: 4vh auto;
    li {
        width: 41px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: white;
        color: black;
    }
}
.slide__img_img { 
    max-height: 120px;
}

.processing {
    display: none;
    min-height: 100vh;
    background: url("../img/background_space.jpg");
}
.processing__progress_front {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: #3BDE7C;
}
.processing__title {
    margin: 10vh auto 5vh;
    font-size: 24px;
    font-family: PTserif;
    width: min-content;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1.5px;
}
.processing__img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 4vh auto;
}
.processing__subtitle {
    margin: 6vh auto;
    font-size: 20px;
    font-family: PTserif;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1px;
}

.result {
    display: none;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: url("../img/background_space.jpg");
}
.result__wrap {
    max-width: 400px;
    margin: 0 auto;
}
.result__header {
    position: relative;
    z-index: 5;
}
.result__header__label {
    h2 {
        font-family: Yeseva;
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 2px;
        margin-left: 24px;
    }
}
.result__title {
    margin: 3vh auto 0;
    font-family: PTserif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.result__description {
    margin: 2vh auto 0;
    font-family: PTserif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
    span {
        font-weight: 700;
    }
}
.result__command {
    margin: 10vh auto 0;
    font-family: PTserif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(59, 222, 124);
}
.result__security {
    margin: 2vh auto 0;
    width: 80%;
    padding: 15px;
    font-family: Roboto-light;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #1C2741;
    border-radius: 8px;
}
.result__calling {
    height: fit-content;
    width: 100%;
}
.result__timer {
    position: relative;
    width: 80%;
    margin: 2vh auto 0;
    font-family: PTserif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 1.4px;
    color: rgb(59, 222, 124);
    z-index: 5;
    span {
        font-size: 24px;
    }
}
.result__call {
    position: relative;
    margin: 2vh auto 0;
    padding: 20px 10px 20px 15px; 
    background-color: #EB1B00;
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 90%;
    border-radius: 8px;
    cursor: pointer;
    z-index: 5;
    a {
        text-decoration: none;
        font-family: Roboto-light;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 1.5px;
        color: white;
    }
}
.result__button-block {
    display: none;
    position: relative;
    height: fit-content;
    width: 100%;
    z-index: 5;
}
.result__button {
    margin: 3vh auto 0;
}
.result__lightning_top {
    top: 50vh;
    right: -180px;
}
.result__lightning_bottom {
    top: 40vh;
    left: -160px;
}
.footer {
    position: relative;
    margin: 36vh auto 0;
    max-width: 90%;
    max-height: 32px;
    overflow: auto;
      -ms-overflow-style: none;
       scrollbar-width: none;
        scroll-behavior: smooth;
        z-index: 5;
    p {
        font-family: Roboto-light;
        font-weight: 400;
        font-size: 10px;
        line-height: 1.2;
        letter-spacing: 3px;
        text-align: center;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
    }
}
.footer::-webkit-scrollbar {
    width: 0;
    height: 0;
}

@media (max-width: 1199px) {
  
}

@media (max-width: 991px) {
    .menu__nav ul li:not(:first-child) {
        margin-top: 30px;
    }
    .slogan__subtitle {
        font-size: 20px;
    }
    .slogan__title {
        font-size: 40px;
    }
    .slogan__description {
        font-size: 20px;
    }
    .promises__description {
        max-width: 700px;
        font-size: 22px;
    }
    .promises__img {
        width: 700px;
        height: 570px;
    }
    .final__description {
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .slogan__title {
        font-size: 36px;
    }
    .promises__description {
        max-width: 540px;
        font-size: 20px;
    }
    .promises__img {
        width: 540px;
        height: 420px;
    }
    .final__description {
        max-width: 540px;
        font-size: 20px;
    }
    .final__copy {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .button {
        width: 190px;
        height: 40px;
        border-radius: 20px;
        letter-spacing: 1.2px;
        line-height: 40px;
        font-size: 16px;
    }
    .menu {
        font-size: 16px;
    }
    .menu__nav ul li:not(:first-child) {
        margin-top: 27px;
    }
    .cross {
        width: 30px;
        height: 28px;
    }
    .cross__line {
        width: 30px;
        height: 4px;
    }
    .header {
        height: 46px;
    }
    .header__img {
        margin: 0 10px 0 15px;
    }
    .header__label {
        h2 {
            font-size: 12px;
        }
    }
    .hamburger {
        width: 24px;
        height: 17px;
        margin: 14px 15px;
    }
    .hamburger__line {
        height: 3px;
    }
    .slogan {
        min-height: calc(100vh - 46px);
    }
    .slogan__wrap {
        padding: 1vh 0;
    }
    .slogan__subtitle {
        font-size: 15px;
    }
    .slogan__description {
        font-size: 15px;
    }
    .slogan__title {
        margin: 2vh auto 0;
        font-size: 30px;
    }
    .slogan__button {
        background: var(--main-color);
        margin-top: 1vh;
    }
    .slogan__description {
        max-width: 286px;
    } 
    .slogan__description_top {
        margin: 2vh auto 0;
        color: var(--main-color);
    }
    .slogan__link {
        width: 16px;
        height: 16px;
        margin: 1.5vh auto 0;
    }
    .slogan__link__label {
        font-size: 10px;
    }
    .slogan__img {
        height: 150px;
        width: 150px;
        margin: 0 auto;
    }
    .quotation__wrap {
        width: 300px;
    }
    .quotation__description {
        font-size: 18px;
        line-height: 1.2;
        max-width: 248px;
        margin: 2vh auto 0;
    }
    .quotation__brackets {
        height: 24px;
    }
    .promises__description {
        max-width: 290px;
        font-size: 16px;
    }
    .promises__img {
        width: 232px;
        height: 200px;
    }
    .final {
        padding: 7vh 3vw 3vh;
    }
    .final__description {
        max-width: 300px;
        line-height: 1.2;
    }
    .final__description_bottom {
        background-color: rgba(243, 243, 242, 0.8);
        padding: 4vh 2vw;
    }
    .final__copy {
        margin-top: 8vh;
        font-size: 12px;
        span {
            width: 8px;
        }
    }
    .final__lightning {
        width: 165px;
        height: 165px;
        img {
            width: 100%;
            height: 100%;
        }
    }
    .final__lightning_top {
        top: 16vh;
        right: -44px;
    }
    .final__lightning_bottom {
        top: 56vh;
        left: -42px;
        transform: rotate(-33deg);
    }
    .slider__progress {
        margin: 2.5vh auto;
        width: 90%;
    }
    .slider__window {
        height: 410px;
    }
    .slider__button {
        margin: 2vh auto 4vh;
    }
    .slide__title {
        font-size: 18px;
        line-height: 1.1;
    }

    .processing__title {
        font-size: 20px;
    }
    .processing__img {
        display: block;
        width: 80px;
        height: 80px;
        margin: 3vh auto;
    }
    .processing__subtitle {
        margin: 4vh auto;
        font-size: 16px;
    }
    .result__header__label {
        h2 {
            font-size: 20px;
            margin-left: 18px;
        }
    }
    .result__wrap {
        max-width: 320px;
    }
    .result__title {
        font-size: 16px;
    }
    .result__description {
        font-size: 14px;
    }
    .result__command {
        font-size: 18px;
    }
    .result__security {
        font-size: 8px;
    }
    .result__timer {
        font-size: 11px;
        span {
            font-size: 18px;
        }
    }
    .result__call {
        h4 {
            font-size: 15px;
        }
    }
    .result__button-block {
        display: none;
        position: relative;
        height: fit-content;
        width: 100%;
        z-index: 5;
    }
    .result__button {
        margin: 3vh auto 0;
    }
    .result__lightning_top {
        top: 63vh;
        right: -87px;
    }
    .result__lightning_bottom {
        top: 70vh;
        left: -70px;
    }
}