@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,regular,500,600,700,800,900,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@font-face {
  font-family: "Gilroy-Bold";
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Medium";
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Regular";
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Nunito Sans";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Nunito Sans";
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
body {
  color: #1e293b;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
._container {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0px 100px;
}
@media (max-width: 998px) {
  ._container {
    padding: 0px 16px;
  }
}

.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
  color: #858fa4;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  cursor: pointer;
  border-radius: 4px;
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  line-height: 140%;
  /* identical to box height, or 20px */
  text-align: right;
  color: #858fa4;
}
.select__value span {
  padding-right: 10px;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 6px;
  height: 6px;
  background: url("../img/arrow.png") center/100% no-repeat;
}
.select__value::after {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: url("../img/loc.svg") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  border-top: 0;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 991.98px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: flex;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 991.98px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}
ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}
ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}
.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

._more-content {
  transition: all 0.3s ease 0s;
  overflow: hidden;
}

._more-link {
  cursor: pointer;
}
._more-link span {
  font-style: normal;
}
._more-link span:first-child {
  display: block;
}
._more-link span:last-child {
  display: none;
}
._more-link._active span {
  font-style: normal;
}
._more-link._active span:first-child {
  display: none;
}
._more-link._active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}
._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}
._swiper.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
._swiper.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

._tabs-block {
  display: none;
}
._tabs-block._active {
  display: block;
}

.mirror {
  transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}
._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

/*
//Burger
.icon-menu {
	display: none;
	@media (max-width: $md3+px) {
		display: block;
		position: absolute;
		top: 18px;
		right: 10px;
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
		span {
			transition: all 0.3s ease 0s;
			top: calc(50% - 1px);
			left: 0px;
			position: absolute;
			width: 100%;
			height: 2px;
			background-color: #000;
			&:first-child {
				top: 0px;
			}
			&:last-child {
				top: auto;
				bottom: 0px;
			}
		}
		&._active {
			span {
				transform: scale(0);
				&:first-child {
					transform: rotate(-45deg);
					top: calc(50% - 1px);
				}
				&:last-child {
					transform: rotate(45deg);
					bottom: calc(50% - 1px);
				}
			}
		}
	}
}
*/
.page {
  flex: 1 1 auto;
  padding-top: 60px;
}
@media (max-width: 998px) {
  .page {
    padding-top: 45px;
  }
}

.inp__wp._error span {
  display: block;
}
.inp__wp span {
  display: none;
}

._resp {
  overflow: hidden;
  transition: 0.3s;
}

._title {
  font-size: 64px;
  font-weight: 700;
}
@media (max-width: 998px) {
  ._title {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  ._title {
    font-size: 32px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}
@media (max-width: 998px) {
  .header {
    opacity: 0;
  }
  .header._showw {
    opacity: 1;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e3e8fd;
  gap: 50px;
  position: relative;
}
.header__wp {
  display: flex;
  align-items: center;
}
.header__logo {
  padding: 0px 40px;
  border-right: 1px solid #e3e8fd;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.header__logo:hover img:nth-child(2) {
  transform: rotate(90deg) translate(-2px, -2px);
}
.header__logo img {
  width: 150px;
}
.header__logo img:nth-child(2) {
  position: absolute;
  width: calc(100% - 80px);
  height: 100%;
  transition: 0.3s;
  top: 0;
}
@media (max-width: 1600px) {
  .header__logo {
    padding: 0px 30px;
  }
  .header__logo img {
    width: 120px;
  }
  .header__logo img:nth-child(2) {
    width: calc(100% - 60px);
  }
}
@media (max-width: 1300px) {
  .header__logo {
    padding: 0px 20px;
  }
  .header__logo img {
    width: 120px;
  }
  .header__logo img:nth-child(2) {
    width: calc(100% - 40px);
  }
}
@media (max-width: 998px) {
  .header__logo {
    padding: 0px;
    padding-left: 15px;
    border-right: none;
    width: 100px;
  }
  .header__logo img {
    width: 100px;
  }
  .header__logo img:nth-child(2) {
    width: calc(100% - 0px);
  }
}
.header__location {
  padding-left: 50px;
}
.header__location .select__value {
  color: #1e293b;
  font-size: 18px;
}
.header__location .select__options {
  background: #f2f4f7;
  color: #1e293b;
  font-size: 18px;
  padding: 24px;
  min-width: 240px;
  gap: 15px;
  flex-direction: column;
}
@media (max-width: 1600px) {
  .header__location {
    padding-left: 25px;
  }
  .header__location .select__value {
    font-size: 16px;
  }
}
@media (max-width: 1600px) {
  .header__location {
    padding-left: 10px;
  }
  .header__location .select__value {
    font-size: 16px;
  }
}
@media (max-width: 1050px) {
  .header__location {
    width: max-content;
    padding-left: 0px;
    padding-bottom: 24px;
  }
  .header__location .select__value {
    padding: 0px;
    font-size: 18px;
  }
}
.header__menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__menu ul {
  display: flex;
  gap: 48px;
  font-size: 18px;
}
.header__menu ul a {
  color: inherit;
  transition: 0.3s;
}
.header__menu ul a:hover {
  opacity: 0.8;
}
@media (max-width: 1600px) {
  .header__menu ul {
    gap: 30px;
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .header__menu ul {
    gap: 20px;
    font-size: 15px;
  }
}
@media (max-width: 1050px) {
  .header__menu {
    display: flex;
    flex-direction: column;
    top: 0%;
    left: 0%;
    transform: translate(0px, -100%);
    transition: 0.3s;
    z-index: 3;
    background-color: #fff;
    width: 100%;
    min-height: 100vh;
    padding: 24px 16px;
  }
  .header__menu._active {
    transform: translate(0px, 0%);
  }
  .header__menu ul {
    flex-direction: column;
    font-size: 32px;
    gap: 0;
  }
  .header__menu ul li {
    border-top: 1px solid #e3e8fd;
    padding: 24px 0px;
    position: relative;
  }
  .header__menu ul li::before {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
    content: "";
    background-image: url(../img/arrow-up-right.svg);
    width: 38px;
    height: 38px;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.header__button a {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 28px 40px;
  color: #fff;
  display: flex;
  background: #06f;
  transition: 0.3s;
}
.header__button a:hover {
  background: #1e293b;
}
@media (max-width: 1600px) {
  .header__button a {
    padding: 23px 32px;
  }
}
@media (max-width: 1300px) {
  .header__button a {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .header__button a {
    font-size: 10px;
    padding: 16px 23px;
  }
}
@media (max-width: 360px) {
  .header__button a {
    padding: 16px 16px;
    letter-spacing: 0.6px;
  }
}

.services__container {
  padding-top: 130px;
}
@media (max-width: 998px) {
  .services__container {
    padding-top: 30px;
  }
}
.services__block {
  margin-top: 32px;
  opacity: 0;
  transition-delay: 0.6s;
}
.services__block.show {
  opacity: 1;
}
.services__item {
  border-radius: 25px;
  background-color: #06f;
  width: 100vw;
  position: relative;
  transition: 0.5s;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 998px) {
  .services__item {
    border-radius: 20px;
  }
}
.services__item ._container {
  background-image: url(../img/numbers.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 100px) top;
  background-size: 420px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 998px) {
  .services__item ._container {
    background-position: calc(100% + 20px) 50px;
    background-size: 120px;
    background-image: url(../img/numbersm.svg);
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.services__item:nth-child(1) {
  color: #fff;
}
.services__item:nth-child(2) {
  background: #f2f4f7;
}
.services__item:nth-child(2) .services__info li::before {
  background-color: #1e293b;
}
.services__item:nth-child(2) ._container {
  background-image: url(../img/numbers2.svg);
  background-position: calc(100% - 170px) top;
  background-size: 350px;
}
@media (max-width: 998px) {
  .services__item:nth-child(2) ._container {
    background-image: url(../img/numbersm2.svg);
    background-size: 100px;
    background-position: calc(100% + 20px) 50px;
  }
}
.services__item:nth-child(3) {
  background-color: #1e293b;
  color: #fff;
}
@media (max-width: 998px) {
  .services__item:nth-child(3) ._container {
    background-size: 100px;
    background-position: calc(100% + 0px) 50px;
    background-image: url(../img/numbersm3.svg);
  }
}
.services__head {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 450px);
}
@media (max-width: 1500px) {
  .services__head {
    gap: 13px;
  }
}
@media (max-width: 998px) {
  .services__head {
    width: calc(100% - 80px);
    align-items: flex-start;
  }
}
.services__cif {
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  color: #1e293b;
  font-weight: bold;
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1500px) {
  .services__cif {
    flex: 0 0 30px;
    font-size: 14px;
    height: 30px;
  }
}
.services__text {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 1500px) {
  .services__text {
    font-size: 28px;
  }
}
@media (max-width: 998px) {
  .services__text {
    font-size: 22px;
  }
}
.services__info {
  overflow: hidden;
  transition: 0.5s;
  font-size: 24px;
  width: calc(100% - 450px);
  line-height: 1.3;
  max-width: max-content;
}
.services__info a {
  color: inherit;
  transition: 0.3s;
}
.services__info a:hover {
  opacity: 0.8;
}
@media (max-width: 1500px) {
  .services__info {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .services__info {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  .services__info {
    width: calc(100% - 80px);
  }
}
.services__info .services__wp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 998px) {
  .services__info .services__wp {
    gap: 8px;
    grid-template-columns: 1fr;
  }
}
.services__info ul {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services__info ul li {
  position: relative;
  padding-left: 20px;
}
.services__info ul li::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.portfolio__container {
  padding-top: 128px;
}
.portfolio__block {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1400px) {
  .portfolio__block {
    gap: 20px;
  }
}
.portfolio__wp1 {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1400px) {
  .portfolio__wp1 {
    gap: 20px;
  }
}
@media (max-width: 1050px) {
  .portfolio__wp1 {
    grid-template-columns: 1fr;
  }
}
.portfolio__wp1 .portfolio__item:nth-child(1) {
  color: #fff;
}
.portfolio__wp1 .portfolio__item:nth-child(1) .portfolio__img img {
  margin-top: -80px;
}
@media (max-width: 1600px) {
  .portfolio__wp1 .portfolio__item:nth-child(1) .portfolio__img img {
    max-width: 200px;
  }
}
.portfolio__wp1 .portfolio__item:nth-child(1):hover::before {
  background-image: url(../img/arrow-down-rightss.svg);
}
.portfolio__wp1 .portfolio__item:nth-child(2) {
  transition: 0.3s;
  background: #f2f4f7;
}
.portfolio__wp1 .portfolio__item:nth-child(2):hover {
  color: #fff;
  background: #06f;
}
.portfolio__wp1 .portfolio__item:nth-child(2) .portfolio__img img {
  margin-top: 0px;
}
.portfolio__wp1 .portfolio__item:nth-child(2) .portfolio__head {
  width: 100%;
}
.portfolio__wp1 .portfolio__item:nth-child(3) {
  transition: 0.3s;
  background: transparent;
  border: 1px solid #06f;
}
.portfolio__wp1 .portfolio__item:nth-child(3):hover {
  color: #fff;
  background: #06f;
}
.portfolio__wp1 .portfolio__item:nth-child(3) .portfolio__img img {
  margin-top: -70px;
  margin-bottom: -30px;
  transform: translate(20px);
}
@media (max-width: 1600px) {
  .portfolio__wp1 .portfolio__item:nth-child(3) .portfolio__img img {
    max-width: 150px;
  }
}
@media (max-width: 500px) {
  .portfolio__wp1 .portfolio__item:nth-child(3) .portfolio__img img {
    margin-bottom: -30px !important;
    transform: translate(0px);
  }
}
.portfolio__wp2 {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1.7fr;
}
@media (max-width: 1400px) {
  .portfolio__wp2 {
    gap: 20px;
  }
}
@media (max-width: 1050px) {
  .portfolio__wp2 {
    grid-template-columns: 1fr;
  }
}
.portfolio__wp2 .portfolio__item .portfolio__head {
  max-width: 500px;
  width: 100%;
}
.portfolio__wp2 .portfolio__item:nth-child(1) {
  background: transparent;
  border: 1px solid #06f;
  transition: 0.3s;
}
.portfolio__wp2 .portfolio__item:nth-child(1):hover {
  color: #fff;
  background: #06f;
}
.portfolio__wp2 .portfolio__item:nth-child(1) img {
  max-width: 60%;
}
.portfolio__wp2 .portfolio__item:nth-child(2) {
  color: #fff;
}
.portfolio__wp2 .portfolio__item:nth-child(2):hover::before {
  background-image: url(../img/arrow-down-rightss.svg);
}
.portfolio__wp2 .portfolio__item:nth-child(2) img {
  max-width: 80%;
}
@media (max-width: 998px) {
  .portfolio__wp2 .portfolio__item:nth-child(2) img {
    width: 500px;
    max-width: 500px;
  }
}
@media (max-width: 700px) {
  .portfolio__wp2 .portfolio__item:nth-child(2) img {
    transform: translate(60%);
  }
}
.portfolio__wp3 {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 1400px) {
  .portfolio__wp3 {
    gap: 20px;
  }
}
@media (max-width: 1050px) {
  .portfolio__wp3 {
    grid-template-columns: 1fr;
  }
}
.portfolio__wp3 .portfolio__item .portfolio__head {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 998px) {
  .portfolio__wp3 .portfolio__item .portfolio__head {
    margin-bottom: 20px;
  }
}
.portfolio__wp3 .portfolio__item:nth-child(1) {
  background: #f2f4f7;
}
.portfolio__wp3 .portfolio__item:nth-child(1) .portfolio__head {
  max-width: 45%;
  width: 100%;
}
@media (max-width: 998px) {
  .portfolio__wp3 .portfolio__item:nth-child(1) .portfolio__head {
    max-width: 100%;
  }
}
.portfolio__wp3 .portfolio__item:nth-child(1) {
  transition: 0.3s;
}
.portfolio__wp3 .portfolio__item:nth-child(1):hover {
  color: #fff;
  background: #06f;
}
.portfolio__wp3 .portfolio__item:nth-child(1) img {
  max-width: 50%;
  width: 100%;
  margin-top: -50px;
}
@media (max-width: 998px) {
  .portfolio__wp3 .portfolio__item:nth-child(1) img {
    max-width: 60%;
  }
}
.portfolio__wp3 .portfolio__item:nth-child(2) {
  background: transparent;
  border: 1px solid #06f;
}
.portfolio__wp3 .portfolio__item:nth-child(2):hover {
  background: #06f;
}
.portfolio__wp3 .portfolio__item:nth-child(2) .portfolio__head {
  max-width: 100px;
}
@media (max-width: 998px) {
  .portfolio__wp3 .portfolio__item:nth-child(2) .portfolio__head {
    max-width: 100%;
  }
}
.portfolio__wp3 .portfolio__item:nth-child(2) img {
  max-width: 70%;
  margin-top: -30px;
  margin-bottom: -20px;
}
.portfolio__item {
  border-radius: 25px;
  background: #06f;
  color: inherit;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s;
  position: relative;
}
.portfolio__item:hover {
  background: #1e293b;
}
@media (max-width: 1400px) {
  .portfolio__item {
    padding: 20px;
  }
}
.portfolio__item::before {
  position: absolute;
  bottom: 30px;
  left: 30px;
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/arrow-down-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.portfolio__head {
  max-width: 390px;
  width: 80%;
  font-size: 36px;
}
@media (max-width: 1500px) {
  .portfolio__head {
    font-size: 30px;
  }
}
@media (max-width: 1300px) {
  .portfolio__head {
    font-size: 26px;
  }
}
@media (max-width: 998px) {
  .portfolio__head {
    font-size: 24px;
  }
}
.portfolio__img {
  margin-left: auto;
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1050px) {
  .portfolio__img img {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    max-width: 50%;
  }
}

.creating {
  border-radius: 25px;
  background: #1e293b;
}
.creating__containe {
  padding-top: 130px;
  padding-bottom: 130px;
  color: #fff;
  margin-top: 130px;
}
@media (max-width: 998px) {
  .creating__containe {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.creating__block {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 998px) {
  .creating__block {
    flex-direction: column;
    gap: 6px;
  }
}
.creating__item {
  width: calc(50% - 25px);
  font-size: 22px;
  position: relative;
}
@media (max-width: 998px) {
  .creating__item {
    width: 100%;
    font-size: 16px;
  }
}
.creating__item p {
  line-height: 1.3;
}
.creating__title {
  font-weight: 400;
}
.creating__wp {
  display: flex;
  gap: 50px;
  justify-content: center;
  max-width: 80%;
  margin: 0px auto;
  margin-top: 70px;
}
@media (max-width: 998px) {
  .creating__wp {
    max-width: 100%;
    flex-direction: column;
    margin-top: 16px;
    gap: 14px;
  }
}
.creating__wp .creating__item::before {
  position: absolute;
  top: 0;
  left: -25px;
  content: "";
  background-image: url(../img/pq.svg);
  background-size: contain;
  width: 20px;
  height: 80px;
  transform: translate(-100%);
  background-repeat: no-repeat;
}
@media (max-width: 998px) {
  .creating__wp .creating__item {
    padding-left: 35px;
  }
  .creating__wp .creating__item::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    left: 0;
    transform: translate(0px);
  }
}
.creating__head {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 998px) {
  .creating__head {
    font-size: 24px;
  }
}
.creating__text {
  font-size: 22px;
  margin-top: 16px;
  padding-right: 20px;
}
@media (max-width: 998px) {
  .creating__text {
    padding-right: 0px;
    font-size: 16px;
  }
}

.stages__container {
  padding-top: 128px;
  padding-bottom: 128px;
}
@media (max-width: 998px) {
  .stages__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.stages__wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 998px) {
  .stages__wp {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
}
.stages__arr {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 998px) {
  .stages__arr {
    justify-content: space-between;
    width: 100%;
  }
}
.stages__arr img {
  cursor: pointer;
}
.stages__arr-l {
  transform: rotate(180deg);
}
.stages__block {
  margin-top: 32px;
}
.stages__item {
  display: flex;
  gap: 30px;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .stages__item {
    gap: 12px;
  }
}
.stages__img {
  flex: 0 0 calc(40% - 15px);
}
@media (max-width: 1200px) {
  .stages__img {
    flex: 0 0 calc(40% - 6px);
  }
}
.stages__img img {
  width: 100%;
}
.stages__content {
  flex: 0 0 calc(60% - 15px);
  margin-top: auto;
}
@media (max-width: 1200px) {
  .stages__content {
    flex: 0 0 calc(60% - 6px);
  }
}
.stages__head {
  font-size: 36px;
  color: #06f;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .stages__head {
    font-size: 32px;
  }
}
@media (max-width: 998px) {
  .stages__head {
    font-size: 16px;
  }
}
.stages__text {
  color: #475569;
  line-height: 120%;
  font-size: 22px;
  margin-top: 14px;
}
@media (max-width: 1400px) {
  .stages__text {
    font-size: 18px;
    margin-top: 10px;
  }
}
@media (max-width: 998px) {
  .stages__text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.mail__head {
  border-radius: 25px;
  background: #06f;
  padding: 40px 0px;
  color: #fff;
  font-size: 36px;
}
@media (max-width: 1500px) {
  .mail__head {
    font-size: 28px;
  }
}
@media (max-width: 998px) {
  .mail__head {
    font-size: 16px;
    padding: 16px 0px;
    border-radius: 10px;
  }
}
.mail__head ._container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 998px) {
  .mail__head ._container {
    gap: 6px;
  }
}
.mail__head span {
  font-weight: 600;
  padding-left: 10px;
}
.mail__body {
  font-size: 58px;
  border-radius: 25px;
  background: #f2f4f7;
  line-height: 1.3;
}
@media (max-width: 1650px) {
  .mail__body {
    font-size: 48px;
  }
}
@media (max-width: 1450px) {
  .mail__body {
    font-size: 40px;
  }
}
@media (max-width: 1350px) {
  .mail__body {
    font-size: 34px;
  }
}
@media (max-width: 998px) {
  .mail__body {
    font-size: 24px;
    border-radius: 10px;
  }
}
.mail__body input[type=text] {
  font-size: 24px;
  width: 100%;
  max-width: 420px;
  min-width: 200px;
  background: transparent;
  border-bottom: 1px solid #1e293b;
}
@media (max-width: 998px) {
  .mail__body input[type=text] {
    width: 100%;
    max-width: 200px;
    min-width: 150px;
    font-size: 14px;
  }
}
.mail__content {
  padding: 40px 0px;
}
.mail__file {
  position: relative;
  white-space: nowrap;
  border-bottom: 2px dashed #06f;
}
.mail__file img {
  width: 30px;
}
@media (max-width: 998px) {
  .mail__file img {
    width: 20px;
  }
}
.mail__file input {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  left: 0;
  top: 0;
  opacity: 0;
}
.mail__select {
  max-width: 450px;
  display: inline-flex;
  width: 100%;
  border-bottom: 1px solid #1e293b;
}
.mail__select .select {
  width: 100%;
}
.mail__select .select._active {
  background: #1e293b;
}
.mail__select .select._active .select__value {
  color: #a9b9d1;
}
.mail__select .select__value {
  color: #1e293b;
  font-size: 24px;
}
@media (max-width: 998px) {
  .mail__select .select__value {
    font-size: 14px;
  }
}
.mail__select .select__value::after {
  display: none;
}
.mail__select .select__value::before {
  width: 12px;
  height: 12px;
}
.mail__select .select__options {
  flex-direction: column;
  background: #f2f4f7;
  box-shadow: 0px 2px 10px 0px rgba(5, 15, 50, 0.1);
  font-size: 24px;
  color: #a9b9d1;
}
@media (max-width: 998px) {
  .mail__select .select__options {
    font-size: 14px;
  }
}
.mail__sent {
  display: flex;
  font-size: 24px;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
  padding-bottom: 80px;
}
@media (max-width: 1500px) {
  .mail__sent {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .mail__sent {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    font-size: 14px;
    padding-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .mail__coment {
    max-width: 100% !important;
  }
}
.mail__checkbox input {
  display: none;
}
.mail__checkbox input:checked + label::before {
  background-color: #06f;
  background-image: url(../img/check-alt-svgrepo-com.svg);
  background-size: 110%;
  background-position: center center;
}
.mail__checkbox label {
  position: relative;
  padding-left: 50px;
  cursor: pointer;
  display: block;
}
@media (max-width: 1500px) {
  .mail__checkbox label {
    padding-left: 40px;
  }
}
@media (max-width: 998px) {
  .mail__checkbox label {
    flex-direction: column;
    display: flex;
    padding-left: 35px;
  }
}
.mail__checkbox label a {
  color: inherit;
  text-decoration: underline;
}
.mail__checkbox label::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  border: 3px solid #06f;
  width: 30px;
  height: 30px;
}
@media (max-width: 1500px) {
  .mail__checkbox label::before {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 998px) {
  .mail__checkbox label::before {
    width: 20px;
    height: 20px;
  }
}
.mail__button button {
  padding: 24px 100px;
  background: #1e293b;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
  font-size: 24px;
  display: flex;
  width: 393px;
  height: 89px;
  position: relative;
  letter-spacing: 0.5px;
  font-weight: 700;
}
@media (max-width: 1500px) {
  .mail__button button {
    width: 343px;
    height: 73px;
  }
}
.mail__button button span {
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
@media (max-width: 1500px) {
  .mail__button button {
    font-size: 22px;
  }
}
.mail__button button:hover {
  background: #06f;
}
@media (max-width: 998px) {
  .mail__button button {
    padding: 17px 65px;
    font-size: 14px;
  }
}
.mail__button button .b-ready {
  display: none;
}
.mail__button button .b-send {
  display: block;
}
.mail__button button._success {
  background: #06f;
}
.mail__button button._success .b-ready {
  display: block;
}
.mail__button button._success .b-send {
  display: none;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #475569;
  padding-top: 80px;
  padding-bottom: 88px;
  gap: 70px;
}
@media (max-width: 1500px) {
  .footer__container {
    font-size: 14px;
  }
}
@media (max-width: 998px) {
  .footer__container {
    flex-direction: column;
    font-size: 10px;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer__container a {
  color: inherit;
}
.footer__logo {
  margin-top: -5px;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.footer__logo:hover img:nth-child(2) {
  transform: rotate(90deg) translate(-2px, -2px);
}
.footer__logo img {
  width: 150px;
}
.footer__logo img:nth-child(2) {
  position: absolute;
  width: calc(100% - 0px);
  height: 100%;
  transition: 0.3s;
  top: 0;
}
@media (max-width: 1600px) {
  .footer__logo {
    padding: 0px 30px;
  }
  .footer__logo img {
    width: 120px;
  }
  .footer__logo img:nth-child(2) {
    width: calc(100% - 60px);
  }
}
@media (max-width: 1300px) {
  .footer__logo {
    padding: 0px 20px;
  }
  .footer__logo img {
    width: 120px;
  }
  .footer__logo img:nth-child(2) {
    width: calc(100% - 40px);
  }
}
@media (max-width: 998px) {
  .footer__logo {
    padding: 0px;
    margin-left: 15px;
    border-right: none;
    width: max-content;
  }
  .footer__logo img {
    width: 100px;
  }
  .footer__logo img:nth-child(2) {
    width: calc(100% - 0px);
  }
}
.footer__two {
  display: flex;
  flex-direction: column;
}
.footer__two p {
  white-space: nowrap;
}
.footer__two p:nth-child(2) {
  margin-top: auto;
}
.footer__label {
  color: #06f;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 1500px) {
  .footer__label {
    font-size: 16px;
  }
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1.7fr;
  column-gap: 40px;
  row-gap: 5px;
}
.footer__top li:hover a {
  opacity: 0.8;
}
@media (max-width: 1500px) {
  .footer__top {
    column-gap: 30px;
  }
}
@media (max-width: 998px) {
  .footer__top {
    grid-template-columns: 1fr 65%;
    column-gap: 20px;
    row-gap: 12px;
  }
  .footer__top li:nth-child(1) {
    order: 1;
  }
  .footer__top li:nth-child(3) {
    order: 2;
  }
  .footer__top li:nth-child(4) {
    order: 3;
  }
  .footer__top li:nth-child(6) {
    order: 4;
  }
  .footer__top li:nth-child(7) {
    order: 5;
  }
  .footer__top li:nth-child(9) {
    order: 6;
  }
  .footer__top li:nth-child(10) {
    order: 7;
  }
  .footer__top li:nth-child(12) {
    order: 8;
  }
  .footer__top li:nth-child(2) {
    order: 9;
  }
  .footer__top li:nth-child(8) {
    order: 10;
  }
  .footer__top li:nth-child(5) {
    order: 11;
  }
  .footer__top li:nth-child(11) {
    order: 12;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 20px;
}
.footer__bottom a {
  transition: 0.3s;
}
.footer__bottom a:hover {
  opacity: 0.8;
}
@media (max-width: 998px) {
  .footer__bottom {
    justify-content: start;
  }
  .footer__bottom span {
    margin-left: auto;
  }
}
.footer__bottom .footer__label {
  width: 100%;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timePrice__block {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
  .timePrice__block {
    gap: 30px;
  }
}
@media (max-width: 998px) {
  .timePrice__block {
    gap: 16px;
    margin-top: 24px;
  }
}
.timePrice__item {
  width: calc(50% - 20px);
  border-radius: 25px;
  background: #f2f4f7;
  padding: 48px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1500px) {
  .timePrice__item {
    padding: 35px;
  }
}
@media (max-width: 1100px) {
  .timePrice__item {
    width: 100%;
  }
}
.timePrice__item._blue {
  color: #fff;
  background: #06f;
}
.timePrice__item._blue .timePrice__head,
.timePrice__item._blue .timePrice__text {
  color: #fff;
}
.timePrice__item._blue button {
  background: #fff;
  color: #1e293b;
}
.timePrice__item._blue button:hover {
  background-color: #000;
  color: #fff;
}
.timePrice__head {
  color: #06f;
  font-size: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1500px) {
  .timePrice__head {
    font-size: 56px;
  }
}
@media (max-width: 1300px) {
  .timePrice__head {
    font-size: 50px;
  }
}
@media (max-width: 700px) {
  .timePrice__head {
    font-size: 32px;
  }
}
.timePrice__head img {
  width: 120px;
}
@media (max-width: 1500px) {
  .timePrice__head img {
    width: 100px;
  }
}
@media (max-width: 1300px) {
  .timePrice__head img {
    width: 85px;
  }
}
@media (max-width: 700px) {
  .timePrice__head img {
    width: 64;
  }
}
.timePrice__text {
  font-size: 22px;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 60px;
  margin-top: 25px;
  max-width: 85%;
}
@media (max-width: 1500px) {
  .timePrice__text {
    font-size: 20px;
    margin-bottom: 45px;
    margin-top: 20px;
  }
}
@media (max-width: 700px) {
  .timePrice__text {
    font-size: 16px;
    margin-bottom: 40px;
    margin-top: 24px;
    max-width: 100%;
  }
}
.timePrice__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 36px;
  margin-top: auto;
  column-gap: 40px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1500px) {
  .timePrice__bottom {
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .timePrice__bottom {
    font-size: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.timePrice__bottom button {
  padding: 25px 40px;
  background: #1e293b;
  color: #fff;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 900;
  transition: 0.3s;
}
.timePrice__bottom button:hover {
  background-color: #06f;
}
@media (max-width: 1500px) {
  .timePrice__bottom button {
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 22px 30px;
  }
}
@media (max-width: 700px) {
  .timePrice__bottom button {
    width: 100%;
    letter-spacing: 0.28px;
    font-weight: 700;
  }
}

.moreServices {
  border-radius: 25px;
  background: #1e293b;
}
.moreServices__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding-top: 160px;
  padding-bottom: 200px;
}
.moreServices__container._active .moreServices__item {
  transform: scale(1);
}
@media (max-width: 998px) {
  .moreServices__container {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 32px;
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .moreServices__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.moreServices__title {
  color: #fff;
}
@media (max-width: 1300px) {
  .moreServices__title {
    font-size: 50px;
  }
}
@media (max-width: 998px) {
  .moreServices__title {
    margin-bottom: 24px;
    font-size: 32px;
  }
}
@media (min-width: 600px) {
  .moreServices__title {
    grid-column: auto/span 2;
  }
}
.moreServices__item {
  padding: 24px 40px 24px 24px;
  border-radius: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
  font-size: 22px;
  transition: 0.5s;
  transform: scale(0);
}
@media (max-width: 1400px) {
  .moreServices__item {
    font-size: 18px;
    padding: 20px 35px 20px 20px;
  }
}
@media (max-width: 600px) {
  .moreServices__item {
    font-size: 20px;
    padding: 24px 40px 24px 24px;
  }
}
.moreServices__item a {
  text-decoration-line: underline;
  line-height: 1.2;
  color: #06f;
}
.moreServices__img {
  margin-bottom: 60px;
}
@media (max-width: 998px) {
  .moreServices__img {
    margin-bottom: 50px;
  }
}
.moreServices__text {
  margin-top: auto;
}

.servicesInfo {
  margin-bottom: 160px;
}
@media (max-width: 998px) {
  .servicesInfo {
    margin-bottom: 66px;
  }
}
.servicesInfo__container {
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1500px) {
  .servicesInfo__container {
    gap: 30px;
  }
}
@media (max-width: 998px) {
  .servicesInfo__container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 64px;
  }
}
.servicesInfo__title p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media (max-width: 998px) {
  .servicesInfo__title p {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.servicesInfo__title span {
  color: #06f;
}
.servicesInfo__item {
  padding: 48px;
  border-radius: 25px;
  background: #f2f4f7;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1500px) {
  .servicesInfo__item {
    padding: 35px;
  }
}
@media (max-width: 700px) {
  .servicesInfo__item {
    padding: 24px;
  }
}
.servicesInfo__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 700px) {
  .servicesInfo__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.servicesInfo__img {
  width: 96px;
}
@media (max-width: 1500px) {
  .servicesInfo__img {
    width: 85px;
  }
}
@media (max-width: 700px) {
  .servicesInfo__img {
    order: 1;
    width: 64px;
  }
}
.servicesInfo__img img {
  width: 100%;
}
.servicesInfo__time {
  padding: 18px 16px;
  padding-left: 30px;
  border-radius: 8px;
  background: #fff;
  font-size: 18px;
  position: relative;
  color: #475569;
}
@media (max-width: 1500px) {
  .servicesInfo__time {
    padding: 15px 13px;
    padding-left: 25px;
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .servicesInfo__time {
    order: 3;
  }
}
.servicesInfo__time span {
  color: #06f;
  font-weight: 700;
}
.servicesInfo__time::before {
  position: absolute;
  top: 50%;
  left: 16px;
  content: "";
  width: 6px;
  height: 6px;
  transform: translate(0px, -50%);
  border-radius: 50%;
  background-color: #06f;
}
@media (max-width: 11500px) {
  .servicesInfo__time::before {
    left: 13px;
  }
}
.servicesInfo__head {
  color: #06f;
  font-size: 36px;
  font-weight: 600;
  margin-top: 32px;
}
@media (max-width: 11500px) {
  .servicesInfo__head {
    margin-top: 28px;
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .servicesInfo__head {
    order: 2;
    margin-top: 0;
  }
}
.servicesInfo__text {
  margin-top: 16px;
  color: #475569;
  font-size: 18px;
  margin-bottom: 64px;
  line-height: 1.2;
}
@media (max-width: 11500px) {
  .servicesInfo__text {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .servicesInfo__text {
    margin-top: 24px;
    line-height: 1.3;
    margin-bottom: 32px;
  }
}
.servicesInfo__price {
  margin-top: auto;
  font-size: 64px;
}
@media (max-width: 1500px) {
  .servicesInfo__price {
    font-size: 55px;
  }
}
@media (max-width: 700px) {
  .servicesInfo__price {
    font-size: 24px;
  }
}
.servicesInfo__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 32px;
}
.servicesInfo__btns a {
  color: #fff;
  background: #06f;
  padding: 25px 40px;
  transition: 0.3s;
}
.servicesInfo__btns a:hover {
  background: #1e293b;
  color: #fff;
}
.servicesInfo__btns a:nth-child(2) {
  background: #1e293b;
  color: #fff;
}
.servicesInfo__btns a:nth-child(2):hover {
  color: #fff;
  background: #06f;
}
@media (max-width: 700px) {
  .servicesInfo__btns a {
    width: 100%;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.28px;
  }
  .servicesInfo__btns a:nth-child(1) {
    order: 1;
  }
}
@media (max-width: 1500px) {
  .servicesInfo__btns {
    gap: 14px;
  }
  .servicesInfo__btns a {
    padding: 22px 30px;
    font-size: 13px;
  }
}

.developing {
  position: relative;
}
.developing__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-top: 64px;
  margin-bottom: 80px;
}
@media (max-width: 998px) {
  .developing__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 32px;
  }
}
.developing__title {
  max-width: 770px;
}
@media (max-width: 998px) {
  .developing__title {
    padding-right: 80px;
  }
}
.developing__title span {
  color: #06f;
}
@media (max-width: 998px) {
  .developing__title span {
    color: inherit;
  }
}
.developing__content {
  padding-left: 140px;
  margin-top: 24px;
  max-width: 800px;
  position: relative;
}
@media (max-width: 1300px) {
  .developing__content {
    padding-left: 110px;
  }
}
@media (max-width: 998px) {
  .developing__content {
    margin-top: 16px;
    padding-left: 60px;
  }
}
.developing__content::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 112px;
  height: 20px;
  background-image: url(../img/bef1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1300px) {
  .developing__content::before {
    width: 95px;
    height: 15px;
    top: 5px;
  }
}
@media (max-width: 998px) {
  .developing__content::before {
    width: 48px;
  }
}
.developing__text {
  font-size: 22px;
  color: #475569;
  line-height: 1.4;
}
@media (max-width: 1500px) {
  .developing__text {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .developing__text {
    font-size: 16px;
  }
}
.developing__btn a {
  margin-top: 32px;
  padding: 24px 40px;
  background: #1e293b;
  display: block;
  max-width: max-content;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
  transition: 0.3s;
}
.developing__btn a:hover {
  background: #06f;
}
@media (max-width: 998px) {
  .developing__btn {
    display: none;
  }
}
.developing__right {
  flex: 0 0 370px;
}
@media (max-width: 1300px) {
  .developing__right {
    flex: 0 0 340px;
  }
}
@media (max-width: 998px) {
  .developing__right {
    flex: 1 1 100%;
    width: 100%;
  }
}
.developing__item {
  border-radius: 25px;
  background: #1e293b;
  padding: 32px 48px;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}
@media (max-width: 1300px) {
  .developing__item {
    padding: 28px 40px;
  }
}
@media (max-width: 998px) {
  .developing__item {
    width: calc(100% - 25px);
    margin-left: auto;
  }
}
.developing__item:nth-child(2) {
  background: #06f;
}
.developing__item:nth-child(3) {
  background: #f2f4f7;
}
.developing__item:nth-child(3) span {
  color: #06f;
}
.developing__item:nth-child(3) p {
  color: #475569;
}
.developing__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  content: "";
  background-image: url(../img/mdi_check-circle.svg);
  background-size: 80%;
  background-position: center center;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 50%;
}
.developing__item span {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 1500px) {
  .developing__item span {
    font-size: 32px;
  }
}
@media (max-width: 998px) {
  .developing__item span {
    font-size: 24px;
  }
}
.developing__item p {
  margin-top: 8px;
  font-size: 22px;
}
@media (max-width: 1500px) {
  .developing__item p {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .developing__item p {
    font-size: 16px;
    margin-top: 5px;
  }
}

.str {
  border-top: 1px solid #e3e8fd;
  border-bottom: 1px solid #e3e8fd;
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 0 -1px 0 #0066ff, 0 -1px 0 #0066ff, 0 1px 0 #0066ff, 0 1px 0 #0066ff, -1px 0 0 #0066ff, 1px 0 0 #0066ff, -1px 0 0 #0066ff, 1px 0 0 #0066ff, -1px -1px 0 #0066ff, 1px -1px 0 #0066ff, -1px 1px 0 #0066ff, 1px 1px 0 #0066ff, -1px -1px 0 #0066ff, 1px -1px 0 #0066ff, -1px 1px 0 #0066ff, 1px 1px 0 #0066ff;
  color: #fff;
  font-weight: 900;
}

.str__row-marque {
  display: flex;
  animation: row 30s linear infinite;
  will-change: transform;
  align-items: center;
  color: #ffffff;
  font-size: 60px;
}
@media (max-width: 998px) {
  .str__row-marque {
    font-size: 28px;
    font-weight: 900;
    opacity: 0.7;
    letter-spacing: 1.5px;
  }
}

.str__item {
  margin: 25px 20px;
}
@media (max-width: 998px) {
  .str__item {
    margin: 14px 10px;
  }
}

.str__item img {
  width: 190px;
}

@keyframes row {
  0% {
    transform: translateZ(0px);
  }
  100% {
    transform: translate3d(-100%, 0px, 0px);
  }
}
.functions__container {
  padding-top: 128px;
  padding-bottom: 160px;
  display: flex;
  gap: 70px;
}
@media (max-width: 1500px) {
  .functions__container {
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .functions__container {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 998px) {
  .functions__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1500px) {
  .functions__title {
    font-size: 60px;
  }
}
@media (max-width: 1300px) {
  .functions__title {
    font-size: 55px;
  }
}
@media (max-width: 998px) {
  .functions__title {
    font-size: 32px;
  }
}
.functions__block {
  display: grid;
  grid-template-columns: repeat(3, 265px);
}
.functions__block._active .functions__item {
  opacity: 1;
}
@media (max-width: 1500px) {
  .functions__block {
    grid-template-columns: repeat(3, 210px);
  }
}
@media (max-width: 998px) {
  .functions__block {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 12px;
    justify-content: center;
  }
}
.functions__item {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  transition: 0.5s;
  align-items: center;
  justify-content: center;
  margin: 0px -12px;
  color: #475569;
  margin-bottom: 15px;
  opacity: 0;
}
@media (max-width: 998px) {
  .functions__item {
    flex: 0 0 265px;
  }
}
.functions__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/Ellipse5.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.functions__cif {
  position: absolute;
  top: 0;
  left: 55%;
  border-radius: 50%;
  background: #06f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  width: 40px;
  height: 40px;
}
.functions__text {
  text-align: center;
  font-size: 16px;
  padding: 40px;
  line-height: 1.3;
}
@media (max-width: 1500px) {
  .functions__text {
    font-size: 15px;
    padding: 42px;
  }
}

.right-side {
  position: absolute;
  top: 50%;
  transform: rotate(-90deg) translate(50%);
  transform-origin: right center;
  right: 40px;
  display: flex;
  font-size: 14px;
  flex-direction: row-reverse;
  gap: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 1500px) {
  .right-side {
    right: 20px;
  }
}
@media (max-width: 998px) {
  .right-side {
    display: none;
  }
}

._burger {
  position: absolute;
  right: 15px;
  top: 80px;
  z-index: 10;
  width: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: 0.3s;
}
._burger div {
  width: 100%;
  height: 2px;
  background-color: #06f;
  border-radius: 5px;
  transition: 0.3s;
}
._burger._active {
  top: 30px;
  gap: 0px;
}
._burger._active div:nth-child(2) {
  display: none;
}
._burger._active div:nth-child(1) {
  transform: rotate(45deg) translate(0px, 1px);
}
._burger._active div:nth-child(3) {
  transform: rotate(-45deg) translate(0px, -2px);
}
._burger._hide {
  transform: translate(0px, -100px);
}
@media (min-width: 998px) {
  ._burger {
    display: none;
  }
}

.mainPortfolio__container {
  display: flex;
  gap: 40px;
  padding-top: 82px;
}
@media (max-width: 998px) {
  .mainPortfolio__container {
    flex-direction: column;
    gap: 16px;
    padding-top: 35px;
  }
}
.mainPortfolio__img {
  width: calc(65% - 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 998px) {
  .mainPortfolio__img {
    width: 100%;
  }
}
.mainPortfolio__img img {
  width: 100%;
}
.mainPortfolio__content {
  width: calc(35% - 20px);
}
@media (max-width: 998px) {
  .mainPortfolio__content {
    width: 100%;
  }
}
.mainPortfolio__head {
  color: #06f;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .mainPortfolio__head {
    font-size: 32px;
  }
}
@media (max-width: 998px) {
  .mainPortfolio__head {
    font-size: 24px;
    max-width: calc(100% - 100px);
  }
}
.mainPortfolio__text {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  font-size: 22px;
  flex-direction: column;
  line-height: 1.4;
}
@media (max-width: 1400px) {
  .mainPortfolio__text {
    font-size: 20px;
  }
}
@media (max-width: 998px) {
  .mainPortfolio__text {
    font-size: 16px;
  }
}
.mainPortfolio__link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  color: #06f;
  margin-top: 32px;
}
@media (max-width: 998px) {
  .mainPortfolio__link {
    font-size: 16px;
    margin-top: 24px;
    gap: 11px;
  }
  .mainPortfolio__link img {
    width: 20px;
  }
}
.mainPortfolio__category {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .mainPortfolio__category {
    gap: 14px;
  }
}
.mainPortfolio__category li {
  padding: 10px 16px;
  border-radius: 100px;
  background: #f2f4f7;
  font-size: 20px;
}
@media (max-width: 1400px) {
  .mainPortfolio__category li {
    font-size: 18px;
    padding: 10px 14px;
  }
}
@media (max-width: 998px) {
  .mainPortfolio__category li {
    font-size: 13px;
    padding: 8px 13px;
  }
}
.mainPortfolio__btn {
  padding: 24px 36px;
  background: #1e293b;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 33px;
  display: block;
  max-width: max-content;
  color: #fff;
  transition: 0.3s;
}
.mainPortfolio__btn:hover {
  background-color: #06f;
}
@media (max-width: 1400px) {
  .mainPortfolio__btn {
    font-size: 14px;
  }
}

.sliderPortfolio__container {
  padding-top: 128px;
  padding-bottom: 128px;
}
@media (max-width: 998px) {
  .sliderPortfolio__container {
    padding-top: 46px;
    padding-bottom: 30px;
  }
}
.sliderPortfolio__arrow {
  display: flex;
  justify-content: space-between;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  font-size: 22px;
}
@media (max-width: 998px) {
  .sliderPortfolio__arrow {
    width: 100%;
  }
  .sliderPortfolio__arrow span {
    display: none;
  }
}
.sliderPortfolio__arrow div {
  display: flex;
  gap: 16px;
  cursor: pointer;
  align-items: center;
}
.sliderPortfolio__arrow div:hover {
  color: #06f;
}
.sliderPortfolio__right img {
  transform: rotate(180deg);
}
.sliderPortfolio__block {
  margin-top: 32px;
  padding: 0px 40px;
}
@media (max-width: 998px) {
  .sliderPortfolio__block {
    margin-top: 24px;
    padding: 0px 0px;
  }
}
.sliderPortfolio__block .portfolio__item {
  background: #f2f4f7 !important;
  transition: 0.3s;
}
.sliderPortfolio__block .portfolio__item:hover {
  background: #06f !important;
  color: #fff;
}
@media (max-width: 998px) {
  .sliderPortfolio__block .portfolio__item._custom .portfolio__img {
    width: 100%;
    margin-bottom: 60px;
  }
  .sliderPortfolio__block .portfolio__item._custom .portfolio__img img {
    max-width: 80% !important;
  }
}

.modern {
  position: relative;
}
.modern__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding-top: 73px;
}
@media (max-width: 998px) {
  .modern__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.modern__content {
  max-width: 600px;
}
@media (max-width: 998px) {
  .modern__title {
    width: calc(100% - 50px);
  }
}
.modern__text {
  position: relative;
  font-size: 22px;
  color: #475569;
  padding-left: 130px;
  line-height: 1.4;
  margin-top: 24px;
}
@media (max-width: 1300px) {
  .modern__text {
    padding-left: 110px;
    font-size: 22px;
  }
}
@media (max-width: 998px) {
  .modern__text {
    padding-left: 70px;
    font-size: 16px;
    margin-top: 8px;
  }
}
.modern__text::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 112px;
  height: 20px;
  background-image: url(../img/bef1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1300px) {
  .modern__text::before {
    width: 95px;
    height: 15px;
    top: 5px;
  }
}
@media (max-width: 998px) {
  .modern__text::before {
    width: 48px;
  }
}
.modern__animation {
  width: 400px;
}
@media (max-width: 998px) {
  .modern__animation {
    display: none;
  }
}
.modern__animation svg {
  width: 100%;
}
.popup__body {
  border-radius: 25px;
  background: #fff;
  max-width: 590px;
  padding: 50px;
}
@media (max-width: 500px) {
  .popup__body {
    padding: 30px 20px;
    border-radius: 18px;
  }
}
.popup__close {
  background-image: url(../img/x-circle.svg);
  background-size: contain;
  width: 40px;
  height: 40px;
  right: 50px;
  top: 50px;
}
@media (max-width: 500px) {
  .popup__close {
    right: 20px;
    top: 30px;
    width: 30px;
    height: 30px;
  }
}
.popup__title {
  font-size: 36px;
  width: calc(100% - 80px);
  font-weight: 600;
}
@media (max-width: 500px) {
  .popup__title {
    font-size: 25px;
  }
}
.popup__vibor {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}
.popup__vibor input:checked + label img {
  opacity: 1;
}
.popup__vibor img {
  opacity: 0.5;
  width: 55px;
}
@media (max-width: 500px) {
  .popup__vibor img {
    width: 40px;
  }
}
.popup__vibor label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  cursor: pointer;
}
@media (max-width: 500px) {
  .popup__vibor label {
    font-size: 14px;
    gap: 8px;
  }
}
.popup__vibor input {
  display: none;
}
.popup__wp {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 500px) {
  .popup__wp {
    margin-top: 35px;
  }
}
.popup__wp input,
.popup__wp textarea {
  padding: 22px 32px;
  color: #a9b9d1;
  font-size: 24px;
  border-radius: 14px;
  background: #f2f4f7;
  width: 100%;
  display: none;
}
.popup__wp input._active,
.popup__wp textarea._active {
  display: block;
}
@media (max-width: 500px) {
  .popup__wp input,
.popup__wp textarea {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 10px;
  }
}
.popup__wp input::placeholder,
.popup__wp textarea::placeholder {
  color: #a9b9d1;
  font-size: 24px;
}
@media (max-width: 500px) {
  .popup__wp input::placeholder,
.popup__wp textarea::placeholder {
    font-size: 16px;
  }
}
.popup__wp button {
  width: 100%;
  text-align: center;
  padding: 26px;
  margin-top: 22px;
  background: #1e293b;
  color: #fcfcfc;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .popup__wp button {
    padding: 15px;
    margin-top: 15px;
    font-size: 12px;
  }
}

.animation-container {
  width: 265px;
  height: 265px;
  overflow: hidden;
}

.animated-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 5s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.etap-mobb .stages__container {
  padding-top: 0;
  margin-top: -20px;
}