* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: black;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background-color: white;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container-adaptive {
    width: 1650px;
    margin: 0 auto;
}

.header {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.logo-header-text {
    font-size: 17px;
    margin-left: 20px;
    padding: 10px 20px;
    color: #9900FF;
    position: relative;
    text-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
}

.logo-header-text:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: -2px;
    width: 4px;
    height: 100%;
    background-color: #43C8F5;
    -webkit-box-shadow: 0 0 10px 0 #43C8F5;
    box-shadow: 0 0 10px 0 #43C8F5;
    border-radius: 2px;
}

.logo-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#main-block {
    position: relative;
    overflow: hidden;
    height: 840px;
    -webkit-box-shadow: 0 0 60px 0 grey;
    box-shadow: 0 0 60px 0 grey;
}

#main-block .container-adaptive {
    position: relative;
    height: 100%;
    z-index: 1;
    transform: translateX(0px);
}

.background-main-block {
    position: absolute;
    overflow: hidden;
    z-index: -1;
    background-color: black;
    right: 0;
    top: 0;
    height: 100%;
    width: 654px;
}

.header-contacts {
    color: white;
    margin-right: 220px;
    text-shadow: 1px 0 3px black, 0 1px 3px black, -1px 0 3px black, 0 -1px 3px black;
}

.header-contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-contact-item span {
    margin-left: 7px;
}

.header-contact-phone {
    margin-bottom: 5px;
}

.main-block-content {
    padding-top: 170px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 100px;
    padding-left: 80px;
}

.main-title {
    font-size: 64px;
    font-weight: 700;
}

.main-subtitle {
    font-size: 18px;
    margin-top: 30px;
    margin-left: 40px;
}

.main-button {
    padding: 18px 30px;
    margin-top: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    border-radius: 35px;
    background: -webkit-gradient(linear, left top, right top, from(#00C4FF), to(#9900FF));
    background: -o-linear-gradient(left, #00C4FF, #9900FF);
    background: linear-gradient(to right, #00C4FF, #9900FF);
    -webkit-box-shadow: 0 0 10px 0 #00C4FF;
    box-shadow: 0 0 10px 0 #00C4FF;
}

.main-purple-arrow {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: -110px;
}

.main-block-toggle-wrapper {
    position: absolute;
    left: 5px;
    width: 80px;
    height: 40px;
    bottom: 66px;
    -webkit-box-shadow: 0 0 6px 0 #0077FF;
    box-shadow: 0 0 6px 0 #0077FF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.toggle-left, .toggle-right {
    width: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.toggle-left {
    background-color: white;
}

.toggle-right {
    background-color: #0077FF;
}

.main-block-light-stripe {
    position: absolute;
    z-index: 1;
    bottom: 66px;
    right: 0;
    width: 67px;
    height: 10px;
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0 0 13px 0 #0077FF;
    box-shadow: 0 0 13px 0 #0077FF;
}

.burger {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 25px;
}

.modal-window-wrapper {
    position: fixed;
    height: 100vh;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    z-index: 4;
    left: 0;
}

.modal-window-wrapper.active {
    display: flex;
}

@keyframes modal-show {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.modal-window-wrapper.active .modal-window {
    animation: modal-show 1s ease-in-out forwards;
}

.modal-window-consult, .modal-window-menu {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 400px;
    z-index: 6;
    height: 100%;
    background-color: #393939;
}

.modal-window-menu {
    padding-left: 20px;
    padding-right: 20px;
}

.form-consult {
    width: 100%;
    padding-left: 40px;
}

.consult-burger, .menu-burger {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 30px;
    cursor: pointer;
    margin-right: 30px;
}

.form-consult-title {
    color: #0089FF;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.input-consult-wrapper {
    width: 320px;
    height: 55px;
    background-color: #636363;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.input-consult-wrapper input {
    background-color: transparent;
    max-width: 220px;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    color: white;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    border-bottom: 1px solid white;
}

.input-consult-wrapper input::-webkit-input-placeholder {
    color: white;
}

.input-consult-wrapper input::-moz-placeholder {
    color: white;
}

.input-consult-wrapper input:-ms-input-placeholder {
    color: white;
}

.input-consult-wrapper input::-ms-input-placeholder {
    color: white;
}

.input-consult-wrapper input::placeholder {
    color: white;
}

.input-consult-wrapper img {
    margin-left: 20px;
    margin-right: 10px;
}

.submit-consult {
    border: none;
    outline: none;
    width: 320px;
    padding: 15px 0;
    cursor: pointer;
    color: black;
    font-weight: 700;
    font-size: 16px;
    border-radius: 35px;
    background: -webkit-gradient(linear, left top, right top, from(#00C4FF), to(#9900FF));
    background: -o-linear-gradient(left, #00C4FF, #9900FF);
    background: linear-gradient(to right, #00C4FF, #9900FF);
}

.navigation-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 25px;
    margin-top: 50px;
    border-bottom: 2px dashed #00C4FF;
}

.navigation-wrapper a {
    font-size: 17px;
    color: #00C4FF;
    margin-top: 20px;
}

.navigation-wrapper a:hover {
    border-bottom: 1px dashed #00C4FF;
}

.main-img-wrapper {
    position: relative;
    z-index: 1;
    width: 561px;
    height: 351px;
}

.laptop-main-wrapper, .phone-main-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.laptop-main-wrapper.active, .phone-main-wrapper.active {
    opacity: 1;
}

.logo-mobile-header-img {
    display: none;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mobile-main-toggle {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 40px;
    bottom: 150px;
}

.right-mobile-toggle, .left-mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-shadow: 0 0 6px 0 #0077FF;
    box-shadow: 0 0 6px 0 #0077FF;
    width: 40px;
}

.right-mobile-toggle {
    background-color: #00C4FF;
}

.left-mobile-toggle {
    background-color: white;
}

.mobile-purple-stripe {
    display: none;
    margin-top: 20px;
}

#fast-start-block {
    overflow: hidden;
}

#fast-start-block .container-adaptive {
    padding: 170px 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fast-title {
    font-size: 48px;
    text-align: center;
    font-weight: 700;
}

.fast-subtitle {
    font-size: 18px;
    margin-top: 30px;
    line-height: 1.5;
    text-align: center;
    max-width: 700px;
}

.fast-start-images-wrapper {
    position: relative;
    width: 800px;
}

.fast-phone {
    position: absolute;
    left: 90%;
    width: 130px;
    top: 10px;
}

.fast-block-planet {
    position: absolute;
    top: 120px;
    left: 120px;
}

.fast-block-keyboard {
    position: absolute;
    bottom: 100px;
    left: 0;
}

.fast-block-mouse {
    position: absolute;
    bottom: 0;
    right: 50px;
}

#advantages-block {
    overflow: hidden;
}

.advantages-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 30px 0;
}

.advantages-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 120px;
}

.advantage-item {
    width: 470px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-color: #DAF6FF;
    height: 140px;
    -webkit-box-shadow: 0 0 21px 0 #0077FF;
    box-shadow: 0 0 21px 0 #0077FF;
    border-radius: 15px;
    padding-right: 100px;
    font-size: 18px;
    padding-left: 50px;
}

.advantage-item + .advantage-item {
    margin-top: 70px;
}

.advantage-item.advantage2 {
    background: url("../images/bg-advantage-2.png") no-repeat center center;
    background-size: 100% 100%;
}

.advantage-item.advantage3 {
    background: url("../images/bg-advantage-3.png") no-repeat center center;
    background-size: 100% 100%;
}

.advantage-item.advantage4 {
    background: url("../images/bg-advantage-4.png") no-repeat center center;
    background-size: 100% 100%;
}

.advantage-item.advantage6 {
    background-color: #EACAFF;
}

.advantage-item.advantage1, .advantage-item.advantage6 {
    padding-right: 50px;
}

.advantage1 img {
    margin-right: 15px;
    margin-top: 10px;
}

.advantage5 img {
    position: absolute;
    top: 10px;
    right: -50px;
}

.advantage6 img {
    position: absolute;
    top: 20px;
    right: -50px;
}

.advantage-item .number {
    position: absolute;
    bottom: 0;
    font-weight: 900;
    font-size: 35px;
    opacity: 0.3;
}

.advantage-item .text {
    line-height: 1.3;
}

.first-part-advantages .number {
    right: -55px;
}

.second-part-advantages .number {
    left: -55px;
}

.advantage1, .advantage3 {
    -webkit-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
}

.advantage4, .advantage6 {
    -webkit-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
}

.wrapper-stages {
    display: inline-block;
    position: relative;
}

.stages-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
}

#stages-block {
    overflow: hidden;
}

#stages-block .container-adaptive {
    padding-top: 60px;
    padding-bottom: 80px;
}

.stage-item {
    width: 380px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 115px;
    padding-left: 15px;
    line-height: 1.5;
    font-size: 17px;
}

.stage-item + .stage-item {
    margin-left: 80px;
}

.stages-item-wrapper .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
}

.blue-stripe-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.blue-stripe-wrapper div {
    text-align: center;
    font-size: 16px;
    margin-bottom: -10px;
}

.stage-with-img {
    color: white;
    font-weight: 300;
    font-style: italic;
    padding-right: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 10px 0 #0077FF;
    box-shadow: 0 0 10px 0 #0077FF;
}

.stage-with-img1 {
    background: url("../images/stage-bg-1.png") no-repeat center center;
    background-size: 100% 100%;
}

.stage-with-img2 {
    background: url("../images/stage-bg-2.png") no-repeat center center;
    background-size: 100% 100%;
}

.stage-with-img3 {
    background: url("../images/stage-bg-3.png") no-repeat center center;
    background-size: 100% 100%;
}

.stages-screen-img {
    position: absolute;
    top: 100px;
    width: 490px;
    left: 100%;
}

.project-form {
    margin-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
}

.project-title {
    margin-bottom: 70px;
}

.custom-checkbox input {
    display: none;
}

.project-inputs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.project-input {
    width: 260px;
    padding: 10px 0;
    -webkit-box-shadow: 0 3px 5px 0 #00C4FF;
    box-shadow: 0 3px 5px 0 #00C4FF;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    outline: none;
}

.project-input img {
    margin-right: 5px;
}

.project-input input {
    border-top: none;
    width: 180px;
    border-right: none;
    border-left: none;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    outline: none;
    border-bottom: 1px solid grey;
}

.project-input input::-webkit-input-placeholder {
    color: black;
}

.project-input input::-moz-placeholder {
    color: black;
}

.project-input input:-ms-input-placeholder {
    color: black;
}

.project-input input::-ms-input-placeholder {
    color: black;
}

.project-input input::placeholder {
    color: black;
}

.project-title {
    font-size: 32px;
    font-weight: 700;
}

.project-input.project-submit {
    padding: 20px 0;
    font-size: 18px;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#00C4FF), to(#00B1E7));
    background-image: -o-linear-gradient(top, #00C4FF, #00B1E7);
    background-image: linear-gradient(to bottom, #00C4FF, #00B1E7);
}

.custom-checkbox-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    max-width: 250px;
}

.custom-checkbox-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.custom-checkbox label {
    width: 17px;
    margin-right: 10px;
    cursor: pointer;
    margin-top: 5px;
    height: 17px;
    display: inline-block;
    border: 1px solid black;
}

.custom-checkbox-wrapper input[type="checkbox"]:checked + label {
    background: url("../images/check.png") no-repeat center center;
}

.stages-screen-mobile-img {
    display: none;
}

#about-block {
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: url("../images/about-bg.png") no-repeat top right;
    background-size: cover;
    -webkit-box-shadow: 0 -8px 55px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 -8px 55px 0 rgba(0, 0, 0, 0.2);
}

#about-block .container-adaptive {
    padding-top: 60px;
    padding-bottom: 70px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#about-block .container-adaptive:before, #about-block .container-adaptive:after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    width: 1px;
    background-color: #C0C0C0;
}

#about-block .container-adaptive:before {
    left: 0;
}

#about-block .container-adaptive:after{
    left: 50px;
}

#about-block .left-column {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-top: 100px;
    margin-left: 50px;
}

#about-block .right-column {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 60px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 35px;
}

.about-description {
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 40px;
}

.about-items-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.left-column-about-wrapper, .right-column-about-wrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 50%;
}

.right-column-about-wrapper  {
    margin-left: 60px;
}

.about-item img {
    margin-bottom: 10px;
    margin-top: 30px;
}

.about-item .text {
    line-height: 1.3;
    font-size: 18px;
    font-style: italic;
}

.decor-title-about-wrapper {
    position: absolute;
    height: 100%;
    top: 0;
    left: -35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.decor-title-about-wrapper span {
    font-size: 16px;
    color: #A6F3FF;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.img-about-mobile {
    display: none;
}

#doing-block {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: url("../images/doing-bg.png") no-repeat center center;
    background-size: cover;
}

.doing-title {
    margin-top: 65px;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 80px;
}

.doing-items-wrapper  {
    margin-bottom: 80px;
}

.doing-items-wrapper .line1, .doing-items-wrapper .line2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.doing-items-wrapper .line1 {
    margin-bottom: 95px;
}

.doing-item .text {
    max-width: 320px;
    line-height: 1.5;
    font-size: 18px;
}

.doing-item + .doing-item {
    margin-left: 140px;
}

.doing-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.doing-item img {
    margin-right: 10px;
}

#consult-digital-block {
    overflow: hidden;
    background: url("../images/bg-digital-consult.png") no-repeat center center;
    background-size: cover;
}

.consult-digital-title {
    color: white;
    text-align: center;
    font-size: 45px;
    margin: 130px 0;
}

#web-develop {
    background: url("../images/web-dev-bg.png") no-repeat center center;
    background-size: cover;
}

#web-develop .container-adaptive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 130px;
    padding-bottom: 70px;
}

.web-develop-item .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.web-develop-item .text {
    line-height: 1.5;
    color: #393939;
    font-size: 18px;
}

.web-develop-item {
    padding-left: 100px;
    position: relative;
}

.web-develop-item + .web-develop-item {
    margin-top: 50px;
}

#web-develop .left-column {
    margin-right: 50px;
}

.screen-develop-item {
    position: absolute;
    top: 60px;
    left: 0;
}

#mobile-app-block {
    overflow: hidden;
    -webkit-box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.2);
    background: url("../images/mobile-app-bg.png") no-repeat center center;
    background-size: cover;
}

#mobile-app-block .container-adaptive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 105px;
    padding-bottom: 70px;
}

.mobile-app-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mobile-app-items-wrapper {
    padding-left: 25px;
}

.mobile-app-item .title {
    color: #0008FF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mobile-app-item .text {
    line-height: 1.4;
    color: #393939;
    font-size: 18px;
}

.mobile-app-item + .mobile-app-item {
    margin-top: 35px;
}

.mobile-app-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#crm-dev-block {
    overflow: hidden;
    background: url("../images/crm-dev-bg.png") no-repeat center center;
    background-size: cover;
}

#crm-dev-block .container-adaptive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding-top: 220px;
    padding-bottom: 160px;
}

#crm-dev-block .container-adaptive:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #C0C0C0;
}

.crm-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.crm-text {
    line-height: 1.5;
    font-size: 18px;
    color: #393939;
    padding-right: 150px;
    margin-bottom: 40px;
}

.crm-text-using p {
    color: #393939;
    font-size: 18px;
    line-height: 1.5;
    margin: 10px auto;
}

.crm-clarification {
    margin-top: 50px;
    font-size: 17px;
    font-style: italic;
    color: #393939;
}

.crm-dev-block-content {
    margin-left: 150px;
}

.decor-word {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.decor-dev {
    color: #1A1A1A;
    bottom: 90px;
    left: 0;
}

#bots-block {
    overflow: hidden;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 -6px 44px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 -6px 44px 0 rgba(0, 0, 0, 0.2);
}

#bots-block .container-adaptive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

#bots-block .container-adaptive:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 120px;
    width: 1px;
    height: 100%;
    background-color: #C0C0C0;
}

.bot-img {
    margin-top: 100px;
    margin-right: 280px;
    margin-left: 120px;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.bot-title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 20px;
}

.bot-text {
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 40px;
    color: #393939;
}

.bots-block-content {
    padding-top: 100px;
}

.decor-bots {
    color: #393939;
    top: 200px;
    left: 120px;
}

#block-works {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: url("../images/works-bg.png") no-repeat center center;
    background-size: cover;
}

#block-works .container-adaptive {
    padding-top: 80px;
    padding-bottom: 30px;
}

.works-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.works-items-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.works-item {
    width: 450px;
    margin-top: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.works-item img {
    margin-right: 15px;
}

.works-item .title {
    font-size: 24px;
    margin-bottom: 10px;
}

.works-item .text {
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
}

#block-footer-form {
    overflow: hidden;
    color: #393939;
}

#block-footer-form .container-adaptive {
    padding-top: 100px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-footer-wrapper .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-footer-wrapper .subtitle {
    font-size: 18px;
    margin-bottom: 50px;
}

.form-footer-input-wrapper {
    width: 670px;
    padding: 15px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 3px 5px 0 #00C4FF;
    box-shadow: 0 3px 5px 0 #00C4FF;
    border-radius: 45px;
    margin-bottom: 25px;
}

.form-footer-input-wrapper input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-top: none;
    border-left: none;
    outline: none;
    border-right: none;
    border-bottom: 1px solid grey;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
}

.form-footer-input-wrapper input::-webkit-input-placeholder {
    color: black;
}

.form-footer-input-wrapper input::-moz-placeholder {
    color: black;
}

.form-footer-input-wrapper input:-ms-input-placeholder {
    color: black;
}

.form-footer-input-wrapper input::-ms-input-placeholder {
    color: black;
}

.form-footer-input-wrapper input::placeholder {
    color: black;
}

.form-footer-input-wrapper img {
    margin-right: 10px;
}

#form-footer {
    position: relative;
}

.form-footer-input-wrapper input.tell-about {
    padding-left: 50px;
}

.submit-footer-form {
    border: none;
    outline: none;
    padding: 20px 0;
    font-size: 18px;
    cursor: pointer;
    width: 260px;
    border-radius: 40px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#00C4FF), to(#00B1E7));
    background-image: -o-linear-gradient(top, #00C4FF, #00B1E7);
    background-image: linear-gradient(to bottom, #00C4FF, #00B1E7);
    -webkit-box-shadow: 0 3px 5px 0 #00C4FF;
    box-shadow: 0 3px 5px 0 #00C4FF;
}

.custom-file-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.buttons-footer-form-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.file-input {
    display: none;
}

.clip-file-img {
    margin-right: 10px;
}

.custom-file-input .text {
    font-size: 18px;
    max-width: 200px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

footer {
    background-color: #E7E7E7;
}

footer .container-adaptive {
    padding-top: 30px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.contacts-footer-wrapper {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.contacts-footer-wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.contacts-footer-wrapper a img {
    margin-right: 10px;
}

.footer-links-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 270px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-links-wrapper a {
    font-size: 18px;
    display: inline-block;
    padding-right: 30px;
    border-bottom: 1px dashed #000000;
    color: #000000;
    margin-right: 30px;
    margin-bottom: 20px;
}

@-webkit-keyframes laptop-show {

    0% {
        -webkit-transform: scale(0.5) translateX(-30%) translateY(-20%);
        transform: scale(0.5) translateX(-30%) translateY(-20%);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1) translateX(0%) translateY(0%);
        transform: scale(1) translateX(0%) translateY(0%);
        opacity: 1;
    }

}

@keyframes laptop-show {

    0% {
        -webkit-transform: scale(0.5) translateX(-30%) translateY(-20%);
        transform: scale(0.5) translateX(-30%) translateY(-20%);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1) translateX(0%) translateY(0%);
        transform: scale(1) translateX(0%) translateY(0%);
        opacity: 1;
    }

}

@-webkit-keyframes phone-show {

    0% {
        -webkit-transform: scale(0.5) translateX(100%);
        transform: scale(0.5) translateX(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1) translateX(0%);
        transform: scale(1) translateX(0%);
        opacity: 1;
    }

}

@keyframes phone-show {

    0% {
        -webkit-transform: scale(0.5) translateX(100%);
        transform: scale(0.5) translateX(100%);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1) translateX(0%);
        transform: scale(1) translateX(0%);
        opacity: 1;
    }

}

.main-laptop {
    position: absolute;
    width: 800px;
    left: -150px;
    top: -40px;
}

.main-phone {
    position: absolute;
    width: 280px;
    left: 200px;
    top: -150px;
}

.burger-menu-contacts {
    color: #E3E3E3;
    align-self: flex-start;
    margin-top: 30px;
}

.burger-menu-contacts a {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 400;
}

.burger-menu-contacts a img {
    margin-right: 15px;
}

.logo-menu-burger {
    position: absolute;
    left: 20px;
    top: 40px;
}
