@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap");

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    min-width: 320px;
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    min-height: 100vh;
}

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

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

.btn {
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.btn_transparent {
    border-radius: 28px;
    border: solid 1px #ff5a00;
    padding: 19px 40px;
    line-height: 1;
    color: #f55f00;
    font-weight: 700;
}

.btn_transparent:hover {
    color: #fff;
    background-color: #ff5a00;
}

.btn_orange {
    border-radius: 28px;
    box-shadow: 0.5px 0.9px 1px 0 #a2a2a2;
    background-color: #f95e02;
    font-size: 18px;
    color: #fafaff;
    font-weight: 700;
    padding: 19px 25px;
    line-height: 1;
    border: none;
}

.btn_orange:hover {
    background-color: #bb4601;
}

.btn_small {
    font-size: 16px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn_img {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
}

.btn_img img {
    max-width: 25px;
    max-height: 80%;
    margin-left: 10px;
}

.btn_shadow-off {
    box-shadow: none;
}

.btn_big {
    padding-left: 60px;
    padding-right: 60px;
}

.title {
    font-size: 30px;
    font-weight: 900;
    color: #000;
    font-family: "Open Sans", sans-serif;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .title {
        font-size: 24px;
    }
}

textarea {
    font-family: inherit;
}

.main > div:nth-child(even) {
    background-color: #f8f8f8;
}

.popup {
    display: none;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0px 2px 1px 0px rgba(162, 162, 162, 0.004);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 15px;
    padding-top: 30px;
}

.mfp-content .mfp-close {
    width: 25px;
    height: 25px;
    line-height: 1.1;
    top: 10px;
    right: 10px;
    font-size: 25px;
    border-radius: 50%;
    background-color: #f95800;
    transition: all .2s;
    color: #fff;
}

.mfp-content .popup {
    display: block;
}

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

.header__left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.header__avatar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #fcfcfc;
    font-size: 14px;
}

.header__avatar img {
    margin-left: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

@media screen and (max-width: 500px) {
    .header__avatar {
        margin-bottom: 25px;
    }
}

.header__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .header__inner {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.header__email {
    margin-left: 25px;
}

@media screen and (max-width: 767px) {
    .header__email {
        font-size: 0;
        width: 25px;
        height: 25px;
    }
}

.header__menu {
    margin-right: 50px;
    position: relative;
}

.header__menu:hover .header__menu-bar:first-child {
    width: 70%;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%) rotate(45deg);
    transform: translate(50%, -50%) rotate(45deg);
}

.header__menu:hover .header__menu-bar:nth-child(2) {
    opacity: 0;
}

.header__menu:hover .header__menu-bar:last-child {
    width: 70%;
    right: 50%;
    bottom: 50%;
    -webkit-transform: translate(50%, 50%) rotate(-45deg);
    transform: translate(50%, 50%) rotate(-45deg);
}

.header__menu:hover .header__menu-inner {
    opacity: 1;
    visibility: visible;
}

.header__menu-burger {
    height: 24px;
    width: 45px;
    position: relative;
    cursor: pointer;
}

.header__menu-bar {
    position: absolute;
    background-color: #fff;
    border-radius: 5px;
    height: 4px;
    right: 0;
    transition: all .3s;
}

.header__menu-bar:first-child {
    width: 38px;
    top: 0;
}

.header__menu-bar:nth-child(2) {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header__menu-bar:last-child {
    width: 27px;
    bottom: 0;
}

.header__menu-inner {
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 225px;
    padding-top: 20px;
}

.header__menu-inner::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    left: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 12px;
    z-index: -1;
    background-color: #fff;
}

.header__menu-content {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.header__menu-item {
    color: #888888;
    padding: 5px 15px;
    transition: all .2s;
    display: block;
}

.header__menu-item:hover {
    background-color: #ff5c01;
    color: #fff;
}

.header__menu-langs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5px;
}

.header__menu-lang {
    padding: 5px 3px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .2s;
}

.header__menu-lang img {
    min-width: 30px;
    max-height: 25px;
}

.header__menu-lang.active {
    display: none;
}

.header__menu-lang:hover {
    background-color: #ff5c01;
}

@media screen and (max-width: 500px) {
    .header {
        top: 25px;
    }
}

.socials {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.socials__item a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.socials__item img {
    max-width: 20px;
    max-height: 20px;
}

.socials__item + .socials__item {
    margin-left: 15px;
}

.email {
    padding-left: 30px;
    font-weight: 700;
    color: #fff;
    background-image: url(../images/icons/envelope.svg);
    background-repeat: no-repeat;
    background-position: left 2px;
    background-size: 23px 22px;
    line-height: 1.5;
}

.mouse__wrapper {
    position: absolute;
    left: 100px;
    bottom: 80px;
}

@media screen and (max-width: 767px) {
    .mouse__wrapper {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 25px;
    }
}

.mouse {
    background: #000 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
    position: relative;
    width: 25px;
    height: 35px;
    cursor: pointer;
    border-radius: 100px;
    background-size: 100% 200%;
    -webkit-animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
    animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}

.mouse:before, .mouse:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.mouse:before {
    width: 22px;
    height: 32px;
    background-color: #000;
    border-radius: 100px;
}

.mouse:after {
    background-color: #ffffff;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    -webkit-animation: trackBallSlide 5s linear infinite;
    animation: trackBallSlide 5s linear infinite;
}

@-webkit-keyframes colorSlide {
    0% {
        background-position: 0% 100%;
    }

    20% {
        background-position: 0% 0%;
    }

    21% {
        background-color: #000;
    }

    29.99% {
        background-color: #ffffff;
        background-position: 0% 0%;
    }

    30% {
        background-color: #000;
        background-position: 0% 100%;
    }

    50% {
        background-position: 0% 0%;
    }

    51% {
        background-color: #000;
    }

    59% {
        background-color: #ffffff;
        background-position: 0% 0%;
    }

    60% {
        background-color: #000;
        background-position: 0% 100%;
    }

    80% {
        background-position: 0% 0%;
    }

    81% {
        background-color: #000;
    }

    90%,
  100% {
        background-color: #ffffff;
    }
}

@keyframes colorSlide {
    0% {
        background-position: 0% 100%;
    }

    20% {
        background-position: 0% 0%;
    }

    21% {
        background-color: #000;
    }

    29.99% {
        background-color: #ffffff;
        background-position: 0% 0%;
    }

    30% {
        background-color: #000;
        background-position: 0% 100%;
    }

    50% {
        background-position: 0% 0%;
    }

    51% {
        background-color: #000;
    }

    59% {
        background-color: #ffffff;
        background-position: 0% 0%;
    }

    60% {
        background-color: #000;
        background-position: 0% 100%;
    }

    80% {
        background-position: 0% 0%;
    }

    81% {
        background-color: #000;
    }

    90%,
  100% {
        background-color: #ffffff;
    }
}

@-webkit-keyframes trackBallSlide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    6% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(1.25px);
        transform: scale(0.9) translateY(1.25px);
    }

    14% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(10px);
        transform: scale(0.4) translateY(10px);
    }

    15%,
  19% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-5px);
        transform: scale(0.4) translateY(-5px);
    }

    28%,
  29.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    30% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    36% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(1.25px);
        transform: scale(0.9) translateY(1.25px);
    }

    44% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(10px);
        transform: scale(0.4) translateY(10px);
    }

    45%,
  49% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-5px);
        transform: scale(0.4) translateY(-5px);
    }

    58%,
  59.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    66% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(1.25px);
        transform: scale(0.9) translateY(1.25px);
    }

    74% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(10px);
        transform: scale(0.4) translateY(10px);
    }

    75%,
  79% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-5px);
        transform: scale(0.4) translateY(-5px);
    }

    88%,
  100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }
}

@keyframes trackBallSlide {
    0% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    6% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(1.25px);
        transform: scale(0.9) translateY(1.25px);
    }

    14% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(10px);
        transform: scale(0.4) translateY(10px);
    }

    15%,
  19% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-5px);
        transform: scale(0.4) translateY(-5px);
    }

    28%,
  29.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    30% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    36% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(1.25px);
        transform: scale(0.9) translateY(1.25px);
    }

    44% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(10px);
        transform: scale(0.4) translateY(10px);
    }

    45%,
  49% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-5px);
        transform: scale(0.4) translateY(-5px);
    }

    58%,
  59.99% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }

    66% {
        opacity: 1;
        -webkit-transform: scale(0.9) translateY(1.25px);
        transform: scale(0.9) translateY(1.25px);
    }

    74% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(10px);
        transform: scale(0.4) translateY(10px);
    }

    75%,
  79% {
        opacity: 0;
        -webkit-transform: scale(0.4) translateY(-5px);
        transform: scale(0.4) translateY(-5px);
    }

    88%,
  100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(-5px);
        transform: scale(1) translateY(-5px);
    }
}

@-webkit-keyframes nudgeMouse {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes nudgeMouse {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes nudgeText {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes nudgeText {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    30% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    60% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    80% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes colorText {
    21% {
        color: #000;
    }

    30% {
        color: #ffffff;
    }

    51% {
        color: #000;
    }

    60% {
        color: #ffffff;
    }

    81% {
        color: #000;
    }

    90% {
        color: #ffffff;
    }
}

@keyframes colorText {
    21% {
        color: #000;
    }

    30% {
        color: #ffffff;
    }

    51% {
        color: #000;
    }

    60% {
        color: #ffffff;
    }

    81% {
        color: #000;
    }

    90% {
        color: #ffffff;
    }
}

.banner {
    background-image: url(../../assets/images/banner.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 900px;
    padding-top: 400px;
    text-align: right;
    font-size: 16px;
    color: #fcfcfc;
    position: relative;
}

.banner__btn {
    margin-top: 35px;
}

.banner__title {
    font-size: 57px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .banner__title {
        font-size: 35px;
    }
}

.banner__info {
    max-width: 560px;
    line-height: 1.63;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .banner {
        padding-top: 200px;
        min-height: 100vh;
        padding-bottom: 100px;
        text-align: center;
    }
}

.advantages {
    padding: 120px 0 100px;
    text-align: center;
}

.advantages__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -10px;
}

.advantages__title {
    margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
    .advantages__title {
        margin-bottom: 25px;
    }
}

.advantages__item {
    color: #000;
    width: 25%;
    padding: 10px;
}

.advantages__item-img {
    margin-bottom: 30px;
    max-width: 80px;
    max-height: 60px;
}

.advantages__item-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.advantages__item-text {
    max-width: 235px;
    font-size: 13px;
    font-weight: 100;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .advantages__item {
        width: 33.333%;
    }
}

@media screen and (max-width: 600px) {
    .advantages__item {
        width: 50%;
    }
}

@media screen and (max-width: 450px) {
    .advantages__item {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .advantages {
        padding: 25px 0;
    }
}

.portfolio {
    padding: 170px 0 200px;
}

.portfolio__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 60px;
    padding-left: 45px;
    padding-right: 45px;
}

.portfolio__item {
    padding: 0 5px;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
}

.portfolio__item-img {
    height: 140px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
}

@media screen and (max-width: 450px) {
    .portfolio__item-img {
        height: 120px;
    }
}

.portfolio__item-title {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.portfolio__item-info {
    color: #989898;
    margin-top: 5px;
    font-weight: 300;
    max-width: 230px;
}

@media screen and (max-width: 500px) {
    .portfolio__item {
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
}

.portfolio__btn {
    margin-top: 10px;
}

.portfolio__item-inner {
    width: 100%;
}

.portfolio .slick-slide {
    height: auto;
}

.portfolio .slick-slide > div {
    height: 100%;
}

.portfolio .slick-track {
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 5px;
}

.portfolio .slick-arrow {
    font-size: 0;
    background-color: transparent;
    border: none;
    width: 30px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px 33px;
    background-image: url(../images/icons/arrow.svg);
    padding: 0;
    cursor: pointer;
    outline: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.portfolio .slick-arrow.slick-next {
    right: 0;
}

.portfolio .slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 767px) {
    .portfolio {
        padding: 25px 0;
    }
}

.skills {
    padding: 100px 0;
}

.skills__title {
    margin-bottom: 30px;
}

.skills__item-inner {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.skills__item-inner svg {
    display: block;
    height: 160px;
    width: 160px;
    position: relative;
}

.skills__item-inner circle {
    width: 160px;
    height: 160px;
    fill: none;
    stroke-width: 10;
    stroke: #f95800;
    -webkit-transform: translate(5px, -5px) rotate(-90deg);
    transform: translate(5px, -5px) rotate(-90deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    stroke-dasharray: 480;
    stroke-dashoffset: 480;
    transition: all 1s;
}

.skills__item-inner circle:first-child {
    stroke-dashoffset: 0;
    stroke: #dfe8ed;
}

@media screen and (max-width: 450px) {
    .skills__item-inner {
        width: 120px;
        height: 120px;
    }

    .skills__item-inner svg {
        width: 120px;
        height: 120px;
    }

    .skills__item-inner circle {
        width: 120px;
        height: 120px;
        r: 55;
        -webkit-transform: translate(-15px, 15px) rotate(-90deg);
        transform: translate(-15px, 15px) rotate(-90deg);
        stroke-dasharray: 345;
        stroke-dashoffset: 345;
    }
}

.skills__item {
    width: 25%;
    padding: 10px;
}

@media screen and (max-width: 767px) {
    .skills__item {
        width: 33.333%;
    }
}

@media screen and (max-width: 600px) {
    .skills__item {
        width: 50%;
    }
}

.skills__percent {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    top: 0;
    font-size: 33px;
    font-weight: 300;
    color: #333333;
}

.skills__percent span {
    font-size: 50px;
}

@media screen and (max-width: 450px) {
    .skills__percent {
        font-size: 25px;
    }

    .skills__percent span {
        font-size: 35px;
    }
}

.skills__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
    width: calc(100% + 20px);
}

.skills__name {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
    color: #333333;
    letter-spacing: 0.48px;
    text-align: center;
}

@media screen and (max-width: 450px) {
    .skills__name {
        font-size: 18px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .skills {
        padding: 25px 0;
    }
}

.consultation {
    padding: 70px 0 80px;
}

.consultation__title {
    margin-bottom: 10px;
}

.consultation__subtitle {
    margin-bottom: 35px;
    font-weight: 300;
    color: #333;
    text-align: center;
}

.consultation__box {
    position: relative;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 500px) {
    .consultation__box {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.consultation__btn {
    height: 56px;
    position: absolute;
    right: 0;
    top: 0;
}

@media screen and (max-width: 500px) {
    .consultation__btn {
        position: static;
        margin-top: 15px;
    }
}

.consultation__input {
    height: 56px;
    display: block;
    width: 100%;
    border-radius: 25px;
    border: none;
    box-shadow: inset 0.5px 0.9px 1px 0 #dedede;
    padding-right: 230px;
    padding-left: 30px;
    font-size: 18px;
    font-family: inherit;
    outline: none;
}

.consultation__input::-webkit-input-placeholder {
    color: #d7d7d7;
    font-weight: 300;
}

.consultation__input::-moz-placeholder {
    color: #d7d7d7;
    font-weight: 300;
}

.consultation__input:-ms-input-placeholder {
    color: #d7d7d7;
    font-weight: 300;
}

.consultation__input::-ms-input-placeholder {
    color: #d7d7d7;
    font-weight: 300;
}

.consultation__input::placeholder {
    color: #d7d7d7;
    font-weight: 300;
}

@media screen and (max-width: 500px) {
    .consultation__input {
        padding-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    .consultation {
        padding: 25px 0;
    }
}

.certificates {
    padding: 90px 0 130px;
}

.certificates__title {
    margin-bottom: 65px;
}

.certificates__inner {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 45px;
    padding-right: 45px;
}

.certificates__item {
    position: relative;
    cursor: pointer;
}

.certificates__item img {
    border-radius: 6px;
    box-shadow: 0.5px 0.9px 1px 0 #a2a2a2;
    max-width: 230px;
    max-height: 150px;
    margin: 0 auto;
}

.certificates__item::after {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .2s;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../images/icons/zoom.svg);
}

.certificates__item:hover::after {
    opacity: 1;
}

.certificates .slick-slide {
    padding: 0 10px;
}

.certificates .slick-track {
    padding-bottom: 5px;
}

.certificates .slick-arrow {
    font-size: 0;
    background-color: transparent;
    border: none;
    width: 30px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px 33px;
    background-image: url(../images/icons/arrow.svg);
    padding: 0;
    cursor: pointer;
    outline: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.certificates .slick-arrow.slick-next {
    right: 0;
}

.certificates .slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 767px) {
    .certificates {
        padding: 25px 0;
    }
}

.contacts {
    padding: 65px 0 100px;
}

.contacts__inner {
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 767px) {
    .contacts__inner {
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contacts__form {
    margin-right: 15px;
    max-width: 440px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .contacts__form {
        max-width: unset;
        text-align: center;
    }
}

.contacts__input, .order-service__input, .contacts__textarea {
    width: 100%;
    display: block;
    height: 40px;
    border-radius: 3px;
    box-shadow: inset 0.5px 0.9px 1px 0 #dedede;
    border: solid 1px #dadada;
    padding: 10px 15px;
    outline: none;
    font-size: 18px;
}

.contacts__textarea {
    resize: none;
    height: 150px;
}

.contacts__label {
    margin-bottom: 10px;
    color: #333333;
    font-size: 18px;
    font-weight: 300;
    display: block;
}

@media screen and (max-width: 767px) {
    .contacts__label {
        text-align: left;
    }
}

.contacts__box + .contacts__box {
    margin-top: 25px;
}

.contacts__box_textarea {
    margin-bottom: 20px;
}

.contacts__btn {
    margin-top: 30px;
}

.contacts__map {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.contacts__map iframe {
    margin-top: 37px;
    border-radius: 5px;
    width: 100%;
}

.contacts__title {
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    .contacts__title {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .contacts {
        padding: 25px 0;
    }
}

.footer {
    background-color: #000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 0;
    text-align: center;
    color: #fff;
}

.footer__text {
    margin-bottom: 10px;
}

.portfolio-info__inner {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .portfolio-info__inner {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
    }
}

.portfolio-info__left {
    width: 310px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px;
    padding-top: 20px;
}

@media screen and (max-width: 600px) {
    .portfolio-info__left {
        width: 100%;
        margin-right: 0;
        padding-top: 0;
        margin-bottom: 25px;
    }
}

.portfolio-info__right {
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.portfolio-info__right img {
    max-width: 100%;
    max-height: 100%;
}

.portfolio-info__technologies-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 5px;
}

.portfolio-info__technologies-item:nth-child(odd) {
    background-color: #e8e8e8;
}

.portfolio-info__technologies-name {
    font-weight: 700;
    padding-right: 10px;
}

.portfolio-info__task {
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
}

.portfolio-info__task-name {
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.portfolio-info__task-text {
    padding-top: 3px;
}

@media screen and (max-width: 600px) {
    .portfolio-info__task {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .portfolio-info__task-name {
        margin-right: 0;
    }
}

.order-service {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.order-service__title {
    font-size: 46px;
    margin-bottom: 20px;
    color: #333333;
}

@media screen and (max-width: 500px) {
    .order-service__title {
        font-size: 30px;
    }
}

.order-service__input {
    max-width: 450px;
    margin: 0 auto;
}

.order-service__btn {
    margin-top: 70px;
}

@media screen and (max-width: 500px) {
    .order-service__btn {
        margin-top: 25px;
    }
}

.done {
    padding-top: 70px;
    padding-bottom: 50px;
    text-align: center;
}

.done__img {
    max-width: 120px;
    max-height: 120px;
    margin-bottom: 30px;
}

.done__text {
    font-size: 30px;
}
