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

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

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

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit
}

body {
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    padding: 0;
    margin: 0;
    color: #253238
}

.container {
    max-width: 1450px;
    width: 100%;
    padding: 0 5px;
    margin: 0 auto
}

.hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 31px;
    margin-right: 50px;
    cursor: pointer
}

.hamburger span {
    display: block;
    height: 5px;
    width: 100%;
    background: #253238;
    border-radius: 3px;
    margin-bottom: 5px
}

.hamburger span:nth-child(1) {
    width: 100%
}

.hamburger span:nth-child(2) {
    width: 75%;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out
}

.hamburger span:nth-child(3) {
    width: 50%;
    -webkit-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out
}

.hamburger:hover span {
    width: 100%
}

.hamburger:hover span:nth-child(1) {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate;
    animation: burger-hover 1s infinite ease-in-out alternate
}

.hamburger:hover span:nth-child(2) {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms
}

.hamburger:hover span:nth-child(3) {
    -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms
}

@-webkit-keyframes burger-hover {
    0% {
        width: 100%
    }

    50% {
        width: 50%
    }

    100% {
        width: 100%
    }
}

@keyframes burger-hover {
    0% {
        width: 100%
    }

    50% {
        width: 50%
    }

    100% {
        width: 100%
    }
}

.header__item-light {
    color: #fff
}

.header__item-checkbox {
    font-size: 18px;
    width: 223px;
    height: 47px;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 10px;
    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;
    font-size: 18px;
    font-weight: 700
}

.header__item-checkbox .theme {
    font-size: 1em;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0.75em;
    -webkit-box-shadow: 0.125em 0.125em 0 0.125em rgba(0, 0, 0, 0.3) inset;
    box-shadow: 0.125em 0.125em 0 0.125em rgba(0, 0, 0, 0.3) inset;
    color: #fdea7b;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    cursor: pointer;
    padding: 0.15em;
    width: 3em;
    height: 1.5em;
    -webkit-transition: background-color 0.1s 0.3s ease-out, -webkit-box-shadow 0.1s 0.3s ease-out;
    transition: background-color 0.1s 0.3s ease-out, -webkit-box-shadow 0.1s 0.3s ease-out;
    -o-transition: background-color 0.1s 0.3s ease-out, box-shadow 0.1s 0.3s ease-out;
    transition: background-color 0.1s 0.3s ease-out, box-shadow 0.1s 0.3s ease-out;
    transition: background-color 0.1s 0.3s ease-out, box-shadow 0.1s 0.3s ease-out, -webkit-box-shadow 0.1s 0.3s ease-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.header__item-checkbox .theme:before,
.header__item-checkbox .theme:after {
    content: "";
    display: block
}

.header__item-checkbox .theme:before {
    background-color: #d7d7d7;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    -webkit-transition: background-color 0.1s 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: background-color 0.1s 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -o-transition: background-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
    transition: background-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
    transition: background-color 0.1s 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    z-index: 1
}

.header__item-checkbox .theme:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0, rgba(0, 0, 0, 0.15))) 0 50%/50% 100%, repeating-linear-gradient(90deg, #bbb 0, #bbb, #bbb 20%, #999 20%, #999 40%) 0 50%/50% 100%, radial-gradient(circle at 50% 50%, #888 25%, transparent 26%);
    background: -o-linear-gradient(transparent 50%, rgba(0, 0, 0, 0.15) 0) 0 50%/50% 100%, -o-repeating-linear-gradient(left, #bbb 0, #bbb, #bbb 20%, #999 20%, #999 40%) 0 50%/50% 100%, -o-radial-gradient(50% 50%, circle, #888 25%, transparent 26%);
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.15) 0) 0 50%/50% 100%, repeating-linear-gradient(90deg, #bbb 0, #bbb, #bbb 20%, #999 20%, #999 40%) 0 50%/50% 100%, radial-gradient(circle at 50% 50%, #888 25%, transparent 26%);
    background-repeat: no-repeat;
    border: 0.25em solid transparent;
    border-left: 0.4em solid #d8d8d8;
    border-right: 0 solid transparent;
    -webkit-transition: border-left-color 0.1s 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: border-left-color 0.1s 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -o-transition: border-left-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
    transition: border-left-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
    transition: border-left-color 0.1s 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translateX(-22.5%);
    -ms-transform: translateX(-22.5%);
    transform: translateX(-22.5%);
    -webkit-transform-origin: 25% 50%;
    -ms-transform-origin: 25% 50%;
    transform-origin: 25% 50%;
    width: 1.2em;
    height: 1em
}

.header__item-checkbox .theme:checked {
    background-color: rgba(0, 0, 0, 0.45);
    -webkit-box-shadow: 0.125em 0.125em 0 0.125em rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0.125em 0.125em 0 0.125em rgba(0, 0, 0, 0.1) inset
}

.header__item-checkbox .theme:checked:before {
    background-color: currentColor;
    -webkit-transform: translateX(125%);
    -ms-transform: translateX(125%);
    transform: translateX(125%)
}

.header__item-checkbox .theme:checked:after {
    border-left-color: currentColor;
    -webkit-transform: translateX(-2.5%) rotateY(180deg);
    transform: translateX(-2.5%) rotateY(180deg)
}

.header__item-checkbox .theme:focus {
    outline: 0
}

#blob-3,
#blob-2,
#mouth-happy,
#mouth-sad,
#mouth-worry,
#eyebrow-sad-left,
#eyebrow-sad-right,
#mouth-scared {
    display: none
}

.header {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%
}

.header__item {
    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
}

.header__item-right {
    color: #fff
}

.header__item-hiddencheckbox {
    display: none
}

.header__btn {
    padding: 10px 35px;
    background-color: #9468B4;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    background-color: transparent;
    border: 2px solid #ffffff
}

.header__top {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1450px;
    padding: 0 5px;
    background-color: transparent;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__logo {
    margin-right: 50px
}

.header__logo img:nth-child(2) {
    position: absolute;
    -webkit-transform: translateY(-150px);
    -ms-transform: translateY(-150px);
    transform: translateY(-150px)
}

.header__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__menu-list li {
    margin-right: 30px;
    position: relative
}

.header__menu-list li a {
    font-size: 18px
}

.header__menu-list li a:before {
    content: "";
    width: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.header__menu-list li a:hover:before {
    content: "";
    position: absolute;
    background-color: #9468B4;
    height: 2px;
    width: 100%;
    bottom: -5px
}

.header__menu-list li a:hover {
    text-shadow: 1px 0 0 #fff;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s
}

.header__tel {
    font-weight: 600;
    font-size: 20px;
    margin-right: 20px
}

.mainscreen {
    min-height: 100vh;
    height: 100vh
}

.mainscreen__zoryana-pc {
    position: absolute
}

.mainscreen__zoryana-mac {
    position: relative
}

.mainscreen__logos {
    margin-bottom: 40px;
    max-width: 224px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mainscreen__logos a {
    width: 26px
}

.mainscreen__logos a svg {
    fill: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.mainscreen__logos a svg:hover {
    fill: #9468B4
}

.mainscreen__container {
    position: absolute;
    max-width: 1560px;
    padding: 0 15px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 20%
}

.mainscreen__box {
    max-width: 677px;
    width: 100%
}

.mainscreen__wrapper {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mainscreen__left,
.mainscreen__right {
    width: 50%
}

.mainscreen__title {
    font-size: 80px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px
}

.mainscreen__subtitle {
    font-weight: 400;
    max-width: 537px;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 40px;
    width: 100%
}

.mainscreen__text {
    font-size: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    border-right: 4px solid orange;
    white-space: nowrap;
    /* -webkit-animation: typing 4s steps(44) 1s 1 normal both, blink-caret 0.5s step-end infinite;
    animation: typing 4s steps(44) 1s 1 normal both, blink-caret 0.5s step-end infinite */
}

@-webkit-keyframes typing {
    from {
        width: 0
    }

    to {
        width: 101%
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 101%
    }
}

@-webkit-keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange
    }
}

.mainscreen__right {
    overflow: hidden
}

.mainscreen__btn {
    background-color: #253238;
    color: #fff !important
}

.mainscreen__slide {
    height: 100vh
}

.mainscreen__item {
    height: 100vh;
    padding-top: 100px;
    overflow: hidden
}

.mainscreen__example {
    position: relative;
    height: inherit;
    width: inherit;
    color: #fff;
    padding: 40px 40px 0 40px;
    overflow: hidden
}

.mainscreen__example:hover .mainscreen__example-content {
    opacity: 1
}

.mainscreen__example:hover .mainscreen__example-img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.mainscreen__example-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.mainscreen__example-title {
    width: 50%;
    max-width: 190px;
    font-size: 70px;
    font-weight: 600;
    line-height: 60px
}

.mainscreen__example-calc {
    max-width: 100%;
    width: 100%;
    text-align: center;
    font-size: 58px;
    line-height: 50px;
    margin-bottom: 10px;
    color: #fff
}

.mainscreen__example-site {
    font-size: 36px
}

.mainscreen__example-img {
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.mainscreen__example-img img {
    width: 100%;
    margin: 0 auto
}

.mainscreen__example-link {
    margin-top: -105px
}

.mainscreen .slick-vertical .slick-slide {
    border: none !important
}

.mainscreen .slick-dots {
    position: absolute;
    left: 4px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 104px;
    bottom: 160px;
    background-color: white;
    width: 35px
}

.mainscreen .slick-dots li {
    text-align: center
}

.mainscreen .slick-dots li:nth-child(1) button {
    border-radius: 3px 0 0 3px
}

.mainscreen .slick-dots li:last-child button {
    border-radius: 0 3px 3px 0
}

.mainscreen .slick-dots button {
    font-size: 0;
    background-color: #d0d9de;
    width: 65%;
    border: none;
    height: 5px;
    padding: 0;
    cursor: pointer;
    outline: none;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.mainscreen .slick-dots .slick-active button {
    font-size: 0;
    border-radius: 3px !important;
    background-color: #253238
}

.mainscreen .slick-slider {
    position: relative
}

.mainscreen .slick-prev,
.mainscreen .slick-next {
    width: 35px;
    height: 35px;
    font-size: 0;
    z-index: 1;
    left: 4px;
    position: absolute;
    outline: none;
    border: none;
    background-image: url(../images/main/slider-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
    cursor: pointer
}

.mainscreen .slick-next {
    bottom: 126px
}

.mainscreen .slick-prev {
    bottom: 248px;
    background-image: url(../images/main/slider-arrow.svg)
}

.works {
    margin-bottom: 120px;
    width: 100%;
    min-width: 100%
}

.works__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.works__item {
    width: 25%;
    min-height: 259px;
    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;
    position: relative;
    overflow: hidden;
    color: #fff
}

.works__item-title {
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px
}

.works__item-menu {
    display: block;
    margin: 0 auto;
    max-width: 370px;
    width: 100%;
    height: 54px;
    font-size: 24px;
    border-radius: 10px;
    border: none;
    padding-left: 20px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/main/input-arrow.svg) no-repeat right 15px center;
    background-color: white
}

.works__item-all {
    background-color: #e1f0ff;
    display: block
}

.works__item-zoryana {
    background: #fcc02a;
    color: #fc191f;
    position: relative
}

.works__item-pizza {
    background: #252834;
    color: #f9b23c
}

.works__item-djoy {
    background: #a996f3
}

.works__item-test {
    background: #9468B4
}

.works__item-maison {
    background: #4dccdd
}

.works__item-money {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffb603), to(#ffa903));
    background: -o-linear-gradient(top, #ffb603 0%, #ffa903 100%);
    background: linear-gradient(180deg, #ffb603 0%, #ffa903 100%)
}

.works__item-elekomp {
    background: #fdce2c
}

.works__item-megazoo {
    background: #00c1ae;
    color: #0c4e42
}

.works__item-home {
    background: -webkit-gradient(linear, left top, left bottom, from(#ff8176), to(#ffb26c));
    background: -o-linear-gradient(top, #ff8176 0%, #ffb26c 100%);
    background: linear-gradient(180deg, #ff8176 0%, #ffb26c 100%);
    color: #85aa3d
}

.works__item-kitobiz {
    background: #000
}

.works__item-zoryana:hover .works__descr,
.works__item-droppro:hover .works__descr,
.works__item-pizza:hover .works__descr,
.works__item-djoy:hover .works__descr,
.works__item-test:hover .works__descr,
.works__item-maison:hover .works__descr,
.works__item-money:hover .works__descr,
.works__item-elekomp:hover .works__descr,
.works__item-megazoo:hover .works__descr,
.works__item-home:hover .works__descr,
.works__item-kitobiz:hover .works__descr {
    left: 0
}

.works__item-droppro,
.works__item-djoy,
.works__item-elekomp,
.works__item-megazoo {
    color: #253238
}

.works__item-img {
    margin: 0 auto;
    text-align: center
}

.works__item-site {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 22px
}

.works__descr {
    margin: 0 auto;
    background: #ea0029;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    padding: 0 10px;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    left: 10000vh;
    color: #fff;
    font-size: 16px;
    line-height: 19px
}

.works__descr-info {
    margin: 0 auto;
    margin-top: 60px;
    max-width: 385px;
    width: 100%
}

.works__descr-info a {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    text-decoration: underline
}

.skills {
    margin-bottom: 60px
}

.skills__title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px
}

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

.skills__info {
    max-width: 447px;
    width: 100%;
    font-size: 16px
}

.skills__info p {
    margin: 0;
    line-height: 20px
}

.skills__info-quote {
    margin-bottom: 20px
}

.skills__info-secondquote {
    text-align: left;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-top: 20px
}

.skills__table {
    max-width: 922px;
    width: 100%;
    border-radius: 20px;
    padding: 120px 60px 0;
    min-height: 483px;
    background: rgba(223, 190, 219, 0.2)
}

.skills__table-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 110px
}

.skills__table-menu {
    margin-top: 30px;
    position: relative
}

.skills__table-menu:nth-child(1) {
    margin-right: 50px
}

.skills__table-menu:nth-child(1)::before {
    content: "";
    position: absolute;
    background-image: url(../images/main/skills-menu-1.svg);
    background-position: center;
    max-width: 162px;
    width: 100%;
    height: 161px;
    top: -228px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.skills__table-menu:nth-child(2) {
    margin-right: 100px
}

.skills__table-menu:nth-child(2) ul {
    width: 212px
}

.skills__table-menu:nth-child(2)::before {
    content: "";
    position: absolute;
    background-image: url(../images/main/skills-menu-2.svg);
    background-position: center;
    max-width: 211px;
    width: 100%;
    height: 170px;
    top: -240px;
    left: 0;
    -webkit-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%)
}

.skills__table-menu:nth-child(3) {
    margin-right: 100px
}

.skills__table-menu:nth-child(3)::before {
    content: "";
    position: absolute;
    background-image: url(../images/main/skills-menu-3.svg);
    background-position: center;
    max-width: 205px;
    width: 100%;
    height: 161px;
    top: -240px;
    left: 0;
    -webkit-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%)
}

.skills__table-menu span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #783294;
    margin-bottom: 20px;
    max-width: 260px;
    width: 100%
}

.skills__table-menu ul {
    line-height: 22px
}

.skills__table-menu ul a {
    display: inline
}

.skills__table-menu ul li {
    padding-left: 10px;
    position: relative;
    text-decoration: underline;
    font-size: 24px;
    line-height: 37px
}

.skills__table-menu ul li::before {
    position: absolute;
    left: 0;
    content: "\2022"
}

.cards {
    margin-bottom: 100px
}

.cards__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cards__item {
    margin-bottom: 20px;
    padding: 30px 0 40px;
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    -webkit-box-shadow: -1px -1px 7px rgba(0, 0, 0, 0.1), 6px 6px 8px rgba(0, 0, 0, 0.15);
    box-shadow: -1px -1px 7px rgba(0, 0, 0, 0.1), 6px 6px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-width: 467px;
    width: 100%;
    min-height: 280px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative
}

.cards__item:hover {
    background-color: #9468B4;
    color: #fff;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.cards__item:hover .cards__item-title {
    text-decoration: underline
}

.cards__item:hover .cards__item-arrow {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px)
}

.cards__item-img {
    margin-bottom: 15px
}

.cards__item-title {
    font-weight: 600;
    font-size: 28px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.cards__item-text {
    max-width: 225px;
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 20px
}

.cards__item-arrow {
    width: 42px;
    height: 27px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.services {
    margin-bottom: 120px;
    background: rgba(223, 190, 219, 0.2);
    padding-bottom: 100px;
    padding-top: 90px
}

.services__maintitle {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 60px
}

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

.services__info {
    max-width: 700px;
    width: 100%
}

.services__info p {
    font-size: 16px;
    line-height: 26px;
    margin: 0
}

.services__info-title {
    margin-bottom: 36px;
    font-size: 42px;
    font-weight: 500
}

.services__info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 110px
}

.services__info-menu {
    margin-top: 30px
}

.services__info-menu span {
    display: block;
    margin-bottom: 20px;
    font-weight: 500
}

.services__info-menu ul {
    line-height: 22px
}

.services__info-menu ul li {
    padding-left: 10px;
    position: relative
}

.services__info-menu ul li::before {
    position: absolute;
    left: 0;
    content: "\2022"
}

.services__info-exp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700
}

.services__info-item {
    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
}

.services__info-textitem span {
    display: block
}

.services__offer-title {
    margin-top: 50px;
    margin-bottom: 18px
}

.services__title {
    padding-left: 50px;
    position: relative;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 35px
}

.services__title::before {
    content: "\2014";
    position: absolute;
    left: 0
}

.services__title-first {
    margin-bottom: 1px;
    margin-top: 5px
}

.services__item-scale .services__info {
    max-width: 757px;
    width: 100%
}

.services .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
    cursor: pointer
}

.services .slick-dots li {
    width: 20%;
    text-align: center
}

.services .slick-dots li:nth-child(1) button {
    border-radius: 3px 0 0 3px
}

.services .slick-dots li:last-child button {
    border-radius: 0 3px 3px 0
}

.services .slick-dots button {
    width: 100%;
    height: 5px;
    font-size: 0;
    outline: none;
    border: none;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.services .slick-dots .slick-active button {
    background-color: #783294;
    border-radius: 3px !important
}

.services .slick-prev,
.services .slick-next {
    width: 33px;
    height: 30px;
    font-size: 0;
    z-index: 1;
    background-color: transparent;
    position: absolute;
    outline: none;
    border: none;
    bottom: -11px;
    background-image: url(../images/main/arrow-right-slider.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer
}

.services .slick-next {
    right: 0
}

.services .slick-prev {
    background-image: url(../images/main/arrow-left-slider.svg);
    left: 0
}

.progress {
    padding-bottom: 120px
}

.progress__title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 40px
}

.progress__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.progress__item {
    max-width: 325px;
    padding-top: 22px;
    width: 100%;
    height: 329px;
    -webkit-box-shadow: 20px 0px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 20px 0px 20px rgba(0, 0, 0, 0.1);
    position: relative
}

.progress__item::after {
    content: "";
    position: absolute;
    right: -75px;
    border-top: 165px solid transparent;
    border-left: 75px solid white;
    border-bottom: 164px solid transparent;
    top: 0;
    -webkit-filter: drop-shadow(7px 0px 3px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(7px 0px 3px rgba(0, 0, 0, 0.1));
    z-index: 5
}

.progress__item::before {
    content: "";
    position: absolute;
    left: 0;
    border-top: 165px solid transparent;
    z-index: 3;
    border-left: 75px solid white;
    border-bottom: 164px solid transparent;
    -webkit-filter: drop-shadow(12px 3px 7px rgba(0, 0, 0, 0.025));
    filter: drop-shadow(12px 3px 7px rgba(0, 0, 0, 0.025));
    top: 0
}

.progress__item-title {
    margin-left: 65px;
    font-size: 50px;
    font-weight: 700;
    color: #783294;
    margin-bottom: 30px
}

.progress__item-text {
    font-size: 20px;
    line-height: 25px;
    margin-left: 100px;
    font-weight: 500
}

.progress__item-img {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%);
    width: 50%
}

.progress__btn {
    margin-top: 60px;
    text-align: center
}

.reviews {
    background-color: rgba(208, 217, 222, 0.3);
    padding-bottom: 100px;
    padding-top: 90px
}

.reviews__title {
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 60px
}

.reviews__nav {
    width: 100%
}

.reviews__nav img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1)
}

.reviews__nav .slick-track {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important
}

.reviews__nav .slick-current .reviews__nav-item {
    border-color: #783294;
    border-bottom: 1px solid transparent
}

.reviews__nav .slick-current .reviews__nav-item img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.reviews__nav-item {
    border: 1px solid rgba(145, 62, 152, 0.2);
    border-bottom-color: #783294;
    max-width: 288px;
    width: 100%;
    height: 166px;
    background-color: #fff;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer
}

.reviews__slider-item {
    background-color: white;
    border: 1px solid #913e98;
    border-top: 0;
    padding: 80px 90px 70px 90px;
    font-size: 16px;
    line-height: 20px
}

.reviews__slider-item p {
    margin: 0
}

.reviews__user {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 23px;
    font-weight: 500
}

.reviews__user img {
    width: 101px;
    display: block;
    margin-right: 50px;
    border-radius: 50%;
    height: 101px;
    -webkit-box-shadow: 0px 2px 12px rgba(14, 14, 18, 0.3);
    box-shadow: 0px 2px 12px rgba(14, 14, 18, 0.3)
}

.reviews__user span {
    font-size: 32px;
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 41px
}

.reviews .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90%;
    margin: 60px auto 0;
    cursor: pointer
}

.reviews .slick-dots li {
    width: 20%;
    text-align: center
}

.reviews .slick-dots li:nth-child(1) button {
    border-radius: 3px 0 0 3px
}

.reviews .slick-dots li:last-child button {
    border-radius: 0 3px 3px 0
}

.reviews .slick-dots button {
    width: 100%;
    height: 5px;
    font-size: 0;
    outline: none;
    border: none;
    background-color: #fff;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear
}

.reviews .slick-dots .slick-active button {
    background-color: #455b66;
    border-radius: 3px !important
}

.reviews .slick-prev,
.reviews .slick-next {
    width: 33px;
    height: 30px;
    font-size: 0;
    z-index: 1;
    background-color: transparent;
    position: absolute;
    outline: none;
    border: none;
    bottom: -11px;
    background-image: url(../images/main/arrow-right-slider-bottom.svg);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer
}

.reviews .slick-next {
    right: 0
}

.reviews .slick-prev {
    background-image: url(../images/main/arrow-left-slider-bottom.svg);
    left: 0
}

.footer {
    padding-top: 90px;
    padding-bottom: 30px;
    color: #fff;
    background-color: #253238
}

.footer__top {
    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: 60px
}

.footer__top-divider {
    height: 1px;
    margin-left: 40px;
    width: 100%;
    background-color: white
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 90px
}

.footer__menu {
    font-size: 16px
}

.footer__menu-title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px
}

.footer__menu-list {
    font-weight: 500;
    line-height: 20px
}

.footer__menu-list li {
    margin-bottom: 12px;
    position: relative
}

.footer__menu-list li a:before {
    content: "";
    width: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.footer__menu-list li a:hover:before {
    content: "";
    position: absolute;
    background-color: #9468B4;
    height: 2px;
    width: 100%;
    bottom: -5px
}

.footer__menu-list li a:hover {
    text-shadow: 1px 0 0 #fff;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s
}

.footer__menu-list-contacts {
    font-weight: 500;
    line-height: 20px
}

.footer__menu-list-contacts li {
    margin-bottom: 12px
}

.footer__menu-list-contacts li:nth-child(2) {
    font-size: 20px;
    font-weight: 600
}

.footer__bottom {
    text-align: center;
    font-weight: 500;
    line-height: 20px;
    padding-top: 30px;
    border-top: 1px solid
}

.footer__bottom-title {
    margin-bottom: 5px
}

.topoverlay {
    position: fixed;
    height: 100vh;
    top: 0;
    display: none;
    color: white;
    z-index: 4;
    width: 100%;
    background-color: #253238
}

.topoverlay__checkbox {
    display: none
}

.topoverlay__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh
}

.topoverlay__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    max-width: 1075px;
    width: 100%
}

.topoverlay__close {
    cursor: pointer;
    margin-right: 90px
}

.topoverlay__header {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 90px
}

.topoverlay__item {
    max-width: 1075px;
    width: 100%
}

.topoverlay__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.topoverlay__order {
    max-width: 345px;
    width: 100%;
    margin-left: 85px
}

.topoverlay__order-item {
    background: -o-linear-gradient(110.86deg, #723e8f .84%, #a37fce 99%);
    background: linear-gradient(339.14deg, #723e8f .84%, #a37fce 99%);
    height: 50%;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.topoverlay__order-manage {
    background: -o-linear-gradient(287.99deg, #455b66 2.88%, #5a6f7a 97.87%);
    background: linear-gradient(162.01deg, #455b66 2.88%, #5a6f7a 97.87%)
}

.topoverlay__order-manage:hover {
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    height: 70%
}

.topoverlay__order-phone:hover {
    height: 65%
}

.topoverlay__order-title {
    font-weight: 600;
    font-size: 24px;
    position: relative
}

.topoverlay__order-phonetitle {
    margin-top: 60px
}

.topoverlay__title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase
}

.topoverlay__title-menu {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700
}

.topoverlay__menu {
    font-size: 18px
}

.topoverlay__menu-list li {
    margin-bottom: 15px;
    position: relative
}

.topoverlay__menu-list li a:before {
    content: "";
    width: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.topoverlay__menu-list li a:hover:before {
    content: "";
    position: absolute;
    background-color: #9468B4;
    height: 2px;
    width: 100%;
    bottom: -5px
}

.topoverlay__menu-list li a:hover {
    text-shadow: 1px 0 0 #fff;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s
}

.topoverlay__links {
    font-size: 24px
}

.topoverlay__contacts li {
    margin-bottom: 15px
}

.topoverlay__contacts li:first-child a {
    text-decoration: underline;
    font-weight: 700
}

.topoverlay__biglogo {
    position: absolute;
    top: 539px;
    right: -250px;
    z-index: -1
}

.popup {
    position: fixed;
    background-color: rgba(37, 50, 56, 0.8);
    z-index: 85;
    width: 100%;
    height: 100%;
    top: 0;
    display: none
}

.order {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 1440px;
    background-color: white;
    border-radius: 20px;
    width: 100%;
    padding: 90px
}

.order__close {
    position: absolute;
    right: 15px;
    border-radius: 50%;
    top: 15px;
    opacity: 0.8;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.order__close img {
    width: 54px;
    height: 54px
}

.order__close:hover {
    opacity: 1
}

.order__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px
}

.order__info {
    font-weight: 500;
    max-width: 700px;
    width: 100%;
    margin-right: 42px
}

.order__info-text {
    font-size: 42px;
    line-height: 55px;
    margin-bottom: 28px
}

.order__info-subtext {
    font-weight: 400
}

.order__form input {
    width: 100%;
    margin-bottom: 30px;
    height: 55px;
    outline: none;
    border: none;
    border-bottom: 1px solid #5d6075;
    font-size: 24px;
    font-weight: 600
}

.order__form input:hover {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.order__form input::-webkit-input-placeholder {
    color: #253238
}

.order__form input::-moz-placeholder {
    color: #253238
}

.order__form input:-ms-input-placeholder {
    color: #253238
}

.order__form input::-ms-input-placeholder {
    color: #253238
}

.order__form input::placeholder {
    color: #253238
}

.order__form input:focus {
    border-color: #783294
}

.order__btn {
    position: relative;
    font-size: 24px;
    color: #4c2e88;
    border: none;
    font-weight: 600;
    outline: none;
    background: transparent;
    cursor: pointer;
    margin-left: 315px
}

.order__btn:after {
    content: "";
    background-image: url(../images/main/submit-button.svg);
    position: absolute;
    width: 25px;
    height: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -55px
}

.order__btn-brief {
    margin-left: 0
}

.order__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.order__links {
    font-size: 24px;
    color: #783294;
    text-decoration: underline;
    font-weight: 600;
    margin-right: 105px;
    margin-left: 120px
}

.order__links a {
    display: block;
    margin-bottom: 30px
}

.order__logos {
    margin-bottom: 0px
}

.order__descr {
    line-height: 20px;
    font-size: 16px
}

.order__descr span {
    display: block;
    padding-right: 65px;
    margin-bottom: 30px
}

.header__brief {
    position: relative;
    margin-bottom: 0
}

.header__brief .header__item-checkbox {
    color: black;
    border-color: black
}

.header__brief .header__item-light {
    color: black
}

.header__brief .header__item-right {
    color: black
}

.header__brief .header__btn {
    border-color: black
}

.brief {
    margin-top: 120px
}

.brief textarea {
    width: 100%;
    margin-top: 15px;
    resize: none;
    border: none;
    border-bottom: 1px solid #5d6075;
    outline: none;
    font-weight: 600;
    font-size: 24px;
    min-height: 150px
}

.brief textarea:focus {
    border-color: #783294
}

.brief__title {
    font-size: 80px;
    color: #253238;
    font-weight: 700;
    margin-bottom: 60px
}

.brief__select {
    border-radius: 5px;
    border: 1px solid #253238;
    outline: none;
    max-width: 360px;
    width: 100%;
    height: 52px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    background: rgba(208, 217, 222, 0.3)
}

.brief__subtitle {
    font-size: 32px;
    margin-bottom: 95px
}

.brief__form input {
    display: block;
    width: 100%;
    height: 55px;
    outline: none;
    border: none;
    font-weight: 600;
    font-size: 24px;
    color: #253238;
    border-bottom: 1px solid #5d6075
}

.brief__form input:focus {
    border-color: #783294
}

.brief__upload-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 70px
}

.brief__upload-file {
    margin-right: 20px;
    cursor: pointer;
    margin-bottom: 20px
}

.brief__btn {
    background-color: #9468b4;
    border-radius: 5px;
    outline: none;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    max-width: 318px;
    width: 100%;
    height: 52px;
    text-align: center;
    cursor: pointer
}

.brief__line {
    position: relative;
    margin-bottom: 60px
}

.brief__line input::-webkit-outer-spin-button,
.brief__line input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none
}

.brief__line:last-child {
    text-align: center
}

.brief__line-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1
}

.brief__line-file+label {
    margin-top: 25px;
    display: block;
    cursor: pointer;
    width: 97px;
    background: #cccccc;
    border-radius: 4px;
    background-image: url(../images/main/file.svg);
    background-position: center;
    padding-left: 0 !important;
    background-repeat: no-repeat;
    position: relative;
    height: 97px;
    font-size: 12px
}

.brief__line-file+label span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.brief__line-file+label::before {
    width: 0 !important
}

.brief__line p {
    margin: 0;
    padding-left: 7px;
    font-size: 12px
}

.brief__line-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 710px;
    width: 100%;
    margin-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.brief__line-list .brief__list {
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    margin-right: 15px;
    background-color: #253238;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #253238;
    border-radius: 4px;
    position: relative;
    cursor: pointer
}

.brief__line-list .brief__list::before {
    content: "";
    position: absolute;
    background-color: #9468b4;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    width: 0;
    height: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.brief__line-list .brief__list:checked::before {
    width: 12px;
    height: 12px
}

.brief__line-list span {
    display: block
}

.brief__line label {
    font-size: 18px;
    padding-left: 6px;
    position: relative
}

.brief__line label::before {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 22px;
    background-color: #783294
}

.brief__line sup {
    color: #783294
}

.brief__line-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.brief__line-designwrapper .brief__line-check {
    width: 100%
}

.brief__line-designwrapper .brief__line-check:nth-child(1) {
    max-width: 350px !important;
    margin-right: 25px !important
}

.brief__line-designwrapper .brief__line-check:nth-child(2) {
    max-width: 400px !important
}

.brief__line-lastwrapper .brief__line-check:nth-child(4) {
    max-width: 390px !important;
    width: 100%
}

.brief__line-bottomwrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 60%
}

.brief__line-bottomwrapper .brief__line-check {
    max-width: 230px;
    margin-left: 0;
    width: 100%
}

.brief__line-bottomwrapper .brief__line-check:nth-child(1),
.brief__line-bottomwrapper .brief__line-check:nth-child(3),
.brief__line-bottomwrapper .brief__line-check:nth-child(5) {
    margin-right: 145px
}

.brief__line-bottomwrapper .brief__line-check:nth-child(2),
.brief__line-bottomwrapper .brief__line-check:nth-child(4),
.brief__line-bottomwrapper .brief__line-check:nth-child(6) {
    max-width: 360px
}

.brief__line-bottomwrapper .brief__line-check-style {
    max-width: 100%
}

.brief__line-bottomwrapper .brief__line-check+.brief__line-check {
    margin-left: 0
}

.brief__line-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    font-size: 18px
}

.brief__line-check+.brief__line-check {
    margin-left: 60px
}

.brief__line-check span {
    display: block;
    margin-left: 15px
}

.brief__line input[type="range"] {
    margin-top: 30px;
    outline: none;
    position: relative;
    border-bottom: none !important
}

.brief__line input[type="range"]::before,
.brief__line input[type="range"]::after {
    content: "";
    min-width: 18px;
    height: 18px;
    position: absolute;
    background-color: #9468b4;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.brief__line input[type="range"]::after {
    right: 0
}

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

.brief__count-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.brief__checkbox {
    display: none !important
}

.brief__checkbox+label {
    display: block;
    min-width: 18px;
    max-width: 18px;
    background-color: #253238;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid transparent
}

.brief__checkbox+label::before {
    content: "";
    width: 0
}

.brief__checkbox:checked+label {
    position: relative;
    border: 1px solid #783294
}

.brief__checkbox:checked+label::after {
    content: "";
    position: absolute;
    background-color: #783294;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 3px
}

#amount {
    display: block;
    margin-top: 20px;
    padding-bottom: 15px;
    max-width: 201px;
    border-bottom: 1px solid #5d6075;
    font-weight: 600;
    font-size: 24px
}

#amount::after {
    content: "грн.";
    margin-left: 15px
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type='range'] {
        -webkit-appearance: none;
        background-color: #253238;
        height: 4px
    }

    input[type='range']::-webkit-slider-runnable-track {
        height: 18px;
        -webkit-appearance: none;
        color: #13bba4;
        margin-top: -1px
    }

    input[type='range']::-webkit-slider-thumb {
        width: 18px;
        -webkit-appearance: none;
        height: 18px;
        overflow: visible;
        cursor: pointer;
        background: #9468B4;
        border-radius: 50%
    }
}

input[type="range"]::-moz-range-progress {
    background-color: #9468B4
}

input[type="range"]::-moz-range-track {
    background-color: #253238
}

input[type="range"]::-ms-fill-lower {
    background-color: #9468B4
}

input[type="range"]::-ms-fill-upper {
    background-color: #253238
}

.header__portfolio {
    margin-bottom: 140px
}

.header__portfolio .header__top {
    margin-top: 0;
    padding-top: 20px
}

.pizza__title {
    max-width: 527px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px
}

.pizza__title-main {
    font-size: 70px;
    font-weight: 700;
    text-align: center
}

.pizza__title-sub {
    color: #9468B4;
    font-size: 20px;
    padding-left: 25px;
    margin-top: -15px;
    font-weight: 600;
    text-align: left;
    position: relative
}

.pizza__title-sub::before {
    content: "";
    position: absolute;
    left: 5px;
    background-image: url(../images/pizza/key.svg);
    width: 9px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.pizza__reviews-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
}

.pizza__reviews-wrapper .reviews__slider-item {
    padding-left: 0
}

.pizza__text {
    font-size: 24px;
    line-height: 30px;
    max-width: 830px;
    width: 100%;
    margin: 0 auto
}

.pizza__header {
    margin-bottom: 130px;
    text-align: center;
    margin-top: 120px
}

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

.pizza__inner-bottom {
    margin-bottom: 90px
}

.pizza__inner-header {
    padding-bottom: 20px
}

.pizza__item {
    max-width: 600px;
    width: 100%
}

.pizza__item-left {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-left: 0
}

.pizza__item-bottom {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#c4c4c4), color-stop(27.6%, #c4c4c4), to(rgba(196, 196, 196, 0)));
    -webkit-mask-image: linear-gradient(180deg, #c4c4c4 0%, #c4c4c4 27.6%, rgba(196, 196, 196, 0) 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, from(#c4c4c4), color-stop(27.6%, #c4c4c4), to(rgba(196, 196, 196, 0)));
    mask-image: linear-gradient(180deg, #c4c4c4 0%, #c4c4c4 27.6%, rgba(196, 196, 196, 0) 100%);
    border-radius: 55px 55px 0px 0px
}

.pizza__item-bottom img {
    max-width: 360px;
    width: 100%;
    border-radius: 45px 45px 0px 0px
}

.pizza__item-img {
    position: relative
}

.pizza__item-preview {
    position: absolute;
    top: 227px;
    right: -195px;
    border-radius: 5px;
    -webkit-filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.25));
    filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.25))
}

.pizza__item-preview-second {
    top: 409px;
    right: -244px;
    -webkit-filter: drop-shadow(10px 20px 40px rgba(16, 16, 16, 0.2));
    filter: drop-shadow(10px 20px 40px rgba(16, 16, 16, 0.2))
}

.pizza__item-preview-third {
    right: 50px !important
}

.pizza__item-title {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 40px
}

.pizza__item-text {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 62px
}

.pizza__item-link {
    color: #9468B4;
    font-weight: 700;
    font-size: 32px;
    position: relative;
    padding-right: 45px;
    margin-bottom: 21px
}

.pizza__item-link::after {
    content: "";
    width: 25px;
    height: 22px;
    position: absolute;
    background-image: url(../images/pizza/link-arrow.svg);
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0
}

.pizza__appstore {
    -webkit-filter: drop-shadow(0px 1px 15px rgba(74, 74, 74, 0.5));
    filter: drop-shadow(0px 1px 15px rgba(74, 74, 74, 0.5))
}

.pizza__phone {
    -webkit-filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.25));
    filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.25));
    border-radius: 45px
}

.pizza__phone-absolute {
    position: absolute;
    top: 84px;
    right: -250px
}

.pizza__phone-header {
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px)
}

.pizza__reviews {
    border: none;
    padding-top: 0
}

.header__page {
    margin-bottom: 140px;
    min-height: 100vh
}

.header__page .header__top {
    margin-top: 0;
    padding-top: 20px
}

.header__bottom {
    margin-top: 105px;
    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-bottom: 95px
}

.header__bottom .mainscreen__subtitle {
    max-width: 600px
}

.header__bottom .mainscreen__btn {
    margin-top: 100px;
    padding: 14px 71px;
    font-size: 20px
}

.header__bottom-hidden {
    display: none
}

.header__bottom-title {
    font-size: 80px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px
}

.header__bottom-subtitle {
    font-weight: 400;
    max-width: 537px;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 40px;
    width: 100%
}

.header__bottom-item-hidden {
    display: none
}

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

.comments__inner-first {
    margin-bottom: 20px
}

.comments__inner-first .comments__item {
    width: 50%
}

.comments__inner-first .comments__item-text-hidden {
    display: none
}

.comments__inner-second {
    margin-bottom: 95px
}

.comments__inner-second .comments__item {
    max-width: 442px;
    width: 100%;
    font-size: 24px;
    font-weight: 600
}

.comments__inner-second .comments__item+.comments__item {
    margin-left: 57px
}

.comments__inner-third {
    margin-bottom: 190px
}

.comments__inner-third .comments__item {
    width: 50%;
    font-size: 24px
}

.comments__inner-third .comments__item+.comments__item {
    margin-left: 57px
}

.comments__inner-fourth {
    margin-bottom: 180px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.comments__inner-fourth .comments__item {
    width: 50%
}

.comments__inner-fourth .comments__item-text {
    font-size: 20px
}

.comments__inner-fourth .comments__item-text p {
    margin-top: 0;
    margin-bottom: 32px
}

.comments__inner-fourth .comments__item-text span {
    font-weight: 600
}

.comments__item-right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.comments__item-title {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 32px
}

.comments__item-text {
    font-size: 24px;
    line-height: 30px
}

.comments__item-img {
    text-align: right
}

.landings {
    padding-bottom: 135px
}

.landings__title {
    text-align: center;
    margin-bottom: 60px
}

.landings__title-second {
    text-align: left
}

.landings__title-right {
    text-align: right;
    margin-bottom: 0
}

.landings .comments__inner-fourth {
    margin-bottom: 0px
}

.landings .comments__inner-fourth .comments__item {
    width: 52%
}

.landings__text-title {
    display: block
}

.landings__list {
    padding-left: 40px;
    font-size: 20px;
    margin-top: 45px;
    margin-bottom: 65px
}

.landings__list-hidden {
    display: none
}

.landings__list li+li {
    margin-top: 25px
}

.landings__list li {
    position: relative
}

.landings__list li::before {
    content: "";
    position: absolute;
    left: -40px;
    background-image: url(../images/landings/list.svg);
    background-repeat: no-repeat;
    width: 22px;
    height: 16px;
    bottom: 20%
}

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

.landings__inner-last {
    margin-bottom: 185px
}

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

.landings__wrapper-last {
    margin-top: 120px
}

.landings__wrapper-item {
    width: 50%
}

.landings__wrapper-item-right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.landings__wrapper-title {
    font-weight: 700;
    font-size: 54px
}

.landings__item+.landings__item {
    margin-left: 60px
}

.landings__item {
    width: 50%;
    margin-bottom: 60px
}

.landings__item-title {
    font-size: 56px;
    font-weight: 700;
    padding-left: 25px;
    margin-bottom: 20px;
    position: relative
}

.landings__item-title::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #ba68c8;
    left: 0
}

.landings__item-subtitle {
    padding-left: 25px;
    font-size: 22px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 25px
}

.landings__item-text {
    font-size: 24px
}

.google {
    padding-bottom: 110px
}

.google .landings__item {
    margin-bottom: 0
}

.google .comments__item-text {
    font-size: 22px
}

.google__item {
    max-width: 740px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    padding: 55px 48px;
    background: rgba(223, 190, 219, 0.2);
    position: relative
}

.google__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.google__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
}

.google__wrapper-title {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 35px
}

.google__wrapper-item {
    max-width: 700px;
    width: 100%
}

.google__wrapper-item img {
    width: 100%
}

.google__wrapper-text {
    margin-top: -100px;
    font-weight: 500;
    font-size: 26px
}

.google__list {
    font-size: 22px;
    font-weight: 600;
    padding-left: 24px
}

.google__list li {
    list-style-type: decimal
}

.google__list li+li {
    margin-top: 70px
}

.google__balls {
    position: absolute;
    left: -120px;
    top: -60px;
    z-index: -1
}

.google__balls-second {
    top: auto;
    left: auto;
    bottom: -60px;
    right: -120px
}

.header__bottom-mobile .header__bottom-item .header__bottom-title {
    font-size: 70px
}

.header__bottom-mobile .header__bottom-item .header__bottom-subtitle {
    font-size: 28px;
    line-height: 34px;
    max-width: 730px
}

.mobile {
    padding-bottom: 140px
}

.mobile__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 80px
}

.mobile__inner-zero {
    margin-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mobile__img-shadow {
    -webkit-filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.8));
    filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.8))
}

.mobile__item {
    max-width: 702px;
    width: 100%
}

.mobile__item-img {
    text-align: center
}

.mobile__item img {
    width: 80%
}

.mobile__item-right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.mobile__subtitle {
    margin-bottom: 30px
}

.mobile__subtext {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px
}

.mobile__point {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px
}

.content__img {
    text-align: right
}

.branding img {
    width: 100%
}

.branding__header-title {
    font-size: 80px !important
}

.branding__item img {
    width: 75% !important
}

.branding__title {
    font-size: 38px
}

.branding__inner .comments__item-text {
    font-size: 25px
}

.branding__wrapper .landings__wrapper-item {
    width: auto
}

.branding__wrapper .landings__wrapper-item+.landings__wrapper-item {
    margin-right: 240px
}

.branding__wrapper .landings__list {
    font-size: 24px;
    line-height: 52px
}

.branding__wrapper .landings__list li:before {
    top: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.branding__wrapper .landings__list li+li {
    margin-top: 0
}

.branding__wrapper-last {
    margin-bottom: 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.branding__wrapper-last .comments__item-text {
    margin-bottom: 50px !important;
    font-size: 18px;
    line-height: auto;
    max-width: 700px;
    width: 100%
}

.branding__wrapper-last .comments__item img {
    margin-bottom: 50px;
    width: 100%
}

.branding__show {
    display: none;
    margin: 0 auto 60px;
    width: 80%
}

.rework .landings__wrapper-item {
    width: auto
}

.rework .landings__wrapper-item-right {
    width: auto
}

.rework__item-text {
    font-size: 24px !important;
    line-height: 30px !important;
    margin-top: 46px
}

.rework__item-title {
    font-size: 36px !important;
    text-transform: uppercase;
    margin-bottom: 25px !important
}

.rework__item-img {
    text-align: center
}

.rework .comments__inner-fourth .comments__item {
    width: 100%;
    max-width: 700px
}

.redesign .mobile__item img {
    width: 65%
}

.redesign__header-subtitle {
    font-size: 22px !important
}

.redesign__inner {
    margin-bottom: 140px
}

.redesign__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 140px
}

.redesign__item-title {
    text-transform: none;
    font-size: 56px
}

.redesign__item-right {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.tech {
    padding-bottom: 100px
}

.tech__list {
    font-size: 22px;
    line-height: 27px
}

.tech__list li+li {
    margin-top: 10px
}

.tech__list li {
    padding-left: 25px;
    position: relative
}

.tech__list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background: #9468b4;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.tech__title {
    margin-bottom: 120px !important
}

.tech__maintitle {
    font-size: 50px;
    margin-bottom: 40px
}

.tech__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 45px
}

.tech__item {
    -webkit-box-shadow: 10px 20px 40px rgba(16, 16, 16, 0.2);
    box-shadow: 10px 20px 40px rgba(16, 16, 16, 0.2);
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    padding: 40px 40px 30px 50px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    min-height: 408px
}

.tech__item:nth-child(1),
.tech__item:nth-child(3) {
    margin-right: 30px
}

.tech__item:hover {
    background: #9468b4;
    color: #fff
}

.tech__item:hover svg {
    fill: white !important
}

.tech__item:hover .tech__list li::before {
    background: #fff
}

.tech__item .header__btn {
    background-color: #9468b4
}

.tech__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 220px;
    max-height: 220px;
    margin-bottom: 70px
}

.tech__item-img {
    margin-right: 50px;
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.tech__item-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px
}

.tech__item-subtext {
    font-weight: 500;
    font-size: 18px
}

.tech__item-text span {
    font-size: 26px;
    font-weight: 700
}

.tech__item .tech__list {
    font-weight: 500
}

.develop__subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px
}

.develop .tech__item {
    min-height: 450px
}

.develop .tech__item-inner {
    margin-bottom: 160px
}

.develop__inner {
    margin-bottom: 140px
}

.audit .mobile__point {
    font-weight: 500
}

.audit__text {
    margin-bottom: 50px
}

.audit .landings__list {
    font-size: 18px
}

.audit__point {
    max-width: 900px;
    width: 100%
}

.crm .landings__list {
    font-size: 26px;
    line-height: 43px;
    font-weight: 500
}

.crm .landings__list li+li {
    margin-top: 65px
}

.crm__title {
    max-width: 65%;
    margin-bottom: 123px !important
}

.crm__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 120px
}

.crm__inner-last {
    margin-top: 180px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 180px
}

.crm__text {
    font-size: 26px
}

.crm__text-last {
    line-height: 43px
}

.crm__item {
    max-width: 700px;
    width: 100%
}

.crm__item-down {
    -webkit-transform: translateY(90px);
    -ms-transform: translateY(90px);
    transform: translateY(90px)
}

.crm__item-doubledown {
    -webkit-transform: translateY(190px);
    -ms-transform: translateY(190px);
    transform: translateY(190px)
}

.crm__item-last {
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px)
}

.crm__item-center {
    text-align: center
}

.crm__item-center .crm__text {
    font-weight: 500
}

.seo__title {
    width: 50%;
    margin-bottom: 55px !important
}

.seo__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 80px
}

.seo__inner-last {
    margin-bottom: 125px
}

.seo__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-self: center;
    max-width: 700px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.seo__item .landings__title {
    margin-top: 35px
}

.seo__item img {
    max-width: 100%
}

.seo__item-title {
    font-size: 36px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase
}

.seo__item-subtitle {
    font-size: 36px;
    font-weight: 700;
    -ms-flex-item-align: start;
    align-self: start
}

.seo__item-text {
    font-size: 18px;
    line-height: 22px
}

.seo__item-text-last {
    font-size: 22px;
    line-height: 26px
}

.smm .landings__wrapper-item {
    max-width: 700px;
    width: 100%
}

.smm .comments__item {
    max-width: 700px;
    width: 100%
}

.smm .google__list {
    margin-top: 35px;
    font-weight: 400
}

.smm .google__list li+li {
    margin-top: 35px
}

.smm__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    text-transform: uppercase
}

.smm__title::before {
    content: "";
    position: absolute;
    left: -40px;
    background-image: url(../images/landings/list.svg);
    background-repeat: no-repeat;
    width: 22px;
    height: 16px;
    bottom: 20%
}

.smm__text {
    margin-bottom: 20px;
    font-size: 26px
}

.calc .pizza__item {
    max-width: 650px
}

.calc .pizza__item-text span {
    font-weight: 600
}

.calc .pizza__item-preview {
    top: 140px
}

.calc .pizza__item-preview-second {
    top: 414px;
    right: -89px
}

.calc__header {
    margin-bottom: 0
}

.calc__title {
    max-width: 100%
}

.calc__title-sub {
    text-align: center;
    display: inline-block
}

.calc__text {
    max-width: 100%;
    font-size: 23px
}

.calc__item {
    max-width: 600px;
    width: 100%
}

.calc__item-title {
    font-size: 65px
}

.calc__inner {
    margin-top: 225px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

.calc__inner-last {
    margin-top: -350px
}

.calc__inner-last img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: translateY(35%);
    -ms-transform: translateY(35%);
    transform: translateY(35%)
}

.calc__inner-bottom {
    margin-bottom: 250px
}

.money__title .pizza__title-sub {
    margin-top: -4px
}

.money .pizza__item-preview {
    top: 278px;
    right: 0
}

.money__zero {
    border-radius: 10px
}

.header__site {
    min-height: 75vh
}

.header__site .pizza__title-sub {
    display: inline-block;
    text-align: center;
    top: -12px;
    left: -3px
}

.home__phone {
    width: 100%
}

.home__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 160px;
    margin-top: 260px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.home__inner-last .pizza__item {
    max-width: auto;
    width: auto
}

.home__inner .pizza__phone {
    border-radius: 0
}

.home__inner .pizza__item-title {
    font-size: 60px;
    line-height: 62px
}

.home__inner-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.home__inner-column .pizza__item {
    margin-left: 0;
    margin-right: 0;
    text-align: center
}

.home__item {
    padding: 0 10px;
    max-width: 600px;
    position: relative;
    width: 100%
}

.home__item .pizza__item-text span {
    font-weight: 700
}

.home__item .pizza__item-preview {
    top: 80px;
    right: -103px
}

.home__item .pizza__phone {
    width: 100%
}

.home__item-left {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.site__header {
    margin-bottom: 0
}

.contacts {
    margin-top: 180px
}

.contacts img {
    width: 100%
}

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

.contacts__item-info {
    color: #fff;
    max-width: 520px;
    width: 100%;
    padding: 47px 64px;
    background: #333646;
    -webkit-box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    min-height: 555px;
    height: 100%
}

.contacts__title {
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 40px
}

.contacts__map {
    margin-bottom: 120px;
    border-radius: 10px
}

.contacts__map img {
    border-radius: 10px
}

.contacts__link {
    display: block;
    padding-left: 47px;
    text-decoration: underline;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative
}

.contacts__link::before {
    content: "";
    position: absolute;
    left: 0;
    background-image: url(../images/contacts/contacts-phone.svg);
    background-repeat: no-repeat;
    width: 27px;
    height: 27px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-position: center
}

.contacts__link:nth-child(3)::before {
    background-image: url(../images/contacts/contacts-email.svg);
    width: 27px;
    height: 21px
}

.contacts__subtitle {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px
}

.contacts__text {
    font-weight: 500
}

.contacts__graph span {
    display: block;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px
}

.contacts__graph span:nth-child(2) {
    margin-bottom: 15px
}

.header__portfolio {
    margin-bottom: 70px
}

.portfolio .pizza__phone {
    border-radius: 0
}

.portfolio__item {
    position: relative;
    max-width: 650px;
    width: 100%
}

.portfolio__item-right {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.portfolio__item-img {
    margin-right: 10px;
    margin-left: 10px
}

.portfolio__item-subtitle {
    font-size: 26px;
    opacity: 0.5;
    margin-bottom: 40px
}

.portfolio__item .pizza__item-title {
    margin-bottom: -12px
}

.portfolio__item .header__btn {
    display: inline-block;
    background-color: #9468B4;
    color: #fff;
    padding: 14px 70px
}

.portfolio__item .pizza__item-preview {
    top: auto;
    right: auto;
    position: relative
}

.portfolio__item .pizza__item-preview-second {
    position: absolute;
    top: 88px;
    right: 200px
}

.portfolio__item-preview {
    z-index: -1 !important;
    right: -3px !important
}

.portfolio__item-preview-second {
    z-index: 1 !important
}

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

.megazoo__link {
    margin-top: 30px
}

.megazoo__text {
    max-width: 930px
}

.megazoo__phone {
    width: 90%
}

.megazoo__reviews {
    margin-bottom: 80px
}

@media (max-width: 1325px) {
    .pizza__item-img-left {
        margin-right: 0 !important
    }

    .pizza__item-double {
        margin-left: 280px !important
    }

    .pizza__item-left {
        margin-left: 0 !important;
        margin-right: 20px !important;
        text-align: center
    }
}

@media (max-width: 1150px) {
    .pizza__header {
        margin-bottom: 30px !important;
        margin-top: 80px !important
    }

    .pizza__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 60px !important
    }

    .pizza__inner-bottom {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .pizza__phone {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    .pizza__item {
        width: 80%;
        margin: 0 auto !important;
        text-align: center
    }

    .pizza__item-img {
        width: 100%;
        margin-bottom: 30px;
        text-align: center
    }

    .pizza__item-img-left {
        width: 100%;
        text-align: center
    }

    .pizza__item-left {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
        margin: 0 auto !important
    }

    .pizza__item-preview {
        display: none
    }

    .pizza__item-preview-third {
        display: none
    }

    .pizza__appstore {
        display: block
    }

    .pizza__phone-absolute {
        position: relative !important;
        top: auto !important;
        right: auto !important
    }
}

@media (max-width: 1088px) {
    .pizza__inner-bottom {
        margin-bottom: 0 !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .pizza__inner-bottom .pizza__item-bottom:nth-child(3),
    .pizza__inner-bottom .pizza__item-bottom:nth-child(4) {
        -webkit-transform: translateY(-150px);
        -ms-transform: translateY(-150px);
        transform: translateY(-150px)
    }
}

@media (max-width: 828px) {
    .pizza__phone-hide {
        display: none
    }
}

@media (max-width: 739px) {
    .pizza__inner-bottom .pizza__item-bottom:nth-child(2) {
        -webkit-transform: translateY(-150px);
        -ms-transform: translateY(-150px);
        transform: translateY(-150px)
    }

    .pizza__inner-bottom .pizza__item-bottom:nth-child(3) {
        -webkit-transform: translateY(-300px);
        -ms-transform: translateY(-300px);
        transform: translateY(-300px)
    }

    .pizza__inner-bottom .pizza__item-bottom:nth-child(4) {
        -webkit-transform: translateY(-450px);
        -ms-transform: translateY(-450px);
        transform: translateY(-450px)
    }

    .pizza__reviews {
        margin-top: -420px
    }

    .pizza__phone-elekomp {
        display: none
    }
}

@media (max-width: 550px) {
    .pizza__header {
        margin-top: 60px !important;
        margin-bottom: 30px !important
    }

    .pizza__title-main {
        font-size: 55px !important
    }

    .pizza__title-sub {
        margin-top: -5px !important
    }

    .pizza__text {
        font-size: 18px !important
    }

    .pizza__item {
        width: 100%
    }

    .pizza__item-title {
        font-size: 47px !important
    }

    .pizza__item-text {
        font-size: 19px !important
    }

    .pizza__reviews {
        text-align: center
    }
}

@media (max-width: 440px) {
    .pizza__header {
        margin-top: 60px !important;
        margin-bottom: 30px !important
    }

    .pizza__title-main {
        font-size: 50px !important
    }
}

@media (max-width: 420px) {
    .pizza__phone {
        width: 100%
    }

    .pizza__item-link {
        font-size: 23px !important
    }
}

@media (max-width: 355px) {
    .pizza__item-title {
        font-size: 38px !important
    }
}

@media (max-width: 1600px) or (max-height: 1250px) {
    .works__item {
        width: 33.3%
    }

    .works__item-title {
        font-size: 40px
    }

    .works__item-all {
        padding: 0 10px
    }

    .progress__inner {
        margin: 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .progress__item {
        margin: 0 10px 30px;
        max-width: 400px;
        border-radius: 10px;
        -webkit-box-shadow: 0px 2px 12px rgba(14, 14, 18, 0.3);
        box-shadow: 0px 2px 12px rgba(14, 14, 18, 0.3)
    }

    .progress__item-img {
        width: 40%;
        -webkit-transform: translateX(-75%);
        -ms-transform: translateX(-75%);
        transform: translateX(-75%)
    }

    .progress__item-title {
        margin-left: 25px;
        font-size: 55px
    }

    .progress__item-text {
        text-align: center;
        font-size: 24px;
        margin-left: 0
    }

    .progress__item::after,
    .progress__item::before {
        display: none
    }

    .progress__item::after {
        content: "";
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .progress__item::before {
        content: "";
        background-image: url(../images/main/progress-line.svg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border: none;
        left: 100%;
        top: auto;
        bottom: 0;
        z-index: -1;
        position: absolute;
        -webkit-filter: none;
        filter: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        width: 19px;
        height: 28px
    }

    .progress__item:nth-child(2)::before {
        -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1);
        left: -19px
    }

    .progress__item:nth-child(4)::before {
        -webkit-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1);
        left: -19px
    }

    .progress__title {
        text-align: center
    }

    .order {
        max-width: 1200px
    }

    .order__info-text {
        font-size: 31px;
        line-height: 38px
    }

    .order__links {
        margin-right: 58px;
        margin-left: 57px
    }
}

@media (max-width: 1410px) or (max-height: 950px) {
    .mainscreen__text {
        font-size: 20px
    }

    .mainscreen__container {
        top: 25%
    }

    .cards {
        margin-bottom: 70px
    }

    .cards__inner {
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 0 15px
    }

    .cards__item-title {
        font-size: 26px
    }

    .skills__inner {
        display: block
    }

    .skills__info {
        margin: 0 auto 120px;
        max-width: 100%;
        width: 65%
    }

    .skills__table {
        margin: 0 auto 30px
    }

    .order {
        max-width: 900px;
        padding: 30px
    }

    .order__title {
        margin: 0 0 15px 0 !important
    }

    .order__btn {
        display: block;
        margin: 0 auto
    }

    .order__btn-brief {
        display: inline-block
    }

    .order__inner {
        display: block
    }

    .order__info {
        display: inline
    }

    .order__info-text {
        font-size: 27px;
        text-align: center;
        margin-bottom: 15px
    }

    .order__info-subtext {
        text-align: center;
        font-size: 16px
    }

    .order__form input {
        height: 35px;
        font-size: 20px;
        margin-bottom: 25px
    }

    .order__bottom svg {
        display: none
    }

    .order__links {
        display: none
    }

    .order__descr {
        line-height: 18px;
        font-size: 15px
    }

    .order__descr span {
        text-align: center;
        padding-right: 0;
        margin-bottom: 15px
    }
}

@media (max-width: 1385px) {
    .header__menu {
        display: none
    }

    .header__menu-list {
        display: none
    }

    .header__item-checkbox {
        border-color: #000;
        margin-left: -100px
    }

    .header__item-light {
        color: #000
    }
}

@media (max-width: 1350px) {
    .mainscreen__example-title {
        font-size: 50px
    }
}

@media (max-width: 1315px) {
    .reviews__nav-item img {
        width: 60%
    }

    .mainscreen__title {
        font-size: 75px
    }
}

@media (max-width: 1200px) {
    .brief__line-wrapper {
        display: block !important;
        width: 100% !important
    }

    .brief__line-check {
        display: block
    }

    .brief__line-check+.brief__line-check {
        margin-left: 0 !important
    }

    .brief__line-bottomwrapper {
        width: 100% !important
    }

    .topoverlay__order {
        margin-left: 25px
    }

    .mainscreen__title {
        font-size: 65px
    }

    .mainscreen__subtitle {
        font-size: 27px
    }

    .mainscreen__text {
        font-size: 16px
    }

    .mainscreen__example-site {
        font-size: 20px
    }

    .services {
        padding: 70px 0;
        margin-bottom: 30px !important
    }

    .services__box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .services .slick-dots {
        margin-top: 10px
    }

    .services__maintitle {
        text-align: center;
        margin-bottom: 30px
    }

    .services__title {
        margin: 30px auto 0;
        max-width: 700px;
        width: 100%
    }

    .services__img {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .skills__title {
        text-align: center
    }

    .skills__info {
        width: 95%;
        background-color: rgba(223, 190, 219, 0.2);
        border-radius: 20px;
        margin-bottom: 120px
    }

    .skills__info-secondquote {
        -webkit-transform: rotate(180deg) translateY(-20px);
        -ms-transform: rotate(180deg) translateY(-20px);
        transform: rotate(180deg) translateY(-20px)
    }

    .skills__info-quote {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        margin-bottom: 0
    }

    .skills__info-text {
        padding: 20px
    }
}

@media (max-width: 1125px) {
    .works__item {
        width: 50%
    }

    .reviews .slick-dots {
        width: 70%
    }
}

@media (max-width: 1055px) {
    .topoverlay__wrapper {
        display: block
    }

    .topoverlay__order {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: 100%;
        margin: 0;
        max-width: 100%
    }

    .order {
        max-width: 700px
    }

    .mainscreen__title {
        font-size: 50px
    }

    .mainscreen__subtitle {
        font-size: 20px;
        max-width: 70%
    }

    .mainscreen__text {
        font-size: 15px
    }

    .footer .footer__menu:nth-child(1) {
        display: none
    }
}

@media (max-width: 980px) {
    .header__btn {
        border-color: #000;
        color: #000
    }

    .header__tel {
        display: none
    }

    .header__item-right {
        display: none
    }

    .mainscreen__wrapper {
        display: block;
        height: 100vh
    }

    .mainscreen__title {
        font-size: 75px
    }

    .mainscreen__right {
        display: none
    }

    .mainscreen__left {
        width: 100%
    }

    .mainscreen__text {
        font-size: 27px
    }

    .mainscreen__box {
        max-width: 100%;
        text-align: center
    }

    .mainscreen__subtitle {
        max-width: 100%;
        font-size: 35px
    }

    .mainscreen__logos {
        margin: 0 auto 40px
    }
}

@media (max-width: 900px) {
    .brief {
        margin-top: 60px !important
    }

    .brief__title {
        text-align: center
    }

    .brief__subtitle {
        text-align: center;
        margin-bottom: 50px !important
    }

    .brief__select {
        display: block;
        margin: 0 auto
    }

    .topoverlay__close {
        margin-right: 35px
    }

    .skills__table {
        padding: 60px 15px 10px
    }

    .skills__table-list {
        display: block
    }

    .skills__table-menu {
        margin: 0 auto 50px !important;
        text-align: center
    }

    .skills__table-menu:nth-child(2) {
        margin-top: 220px !important
    }

    .skills__table-menu:nth-child(2)::before {
        top: -185px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .skills__table-menu:nth-child(2) ul {
        width: 100%
    }

    .skills__table-menu:nth-child(3) {
        margin-top: 200px !important;
        margin-bottom: 0 !important
    }

    .skills__table-menu:nth-child(3)::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: -170px
    }

    .skills__table-menu ul li:before {
        content: ""
    }

    .skills__table-menu span {
        margin: 0 auto
    }

    .skills__table-menu:nth-child(1)::before {
        top: -175px
    }
}

@media (max-width: 850px) {
    .container {
        max-width: 1440px;
        padding: 0 10px
    }

    .order {
        max-width: 500px
    }

    .order__info-text {
        font-size: 21px;
        line-height: 26px
    }

    .order__info-subtext {
        font-size: 11px
    }

    .order__descr {
        font-size: 11px;
        line-height: 15px
    }

    .skills__title {
        text-align: center
    }

    .skills__info {
        width: 95%;
        background-color: rgba(223, 190, 219, 0.2);
        border-radius: 20px;
        margin-bottom: 120px
    }

    .skills__info-secondquote {
        -webkit-transform: rotate(180deg) translateY(-20px);
        -ms-transform: rotate(180deg) translateY(-20px);
        transform: rotate(180deg) translateY(-20px)
    }

    .skills__info-quote {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        margin-bottom: 0
    }

    .skills__info-text {
        padding: 20px
    }

    .progress__item::before,
    .progress__item::after {
        display: block
    }
}

@media (max-width: 825px) {
    .reviews__slider-item {
        padding: 40px 25px 10px 25px
    }

    .footer {
        padding-top: 30px
    }

    .footer__inner {
        display: block;
        text-align: center;
        margin-bottom: 0
    }

    .footer__menu {
        margin-bottom: 30px
    }

    .footer__menu:nth-child(2),
    .footer__menu:nth-child(3) {
        display: none
    }

    .footer__menu-logos {
        margin: 30px auto
    }

    .footer__top {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer__top-divider {
        display: none
    }
}

@media (max-width: 800px) {
    .mainscreen__text {
        font-size: 17px;
        margin: 15px auto 30px
    }
}

@media (max-width: 700px) {
    .topoverlay__menu:nth-child(2) {
        display: none
    }
}

@media (max-width: 650px) {
    .order {
        max-width: 400px
    }

    .order__info-text {
        font-size: 17px;
        line-height: 22px
    }

    .order__info-subtext {
        font-size: 11px
    }

    .order__descr {
        font-size: 11px;
        line-height: 15px
    }

    .order__btn {
        font-size: 20px
    }

    .order__form input {
        margin-bottom: 15px;
        font-size: 15px
    }

    .works__item {
        width: 100%
    }

    .services img {
        width: 100%
    }

    .services .slick-dots {
        margin-top: 10px
    }

    .services__maintitle {
        text-align: center;
        margin-bottom: 30px
    }

    .services__title {
        margin: 30px 0
    }

    .services__info-title {
        font-size: 33px;
        text-align: center
    }

    .mainscreen__title {
        font-size: 65px
    }
}

@media (max-width: 605px) {
    .reviews {
        text-align: center;
        padding-top: 50px
    }

    .reviews__title {
        margin-bottom: 30px
    }

    .reviews__user {
        display: block;
        text-align: center
    }

    .reviews__user img {
        margin: 0 auto
    }

    .works {
        margin-bottom: 30px
    }

    .skills__title {
        text-align: center
    }

    .skills__info {
        width: 95%;
        background-color: rgba(223, 190, 219, 0.2);
        border-radius: 20px;
        margin-bottom: 30px
    }

    .skills__info-secondquote {
        -webkit-transform: rotate(180deg) translateY(-20px);
        -ms-transform: rotate(180deg) translateY(-20px);
        transform: rotate(180deg) translateY(-20px)
    }

    .skills__info-quote {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        margin-bottom: 0
    }

    .skills__info-text {
        padding: 20px
    }

    .skills__table {
        background-color: white
    }

    .skills__table-list {
        margin-bottom: 0
    }

    .skills__table-menu {
        margin: 0 auto 30px !important
    }

    .skills__table-menu:nth-child(1)::before {
        top: 55px;
        left: 30%
    }

    .skills__table-menu:nth-child(2) {
        margin-top: 0 !important
    }

    .skills__table-menu:nth-child(2) span {
        text-align: center
    }

    .skills__table-menu:nth-child(2) ul {
        width: auto;
        margin-right: 50%;
        margin-left: 0
    }

    .skills__table-menu:nth-child(2)::before {
        top: 75px;
        left: 70%
    }

    .skills__table-menu:nth-child(3) {
        margin-top: 0 !important
    }

    .skills__table-menu:nth-child(3)::before {
        top: 37px;
        left: 30%
    }

    .skills__table-menu span {
        width: 100%;
        max-width: 100%;
        text-align: right;
        margin-bottom: 20px
    }

    .skills__table-menu ul {
        margin-left: 50%
    }
}

@media (max-width: 550px) {
    .brief__title {
        font-size: 60px !important
    }

    .header {
        overflow-x: hidden
    }

    .header__item {
        width: 100%
    }

    .header__item-checkboxhide {
        display: none
    }

    .header__item-hiddencheckbox {
        display: block
    }

    .header__item-hiddencheckbox .header__item-checkbox {
        width: 100%;
        border: none;
        margin-left: 0
    }

    .header__logo {
        margin-right: 0
    }

    .topoverlay__checkbox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 auto 15px
    }

    .hamburger {
        margin-right: 0
    }

    .order {
        max-width: 325px;
        padding: 20px
    }

    .order__close {
        top: -80px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%)
    }

    .order__info-text {
        font-size: 14px;
        line-height: 18px
    }

    .order__info-subtext {
        font-size: 9px
    }

    .order__title {
        font-size: 12px
    }

    .order__descr {
        font-size: 11px;
        line-height: 15px
    }

    .order__btn {
        font-size: 15px
    }

    .order__inner {
        margin-bottom: 15px
    }

    .order__form input {
        margin-bottom: 10px;
        font-size: 13px
    }
}

@media (max-width: 500px) {
    .topoverlay__logo {
        display: none
    }

    .topoverlay__header {
        margin-bottom: 15px;
        display: block
    }

    .topoverlay__close {
        margin-right: 0;
        text-align: center;
        margin-bottom: 15px
    }

    .topoverlay .container {
        padding: 0
    }

    .topoverlay__menu {
        padding-left: 5px;
        width: 100%;
        text-align: center
    }

    .topoverlay__logo {
        text-align: center;
        width: 100%
    }

    .topoverlay__logo img {
        width: 100%
    }

    .topoverlay__order-title {
        font-size: 20px;
        text-align: center
    }

    .topoverlay__links {
        display: none
    }

    .mainscreen {
        min-height: 88vh
    }

    .mainscreen__title {
        font-size: 50px
    }

    .mainscreen__subtitle {
        font-size: 20px
    }

    .mainscreen__text {
        font-size: 14px
    }

    .mainscreen__container {
        top: 20%
    }

    .reviews__nav-item img {
        width: 100%;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .services__info-title {
        font-size: 28px
    }

    .services__maintitle {
        font-size: 40px
    }
}

@media (max-width: 480px) {
    .brief__title {
        font-size: 50px !important
    }
}

@media (max-width: 450px) {
    .mainscreen__text {
        font-size: 11px
    }
}

@media (max-width: 430px) {
    .progress {
        padding-bottom: 30px
    }

    .progress__item {
        max-width: 300px;
        height: 285px
    }

    .brief__title {
        font-size: 45px !important;
        margin-bottom: 30px !important
    }

    .brief__subtitle {
        font-size: 25px !important;
        margin-bottom: 30px !important
    }
}

@media (max-width: 394px) {
    .skills__table-menu:nth-child(2)::before {
        top: 119px
    }
}

@media (max-width: 375px) {
    .mainscreen__title {
        margin-bottom: 20px
    }

    .mainscreen__logos {
        margin-bottom: 20px
    }

    .brief__title {
        font-size: 40px !important
    }
}

@media (max-width: 345px) {
    .mainscreen__title {
        font-size: 38px;
        margin-bottom: 30px
    }

    .mainscreen__subtitle {
        margin-bottom: 30px
    }

    .mainscreen__text {
        font-size: 10px
    }

    .mainscreen__container {
        top: 13%
    }

    .progress .mainscreen__btn {
        width: 90%;
        font-size: 20px
    }

    .progress__item {
        max-width: 250px;
        height: 230px
    }

    .progress__item-title {
        font-size: 40px;
        margin-bottom: 10px
    }

    .progress__item-text {
        font-size: 20px
    }
}

@media (max-width: 950px) {
    .header__bottom-mobile .header__bottom-item-hidden {
        width: 100%;
        margin-left: 0
    }
}

@media (max-width: 1175px) {
    .header__bottom-mobile .header__bottom-title {
        font-size: 48px !important
    }

    .header__bottom-mobile .header__bottom-subtitle {
        font-size: 22px !important;
        line-height: 26px !important
    }

    .header__bottom-mobile .header__bottom-item:nth-child(2) img {
        width: 100%
    }
}

@media (max-width: 1100px) {
    .page__title {
        font-size: 45px !important
    }

    .page__subtitle {
        font-size: 30px !important
    }

    .mobile__inner {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media (max-width: 765px) {
    .header__bottom-mobile .header__bottom-title {
        font-size: 42px !important
    }

    .header__bottom-mobile .header__bottom-subtitle {
        font-size: 20px !important
    }

    .mobile__inner {
        display: block
    }

    .mobile__title {
        text-align: center
    }
}

@media (max-width: 650px) {
    .page__title {
        font-size: 35px !important
    }

    .page__subtitle {
        font-size: 26px !important
    }

    .mobile__subtext {
        font-size: 24px !important
    }

    .mobile__point {
        font-size: 35px
    }
}

@media (max-width: 640px) {
    .header__bottom-mobile .header__bottom-item:nth-child(1) {
        width: 100%
    }
}

@media (max-width: 615px) {
    .header__bottom-mobile .header__bottom-title {
        font-size: 35px !important
    }
}

@media (max-width: 490px) {
    .page__subtitle {
        font-size: 26px !important
    }

    .mobile__subtext {
        font-size: 20px !important
    }

    .mobile__point {
        font-size: 32px
    }
}

@media (max-width: 400px) {
    .mobile__point {
        font-size: 25px
    }

    .mobile__subtext {
        font-size: 18px !important
    }
}

@media (max-width: 390px) {
    .header__bottom-subtitle {
        font-size: 17px
    }
}

@media (max-width: 1240px) {
    .header__page {
        margin-bottom: 50px
    }

    .comments__item-title {
        font-size: 50px
    }

    .comments__inner-third .comments__item {
        font-size: 20px
    }
}

@media (max-width: 1175px) {
    .header__bottom {
        margin-top: 100px
    }

    .header__bottom-title {
        font-size: 48px
    }

    .header__bottom-subtitle {
        font-size: 22px;
        line-height: 26px
    }

    .header__bottom-item-main {
        display: none
    }

    .header__bottom-item-hidden {
        display: block
    }

    .header__bottom .mainscreen__btn {
        margin-top: 0
    }

    .comments__inner-second {
        display: block
    }

    .comments__inner-second .comments__item {
        max-width: 60%;
        margin: 0 auto
    }

    .comments__inner-second .comments__item+.comments__item {
        margin-left: auto;
        margin-top: 20px
    }
}

@media (max-width: 980px) {
    .header__bottom {
        padding-bottom: 80px
    }

    .header__bottom .mainscreen__logos {
        margin: 0 0 40px 0
    }
}

@media (max-width: 890px) {
    .comments__inner-fourth {
        margin-bottom: 70px
    }

    .comments__inner-fourth .comments__item-img img {
        width: 100%
    }

    .comments__inner-first {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .comments__inner-first img {
        width: 100%
    }

    .header__bottom-item img {
        width: 100%
    }
}

@media (max-width: 850px) {
    .header__bottom {
        margin-top: 23vh
    }

    .comments__inner-fourth {
        display: block
    }

    .comments__inner-fourth .comments__item {
        max-width: 100%;
        width: 100%
    }

    .comments__inner-fourth .comments__item-title {
        text-align: center
    }

    .comments__inner-fourth .comments__item-right {
        width: 100%
    }
}

@media (max-width: 765px) {
    .header__bottom-title {
        font-size: 42px
    }

    .header__bottom-subtitle {
        font-size: 20px
    }
}

@media (max-width: 670px) {
    .comments__inner-first {
        display: block
    }

    .comments__inner-first .comments__item {
        width: 100%;
        text-align: center
    }

    .comments__inner-first .comments__item img {
        width: 70%
    }

    .comments__inner-first .comments__item-text {
        display: none
    }

    .comments__inner-first .comments__item-text-hidden {
        display: block !important
    }

    .comments__inner-second {
        display: none
    }

    .comments__inner-second .comments__item {
        max-width: 85%
    }

    .comments__inner-third {
        display: none !important
    }
}

@media (max-width: 640px) {
    .header__bottom {
        margin-top: 55px
    }

    .header__bottom-item {
        width: 100%;
        text-align: center
    }

    .header__bottom-item:nth-child(2) {
        display: none
    }

    .header__bottom-hidden {
        display: block;
        width: 100%;
        margin-bottom: 50px
    }

    .header__bottom .mainscreen__logos {
        margin: 0 auto 40px
    }
}

@media (max-width: 600px) {
    .comments__inner-third {
        display: block;
        margin-bottom: 100px
    }

    .comments__inner-third .comments__item {
        width: 100%
    }

    .comments__inner-third .comments__item+.comments__item {
        margin-left: 0px;
        margin-top: 20px
    }
}

@media (max-width: 480px) {
    .comments__inner-first .comments__item img {
        width: 75%
    }

    .comments__inner-first .comments__item-text {
        font-size: 20px
    }

    .comments__inner-second .comments__item {
        max-width: 100%
    }

    .comments__inner-fourth {
        text-align: center
    }

    .comments__inner-fourth .comments__item-right .comments__item-title {
        font-size: 27px
    }

    .comments__inner-fourth .comments__item-title {
        font-size: 40px
    }

    .comments__inner-fourth .comments__item-text {
        font-size: 16px
    }
}

@media (max-width: 390px) {
    .header__bottom-title {
        margin-bottom: 20px;
        font-size: 38px
    }

    .header__bottom-subtitle {
        font-size: 17px
    }

    .header__bottom .mainscreen__logos {
        max-width: 200px
    }

    .header__bottom .mainscreen__logos a {
        width: 42px;
        height: 42px
    }
}

@media (max-width: 1160px) {
    .landings__wrapper-title {
        font-size: 40px
    }
}

@media (max-width: 1065px) {
    .landings__wrapper-item img {
        width: 100%
    }
}

@media (max-width: 1000px) {
    .landings .comments__inner-fourth {
        display: block
    }

    .landings .comments__inner-fourth .comments__item {
        width: 100%
    }

    .landings .comments__inner-fourth .comments__item-img {
        width: 100%
    }

    .landings .comments__inner-fourth .comments__item-img img {
        width: 100%
    }

    .landings__list-main {
        display: none
    }

    .landings__list-hidden {
        display: block
    }
}

@media (max-width: 930px) {
    .landings__title-second {
        text-align: center
    }

    .landings__inner {
        display: block
    }

    .landings__inner-last {
        margin-bottom: 75px
    }

    .landings__item {
        margin: 0 auto 60px;
        width: 95%
    }

    .landings .landings__item+.landings__item {
        margin-left: auto
    }
}

@media (max-width: 850px) {
    .landings__wrapper {
        display: block
    }

    .landings__wrapper-item {
        width: 100%;
        text-align: center
    }

    .landings__wrapper-item img {
        width: 80%
    }

    .landings__wrapper-item-right {
        text-align: center
    }

    .landings__wrapper-item-right img {
        width: 80%
    }

    .landings__wrapper-title {
        text-align: center
    }

    .landings__list {
        text-align: left
    }
}

@media (max-width: 650px) {
    .landings__title {
        font-size: 38px;
        margin-bottom: 30px
    }

    .landings__wrapper-last {
        margin-top: 0
    }
}

@media (max-width: 615px) {
    .landings__header-title {
        font-size: 35px
    }
}

@media (max-width: 515px) {
    .landings__item {
        width: 100%
    }

    .landings__item-title {
        font-size: 45px
    }

    .landings__item-subtitle {
        font-size: 18px
    }

    .landings__item-text {
        font-size: 22px
    }
}

@media (max-width: 480px) {
    .landings__list {
        text-align: left
    }
}

@media (max-width: 440px) {
    .landings__wrapper-title {
        font-size: 30px
    }
}

@media (max-width: 420px) {
    .landings__header-title {
        font-size: 26px
    }

    .landings__title {
        font-size: 30px
    }

    .landings__item {
        width: 100%
    }

    .landings__item-title {
        font-size: 33px
    }

    .landings__item-subtitle {
        font-size: 16px
    }

    .landings__item-text {
        font-size: 20px
    }
}

@media (max-width: 350px) {
    .landings__title {
        font-size: 29px;
        margin-bottom: 30px
    }

    .landings__title-right {
        text-align: center;
        font-size: 40px
    }

    .landings__wrapper-title {
        font-size: 28px
    }
}

@media (max-width: 1130px) {
    .google__inner .comments__item-title {
        font-size: 40px
    }
}

@media (max-width: 930px) {
    .google__item {
        margin: 0 auto
    }

    .google__inner .comments__item-title {
        text-align: center
    }

    .google__wrapper {
        display: block
    }

    .google__wrapper-item {
        max-width: 100%
    }

    .google__wrapper-title {
        text-align: center
    }
}

@media (max-width: 650px) {
    .google__item {
        padding: 25px 25px
    }

    .google__list {
        font-size: 18px
    }

    .google__list li+li {
        margin-top: 18px
    }

    .google__wrapper-title {
        font-size: 44px
    }

    .google__wrapper-text {
        font-size: 20px
    }
}

@media (max-width: 480px) {
    .google__inner .comments__item-title {
        font-size: 27px
    }
}

@media (max-width: 360px) {
    .google__wrapper-text {
        font-size: 16px
    }
}

@media (max-width: 1175px) {
    .branding__wrapper .landings__wrapper-item+.landings__wrapper-item {
        margin-right: 50px
    }
}

@media (max-width: 950px) {
    .branding__wrapper .landings__wrapper-item+.landings__wrapper-item {
        margin-right: 0
    }

    .branding__wrapper-title {
        margin-top: 35px
    }
}

@media (max-width: 850px) {
    .branding__hidden {
        display: none
    }

    .branding__show {
        display: block
    }
}

@media (max-width: 835px) {
    .branding__item img {
        width: 100% !important
    }
}

@media (max-width: 370px) {
    .branding__wrapper .landings__list {
        font-size: 20px;
        line-height: 40px
    }
}

@media (max-width: 1020px) {
    .rework .comments__item img {
        width: 100%
    }

    .rework .landings__wrapper-item-right img {
        width: 100%
    }
}

@media (max-width: 500px) {
    .rework__item-title {
        font-size: 26px !important
    }
}

@media (max-widh: 450px) {
    .rework__item-text {
        font-size: 18px;
        line-height: 24px
    }
}

@media (max-width: 390px) {
    .rework__item-text {
        font-size: 16px !important;
        line-height: 22px !important
    }
}

@media (max-width: 765px) {
    .redesign__item-title {
        text-align: center;
        font-size: 30px !important
    }

    .redesign .mobile__item {
        max-width: 100%
    }

    .redesign .mobile__item img {
        width: 100%
    }

    .redesign__wrapper {
        margin-bottom: 70px
    }

    .redesign__item {
        text-align: center
    }

    .redesign__item-right {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

@media (max-width: 1200px) {
    .tech__item .tech__list {
        font-size: 20px;
        line-height: 24px
    }

    .tech__item:nth-child(1),
    .tech__item:nth-child(3) {
        margin-right: 10px
    }

    .tech__inner {
        margin-bottom: 10px
    }
}

@media (max-width: 1106px) {
    .tech__item {
        margin: 0 auto 30px
    }

    .tech__item:nth-child(1),
    .tech__item:nth-child(3) {
        margin-right: auto
    }

    .tech__inner {
        display: block
    }

    .tech__title {
        text-align: center;
        margin-bottom: 30px !important
    }
}

@media (max-width: 526px) {
    .tech__item {
        padding-left: 10px;
        padding-right: 10px
    }

    .tech__item-title {
        text-align: center
    }

    .tech__item .header__btn {
        display: block;
        width: 80%;
        margin: 0 auto;
        text-align: center
    }

    .tech__item-inner {
        display: block
    }

    .tech__item-text {
        margin-bottom: 35px
    }

    .tech__item-text span {
        font-size: 22px
    }

    .tech__item svg {
        display: none
    }

    .tech__item .tech__list {
        font-size: 17px;
        line-height: 17px
    }

    .tech__item:nth-child(1),
    .tech__item:nth-child(3) {
        margin-right: 10px
    }

    .tech__inner {
        margin-bottom: 10px
    }
}

@media (max-width: 328px) {
    .tech__item .header__btn {
        width: 100%
    }
}

@media (max-width: 765px) {
    .audit__point {
        display: none
    }
}

@media (max-width: 1100px) {
    .crm__inner img {
        max-width: 100%
    }
}

@media (max-width: 877px) {
    .crm__text {
        font-size: 18px
    }
}

@media (max-width: 725px) {
    .crm__title {
        margin-top: 60px !important;
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px !important
    }

    .crm .landings__list {
        font-size: 22px
    }

    .crm .landings__list li+li {
        margin-top: 15px
    }

    .crm__inner {
        display: block;
        margin-bottom: 0
    }

    .crm__inner-last {
        margin-top: 0
    }

    .crm__item {
        margin-bottom: 30px
    }

    .crm__item-down {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px)
    }

    .crm__item-doubledown {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px)
    }
}

@media (max-width: 550px) {
    .crm .page__title {
        font-size: 24px !important;
        text-align: center
    }

    .crm .landings__list {
        font-size: 18px;
        line-height: 24px
    }

    .crm .landings__list li+li {
        margin-top: 10px
    }
}

@media (max-width: 1100px) {
    .seo__inner {
        display: block;
        margin-bottom: 0
    }

    .seo__title {
        width: 100%;
        text-align: center
    }

    .seo__item {
        margin: 0 auto 30px
    }

    .seo__item-subtitle {
        text-align: center
    }

    .seo .page__title {
        text-align: center
    }
}

@media (max-width: 570px) {
    .seo__item-text {
        font-size: 16px;
        line-height: 20px
    }

    .seo__item-title {
        font-size: 30px;
        text-align: center
    }

    .seo__item-subtitle {
        font-size: 30px
    }
}

@media (max-width: 445px) {
    .seo__item-title {
        font-size: 26px
    }

    .seo__item-subtitle {
        font-size: 26px
    }
}

@media (max-width: 1200px) {
    .smm img {
        width: 100%
    }
}

@media (max-width: 850px) {
    .tech__list {
        text-align: left
    }

    .smm .landings__wrapper-item {
        max-width: 100%
    }

    .landings__wrapper-item {
        margin-top: 35px
    }

    .google__list {
        text-align: left
    }
}

@media (max-width: 550px) {
    .comments__item-text {
        font-size: 20px
    }

    .smm__text {
        font-size: 20px
    }

    .smm__title {
        font-size: 22px
    }
}

@media (max-width: 1150px) {
    .calc__inner-bottom {
        margin-bottom: 160px !important
    }
}

@media (max-width: 1100px) {
    .calc__title-main {
        font-size: 57px
    }

    .calc__inner {
        margin-top: 0
    }

    .calc__inner-last {
        margin-bottom: -240px !important
    }
}

@media (max-width: 1088px) {

    .calc .pizza__item-bottom:nth-child(3),
    .calc .pizza__item-bottom:nth-child(4) {
        -webkit-transform: translateY(-350px) !important;
        -ms-transform: translateY(-350px) !important;
        transform: translateY(-350px) !important
    }
}

@media (max-width: 739px) {
    .calc__inner-last {
        margin-bottom: -1180px !important
    }

    .calc .pizza__inner-bottom .pizza__item-bottom:nth-child(2) {
        -webkit-transform: translateY(-460px) !important;
        -ms-transform: translateY(-460px) !important;
        transform: translateY(-460px) !important
    }

    .calc .pizza__inner-bottom .pizza__item-bottom:nth-child(3) {
        -webkit-transform: translateY(-850px) !important;
        -ms-transform: translateY(-850px) !important;
        transform: translateY(-850px) !important
    }

    .calc .pizza__inner-bottom .pizza__item-bottom:nth-child(4) {
        -webkit-transform: translateY(-1240px) !important;
        -ms-transform: translateY(-1240px) !important;
        transform: translateY(-1240px) !important
    }
}

@media (max-width: 580px) {
    .calc__title-main {
        font-size: 35px !important
    }
}

@media (max-width: 1325px) {
    .home .pizza__item {
        margin-left: auto !important
    }
}

@media (max-width: 1306px) {
    .pizza__item-preview {
        display: none
    }
}

@media (max-width: 1130px) {
    .megazoo__reviews {
        margin-top: 60px
    }

    .pizza__phone {
        -webkit-filter: drop-shadow(20px 17px 35px rgba(16, 16, 16, 0.25));
        filter: drop-shadow(20px 17px 35px rgba(16, 16, 16, 0.25))
    }

    .home__inner {
        display: block;
        margin-bottom: 80px;
        margin-top: 0
    }

    .home__inner-first {
        margin-top: 260px
    }

    .home__item {
        padding: 0;
        margin: 0 auto 40px;
        max-width: 80%;
        text-align: center
    }

    .home__item-left {
        -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
        order: unset
    }
}

@media (max-width: 888px) {
    .notebook__inner {
        display: none
    }

    .mobilephone__inner {
        display: block
    }
}

@media (max-width: 739px) {
    .home .pizza__reviews {
        margin-top: 0px
    }
}

@media (max-width: 1200px) {
    .contacts {
        margin-top: 60px
    }
}

@media (max-width: 900px) {
    .contacts__inner {
        display: block
    }

    .contacts__item-info {
        margin: 0 auto
    }
}

@media (max-width: 650px) {
    .contacts__map {
        margin-bottom: 60px
    }
}

@media (max-width: 490px) {
    .contacts__title {
        text-align: center
    }

    .contacts__link {
        font-size: 18px
    }

    .contacts__graph span {
        text-align: center;
        font-size: 22px
    }

    .contacts__text {
        font-weight: 300;
        text-align: center
    }
}

@media (max-width: 415px) {
    .contacts__item-info {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px
    }

    .contacts__title {
        margin-bottom: 20px
    }

    .contacts__subtitle {
        text-align: center
    }

    .contacts__link {
        font-size: 18px
    }

    .contacts__graph span {
        text-align: center;
        font-size: 22px
    }

    .contacts__text {
        font-weight: 300;
        text-align: center
    }
}

@media (max-width: 1306px) {
    .portfolio .pizza__phone {
        display: block !important;
        width: 100%
    }

    .portfolio .pizza__phone-mob {
        width: 70%;
        margin: 0 auto
    }
}

@media (max-width: 1250px) {
    .portfolio__inner {
        display: block
    }
}

@media (max-width: 830px) {
    .portfolio__inner {
        display: block;
        margin-bottom: 60px
    }

    .portfolio__item {
        margin: 0 auto;
        text-align: center
    }

    .portfolio__item-img {
        margin: 0px auto 20px;
        text-align: center
    }
}

@media (max-width: 370px) {
    .portfolio .pizza__item-title {
        margin-bottom: -8px
    }

    .portfolio .header__btn {
        font-size: 15px;
        display: block;
        width: 100%
    }
}

.page__title {
    font-weight: bold;
    font-size: 62px;
    margin-bottom: 30px
}

.page__subtitle {
    font-weight: bold;
    font-size: 38px
}

.page__text {
    font-size: 20px;
    line-height: 29px
}

.page__order {
    padding: 0;
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: auto;
    top: auto;
    max-width: auto;
    background-color: transparent;
    border-radius: 0px
}

.page__order .header__btn {
    background-color: #9468b4;
    cursor: pointer
}

.page__order .order__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.page__order .order__form {
    max-width: 700px;
    width: 100%
}

.page__order .order__info {
    max-width: 700px;
    width: 100%;
    margin-right: auto
}

.page__order .order__info-text {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px
}

.page__order .order__info-text span {
    display: block
}

.page__order .order__info-subtext {
    font-size: 28px;
    font-weight: 400;
    line-height: 44px
}

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

.mobilephone__inner {
    width: 280px;
    text-align: center;
    position: relative;
    overflow: auto;
    background-image: url(../images/megazoo/mobilephone.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 592px
}

.mobilephone__scroll {
    width: 250px;
    height: 534px;
    border-radius: 4%;
    position: absolute;
    top: 30px;
    border: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    overflow-y: scroll
}

.mobilephone__scroll::-webkit-scrollbar {
    display: none
}

.mobilephone__scroll img {
    border: none;
    width: 100%
}

.notebook__inner {
    width: 981px;
    background-image: url(../images/megazoo/notebook.png);
    background-position: center;
    background-repeat: no-repeat;
    height: 592px;
    text-align: center;
    position: relative;
    overflow: auto
}

.notebook__scroll {
    width: 846px;
    height: 475px;
    border-radius: 1%;
    position: absolute;
    top: 44px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    overflow-y: scroll;
    -ms-overflow-style: none
}

.notebook__scroll::-webkit-scrollbar {
    display: none
}

.notebook__scroll img {
    max-width: 846px;
    width: 100%
}

.notebook__img {
    position: absolute
}

.sitereviews__title {
    margin-bottom: 90px !important
}

.sitereviews__item {
    margin: 0 50px;
    margin-bottom: 165px;
    position: relative;
    padding: 25px 420px 96px 110px;
    background: #fff;
    -webkit-box-shadow: 10px 20px 40px rgba(16, 16, 16, 0.2);
    box-shadow: 10px 20px 40px rgba(16, 16, 16, 0.2)
}

.sitereviews__item-noexample {
    padding-right: 50px
}

.sitereviews__item-noexample .siteprojects__example {
    display: none
}

.sitereviews__item-title {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 12px
}

.sitereviews__item-subtitle {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 30px
}

.sitereviews__item-text {
    line-height: 22px
}

.sitereviews__item .siteprojects__example {
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 404px;
    min-height: 330px;
    padding: 23px 50px 0 23px;
    -webkit-box-shadow: 20px 40px 80px rgba(16, 16, 16, 0.8);
    box-shadow: 20px 40px 80px rgba(16, 16, 16, 0.8)
}

.sitereviews__item .siteprojects__example-title {
    font-size: 50px;
    line-height: 43px
}

.sitereviews__item .siteprojects__example-site {
    font-size: 16px
}

.sitereviews__rating {
    position: absolute;
    background-color: #9468B4;
    padding: 21px 35px;
    -webkit-box-shadow: 0px 2px 25px rgba(14, 14, 18, 0.3);
    box-shadow: 0px 2px 25px rgba(14, 14, 18, 0.3);
    bottom: -40px;
    left: -50px
}

.sitereviews__rating-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.sitereviews__rating-inner img {
    display: block;
    margin-right: 17px
}

.sitereviews__rating-inner img:last-child {
    margin-right: 0
}

.sitereviews__face {
    width: 135px;
    top: -55px;
    left: -50px;
    height: 135px;
    position: absolute;
    border-radius: 50%;
    background-image: url(../images/sitereviews/reviews-1.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid #ffffff;
    -webkit-box-shadow: 10px 20px 40px rgba(16, 16, 16, 0.2);
    box-shadow: 10px 20px 40px rgba(16, 16, 16, 0.2)
}

.item__text {
    line-height: 28px
}

.item__text p {
    margin: 0
}

.siteprojects__title {
    margin-bottom: 35px
}

.siteprojects__box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.siteprojects__info {
    max-width: 700px;
    width: 100%
}

.siteprojects__info-title {
    max-width: 540px;
    width: 100%;
    margin-bottom: 50px
}

.siteprojects__info-text {
    margin-bottom: 40px
}

.siteprojects__example {
    position: relative;
    max-width: 700px;
    width: 100%;
    min-height: 573px;
    background: #fff;
    padding: 40px 40px 0 40px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer
}

.siteprojects__example-upper {
    margin-top: -105px;
    margin-bottom: 105px
}

.siteprojects__example-inline {
    display: inline-block
}

.siteprojects__example:hover .siteprojects__example-content {
    opacity: 1
}

.siteprojects__example:hover .siteprojects__example-img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

.siteprojects__example-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.siteprojects__example-title {
    width: 50%;
    max-width: 190px;
    font-size: 70px;
    font-weight: 600;
    line-height: 60px
}

.siteprojects__example-site {
    font-size: 22px
}

.siteprojects__example-img {
    position: absolute;
    bottom: -4px;
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.siteprojects__example-img img {
    width: 100%
}

.siteprojects__example-link {
    margin-top: -105px
}

.siteprojects__example-allprojects {
    position: relative;
    display: inline-block;
    font-size: 36px;
    -webkit-transform: translateY(-105px);
    -ms-transform: translateY(-105px);
    transform: translateY(-105px);
    margin-bottom: 170px
}

.siteprojects__example-allprojects:after {
    position: absolute;
    content: "\27A5";
    right: -45px;
    top: 3px
}

@media (max-width: 1600px) {
    .page__order {
        max-width: 100% !important
    }
}

@media (max-width: 1410px) {
    .page__order .order__inner {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .page__order .order__info-text {
        text-align: left !important
    }

    .page__order .order__info-subtext {
        text-align: left !important
    }
}

@media (max-width: 1250px) {
    .mobilephone__inner {
        display: none
    }

    .notebook {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (max-width: 1120px) {
    .page__order .order__inner {
        display: block !important
    }

    .page__order .order__form {
        margin: 30px auto 30px
    }

    .page__order .header__btn {
        display: block;
        margin: 0 auto
    }

    .page__order .order__info-text {
        text-align: center !important
    }

    .page__order .order__info-subtext {
        text-align: center !important
    }
}

@media (max-width: 1000px) {
    .mobilephone__inner {
        display: block
    }

    .notebook__inner {
        display: none
    }
}

@media (max-width: 1044px) {
    .siteprojects__example {
        display: none
    }

    .sitereviews__item {
        padding: 25px 25px 65px 110px
    }
}

@media (max-width: 760px) {
    .page__order .order__info-text {
        font-size: 24px;
        line-height: 28px
    }

    .page__order .order__info-subtext {
        font-size: 23px
    }
}

@media (max-width: 665px) {
    .sitereviews__rating {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .sitereviews__item {
        padding: 100px 25px 65px 25px
    }

    .sitereviews__face {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

@media (max-width: 550px) {
    .notebook {
        height: 744px;
        margin-top: -160px;
        margin-bottom: 20px
    }

    .page__order .order__info-text {
        font-size: 20px;
        line-height: 24px
    }

    .page__order .order__info-subtext {
        font-size: 19px;
        line-height: 22px
    }
}

@media (max-width: 520px) {
    .sitereviews__rating {
        padding: 12px 12px;
        bottom: -20px
    }

    .sitereviews__rating img {
        width: 25px;
        height: 25px
    }

    .item__text {
        line-height: 26px
    }
}

@media (max-width: 460px) {
    .page__order .order__info-text span {
        display: none
    }

    .sitereviews__item {
        margin: 0 auto;
        margin-bottom: 160px
    }

    .sitereviews__title {
        text-align: center
    }
}

.body__dark {
    background-color: #253238;
    color: white;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.body__dark .sitereviews__item {
    background: #333646
}

.body__dark .siteprojects__example {
    background: #333646
}

.body__dark .order__form-page input {
    background-color: #253238;
    color: #fff
}

.body__dark .order__form-page input::-webkit-input-placeholder {
    color: #fff
}

.body__dark .order__form-page input::-moz-placeholder {
    color: #fff
}

.body__dark .order__form-page input:-ms-input-placeholder {
    color: #fff
}

.body__dark .order__form-page input::-ms-input-placeholder {
    color: #fff
}

.body__dark .order__form-page input::placeholder {
    color: #fff
}

.body__dark .portfolio__btn-inner .header__btn {
    background-color: transparent
}

.body__dark .tech .header__btn {
    background-color: transparent
}

.body__dark .tech__item {
    background-color: #455b66
}

.body__dark .tech__item:hover {
    color: #253238;
    background: #9468b4
}

.body__dark .tech__item:hover svg {
    fill: black !important
}

.body__dark .tech svg {
    fill: white !important
}

.body__dark .landings__item-subtitle {
    color: rgba(255, 255, 255, 0.5)
}

.body__dark .home__phone {
    -webkit-filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.25)) !important;
    filter: drop-shadow(20px 40px 80px rgba(16, 16, 16, 0.25)) !important;
    border: none
}

.body__dark .header__page,
.body__dark .header__portfolio {
    background: -o-linear-gradient(240.17deg, #c4c4c4 -1.81%, #544352 -1.8%, #35344d 74.21%);
    background: linear-gradient(209.83deg, #c4c4c4 -1.81%, #544352 -1.8%, #35344d 74.21%)
}

.body__dark .header__page .header__btn,
.body__dark .header__portfolio .header__btn {
    background: #9468b4;
    border-color: #9468b4 !important
}

.body__dark .header__logo img:nth-child(1) {
    display: none
}

.body__dark .header__logo img:nth-child(2) {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    position: relative
}

.body__dark .header__item-light {
    color: #fdea7b !important
}

.body__dark .header__item-checkbox {
    border-color: #fff !important;
    color: #fff !important
}

.body__dark .header__tel {
    color: #fff
}

.body__dark .header__btn {
    color: #fff;
    border-color: #fff !important
}

.body__dark .cards__item {
    background-color: #455b66;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s
}

.body__dark .cards__item:hover {
    background-color: #783294
}

.body__dark .hamburger span {
    background-color: #fff
}

.body__dark .popup input {
    background-color: #253238;
    color: #fff
}

.body__dark .popup input::-webkit-input-placeholder {
    color: #fff
}

.body__dark .popup input::-moz-placeholder {
    color: #fff
}

.body__dark .popup input:-ms-input-placeholder {
    color: #fff
}

.body__dark .popup input::-ms-input-placeholder {
    color: #fff
}

.body__dark .popup input::placeholder {
    color: #fff
}

.body__dark .popup .order {
    background-color: #253238;
    border: 3px solid #eeeeee
}

.body__dark .popup .order__links {
    color: #c894c4
}

.body__dark .popup .order__btn {
    color: #c894c4
}

.body__dark .popup .order__btn::after {
    background-image: url(../images/main/submit-button-dark.svg)
}

.body__dark .lite__logos {
    display: none
}

.body__dark .dark__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.body__dark .works__item-droppro {
    background-color: white
}

.body__dark .skills__table {
    background-color: rgba(255, 215, 250, 0.4)
}

.body__dark .skills__table-menu span {
    color: #f6bbf2
}

.body__dark .progress__item {
    background-color: #455b66
}

.body__dark .progress__item::before {
    border-left: 75px solid #253238
}

.body__dark .progress__item::after {
    border-left: 75px solid #455b66
}

.body__dark .reviews__slider-item {
    background-color: #253238
}

.body__dark .reviews__nav .reviews__nav-item {
    background-color: #455b66
}

.body__dark .reviews__nav .slick-current .reviews__nav-item {
    background-color: #253238
}

.body__dark .reviews .slick-active button {
    background-color: white !important
}

.body__dark .reviews .slick-dots li button {
    background-color: rgba(255, 255, 255, 0.5)
}

.body__dark .reviews .slick-prev,
.body__dark .reviews .slick-next {
    background-image: url(../images/main/arrow-right-slider-bottom-dark.svg)
}

.body__dark .reviews .slick-next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.body__dark .brief__title {
    color: #fff
}

.body__dark .brief input {
    background-color: #253238;
    color: #fff
}

.body__dark .brief input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark .brief input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark .brief input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark .brief input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark .brief input::placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark .brief__select {
    color: #fff;
    background: #696969
}

.body__dark .brief .brief__line-wrapper label {
    background-color: #fff
}

.body__dark .brief .brief__list {
    background-color: #fff
}

.body__dark textarea {
    background-color: #253238;
    color: #fff
}

.body__dark textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark textarea::placeholder {
    color: rgba(255, 255, 255, 0.7)
}

.body__dark input[type="range"] {
    background-color: #fff
}

.dark__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: none
}