* {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    box-shadow: none;
}

.header-overlay {
    display: none;
}

body {
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 100000;
    transition: all .5s ease-in;
    opacity: 0;
}

body:not(.loaded):not(.loading)::after {
    opacity: 1;
}

body.loaded::after {
    display: none;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

input[type='text'], input[type='url'], input[type='email'], input[type='phone'], select {
    height: 60px;
    font-size: 16px;
    line-height: 1.33;
    border-bottom: 1px solid #b3b3b3;
    width: 100%;
}

.flex-justify {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-right-center {
    display: flex;
    align-items: center;
    justify-content: right;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

#header {
    padding: 18px 0;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: rgb(0 0 0 / 80%) 0px 1px 3px;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
    z-index: 5000;
    transition: all .3s ease-in;
}

@media (min-width: 1060px) {
    #header.active {
        transform: translateY(0);
    }

    #header {
        transform: translateY(-110%);
    }
}

.head {
    padding: 0 40px;
    color: white;
    font-weight: 600;
}

.head > *:nth-child(1){
    min-width: 305px;
}

.head > *:nth-child(2){
    width: 100%;
}

.head > *:nth-child(3){
    min-width: 305px;
}

.logo img {
    height: 80px;
    width: auto;
}

.typing-text {
    color: #c4262e;
}

nav ul {
    list-style-type: none;
}

nav li {
    display: inline-block;
    padding: 0 15px;
}

nav a {
    position: relative;
    line-height: 40px;
    color: white;
    transition: all .3s ease-in-out;
}

nav a.active {
    color: #c4262e;
    opacity: .7;
}

nav a:hover {
    cursor: pointer;
}

nav a::after {
    content: "";
    top: 100%;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: all .3s ease;
    width: 100%;
    border-bottom: 2px solid #c4262e;
    transform: translateY(-8px);
}

nav a:not(.active):hover::after, nav a.active::after {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    color: #ffffff;
    background-color: #c4262e;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 700;
	user-select: none;
}

.btn-large {
    padding: 21px 60px;
    font-size: 16px;
}

.btn-medium {
    padding: 14px 30px;
}

.btn-gray {
    background-color: #cbcbcb;
}

.btn.flash {
    position: relative;
    overflow: hidden;
}

@keyframes flash {
    20% {
        left: 130%;
    }
    to {
        left: 130%;
    }
}

@keyframes flash-md {
    30% {
        left: 110%;
    }
    to {
        left: 110%;
    }
}

.btn.flash::after {
    content: "";
    position: absolute;
    left: -30%;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .4));
    animation-name: flash;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.btn.flash-md::after{
    animation-name: flash-md;
}

.lang {
    margin: 0 10px;
    color: #fff;
}
header .btn {
    margin-right: 30px;
    min-width: 200px;
}
.home {
    background-image: url('../images/home-background.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.home::after {
    content: "";
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.90), rgba(0,0,0,0.30));
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.home div {
    z-index: 2;
    padding-left: 20px;
}

.home div * {
    width: 70%;
}

button.btn {
    width: fit-content;
}

h1 {
    color: white;
    font-size: 52px;
    padding: 24px 0 38px 0;
}

.home p {
    color: #afafaf;
    font-size: 22px;
    line-height: 1.55;
    font-weight: 300;
    padding-bottom: 30px;
}

.home a {
    margin-top: 45px;
    display: inline-block;
    width: fit-content;
}

@keyframes main-arrow-animation {
    0%{
        transform:translateY(0)
    }
    50% {
        transform:translateY(-7px)
    }
    55% {
        transform:translateY(-7px)
    }
    100%{
        -moz-transform:translateY(0);
        -ms-transform:translateY(0);
        -webkit-transform:translateY(0);
        -o-transform:translateY(0);
        transform:translateY(0);
    }
}

.main-arrow {
    position: absolute;
    left: calc(50% - 19px);
    bottom: 37px;
    animation: main-arrow-animation 1.7s infinite ease;
}

.main-arrow a {
    cursor: pointer;
}

.main-arrow svg {
    width: 100%;
}

.half {
    width: 47%;
}

h2 {
    text-align: center;
    font-size: 52px;
    padding: 80px 0;
}

#advertisement ul {
    font-weight: 700;
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 15px;
    line-height: 1.55;
    padding-left: 20px;
}

#advertisement p {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
}

#advertisement {
    position: relative;
}

#advertisement .wrap {
    padding: 0 20px;
}

.image div {
    background-size: cover;
    width: 100%;
    height: 100%;
}

.image {    
    width: calc(50vw - 16px);
    height: calc(100% - 220px);
    position: absolute;
    overflow: hidden;
    right: 0;
}

.image img {
    display: none;
}

#choice {
    position: relative;
}

#choice .wrap {
    padding-bottom: 120px;
}
#choice .image img {
    display: initial;
    width: initial;
    max-width: 100%;
    max-height: 100%;
}

/*#advertisement .image {
    transform: translateX(25px);
}*/

.services {
    display: flex;
    align-items: stretch;
}

.services > * {
    width: 25%;
}

.service {
    text-align: center;
    border: 4px solid #c4262e;
    border-radius: 9px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    padding-bottom: 59px;
}

.service ul {
    list-style-type: none;
}

.service-box {
    padding: 15px 20px;
}

.service-box.active {
    padding: 0 10px;
}

.service-box.active .service {
    padding-top: 56px;
}

.service-box.active button {
    bottom: 56px;
}

.service-box.active .service {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0);
}

.service-title {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    padding-bottom: 10px;
}

.cost-description {
    color: #777;
    font-size: 14px;
    line-height: 1.55;
    padding-bottom: 30px;
}

.old-cost {
    font-size: 20px;
    font-weight: 600;
    color: rgb(255, 0, 0);
    text-decoration: line-through;
    padding-bottom: 25px;
}

.cost {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 25px;
}

.service li {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    padding-bottom: 20px;
}

.service ul {
    padding-bottom: 60px;
}

.service button {
    margin-top: 20px;
    position: absolute;
    bottom: 40px;
    transform: translateX(-50%);
}

.benefits {
    display: grid;
    grid-template-columns: 50px 1fr;
    width: 40%;
}

.benefits p {
    padding-left: 20px;
    padding-bottom: 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
}

#prices .wrap{
    padding: 0;
}

.team-description {
    padding: 0 130px 50px 130px;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.45;
}

.members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.members > * {
    width: calc(33.3% - 26.6px);
    margin-bottom: 40px;
}

.member {
    position: relative;
    overflow: hidden;
    max-height: 500px;
    font-size: 0;
}

.details {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 40px);
    bottom: 50px;
    text-align: center;
    color: white;
    transition: all .45s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.details .name {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
    padding-bottom: 7px;
}

.details .role {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 300;
}

.member a::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: all .45s ease-in-out;
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.0), rgba(0,0,0,0.70));
}

.member:hover a::after{
    opacity: 1;
}

.member:hover .details{
    opacity: 1;
    transform: translate(-50%, 0);
}

.member img {
    transition: all .45s ease-in-out;
}

.member:hover img {
    transform: scale(1.05);
}

.member a {
    display: block;
}

.dots {
    width: 1046px;
    position: absolute;
    left: 63px;
    top: 234px;
}

#stages h2 {
    font-size: 42px;
    line-height: 1.55;
    font-weight: 700;
}

#stages .wrap {
    position: relative;
}

.stages {
    display: flex;
    text-align: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 76%;
    margin-left: 114px;
    padding-bottom: 80px;
}

.stages > * {
    width: 33%;
}

.stages img {
    width: 100px;
    display: block;
    margin: 0 auto;
}

.stages .stage-title {
    line-height: 1.55;
    font-weight: 700;
    font-size: 16px;
    padding: 35px 0 14px 0;
}

.stages .stage-description {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}

.stages>div:nth-child(1)
{
    margin-bottom: 327px;
}

.stages>div:nth-child(2) 
{
    transform: translateX(17px);
}

.stages>div:nth-child(3)
{
    transform: translateX(-14px);
}

.stages>div:nth-child(4)
{
    transform: translateX(-3px);
}

.stages>div:nth-child(6)
{
    transform: translateX(-4px);
}

#scroll {
    background-image: url('../images/3.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 170vh;
    position: relative;
}

#scroll .wrap {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

#scroll .content {
    width: calc(50% - 20px);
    background-color: black;
    color: white;
    padding: 20px 20px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.55;
    margin-left: auto;
}

.idea {
    border-top: 1px solid #eee;
}

.idea:last-child {
    border-bottom: 1px solid #eee;
}

#header .close {
    display: none;
}

.idea-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 27px 0;
}

.idea-header p {
    font-weight: 700;
    font-size: 24px;
    display: table-cell;
    vertical-align: middle;
    padding-top: 8px;
}

.idea-header div {
    background-color: rgba(238, 238, 238, 0);
    border-radius: 100px;
    transition: all .3s ease-in-out;
    padding: 9px;
    font-size: 0;
}

.idea-header:hover div {
    background-color: rgb(238, 238, 238);
}

.idea-header svg {
    transition: all .3s ease-in-out;
    width: 22px;
    height: 22px;
}

.idea.opened svg {
    transform: rotate(-45deg);
}

.idea-content-wrapper {
    height: 0;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.idea-content-wrap {
    padding-bottom: 14px;
}

.idea-content-wrap p {
    font-size: 18px;
    line-height: 1.55;
    font-family: 'Roboto',Arial,sans-serif;
    font-weight: 300;
    padding-bottom: 26px;
}
.idea-content-wrap strong {
    line-height: 1.55;
    font-weight: 700;
    font-size: 20px;
}
#idea.wrap, .form-wrapper.wrap {
    width: 860px;
}

.form-wrapper {
    padding-top: 210px;
    padding-bottom: 120px;
}

.form-wrapper .header > div {
    height: 100px;
    padding: 0 45px 0 45px;
    display: flex;
    align-items: center;
    background-color: #ececec;
}

.form-wrapper .pages {
    margin-left: auto;
    font-size: 14px;
    line-height: 1.55;
    padding-top: 3px;
    font-weight: 600;
    font-family: 'Roboto',Arial,sans-serif;
}

.form-wrapper .st61 {
    stroke: #c4262e;
}

.form-wrapper .st61 {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.form-wrapper svg {
    width: 23px;
    height: 20px;
    padding-right: 5px;
}

.form-wrapper .header .title {
    color: rgb(196, 38, 46);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
}

.form-wrapper .progress-bar-box {
    width: 100%;
    height: 5px;
    background-color: #cbcbcb;
    position: relative;
}

.form-wrapper .progress-bar{
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: rgb(196, 38, 46);
    transition: all .3s ease;
}
.form-wrapper form {
    padding: 35px 45px 40px 45px;
}

.form-wrapper .btn {
    width: fit-content;
}

.form-wrap {
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

.form-wrapper .buttons {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
}

.form-wrapper .inputsbox {
    margin-bottom: 30px;
}

.form-wrapper form .title {
    padding-bottom: 10px;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 400;
}

.form-wrapper form .description {
    font-size: 14px;
    line-height: 1.55;
    opacity: .7;
    font-weight: 300;
}

.form-wrapper .buttons .btn:not(.current) {
    display: none;
}

.platforms {
    padding-top: 20px;
}

.platforms > * {
    width: calc(25% - 8px);
}

.platforms img {
    width: auto;
    height: 137px;
}

.platforms label:nth-child(3) img, .platforms label:nth-child(4) img {
    transform: translateX(-15px);
}

.platforms div {
    border-radius: 5px;
    overflow: hidden;
    font-size: 0;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%);
}

.platforms label{
    position: relative;
    cursor: pointer;
}

.platforms input {
    position: absolute;
    transform: scale(0);
}

.platforms .mark::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 76.887 55.552'%3E%3Cpath fill='%23FFFFFF' d='M34.373 49.541L76.887 5.889 70.739 0 28.426 43.458 6.078 20.632 0 26.585l22.488 22.972 6.029 5.995-.091-.085.091.085 5.856-6.011z'/%3E%3C/svg%3E");
    position: absolute;
    top: -7px;
    left: -7px;
    border-radius: 100%;
    color: #fff;
    width: 30px;
    height: 30px;
    background-color: #c4262e;
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    transform: scale(0.5);
    opacity: 0;
    transition: all .2s ease-in;
    z-index: 1;
}

.platforms input:checked + .mark::after {
    transform: scale(1);
    opacity: 1;
}

.platforms p {
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 10px;
    line-height: 1.1;
}

.form-wrapper .inputsbox > div:not(.current) {
    display: none;
}

.form-wrapper .site label {
    display: block;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: 0;
}

.form-wrapper .site input {
    transform: scale(0);
    position: absolute;
}

.form-wrapper .site .radio-indicator {
    display: inline-block;
    border: 2px solid #c4262e; 
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: relative;
}

.form-wrapper .site input:checked + .radio-indicator:after{
    opacity: 1;
}

.form-wrapper .site .radio-indicator:after {
    background: #c4262e;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    opacity: 0;
}

.form-wrapper .site span {
    font-size: 15px;
    line-height: 1.55;
    transform: translateY(-4px);
    display: inline-block;
    padding-left: 5px;
}

.range-box{
    position: relative;
}

.form-wrapper .range-value {
    position: absolute;
    top: 20px;
    padding: 8px 10px;
    left: 50%;
    transform: translateX(calc(-50%));
    box-shadow: 0 1px 8px 0 rgb(0 0 0 / 20%);
}

.form-wrapper .input-range, .form-wrapper input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    margin-top: 50px;
    border: none;
    width: 100%;
    height: 2px;
    cursor: pointer;
    outline: none;
    margin-top: 70px;
    padding: 0;
    background-color: #c0c0c0;
}

.form-wrapper input[type='range']::-webkit-slider-thumb, .form-wrapper .input-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border-radius: 50%;
    height: 22px;
    width: 22px;
    background: #c4262e;
    position: relative;
}

.form-wrapper input[type="range"]::-moz-range-progress, .form-wrapper .input-range::-moz-range-progress {
    -webkit-appearance: none;
    background-color: #c4262e;
}

.form-wrapper input[type="range"]::-moz-range-track, .form-wrapper .input-range::-moz-range-track {  
    -webkit-appearance: none;
    background-color: #f4f4f4;
}
    
.form-wrapper input[type="range"]::-ms-fill-lower, .form-wrapper .input-range::-ms-fill-lower {
    background-color: #c4262e;
}

.form-wrapper input[type="range"]::-ms-fill-upper, .form-wrapper .input-range::-ms-fill-upper {  
    background-color: #f4f4f4;
}

.contacts input {
    margin-bottom: 30px;
}

.form-wrapper .header > div:not(.active) {
    display: none;
}

.form-wrapper .last-question .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
}

.form-wrapper .header .last-question {
    padding: 26px 45px 27px 45px;
}

.disabled {
    position: relative;
}

.disabled::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}


.inputsbox .max, .inputsbox .min {
    font-weight: 300;
    display: inline-block;
    padding-top: 15px;
    font-size: 14px;
    line-height: 1.55;
}

.inputsbox .max {
    float: right;
}

.btn.back{
    position: relative;
    padding-left: 45px;
}

.btn.back:before {
    content: "→";
    position: absolute;
    left: 20px;
    font-size: 18px;
    line-height: 1.05;
    transform: rotate(180deg);
}

.btn.further{
    position: relative;
    padding-right: 45px;
}

.btn.further:before {
    content: "→";
    position: absolute;
    right: 20px;
    font-size: 18px;
    line-height: .8;
}

#contacts {
    padding: 120px 0;
    background-image: url('../images/4.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#contacts .content {
    background-color: white;
    padding: 60px;
    width: 460px;
}

#contacts p {
    text-align: center;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}

#contacts .address {
    padding: 25px 0 25px 0;
}

#contacts .title {
    font-size: 28px;
    line-height: 1.17;
    padding-bottom: 30px;
}

#contacts a {    
    color: #ff8562;
}

#contacts .phone {
    text-align: left;
    padding-top: 30px;
}

#contacts .phone a {
    text-align: left;
    color: black;
    font-weight: 700;
    line-height: 1.55;
}

footer {
    height: 74px;
    background-color: black;
    text-align: center;
    border-top: 4px solid #e5e3df;
}

footer a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

footer img {
    width: 80px;
    margin-top: 22px;
    opacity: .4;
    transition: all .1s ease-in;
}

footer a:hover img {
    opacity: 1;
}

.home-anchor {
    position: fixed;
    bottom: 30px;
    left: 30px;
    border-radius: 53px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    cursor: pointer;
    height: 50px;
    width: 50px;
    transition: all .5s;
}

.home-anchor.hidden {
    transform: scale(.1);
    opacity: 0;
}

.indicator {
    position: fixed;
    left: 0;
    top: 0;
    transition: width .6s ease;
    background: rgb(196, 38, 46);
    height: 4px;
    z-index: 5000;
}

.left-phone {
    position: fixed;
    bottom: 90px;
    z-index: 1000;
    right: 90px;
}

.left-phone .button {
    position: absolute;
    cursor: pointer;
    height: 60px;
    width: 60px;
    transition: all .5s;
    border-radius: 100%;
    background: #c4262e;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
}

@keyframes phone-button-animation {
    0% {
        transform:rotate(0deg) scale(1)
    }
    25% {
        transform:rotate(10deg) scale(1.1)
    }
    50% {
        transform:rotate(0deg) scale(1)
    }
    70%
    {
        -webkit-transform:rotate(-10deg) scale(1.1);
        transform:rotate(-10deg) scale(1.1)
    }
    100%
    {
        -webkit-transform:rotate(0deg) scale(1);
        transform:rotate(0deg) scale(1)
    }
}

.btn-animated:not(:hover) {
    animation: phone-button-animation 2s ease-out;
    animation-iteration-count: infinite;
}

.left-phone.opened .button 
{
    background-color: white;
}

.left-phone .button svg {
    position: absolute;
    transform: scale(.1);
    transition: all 0.2s linear;
}

.left-phone.opened .button svg:nth-child(1) {
    position: absolute;
    transform: scale(.1);
    opacity: 0;
}

.left-phone.opened .button svg:nth-child(2) {
    opacity: 1;
    position: absolute;
    transform: scale(1);
}

.left-phone .button svg:nth-child(1) {
    opacity: 1;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    transform: scale(1);
}

.left-phone .button svg:nth-child(2) {
    opacity: 0;
    left: calc(50% - 8px);
    top: calc(50% - 8px);
    transform: scale(.1);
}

.left-phone .content {
    position: absolute;
    right: -60px;
    top: 0;
    transform: translateY(calc(-100% - 15px));
    padding: 30px 35px 40px;
    border-radius: 5px;
    max-height: 65vh;
    width: 360px;
    text-align: center;
    background-color: white;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 40%);
    opacity: 0;
    transition: all .2s linear;
    display: none;
}

.left-phone.opened .content {
    opacity: 1;
}

.left-phone .title {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 25px;
    font-weight: 600;
}

.left-phone #left-phone {
    border: 1px solid #d1d1d1;
    outline: none;
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    margin-bottom: 10px;
}

.left-phone input[type="submit"] {
    background-color: #c4262e;
    text-transform: uppercase;
    height: 50px;
    padding: 0;
    color: #fff;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
}

.left-phone p:not(.title) {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 300;
}

.left-phone a{
    color: black;
    font-weight: 700;
}

.modal-wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000000;
}

.modal-background {
    content: '';
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.6);
    cursor: pointer;
}

.modal {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.modal .form-wrap {
    background-color: white;
}

.modal.form-wrapper.wrap {
    width: 1200px;
}

.modal .platforms img {
    height: 210px;
}

.modal-wrapper {
    opacity: 0;
    transition: all .3s ease-in-out;
    display: none;
}

.modal-visible .modal-wrapper{
    opacity: 1;
}

.modal-visible, .header-active {
    overflow: hidden;
}

.modal-wrapper .close-button {
    position: absolute;
    right: 20px;
    cursor: pointer;
    top: 20px;
}

#modal-form {
    padding: 0;
}

#modal-form .form-wrap {
    height: 650px;
    transform: translateY(50%) scale(.6);
    transition: all .3s ease-in-out;
}

.modal-visible #modal-form .form-wrap {
    transform: translateY(0) scale(1);
}

#modal-form form {
    height: calc(100% - 101px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.animate {
    transition: all 1s cubic-bezier(.19,1,.22,1);
}

.appear-top:not(.animation-finished) {
    transform: translateY(-100px);
    opacity: 0;
}

.appear-left:not(.animation-finished) {
    transform: translateX(-100px);
    opacity: 0;
}

.appear-bottom:not(.animation-finished) {
    transform: translateY(100px);
    opacity: 0;
}

.appear-right:not(.animation-finished) {
    transform: translateX(100px);
    opacity: 0;
} 

.appear-back:not(.animation-finished) {
    transform: scale(.9);
    opacity: 0;
}

.appear:not(.animation-finished) {
    opacity: 0;
}

.warning {
    padding: 25px;
    text-align: center;
    width: 100%;
    background: #F95D51;
    margin-bottom: 20px;
    color: white;
    display: none;
}

.error .warning {
    display: block;
}

.error input.required.error
{
    border: 1px solid red!important;
    padding-left: 10px;
}

.input-box {
    position: relative;
}

.input-box p {
    position: absolute;
    left: 0;
    bottom: 10px;
    color: #F95D51;
    font-size: 13px;
    display: none;
}

.input-box input.error + p {
    display: block;
}

#modal-form .inputsbox {
    margin-bottom: auto;
}

#modal-form .buttons {
    padding-top: 0;
}

@keyframes blink{
    0% {
        opacity:1
    }
    50% {
        opacity:0
    }
    100% {
        opacity:1
    }
}

.typed-cursor {
    animation: blink 0.7s infinite;
}

.horizontal-dots, .vertical-dots {
    display: none;
}

@media (max-width: 1300px) {
    #contacts .phone {
        padding-top: 22px;
    }
    
    #contacts .title {
        padding-bottom: 25px;
    }
    
    #contacts .address {
        padding: 20px 0 20px 0;
    }

    #header .head > * {
        min-width: 0;
        width: fit-content;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 38px;
        padding: 60px 0;
    }
    
    #contacts .title{
        font-size: 26px;
    }

    .form-wrapper form .title {
        font-size: 24px;
    }

    .idea-header p, .form-wrapper .last-question .title {
        font-size: 22px;
    }

    .home p, .service-title, .details .name {
        font-size: 20px;
    }

    #scroll .content, #contacts p {
        font-size: 16px;
    }

    .service li, .stages .stage-title {
        font-size: 14px;
    }

    .cost-description, .details .role {
        font-size: 12px;
    }

    .member a {
        height: 100%;
    }

    .member img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .members > * {
        width: calc(33.3% - 16.6px);
        margin-bottom: 20px;
    }

    .dots {
        display: none;
    }
    
    .stages {
        width: 100%;
        margin: 0;
    }

    .stages img {
        border: 2px solid #222;
        border-radius: 50%;
    }

    .stages>div:nth-child(1) {
        margin-bottom: 100px;
    }

    .horizontal-dots {
        display: block;
        width: 181px;
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 48px;
        right: -92px;
    }

    .horizontal-dots div {
        background-color: #c4262e;
        width: 4px;
        height: 4px;
        border-radius: 30px;
    }
    
    .vertical-dots {
        display: none;
    }
    
    #stages .stages>div {
        transform: none;
        position: relative;
    }
    
    .service-box {
        padding: 5px 10px;
    }
    
    .service-box.active {
        padding: 0 5px;
    }

    .service-box.active button {
        bottom: 44px;
    }

    .service-box.active .service {
        padding-top: 44px;
    }

    .wrap, #idea.wrap, .form-wrapper.wrap, .modal.form-wrapper.wrap{
        width: 960px;
    }
    
    .platforms img {
        height: 157px;
    }
    
    .platforms label:nth-child(3) img, .platforms label:nth-child(4) img {
        transform: translateX(-20px);
    }

    .service .btn-large {
        padding: 17px 50px;
        font-size: 14px;
    }

    .modal .platforms img {
        height: 166px;
    }

    #modal-form .form-wrap {
        height: 620px;
    }
}

@media (max-width: 1060px) {
    .form-wrapper svg {
        min-width: 29px;
    }

    #modal-form  .platforms {
        flex-wrap: wrap;
    }

    #modal-form .platforms img {
        height: 120px;
    }

    #modal-form .platforms > * {
        width: 152px;
        margin-bottom: 20px;
    }

    .home div *:not(button) {
        width: 100%;
    }

    .image {
        position: unset;
        order: 6;
    }

    .image div {
        background-image: none !important;
    }

    .image img {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .wrap, #idea.wrap, .form-wrapper.wrap{
        width: 640px;
    }

    #main-form {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    #modal-form {
        width: 100%;
        padding: 20px;
    }

    #stages h2 {
        padding-top: 0;
    }

    .stages {
        padding-bottom: 20px;
    }

    #team {
        padding-bottom: 30px;
    }

    #contacts {
        padding: 80px 0;
    }

    #advertisement .wrap, #choice .wrap {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .half {
        width: 100%;
    }

    .image {
        width: 100%;
    }

    #advertisement .half {
        margin-bottom: 40px;
    }

    #prices .wrap {
        padding: 0 15px;
    }

    #scroll .wrap {
        bottom: 80px;
    }

    .image div {
        background-size: 100%;
        background-repeat: no-repeat;
        margin-top: 30px;
    }

    .services{
        flex-wrap: wrap;
    }

    .services > * {
        width: 50%;
    }
    
    .service-box {
        padding: 10px 10px;
    }

    .service-box.active .service {
        padding-top: 50px;
    }

    .service-box.active button {
        bottom: 50px;
    }

    .members > * {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }
    
    .vertical-dots {
        display: block;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: calc(50% - 2px);
        height: 32px;
        margin-top: 20px;
    }

    .vertical-dots div {
        background-color: #c4262e;
        width: 4px;
        height: 4px;
        border-radius: 30px;
    }
    
    .horizontal-dots {
        display: none;
    }

    #choice .wrap {
        padding-bottom: 0;
    }

    .stages {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
    }

    #stages .stages>div {
        margin-bottom: 80px;
    }

    .stages .stage-title {
        padding: 20px 0 10px 0;
    }
    
    .stages > * {
        width: 100%;
    }

    #scroll .content {
        width: 100%;
    }

    .platforms img {
        height: 95px;
    }

    #contacts .content {
        width: 100%;
    }

    #header {
        background-color: #111;
        left: auto;
        right: 0;
        top: 0;
        height: 100vh;
        padding: 48px 40px 38px;
        max-width: 300px;
    }
header .btn {
    margin-right: 0;
}
    .head {
        flex-direction: column;
        height: 100%;
        padding: 0;
    }

    .head .flex-right-center {
        margin-top: auto;
        display: block;
    }

    .head .lang {
        margin-top: 30px;
        display: inline-block;
    }

    .head li {
        padding: 0;
        display: block;
        font-size: 20px;
    }

    body:not(.header-active) .header-overlay
    {
        opacity: 0;
    }

    .header-overlay {
        position: fixed;
        z-index: 1500;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        background-color: #000;
        opacity: .6;
        transition: all .3s ease-in-out;
    }

    body:not(.header-active) #header {
        transform: translateX(105%) !important;
    }

    #header .close {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        width: fit-content;
        cursor: pointer;
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    #header.active + .open-header-btn {
        opacity: 1;
        transform: scale(1);
    }

    #header.active .close {
        opacity: 1;
    }

    .open-header-btn {
        opacity: 0;
        background-color: #000000;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        position: fixed;
        right: 20px;
        z-index: 1000;
        top: 20px;
        padding: 10px;
        cursor: pointer;
        transform: scale(0);
        transition: opacity .3s ease-in-out;
    }

    .open-header-btn div {
        position: relative;
        width: 22px;
        height: 14px;
        margin: 7px auto;
    }

    .open-header-btn span {
        height: 2px;
        display: block;
        position: absolute;
        width: 100%;
        opacity: 1;
        left: 0;
        top: 0;
        background-color: #c4262e;
    }

    .open-header-btn span:nth-child(1)
    {
        top: 0;
    }

    .open-header-btn span:nth-child(2)
    {
        top: 6px;
    }

    .open-header-btn span:nth-child(3)
    {
        top: 12px;
    }
}

@media (max-width: 680px) {
    .modal-background {
        content: '';
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgb(0, 0, 0);
        cursor: pointer;
    }
    
    .wrap, #idea.wrap, .form-wrapper.wrap, .modal.form-wrapper.wrapm, .image {
        width: 100%;
        overflow: hidden;
        padding: 0 40px !important;
    }
    
    #contacts .title {
        padding-bottom: 20px;
    }
    
    #contacts .address {
        padding: 15px 0 15px 0;
    }

    #contacts .phone {
        padding-top: 14px;
    }

    .team-description{
        padding: 0 0 50px 0;
    }
    
    .form-wrapper .header > div {
        padding: 0 20px;
    }

    h1 {
        font-size: 30px;
    }
    
    #contacts .title{
        font-size: 24px;
    }

    .btn.back::before, .btn.further::before {
        display: none;
    }

    .btn.back {
        padding-left: 30px;
    }
    
    .btn.further {
        padding-right: 30px;
    }

    .idea-header p, .form-wrapper form .title {
        font-size: 22px;
    }

    .idea-header p, .form-wrapper .last-question .title {
        font-size: 20px;
    }

    .home p {
        font-size: 18px;
    }

    #scroll .content, #contacts p  {
        font-size: 14px;
    }

    .form-wrapper .site span {
        font-size: 13px;
    }

    .service li, .stages .stage-title{
        font-size: 12px;
    }
    
    #scroll .wrap {
        overflow: hidden;
    }

    .services > * {
        width: 100%;
    }

    #main-form  .platforms {
        flex-wrap: wrap;
    }

    #main-form .platforms > * {
        width: 170px;
        margin-bottom: 20px;
    }

    #main-form .platforms > *:nth-child(2n - 1) {
        margin-right: 10px;
    }

    #main-form .platforms img {
        height: 133px;
    }

    #main-form {
        padding: 80px 40px !important;
    }

    .service-box {
        padding: 10px 0;
    }

    .service-box.active {
        padding: 0 0;
    }
}

@media (max-width: 600px)
{
    .open-header-btn {
        right: 10px;
        top: 10px;
    }

    .members > * {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 520px)
{
    .members > * {
        margin-bottom: 20px;
    }

    .wrap, #idea.wrap, .form-wrapper.wrap, .modal.form-wrapper.wrapm, .image {
        padding: 0 20px !important;
    }
}

@media (max-width: 775px)
{
    #modal-form {
        height: calc(100vh - 60px);
        width: 100%;
        top: 60px;
        transform: none;
        left: 0;
        padding: 0 !important;
        overflow-y: auto;
    }

    #modal-form .form-wrap {
        height: 100%;
    }

    #modal-form label {
        margin: 5px 5px 20px 5px;
    }

    #modal-form form {
        height: calc(100% - 130px);
    }
}

@media (max-width: 460px)
{
    #contacts .content {
        padding: 30px;
    }

    #modal-form form {
        height: fit-content;
        min-height: calc(100vh - 165px);
    }

    .modal-visible #modal-form .form-wrap {
        height: fit-content;
        min-height: 100%;
    }
    
    .form-wrapper .header .last-question {
        padding: 26px 20px 27px 20px;
    }

    .form-wrapper form {
        padding: 20px;
    }

    .btn-medium {
        padding: 14px 26px;
    }

    #main-form {
        padding: 80px 0 !important;
    }
    
    .left-phone .title {
        font-size: 20px;
    }

    .left-phone .content {
        width: 280px;
    }
}

@media (max-width: 380px) {
    .left-phone .content {
        width: 220px;
    }
    
    .left-phone .title {
        font-size: 16px;
    }

    .left-phone input[type="submit"], .left-phone #left-phone, .left-phone p:not(.title) {
        font-size: 12px;
    }

    .form-wrapper .header .title {
        font-size: 13px;
    }
}

@media (max-width: 330px) {
    h1 {
        font-size: 26px;
    }

    #modal-form form {
        padding: 10px;
    }

    .home p {
        font-size: 16px;
    }

    #modal-form .btn-medium {
        padding: 14px 22px;
    }
}