/*fonts*/

@font-face {
  font-family: 'AvertaCY';
  src: url("../fonts/AvertaCY-Light.woff") format("woff");
  src: url("../fonts/AvertaCY-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvertaCY';
  src: url("../fonts/AvertaCY-Regular.woff") format("woff");
  src: url("../fonts/AvertaCY-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AvertaCY';
  src: url("../fonts/AvertaCY-Bold.woff") format("woff");
  src: url("../fonts/AvertaCY-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*options*/

body {
  font-family: 'AvertaCY', sans-serif;
  font-size: 20px;
  line-height: normal;
  margin: 0;
  color: #232323;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background: #256cf7;
}

body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.7);
}

p {
  width: 100%;
}

img {
  max-width: 100%;
}

ul, ol {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style-type: none;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  color: #FFFFFF;
  text-decoration: none;
  outline: none;
}

textarea {
  resize: none;
}

textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html, body {
  height: 100%;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/*header*/

.header-menu_close {
  display: none;
}

.header-burger {
  display: none;
}

@-webkit-keyframes anim-haeder {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes anim-haeder {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.header {
  z-index: 50;
  position: relative;
  background: #232323;
  -webkit-animation: anim-haeder 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: anim-haeder 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header-top_links {
  margin-right: 30px;
}

.header-top_links a {
  color: #FFFFFF;
  font-weight: 300;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-top_links a:first-child {
  margin-right: 20px;
}

.haeder-top_icon {
  fill: #FFFFFF;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.haeder-top_enter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.haeder-top_enter a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
  font-weight: 300;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.haeder-top_enter a:first-child {
  margin-right: 10px;
}

.header-bottom {
  -webkit-box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  background-color: #ffffff;
}

.header-menu a {
  color: #232323;
  font-weight: 700;
}

.header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-menu li {
  padding: 30px 0;
  margin-right: 40px;
  position: relative;
}

.header-menu li:last-child {
  margin-right: 0;
}

ul.header-menu_list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  left: 0;
  top: 100%;
  background: #FFFFFF;
  border-top: 1px solid #256cf7;
  -webkit-box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
  width: 170px;
}

.header-menu_list li {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5px 12px;
  margin-right: 0;
}

.header-menu_list a {
  font-size: 17px;
  font-weight: 700;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #232323;
}

ul.haeder-menu_sublist {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  top: -1px;
  left: 100%;
  width: 250px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
  padding: 5px;
  border-top: 1px solid #256cf7;
}

.haeder-menu_sublist a {
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  display: inline-block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #232323;
}

.haeder-menu_sublist li {
  padding: 0 5px;
  margin-bottom: 4px;
}

.header-menu_arrow {
  width: 10px;
  height: 10px;
  fill: #232323;
  margin-left: 3px;
  margin-bottom: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-menu_icon {
  width: 10px;
  height: 10px;
  fill: #232323;
  margin-left: 3px;
  margin-bottom: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/*-header*/

/*main*/

.main {
  padding: 70px 0;
  margin-bottom: 90px;
}

.webp .main {
  background: url(../img/bgr/bgr.webp) top center no-repeat;
  background-size: cover;
}

.no-webp .main {
  background: url(../img/bgr/bgr.jpg) top center no-repeat;
  background-size: cover;
}

.main-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-left_text {
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 15px;
  color: #256cf7;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  -webkit-animation: anim-text 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: anim-text 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.main-left_text h1 {
  font-size: 50px;
  font-weight: 700;
}

.main-left_text p {
  color: #232323;
}

.main-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 25px;
  -webkit-box-shadow: 0 10px 16px 4px rgba(37, 44, 57, 0.4);
  box-shadow: 0 10px 16px 4px rgba(37, 44, 57, 0.4);
  border-radius: 15px;
  background-color: #ffffff;
  -webkit-animation: tilt-in-bottom-1 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: tilt-in-bottom-1 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes tilt-in-bottom-1 {
  0% {
    -webkit-transform: rotateY(30deg) translateY(300px) skewY(-30deg);
    transform: rotateY(30deg) translateY(300px) skewY(-30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
    transform: rotateY(0deg) translateY(0) skewY(0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-bottom-1 {
  0% {
    -webkit-transform: rotateY(30deg) translateY(300px) skewY(-30deg);
    transform: rotateY(30deg) translateY(300px) skewY(-30deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
    transform: rotateY(0deg) translateY(0) skewY(0deg);
    opacity: 1;
  }
}

.main-form h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 40px;
}

.main-form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 300px;
  font-size: 15px;
  margin-bottom: 10px;
}

.main-form_select {
  width: 100%;
  height: 51px;
  cursor: pointer;
  margin-top: 10px;
}

.main-form_select .jq-selectbox__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: rgba(35, 35, 35, 0.8);
  font-size: 18px;
  border-radius: 15px;
  padding-left: 15px;
  border: 1px solid #e5e5e5;
  background-color: #FFFFFF;
}

.main-form_select .jq-selectbox__dropdown {
  top: 100%;
  width: 100%;
  background: #FFFFFF;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
}

.main-form_select .jq-selectbox__dropdown ul {
  padding: 5px 0;
  max-height: 250px !important;
}

.main-form_select .jq-selectbox__dropdown ul::-webkit-scrollbar {
  width: 3px;
}

.main-form_select .jq-selectbox__dropdown ul::-webkit-scrollbar-thumb {
  background: #256cf7;
}

.main-form_select .jq-selectbox__dropdown ul::-webkit-scrollbar-track {
  background: #e5e5e5;
}

.main-form_select .jq-selectbox__dropdown li {
  padding: 3px 15px;
}

.main-form_select .jq-selectbox__trigger {
  content: '';
  position: absolute;
  right: 15px;
  top: 49%;
  display: block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #79849B;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.main-form_select.dropdown .jq-selectbox__select {
  border-radius: 15px 15px 0 0;
}

.main-form_select.dropdown .jq-selectbox__trigger {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.jq-number .main-form_input {
  width: 100%;
  height: 51px;
  border-radius: 15px;
  border: 1px solid #e5e5e5;
  background-color: #FFFFFF;
  margin-top: 10px;
  padding: 0 15px;
  color: rgba(35, 35, 35, 0.8);
  font-size: 18px;
}

.jq-number {
  position: relative;
}

.main-form_input .jq-number__spin.minus {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  bottom: 20%;
  cursor: pointer;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #79849B;
}

.main-form_input .jq-number__spin.plus {
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  bottom: 45%;
  cursor: pointer;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #79849B;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-bottom: 0;
}

.main-form_btn {
  width: 100%;
  height: 51px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 15px;
  background-color: #256cf7;
  border: 2px solid transparent;
  margin-top: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  opacity: 0;
}

.section-title p {
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 0;
  color: rgba(35, 35, 35, 0.7);
}

.section-title.animations h2 {
  -webkit-animation: section-title 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: section-title 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes section-title {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
    transform: translateZ(-800px);
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes section-title {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
    transform: translateZ(-800px);
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

/*-main*/

/*about*/

.about {
  margin-bottom: 90px;
}

.about-boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 47%;
  text-align: center;
}

.about-box:nth-child(1), .about-box:nth-child(2) {
  margin-bottom: 50px;
}

.about-box h5 {
  width: 100%;
  font-size: 25px;
  font-weight: 700;
  height: 60px;
  opacity: 0;
}

.about-box p {
  font-weight: 400;
  opacity: 0;
}

.about-box.animations h5, .about-box.animations p {
  -webkit-animation: anim-text 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: anim-text 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.about-box_icon {
  width: 100px;
  height: 100px;
  fill: #ffa300;
  margin-bottom: 20px;
  opacity: 0;
}

.about-box.animations .about-box_icon {
  -webkit-animation: anim-img 1s ease-out both;
  animation: anim-img 1s ease-out both;
}

/*-about*/

/*expertise*/

.expertise {
  margin-bottom: 20px;
}

.expertise-boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.expertise-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 25%;
  padding-top: 30px;
  margin-bottom: 80px;
}

.expertise-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  z-index: -1;
  width: 188px;
  height: 143px;
  background: url(../img/bgr/cloud.png) center no-repeat;
  background-size: contain;
  -webkit-animation: rotate-before 10s infinite;
  animation: rotate-before 10s infinite;
}

.expertise-box:after {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  z-index: -2;
  width: 188px;
  height: 143px;
  background: url(../img/bgr/cloud2.png) center no-repeat;
  background-size: contain;
  -webkit-animation: rotate-after 10s infinite;
  animation: rotate-after 10s infinite;
}

.expertise-box_icon {
  fill: #FFFFFF;
  width: 75px;
  height: 75px;
  margin-bottom: 70px;
}

.expertise-box span {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
  width: 100%;
}

@-webkit-keyframes rotate-after {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotate-after {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes rotate-before {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotate-before {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

/*-expertise*/

/*works*/

.works {
  margin-bottom: 90px;
}

.works-box {
  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;
  margin-bottom: 100px;
}

.works-box:last-child {
  margin-bottom: 0;
}

.works-box_img {
  width: 45%;
  opacity: 0;
}

.works-box_img.animations {
  -webkit-animation: anim-img 1s ease-out both;
  animation: anim-img 1s ease-out both;
}

@-webkit-keyframes anim-img {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

@keyframes anim-img {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

.works-box_text {
  text-align: center;
  width: 48%;
  opacity: 0;
}

.works-box_text.animations {
  -webkit-animation: anim-text 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: anim-text 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes anim-text {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes anim-text {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.works-box_text h5 {
  font-size: 25px;
  font-weight: 700;
}

.works-box_text p {
  font-weight: 300;
}

/*-works*/

/*numbers*/

.numbers {
  padding: 60px 0;
  margin-bottom: 90px;
  background: #256cf7;
}

.numbers .section-title {
  color: #FFFFFF;
}

.numbers-boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.numbers-box {
  color: #FFFFFF;
  width: 32%;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  margin-bottom: 30px;
  padding: 30px 40px 0px 40px;
}

.numbers-box_title {
  font-size: 30px;
  font-weight: 700;
}

.numbers-box_descr {
  font-weight: 300;
}

/*-numbers*/

/*plus*/

.plus {
  margin-bottom: 90px;
}

.plus-boxs {
  margin: auto;
}

.plus-box {
  -webkit-box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  border-radius: 15px;
  background-color: #ffffff;
  padding: 20px 30px;
  margin-bottom: 20px;
  opacity: 0;
}

.plus-box.animations {
  -webkit-animation: anim-bounse 1s both;
  animation: anim-bounse 1s both;
}

@-webkit-keyframes anim-bounse {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  55% {
    -webkit-transform: translateY(65px);
    transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes anim-bounse {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  55% {
    -webkit-transform: translateY(65px);
    transform: translateY(65px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(28px);
    transform: translateY(28px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

.plus-box:last-child {
  margin-bottom: 0;
}

.plus-box_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;
  cursor: pointer;
}

.plus-box_top.active {
  color: #ffa200;
}

.plus-box_top.active .plus-box_icon {
  fill: #ffa200;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.plus-box_top h5 {
  font-size: 20px;
  font-weight: 700;
  max-width: 90%;
  margin-bottom: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.plus-box_icon {
  width: 20px;
  height: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.plus-box_bottom {
  display: none;
  margin-top: 25px;
}

.plus-box_bottom p {
  font-size: 20px;
  font-weight: 300;
}

.plus-slider {
  padding: 40px 15px;
  margin-top: 20px;
}

.plus-slider:after {
  content: '';
  position: absolute;
  z-index: 1;
  right: -3px;
  top: 0;
  width: 50px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(239, 240, 243, 0)), color-stop(74%, #ffffff));
  background-image: linear-gradient(90deg, rgba(239, 240, 243, 0) 0%, #ffffff 74%);
}

.plus-slider:before {
  content: '';
  position: absolute;
  z-index: 2;
  left: -3px;
  top: 0;
  width: 50px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(74%, rgba(239, 240, 243, 0)));
  background-image: linear-gradient(90deg, #ffffff 0%, rgba(239, 240, 243, 0) 74%);
}

.plus-slide {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background-color: #ffffff;
  padding: 30px;
  width: 40%;
  cursor: pointer;
}

.plus-slide_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.plus-slide_top img {
  min-width: 100px;
  width: 100px;
  height: 100px;
  margin-right: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.plus-slide_top h5 {
  color: #ffa200;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.plus-slide_top span {
  display: inline-block;
  font-weight: 300;
}

.plus-slide_icon {
  width: 20px;
  height: 20px;
  fill: #cdcdcd;
}

.plus-slide_icon.active {
  fill: #ffd800;
}

.plus-slide_title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.plus-slide_title li {
  margin-right: 5px;
}

.plus-slide_bottom p {
  font-weight: 300;
  font-size: 18px;
}

.plus-slider_arrow {
  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;
}

.plus-slider_next {
  width: 40px;
  height: 40px;
  fill: #cdcdcd;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.plus-slider_prev {
  width: 40px;
  height: 40px;
  fill: #cdcdcd;
  cursor: pointer;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 50px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.plus-slider_prev:hover, .plus-slider_next:hover {
  fill: #ffa200;
}

/*-plus*/

/*trusted*/

.trusted {
  margin-bottom: 90px;
}

.trusted-slider {
  padding: 40px 15px;
}

.trusted-slider:after {
  content: '';
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  width: 70px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(239, 240, 243, 0)), color-stop(74%, #ffffff));
  background-image: linear-gradient(90deg, rgba(239, 240, 243, 0) 0%, #ffffff 74%);
}

.trusted-slider:before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 70px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(74%, rgba(239, 240, 243, 0)));
  background-image: linear-gradient(90deg, #ffffff 0%, rgba(239, 240, 243, 0) 74%);
}

.trusted-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background-color: #ffffff;
  height: 100px;
  width: 20%;
}

.trusted-slide_icon {
  height: 70px;
  max-width: 170px;
}

/*-trusted*/

/*languages*/

.languages {
  margin-bottom: 90px;
}

.launguages-input {
  margin: auto;
  margin-bottom: 30px;
}

.launguages-input label {
  width: 100%;
  position: relative;
}

.launguages-input input {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  -webkit-box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  border-radius: 15px;
  background-color: #ffffff;
  border: none;
  font-size: 20px;
}

.launguages-input input::-webkit-input-placeholder {
  color: #bcbcbc;
}

.launguages-input input::-moz-placeholder {
  color: #bcbcbc;
}

.launguages-input input:-ms-input-placeholder {
  color: #bcbcbc;
}

.launguages-input input:-moz-placeholder {
  color: #bcbcbc;
}

.launguages-input_icon {
  position: absolute;
  right: 30px;
  top: 32%;
  width: 20px;
  height: 20px;
  fill: #cdcdcd;
}

.launguages-boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.launguages-boxs a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  height: 63px;
  -webkit-box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  box-shadow: 0 10px 20px rgba(37, 44, 57, 0.1);
  border-radius: 15px;
  background-color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  color: #232323;
  width: 23%;
  margin-bottom: 20px;
  margin-right: 25px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.launguages-boxs a:nth-child(4n+4) {
  margin-right: 0;
}

.launguages-boxs_icon {
  width: 43px;
  height: 27px;
  margin-right: 20px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*-languages*/

/*error*/

.error {
  padding: 150px 0;
}

.webp .error {
  background: url(../img/bgr/bgr.webp) top left no-repeat;
  background-size: cover;
}

.no-webp .error {
  background: url(../img/bgr/bgr.jpg) top left no-repeat;
  background-size: cover;
}

.error-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  background-color: #fefefe;
  box-shadow: 0 0 15px 15px #fefefe;
  border-radius: 15px;
  padding: 40px 20px;
  max-width: 540px;
}

.error-box h1 {
  color: #256cf7;
  font-size: 240px;
  line-height: 200px;
  font-weight: 700;
}

.error-box p {
  font-size: 30px;
  font-weight: 400;
}

.error-box a {
  padding: 15px 50px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 15px;
  background-color: #256cf7;
  border: 2px solid transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*-error*/

/*page*/

.page {
  padding: 70px 0;
}

.page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-title h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.page-content h4 {
  font-size: 25px;
  font-weight: 700;
}

.page-content a {
  color: #256cf7;
}

.page-content ul {
  margin-bottom: 15px;
}

.page-content li {
  margin-bottom: 4px;
}

/*-page*/

.entry {
  padding: 70px 0;
}

.entry-wrap {
  padding: 30px 120px;
  -webkit-box-shadow: 10px 11px 59px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 11px 59px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  background-color: #ffffff;
  margin: auto;
}

.entry-tab {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.entry-tab li {
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.entry-tab li.active {
  color: #256cf7;
}

.entry-form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}

.entry-form input {
  width: 100%;
  height: 47px;
  background: transparent;
  border: 1px solid #d1d1d1;
  border-radius: 15px;
  padding: 0 15px;
  margin-top: 3px;
}

.entry-form button {
  width: 100%;
  height: 47px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 15px;
  background-color: #256cf7;
  border: 2px solid transparent;
  margin-top: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.entry-boxs li {
  display: none;
}

.entry-boxs li.active {
  display: block;
}

.entry-form_box {
  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;
  margin-bottom: 15px;
}

.entry-form_box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: auto;
  font-size: 15px;
  font-weight: 300;
  color: rgba(35, 35, 35, 0.5);
  margin-bottom: 0;
  cursor: pointer;
}

.entry-form_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #256cf7;
  font-size: 15px;
  font-weight: 400;
}

.entry-form_box input {
  width: auto;
  height: auto;
  margin: auto;
}

.jq-checkbox.entry-form_checkbox {
  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;
  width: 15px;
  height: 15px;
  border: 1px solid #d1d1d1;
  margin-right: 10px;
}

.jq-checkbox.entry-form_checkbox.checked .jq-checkbox__div {
  width: 7px;
  height: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #256cf7;
}

/*order*/

.order {
  padding: 70px 0;
}

.order-box {
  -webkit-box-shadow: 10px 11px 59px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 11px 59px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  background-color: #ffffff;
  padding: 50px;
  margin-bottom: 60px;
}

.order-box_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.order-box_title span {
  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;
  font-size: 35px;
  font-weight: 700;
  width: 64px;
  height: 64px;
  background-color: #232323;
  border-radius: 50%;
  color: #FFFFFF;
}

.order-box_done {
  width: 64px;
  height: 64px;
  fill: #00ae08;
}

.order-box_title h4 {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-left: 30px;
}

.order-box_service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 92px;
}

.order-box_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 92px;
  margin-top: 10px;
  width: 52.5%;
}

.order-box_buttons button {
  width: 48%;
  height: 51px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 15px;
  background-color: #256cf7;
  border: 2px solid transparent;
  margin-top: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.order-box_service label {
  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;
  width: 33%;
  height: 67px;
  position: relative;
  cursor: pointer;
}

.order-box_service label:first-child span {
  border-radius: 15px 0 0 15px;
}

.order-box_service label:last-child span {
  border-radius: 0 15px 15px 0;
}

.order-box_service span {
  width: 100%;
  height: 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;
  border: 1px solid #d1d1d1;
  font-size: 25px;
  font-weight: 700;
}

.order-box_service input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.order-box_service input:checked+span {
  color: #256cf7;
  border: 1px solid #256cf7;
}

.order-box_languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 92px;
}

.order-box_select {
  width: 100%;
  height: 51px;
  cursor: pointer;
  margin-top: 10px;
}

.order-box_select .jq-selectbox__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: rgba(35, 35, 35, 0.8);
  font-size: 18px;
  border-radius: 15px;
  padding-left: 15px;
  border: 1px solid #d1d1d1;
  background-color: #FFFFFF;
}

.order-box_select .jq-selectbox__dropdown {
  top: 100%;
  width: 100%;
  background: #FFFFFF;
  border-left: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.1);
}

.order-box_select .jq-selectbox__dropdown ul {
  padding: 5px 0;
  max-height: 250px !important;
}

.order-box_select .jq-selectbox__dropdown ul::-webkit-scrollbar {
  width: 3px;
}

.order-box_select .jq-selectbox__dropdown ul::-webkit-scrollbar-thumb {
  background: #256cf7;
}

.order-box_select .jq-selectbox__dropdown ul::-webkit-scrollbar-track {
  background: #e5e5e5;
}

.order-box_select .jq-selectbox__dropdown li {
  padding: 3px 15px;
}

.order-box_select .jq-selectbox__trigger {
  content: '';
  position: absolute;
  right: 15px;
  top: 49%;
  display: block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #232323;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.order-box_select.dropdown .jq-selectbox__select {
  border-radius: 15px 15px 0 0;
}

.order-box_select.dropdown .jq-selectbox__trigger {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.order-box_languages label {
  width: 48%;
  font-size: 20px;
  font-weight: 400;
  color: rgba(35, 35, 35, 0.5);
}

.order-box_expert {
  padding-left: 92px;
}

.order-box_expert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.order-box_expert label {
  position: relative;
  width: 32%;
  height: 100px;
  border-radius: 7px;
  margin-right: 15px;
  margin-bottom: 15px;
  cursor: pointer;
}

.order-box_expert label:nth-child(3n+3) {
  margin-right: 0;
}

.order-box_expert input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.order-box_expert span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #256cf7;
  border: 2px solid transparent;
  border-radius: 7px;
  padding: 0 17px;
  font-size: 22px;
  line-height: 22px;
  font-weight: 400;
  color: #FFFFFF;
}

.order-box_icon {
  width: 64px;
  height: 64px;
  fill: #FFFFFF;
  margin-right: 20px;
}

.order-box_expert input:checked+span {
  border: 2px solid #256cf7;
  color: #256cf7;
  background-color: transparent;
}

.order-box_expert input:checked+span .order-box_icon {
  fill: #256cf7;
}

.order-box_materials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-left: 92px;
}

.order-box_file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.order-box_file .jq-file__browse {
  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;
  width: 300px;
  height: 60px;
  border-radius: 15px;
  background-color: #256cf7;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-right: 10px;
  border: 2px solid transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.order-box_file .jq-file__name {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-box_materials button {
  width: 300px;
  height: 60px;
  border-radius: 15px;
  background-color: #256cf7;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  border: none;
  border: 2px solid transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.order-box_materials textarea {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  border: 1px solid #d1d1d1;
  padding: 10px;
  display: none;
}

.order-box_textarea.active {
  display: block;
}

.order-box_number {
  margin-top: 20px;
}

.order-box_number input {
  border-radius: 15px;
  border: 1px solid #d1d1d1;
  width: 109px;
  height: 47px;
  text-align: center;
  margin-left: 10px;
}

.order-box_number input::-webkit-outer-spin-button, .order-box_number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.order-box_brief textarea {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  border: 1px solid #d1d1d1;
  padding: 10px;
}

.order-box_brief {
  padding-left: 92px;
}

.order-box_svg {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}

.order-box_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order-box_info:first-child {
  margin-right: 60px;
}

.order-box_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.order-box_right span:nth-child(1) {
  opacity: 0.5;
  color: #232323;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.order-box_right span:nth-child(2) {
  color: #256cf7;
  font-size: 30px;
  font-weight: 700;
  line-height: 18px;
}

.order-box_project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.order-box_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.order-box_bottom button {
  padding: 17px 50px;
  border-radius: 15px;
  background-color: #256cf7;
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  border: none;
  border: 2px solid transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-transform: uppercase;
}

.order-box_right .order-box_select {
  margin-top: 0;
  height: 40px;
}

.order-box_right .order-box_select .jq-selectbox__trigger {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #232323;
  top: 48%;
}

/*-order*/

.header-admin {
  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;
  height: 60px;
  border-bottom: 1px solid #d1d1d1;
  width: 100%;
  position: relative;
  z-index: 1;
}

.header-admin h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #256cf7;
  height: 100%;
  width: 180px;
  margin-bottom: 0;
}

.header-admin_list {
  display: none;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 100%;
  width: 100%;
  padding: 10px 0;
  border-left: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  border-top: 1px solid #256cf7;
  background: #FFFFFF;
}

.header-admin_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 20px;
  margin-bottom: 4px;
}

.header-admin_list a {
  color: #232323;
}

.header-admin_icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.header-admin_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
  padding-left: 5px;
  height: 100%;
  position: relative;
}

.header-admin_user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
}

.header-admin_right:hover .header-admin_user span {
  border-top: 8px solid #256cf7;
}

.header-admin_right:hover .header-admin_icon {
  fill: #256cf7;
}

.header-admin_right:hover .header-admin_user {
  color: #256cf7;
}

.header-admin_user span {
  margin-top: 4px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #000000;
  margin-left: 10px;
}

.foofer-admin {
  background: #FFFFFF;
  border-top: 1px solid #d1d1d1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  width: 100%;
}

.footer-admin span {
  font-size: 16px;
  color: rgba(35, 35, 35, 0.5);
}

.admin-left {
  width: 180px;
  min-width: 180px;
  background-color: #fafafa;
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 51px;
  height: 100%;
}

.admin-right_box {
  display: none;
}

.admin-right_box.active {
  display: block;
}

.admin-list_icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.admin-left {
  border-right: 1px solid #ceced0;
}

.admin-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-weight: 400;
  padding: 10px 15px;
  border-bottom: 1px solid #ceced0;
  cursor: pointer;
}

.admin-list li.active:before {
  content: '';
  width: 7px;
  height: 102%;
  position: absolute;
  left: 0;
  top: -1px;
  background: #256cf7;
}

.admin-list li:hover {
  color: #256cf7;
}

.admin-list li:hover .admin-list_icon {
  fill: #256cf7;
}

.admin-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.admin-right {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  width: 100%;
  margin-left: 180px;
}

.admin-right_wrap {
  display: none;
}

.admin-right_wrap.active {
  display: block;
}

.admin-right_title {
  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;
  padding: 18px 0;
  border-bottom: 1px solid #d1d1d1;
  margin-bottom: 40px;
}

.admin-right_list {
  margin-bottom: 15px;
}

.admin-right_icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.admin-right_title h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
}

.admin-right_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.admin-right_tab li {
  font-size: 18px;
  padding: 4px 19px;
  border-radius: 7px;
  border: 1px solid #232323;
  margin-right: 10px;
  cursor: pointer;
}

.admin-right_tab li.active {
  background: #256cf7;
  color: #FFFFFF;
  border: 1px solid #256cf7;
}

.admin-right_table {
  width: 100%;
}

.admin-right_table th {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  padding: 10px 5px;
  background: #256cf7;
}

.admin-right_table td {
  padding: 10px 5px;
  font-size: 18px;
}

.admin-right_table tr {
  border-bottom: 1px solid #d1d1d1;
}

.admin-right_messege td:last-child {
  width: 70%;
}

.admin-right_table button {
  padding: 2px 10px;
  font-size: 16px;
  color: #FFFFFF;
  background: #256cf7;
  border-radius: 7px;
  border: 2px solid #256cf7;
}

.admin-profile {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.admin-profile_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.admin-profile_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.admin-profile_form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 400px;
  font-size: 16px;
  font-weight: 700;
}

.admin-profile_form input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #ceced0;
  background-color: #ffffff;
  padding: 0 15px;
  margin-top: 4px;
}

.admin-profile h5 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: left;
}

.admin-profile_form button {
  width: 150px;
  height: 43px;
  color: #FFFFFF;
  border-radius: 7px;
  background: #256cf7;
  border: 2px solid #256cf7;
  margin-top: 10px;
}

.admin-btn_progress {
  background: #ffa400 !important;
  border: 2px solid #ffa400 !important;
}

/*footer*/

footer {
  background: #232323;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 70px;
  margin-top: 50px;
}

.footer-top_box {
  width: 24%;
}

.footer-top_box span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.footer-top_box span:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50px;
  background: #FFFFFF;
}

.footer-top_box a {
  font-size: 15px;
  left: 300px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-top_box li {
  margin-bottom: 5px;
}

.footer-top_box li:last-child {
  margin-bottom: 0;
}

.footer-center {
  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;
}

.footer-center_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-center_links a {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  text-decoration: underline;
}

.footer-center_links a:first-child {
  margin-right: 40px;
}

.footer-center_contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-center_contacts a {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
}

.footer-center_contacts a:first-child {
  margin-right: 30px;
}

.footer-line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  margin: 15px 0;
}

.footer-bottom {
  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;
  margin-bottom: 15px;
}

.footer-bottom_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom_social a {
  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;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer-bottom_icon {
  width: 18px;
  height: 18px;
  fill: #232323;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer-bottom_partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom_partners span {
  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;
  width: 74px;
  height: 30px;
  border-radius: 5px;
  background-color: #ffffff;
  margin-left: 15px;
}

.footer-bottom_order {
  height: 40px;
  width: 60px;
}

/*-footer*/

@media (min-width: 992px) {
  .header-top_links a:hover, .haeder-top_enter a:hover {
    color: #256cf7;
  }
  .haeder-top_enter a:hover .haeder-top_icon {
    fill: #256cf7;
  }
  .header-menu_list li:hover .header-menu_arrow {
    fill: #256cf7;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .header-menu_list li:hover>a {
    color: #256cf7;
  }
  .header-menu_list li:hover>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu li:hover>a {
    color: #256cf7;
  }
  .header-menu_link:hover ul.header-menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu_link:hover>a {
    color: #256cf7;
  }
  .header-menu_link:hover .header-menu_icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    fill: #256cf7;
  }
  .main-form_select .jq-selectbox__dropdown li:hover, .order-box_select .jq-selectbox__dropdown li:hover {
    color: #FFFFFF;
    background: #256cf7;
  }
  .plus-box_top:hover h5 {
    color: #ffa200;
  }
  .plus-box_top:hover .plus-box_icon {
    fill: #ffa200;
  }
  .launguages-boxs a:hover {
    color: #FFFFFF;
    background: #256cf7;
  }
  .main-form_btn:hover, .error-box a:hover, .entry-form button:hover, .order-box_buttons button:hover, .order-box_file:hover .jq-file__browse, .order-box_materials button:hover, .order-box_bottom button:hover {
    color: #256cf7;
    background: transparent;
    border: 2px solid #256cf7;
  }
  .footer-center_contacts a:hover, .footer-center_links a:hover, .footer-top_box a:hover {
    color: #256cf7;
  }
  .footer-bottom_social a:hover {
    background: #256cf7;
  }
  .footer-bottom_social a:hover .footer-bottom_icon {
    fill: #FFFFFF;
  }
  .order-box_service span:hover {
    color: #256cf7;
    border: 1px solid #256cf7;
  }
  .order-box_expert span:hover {
    border: 2px solid #256cf7;
    color: #256cf7;
    background-color: transparent;
  }
  .order-box_expert span:hover .order-box_icon {
    fill: #256cf7;
  }
  .header-admin_list li:hover a {
    color: #256cf7;
  }
  .header-admin_right:hover .header-admin_list {
    display: block;
  }
  .admin-right_tab li:hover {
    color: #256cf7;
    border: 1px solid #256cf7;
  }
  .admin-right_tab li.active:hover {
    color: #FFFFFF;
  }
  .admin-right_table button:hover, .admin-profile_form button:hover {
    background: transparent;
    color: #256cf7;
  }
  .admin-btn_progress:hover {
    color: #FFFFFF !important;
  }
}

@media (max-width: 1200px) {
  .launguages-boxs a {
    margin-right: 20px;
    font-size: 16px;
  }
  .entry-wrap {
    padding: 30px 50px;
  }
  .order-box_expert label {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .order-box_expert span {
    font-size: 18px;
    line-height: 17px;
  }
  .order-box_icon {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .order-box_service label {
    height: 60px;
  }
  .order-box_service span {
    font-size: 21px;
  }
  .admin-profile_form label {
    width: 300px;
  }
  .admin-right {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 992px) {
  .admin-left {
    position: static;
    padding-top: 0;
    width: 100%;
  }
  .admin-right {
    margin-left: 0;
  }
  .admin-profile_form label {
    width: 250px;
  }
  .header-admin_list.active {
    display: block;
  }
  .admin-right_table td {
    font-size: 14px;
  }
  .admin-right_table button {
    font-size: 15px;
  }
  .admin-right_table th {
    font-size: 16px;
  }
  .admin-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-burger_icon {
    width: 50px;
    height: 50px;
    fill: #256cf7;
  }
  .header-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .header-top_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 0;
  }
  .header-top_links a:first-child {
    margin-right: 0;
  }
  .haeder-top_enter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .haeder-top_enter a:first-child {
    margin-right: 0;
    margin-bottom: 7px;
  }
  .haeder-top_icon {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0;
    margin-left: 5px;
  }
  .header-logo {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 50px;
  }
  .header-logo picture {
    position: absolute;
    width: 200px;
  } 
  .header-menu {
    display: block;
    position: absolute;
    z-index: 50;
    width: 100%;
    height: 2000px;
    top: 0;
    left: -100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 100px;
    padding-top: 50px;
    background: #FFFFFF;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .header-menu_close {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    fill: #256cf7;
  }
  .header-menu.active {
    left: 0;
  }
  .header-menu li {
    padding: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .header-menu ul {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 15px;
  }
  .header-menu a {
    font-size: 24px;
  }
  ul.header-menu_list {
    position: static;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    width: 100%;
  }
  ul.haeder-menu_sublist {
    display: none;
    position: static;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    width: 100%;
  }
  .haeder-menu_sublist li {
    margin-bottom: 7px;
  }
  .header-menu_list a {
    font-size: 20px;
  }
  .haeder-menu_sublist a {
    font-size: 17px;
  }
  .header-menu_link a.active {
    color: #256cf7;
  }
  .header-menu_link a.active .header-menu_icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    fill: #256cf7;
  }
  .header-menu_link a.active .header-menu_arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    fill: #256cf7;
  }
  .header-menu_link a.active+ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-top_box {
    width: 50%;
  }
  .plus-slide {
    width: 80%;
  }
  .expertise-box {
    width: 50%;
  }
  .about-box h5 {
    height: auto;
  }
  .main-left_text h1 {
    font-size: 45px;
  }
  .main-left_text {
    padding: 15px;
    margin-bottom: 30px;
  }
  .main {
    padding: 50px 0;
  }
  .about-box h5 {
    font-size: 20px;
  }
  .about-box p {
    font-size: 18px;
  }
  .expertise-box span {
    font-size: 20px;
  }
  .works-box_text h5 {
    font-size: 20px;
  }
  .works-box_text p {
    font-size: 18px;
  }
  .trusted-slide {
    width: 40%;
  }
  .numbers-box {
    width: 48%;
  }
  .numbers-box_title {
    font-size: 25px;
  }
  .numbers-box_descr {
    font-size: 18px;
  }
  .numbers-box {
    height: 140px;
  }
  .plus-box_bottom p {
    font-size: 18px;
  }
  .plus-slide_bottom p {
    font-size: 17px;
  }
  .plus-slide_top span {
    font-size: 18px;
  }
  .launguages-boxs a {
    width: 48%;
    margin-right: 0;
  }
  .launguages-boxs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer-center_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-center_links a:first-child {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .footer-center_contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .footer-center_contacts a:first-child {
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-box_brief {
    padding-left: 0;
  }
  .order-box_materials {
    padding-left: 0;
  }
  .order-box_expert {
    padding-left: 0;
  }
  .order-box_expert label {
    width: 48%;
  }
  .order-box_expert label:nth-child(3n+3) {
    margin-right: 10px;
  }
  .order-box_expert label:nth-child(2n) {
    margin-right: 0;
  }
  .order-box_languages {
    padding-left: 0;
  }
  .order-box_buttons {
    padding-left: 0;
  }
  .order-box_service {
    padding-left: 0;
  }
  .order-box {
    padding: 30px 20px;
  }
  .order-box_right span:last-child {
    font-size: 25px;
  }
  .order-box_svg {
    width: 60px;
    height: 60px;
  }
  .order-box_info:first-child {
    margin-right: 30px;
  }
  .order-box_buttons {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .main-left_text h1 {
    font-size: 30px;
  }
  .main-left_text p {
    font-size: 15px;
  }
  .main-left_text {
    padding: 10px;
  }
  .main-form label {
    width: 100%;
  }
  .main-form h4 {
    margin-bottom: 20px;
  }
  .about-box {
    width: 100%;
  }
  .expertise-box {
    width: 48%;
    margin-bottom: 30px;
  }
  .works-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .works-box_img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }
  .works-box_text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
  .numbers-box {
    width: 100%;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-burger_icon {
    width: 45px;
    height: 45px;
  }
  .main-form {
    width: 100%;
  }
  .main {
    margin-bottom: 70px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .about {
    margin-bottom: 70px;
  }
  .about-box_icon {
    width: 70px;
    height: 70px;
  }
  .about-box h5 {
    font-size: 18px;
  }
  .about-box p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .about-box:nth-child(1), .about-box:nth-child(2), .about-box:nth-child(3) {
    margin-bottom: 40px;
  }
  .expertise {
    margin-bottom: 40px;
  }
  .expertise-box span {
    font-size: 18px;
  }
  .expertise-box:before {
    width: 110px;
    height: 120px;
  }
  .expertise-box:after {
    width: 110px;
    height: 120px;
  }
  .expertise-box_icon {
    height: 50px;
    width: 50px;
    margin-bottom: 40px;
  }
  .works-box_text h5 {
    font-size: 18px;
  }
  .works-box_text p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .works-box {
    margin-bottom: 60px;
  }
  .section-title p {
    font-size: 16px;
  }
  .trusted-slide {
    width: 60%;
  }
  .works {
    margin-bottom: 70px;
  }
  .trusted {
    margin-bottom: 70px;
  }
  .trusted-slider {
    padding: 27px 15px;
  }
  .numbers-box {
    padding: 10px;
    height: 100px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .numbers-box_descr {
    font-size: 16px;
  }
  .numbers-box_title {
    font-size: 20px;
  }
  .numbers {
    margin-bottom: 70px;
  }
  .plus-box {
    padding: 10px;
    margin-bottom: 10px;
  }
  .plus-box_top h5 {
    font-size: 18px;
  }
  .plus-box_bottom p {
    font-size: 14px;
  }
  .plus-box_bottom {
    margin-top: 10px;
  }
  .plus-box_icon {
    width: 17px;
    height: 17px;
  }
  .plus-slide {
    padding: 20px;
    width: 95%;
  }
  .plus-slide_top img {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
  .plus-slide_bottom p {
    font-size: 15px;
  }
  .plus-slide_icon {
    width: 15px;
    height: 15px;
  }
  .plus-slide_top span {
    font-size: 14px;
  }
  .plus-slide_top h5 {
    font-size: 17px;
  }
  .plus {
    margin-bottom: 70px;
  }
  .launguages-input input {
    font-size: 16px;
    padding: 0 10px;
    height: 50px;
  }
  .launguages-input_icon {
    right: 10px;
    width: 17px;
    height: 17px;
  }
  .launguages-boxs a {
    width: 49%;
    margin-bottom: 10px;
    padding: 0 5px;
    font-size: 14px;
    height: 55px;
  }
  .launguages-boxs_icon {
    margin-right: 5px;
    width: 35px;
    height: 22px;
  }
  .languages {
    margin-bottom: 70px;
  }
  .footer-top_box {
    width: 48%;
    margin-bottom: 20px;
  }
  .footer-top_box a {
    font-size: 13px;
  }
  .footer-top_box span {
    font-size: 13px;
  }
  .footer-top {
    margin: 30px 0;
  }
  .footer-bottom_partners {
    margin-top: 10px;
  }
  .footer-bottom_partners span:first-child {
    margin-left: 0;
  }
  .footer-bottom_social a:last-child {
    margin-right: 0;
  }
  .error {
    padding: 100px 0;
  }
  .error-box h1 {
    font-size: 130px;
    line-height: 110px;
  }
  .error-box p {
    font-size: 20px;
  }
  .error-box a {
    font-size: 16px;
  }
  .error-box a {
    padding: 12px 40px;
  }
  .page {
    padding: 50px 0;
  }
  .page-title h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .page-content h4 {
    font-size: 18px;
  }
  .page-content p {
    font-size: 15px;
  }
  .page-content li {
    font-size: 15px;
  }
  .entry {
    padding: 50px 0;
  }
  .entry-wrap {
    margin: 0 15px;
    padding: 30px 20px;
  }
  .entry-tab li {
    font-size: 16px;
  }
  .entry-form input {
    height: 40px;
  }
  .entry-form label {
    font-size: 15px;
  }
  .entry-form button {
    font-size: 18px;
  }
  .entry-form_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .entry-form_box a {
    margin-top: 7px;
  }
  .entry-form button {
    height: 40px;
  }
  .order {
    padding: 50px 0;
  }
  .order-box_title span {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  .order-box_title h4 {
    font-size: 20px;
    margin-left: 15px;
  }
  .order-box_service {
    -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;
  }
  .order-box_service label {
    width: 200px;
  }
  .order-box_service label:first-child span, .order-box_service span, .order-box_service label:last-child span {
    border-radius: 15px;
  }
  .order-box_service label {
    height: 50px;
  }
  .order-box_languages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .order-box_languages label {
    width: 100%;
    font-size: 18px;
  }
  .order-box_buttons button {
    font-size: 16px;
  }
  .order-box {
    margin-bottom: 20px;
  }
  .order-box_expert label {
    width: 100%;
    margin-right: 0;
    height: 80px;
  }
  .order-box_icon {
    width: 40px;
    height: 40px;
  }
  .order-box_expert span {
    font-size: 16px;
  }
  .order-box_expert label:nth-child(3n+3) {
    margin-right: 0;
  }
  .order-box_brief textarea, .order-box_materials textarea {
    font-size: 15px;
  }
  .order-box_project {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .order-box_right span:first-child {
    font-size: 20px;
  }
  .order-box_right span:last-child {
    font-size: 20px;
  }
  .order-box_info:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .order-box_bottom button {
    font-size: 16px;
    padding: 0;
    height: 51px;
    width: 100%;
  }
  .order-box_materials button {
    width: 100%;
    height: 51px;
    font-size: 16px;
  }
  .order-box_file {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .order-box_number input {
    height: 40px;
  }
  .order-box_file .jq-file__browse {
    margin-right: 0;
    width: 100%;
    height: 51px;
    font-size: 16px;
  }
  .admin-list li {
    font-size: 14px;
    padding: 5px 10px;
  }
  .admin-list_icon {
    height: 15px;
    width: 15px;
  }
  .header-admin h1 {
    font-size: 16px;
    width: 120px;
  }
  .header-admin {
    height: 40px;
  }
  .admin-profile_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .admin-profile {
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .header-admin_user {
    font-size: 16px;
  }
  .header-admin_list li {
    font-size: 18px;
  }
  .admin-right_title {
    padding: 10px 0;
    margin-bottom: 20px;
  }
  .admin-right_title h4 {
    font-size: 20px;
  }
  .admin-right_icon {
    width: 15px;
    height: 15px;
  }
  .admin-profile h5 {
    font-size: 20px;
  }
  .admin-profile_form label {
    width: 100%;
    font-size: 14px;
  }
  .admin-profile_form {
    width: 100%;
  }
  .admin-profile_form button {
    width: 100%;
  }
  .admin-right_table button {
    font-size: 12px;
    padding: 1px 4px;
  }
  .admin-right_table th {
    font-size: 13px;
  }
  .admin-right_tab li {
    font-size: 16px;
    padding: 3px 16px;
  }
  .admin-right_table td {
    font-size: 12px;
  }
  .admin-right {
    padding-left: 0;
    padding-right: 0;
  }
  .admin-right_list {
    padding-left: 5px;
    padding-right: 5px;
  }
  .admin-right_wrap .order-form {
    padding-left: 5px;
    padding-right: 5px;
  }
  .admin-profile_wrap {
    padding-left: 5px;
    padding-right: 5px;
  }
  .admin-right_tab {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .order-box_right .order-box_select {
    width: 130px;
  }
  .foofer-admin {
    height: 30px;
  }
  .foofer-admin span {
    font-size: 14px;
  }
  .order-box_done {
    width: 50px;
    height: 50px;
  }
}