:root {
  --main-font: "Muller", sans-serif;
  --font-size: 16px;
  --line-height: 21px;
  --transition: .25s ease;
  --bg-gray: #F1F2F5;
  --border-gray: rgba(185, 190, 203, 0.3);
  --orange: #007aff;
  --light-orange: #bedfff;
}

h2, .h2 {
  font-weight: 800;
  font-size: 30px;
  line-height: 30px;
  color: #121212;
}

h4, .h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #121212;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

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

.page {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) #292929;
}

.page__body {
  font-family: var(--main-font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.3px;
  background-color: var(--bg-gray);
  color: #121212;
  padding-top: 90px;
}
.page__body::-webkit-scrollbar {
  -webkit-appearance: none;
}
.page__body::-webkit-scrollbar:vertical {
  width: 20px;
}
.page__body::-webkit-scrollbar-thumb {
  background-color: rgb(253, 82, 0);
  border: 5px solid #292929;
  height: 75px;
  border-radius: 10px;
}
.page__body::-webkit-scrollbar-track {
  background-color: #ffffff;
  background: #292929;
}

.page-footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

img, svg, iframe {
  vertical-align: top;
}

::-moz-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-moz-selection {
  background-color: var(--orange);
  color: #fff;
}

::selection {
  background-color: var(--orange);
  color: #fff;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.btn-reset {
  padding: 0;
  margin: 0;
  background: 0;
  border: 0;
  color: inherit;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.link-reset {
  text-decoration: none;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.input-reset {
  padding: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

input, textarea {
  padding: 0;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 0;
}

.input {
  display: block;
  position: relative;
}
.input--check {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.input--check:not(.attachFile) {
  min-height: 92px;
}
.input--check-min .btn-file {
  max-width: 90px;
  height: 85px;
  flex-direction: column;
}
.input--check-min .btn-file svg {
  margin-right: 0;
  margin-bottom: 10px;
}
.input--span {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  min-height: unset !important;
}
.input--span .input__title {
  margin-bottom: 0;
  margin-left: 20px;
}
.input[data-text] {
  position: relative;
}
.input[data-text]::after {
  content: attr(data-text);
  pointer-events: none;
  position: absolute;
  right: 0;
  margin-right: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
}
.input--small .input__field {
  height: 38px;
}
.input:focus-within .input__title {
  color: var(--orange);
}
.input__color {
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
}
.input__color input {
  position: absolute;
  bottom: 0;
}
.input__color:focus-within {
  box-shadow: 0 0 0 3px var(--orange);
}
.input__color-box {
  width: 90px;
  height: 100%;
  background-color: var(--color);
}
.input__color-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #121212;
  margin-left: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.input__title {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 10px;
  transition: var(--transition);
}
.input__field {
  background: #FFFFFF;
  border-radius: 5px;
  padding: 0 20px;
  height: 60px;
  transition: var(--transition);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  border: 1px solid transparent;
  width: 100%;
}
.input__field.invalid {
  border-color: red;
}
.input__field::-moz-placeholder {
  color: #7E859A;
}
.input__field::placeholder {
  color: #7E859A;
}
.input__field:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 50px #add4ff;
}

.bi {
  background: #007aff;
  border-radius: 5px;
  padding: 3px 6px 2px;
  color: #fff;
}

.quality input:checked + .quality__text {


}
.input textarea {
  line-height: 1.4;
}
.input textarea.input__field {
  padding-top: 15px;
  padding-bottom: 14px;
  min-height: 132px;
  resize: vertical;
}
.input textarea.input__field--textmin {
  min-height: 60px;
}

.switcher {
  cursor: pointer;
}
.switcher input:checked + .switcher__area {
  background-color: var(--light-orange);
}
.switcher input:checked + .switcher__area::before {
  background-color: var(--orange);
  transform: translateX(30px);
}
.switcher input:focus + * {
  box-shadow: 0 0 0 3px var(--light-orange);
}
.switcher__area {
  background: #F0F0F0;
  border: 5px solid #fff;
  border-radius: 30px;
  height: 35px;
  width: 66px;
  transition: var(--transition);
  position: relative;
}
.switcher__area::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #BABABA;
  border-radius: 50%;
  transition: var(--transition);
}

input:focus + .btn-file {
  box-shadow: 0 0 0 3px var(--orange);
}

.btn-file {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #FFFFFF;
  background: #282828;
  border-radius: 5px;
  height: 48px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-file:hover {
  background-color: var(--orange);
}
.btn-file svg {
  margin-right: 12px;
}

.files-area {
  background: #E1E1E1;
  border-radius: 5px;
  padding: 12px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 15px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.files-area.vissible {
  visibility: visible;
  opacity: 1;
}

.file {
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  position: relative;
}
.file-delete {
  font-size: 35px;
  line-height: 28px;
  width: 20px;
  height: 20px;
  font-weight: 800;
  color: red;
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
.file img {
  max-height: 150px;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.file__name {
  font-size: 15px;
  line-height: 17px;
  margin-top: 5px;
}

.quality {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 5px;
  overflow: hidden;
}
.quality input:focus + .quality__text {
  background-color: #000;
}
.quality input:checked + .quality__text {
  background-color: var(--orange);
}
.quality__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background-color: var(--bg);
  cursor: pointer;
  transition: var(--transition);
}
.quality__text--0 {
  --bg: #d1d1d1;
  color: #000;
}
.quality input:checked + .quality__text--0 {
 color: #fff!important;
}
.quality__text--1 {
  --bg: #7E7E7E;
}
.quality__text--2 {
  --bg: #616161;
}
.quality__text--3 {
  --bg: #3F3F3F;
}
.quality__text--4 {
  --bg: #282828;
}

.example_site .select__water-bot {
  padding: 0;
}
.select__water-bot img {
  box-shadow: 0 0 50px #5aaeff;
}
.w100 {
  width: 100% !important;
  justify-content: center;
  background: #d8ecff!important;
  display: none!important;
}
.mt-11 {
  margin-top: 11px;
}

.data-field {
  display: flex;
  gap: 10px;
}
.data-field__img {
  position: relative;
  height: 85px;
  width: 65px;
  background-color: #CECECE;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.data-field__img img, .data-field__img video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.data-field__img.human::after {
  content: url(../img/human.svg);
  height: 64px;
  position: absolute;
  bottom: 0;
}
.data-field__img.video {
  align-items: center;
}
.data-field__img.video::after {
  content: url(../img/play.svg);
  height: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.input-row {
  display: grid;
  gap: 20px;
}
.input-row--1 {
  grid-template-columns: 250px 190px 1fr;
}

.person-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-orange);
  border-radius: 5px;
  height: 60px;
  width: 100%;
  cursor: pointer;
  gap: 10px;
  font-size: 15px;
  line-height: 15px;
  transition: var(--transition);
}
.person-btn path {
  transition: var(--transition);
}
.person-btn:focus, .person-btn:hover {
  background-color: var(--orange);
  color: #fff;
}
.person-btn:focus path, .person-btn:hover path {
  stroke: #fff;
}

.lang {
  display: flex;
  align-items: center;
}
.lang__item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
}
.lang__item span {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
}
.lang .input {
  margin-left: 20px;
  width: 100%;
}

.btn-submit {
  border-radius: 14px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: var(--transition);
  background-color: var(--orange);
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 100px;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  height: 48px;
  padding-left: 40px;
  padding-right: 40px;
  cursor: pointer;
  border-top: 4px solid var(--orange);
  border-bottom: 4px solid #014c9f;
}
.btn-submit--2 {
  font-weight: 400;
  margin-top: 40px;
}
.btn-submit:hover, .btn-submit:focus {
  background-color: #323232;
  border-color: #323232;
}

.modal {
  --overlay-color: rgba(0, 0, 0, .5);
  --crossHeight: 20px;
  --max-width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-color);
  z-index: 50;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  -webkit-animation: fadeOut 0.25s both ease;
          animation: fadeOut 0.25s both ease;
  cursor: pointer;
}

.modal--open {
  -webkit-animation: fadeIn 0.25s both ease;
          animation: fadeIn 0.25s both ease;
  display: flex;
}

.modal--kp {
  --overlay-color: rgba(0, 0, 0, .9);
  --max-width: 340px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.modal--kp .modal__content {
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.modal--kp a {
  margin-top: 60px;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 28px;
  font-weight: 400;
  visibility: hidden;
  opacity: 0;
}
.modal--kp a.active {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  width: 100%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-15%);
  transition: 0.25s ease;
  cursor: default;
  max-width: var(--max-width);
  margin: 0 auto;
  background: radial-gradient(74.79% 74.79% at 50% 22.69%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%), rgba(26, 26, 26, 0.7);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4), inset 0px 1px 1px rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-radius: 10px;
  margin: auto;
  padding: 25px 15px;
}
.modal__content img {
  margin-left: auto;
  margin-right: auto;
  padding-right: 10px;
  display: block;
}
.modal__content strong {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.modal__content p {
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.modal__content .modal__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 23px;
}
.modal__content .modal__btns button, .modal__content .modal__btns a {
  background: #5A5A5A;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25), inset 0px 1px 1px rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
  color: #FFFFFF;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.modal__content .modal__btns button:last-child, .modal__content .modal__btns a:last-child {
  background: #C70000;
}

.kp-text {
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}
.kp-text span {
  font-size: 36px;
  line-height: 36px;
  display: block;
  margin-bottom: 14px;
}
.kp-text strong {
  font-weight: 400;
  font-size: 120px;
  line-height: 120px;
  display: block;
}

.modal__content--open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.modal__close {
  border: 0;
  padding: 0;
  background: 0;
  font-size: var(--crossHeight);
  font-weight: bold;
  width: var(--crossHeight);
  height: var(--crossHeight);
  line-height: var(--crossHeight);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: opacity 0.25s ease;
  color: #fff;
  transition: var(--transition);
}
.modal__close:hover, .modal__close:focus {
  color: #C70000;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.base-timer {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.timer-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.green {
  color: var(--orange);
}

.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__path-remaining.red {
  color: red;
}

.base-timer__label {
  font-size: 48px;
  color: #fff;
  font-weight: 400;
  font-size: 120px;
  line-height: 120px;
}
.base-timer__label + span {
  color: #fff;
  font-size: 36px;
  line-height: 36px;
  font-weight: 400;
  text-transform: uppercase;
}

.page-header {
  height: 86px;
  background: #292929;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  transition: var(--transition);
}
.page-header__back {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #0281ff;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 800;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 24px;
  text-decoration: none;
  transition: var(--transition);
  padding-top: 5px;
}
.page-header__back svg {
  margin-top: -4px;
}
.page-header__back svg path {
  fill: #fff;
}
.page-header__back:hover, .page-header__back:focus {
  background-color: var(--orange);
  color: #fff;
}
.page-header__back:hover path, .page-header__back:focus path {
  fill: #fff;
}
.page-header__back path {
  transition: var(--transition);
}
.page-header__back svg {
  margin-top: -3px;
}
.page-header.active {
  height: 60px;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.25);
}
.page-header.active .logo {
  height: 30px;
}
.page-header .logo {
  transition: var(--transition);
}
.page-header .container {
  height: 100%;
}
.page-header__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 3px;
}
.page-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.page-header__col {
  display: flex;
}
.page-header__info {
  display: flex;
  gap: 15px;
  margin-left: 30px;
}
.page-header__info > span {
  border-radius: 4px;
  padding-left: 13px;
  padding-right: 13px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  padding-top: 3px;
}
.page-header__info > span.company {
  background-color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  color: #272727;
}
.page-header__info > span.type {
  color: #FFFFFF;
  background-color: var(--orange);
}

.brief {
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}
.brief__content {
  padding-top: 25px;
}
.brief::before {
  content: "";
  border-left: 2px solid var(--border-gray);
  position: absolute;
  top: 0;
  left: -67px;
  bottom: 0;
  height: 100%;
}
.brief__aside {
  position: sticky;
  top: 80px;
}
.brief__title {
  margin-top: 0;
  margin-bottom: 38px;
}
.brief__status {
  padding: 15px 10px;
  background: #292929;
  border-radius: 10px;
  text-align: center;
}
.brief__status .project-row {
  margin-top: 0;
}
.brief-count {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--orange);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-left: -101px;
  top: 0;
  z-index: 10;
}
.brief-count b {
  font-size: 30px;
  line-height: 24px;
  font-weight: 800;
}
.brief-group {
  position: relative;
}
.brief__step {
  padding-top: 20px;
  padding-bottom: 60px;
  position: relative;
  margin-top: -70px;
}
.brief__step:not(.no-line)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -67px;
  width: calc(100% + 67px);
  border-bottom: 2px solid var(--border-gray);
}

.select {
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative;
  display: block;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
}
.select--gray {
  background-color: var(--gray);
}
.select--gray .select-bg {
  background-color: rgba(255, 255, 255, 0.75);
  top: 115px;
  border-radius: 10px;
}
.select--gray .select-check {
  background-color: #fff;
}
.select:focus-within {
  box-shadow: 0 0 0 2px var(--orange);
}
.select-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(255 255 255 / 75%);
  height: 100%;
  width: 100%;
  z-index: 3;
  transition: var(--transition);
}
.select__item input:checked + .select-check {
  background-color: var(--orange);
}
.select__item input:checked + .select-check svg {
  transform: scale(1);
}
.select__item input:checked + .select-check + .select-bg {
  visibility: hidden;
  opacity: 0;
}
.select-check {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 35px;
  height: 35px;
  background: #F1F2F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 3;
}
.select-check svg {
  transform: scale(0);
  transition: var(--transition);
}
.select__type {
  padding: 40px 20px 21px;
  min-height: 390px;
}
.select__type > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.select__type strong {
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  color: #252525;
  text-align: center;
  display: block;
  margin-bottom: 20px;
}
.select__type p {
  text-align: center;
  margin-bottom: 15px;
}
.select__water {
  min-height: 264px;
}
.select__water-top {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  padding-bottom: 30px;
  position: relative;
}
.select__water-top span {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 21px;
  display: block;
  margin-bottom: 21px;
}
.select__water-top strong {
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  color: #252525;
}
.select__water-top svg {
  position: absolute;
  top: 18px;
  right: 24px;
}
.select__water-top p {
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  margin: 0;
  text-transform: uppercase;
  padding: 0 11px;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  font-size: 12px;
  line-height: 21px;
  background: #D9D9D9;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11px;
}
.select__water-bot {
  background: #F8F8F8;
  padding: 42px 30px 24px;
  text-align: center;
  line-height: 21px;
}
.select__design {
  background-color: #fff;
}
.select__design img {
  border-radius: 10px;
}
.select__design-info {
  padding: 30px;
}
.select__design-info strong {
  display: block;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 24px;
}
.select__design-info p {
  margin: 0;
}
.select__bottom {
  text-align: center;
}
.select__bottom--1 {
  padding: 30px;
}
.select__bottom--2 {
  padding: 50px 30px 30px;
}
.select__bottom-info strong {
  display: block;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
}
.select__bottom-info p {
  margin: 0;
  line-height: 21px;
}
.select__bottom-info.mt20 {
  margin-top: 20px;
}
.select__bottom-info.mt30 {
  margin-top: 30px;
}
.select__color {
  padding: 90px 25px 30px;
}
.select__color svg {
  margin-bottom: 55px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.select__color strong {
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  display: block;
}
.select__dev-bg {
  height: 120px;
  background: var(--bg) no-repeat center/cover;
  background-color: var(--color);
}
.select__dev-bg img {
  position: relative;
  top: 60px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.select__dev-info {
  padding: 70px 30px 30px;
  text-align: center;
}
.select__dev-info strong {
  display: block;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
}
.select__dev-info p {
  margin: 0;
  line-height: 21px;
}
.select__anim-top {
  padding-top: 25px;
  padding-bottom: 50px;
  text-align: center;
}
.select__anim-top strong {
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  display: block;
  text-align: center;
  padding-left: 22px;
  min-height: 40px;
}
.select__anim-bot {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.select__anim-bot img {
  max-height: 127px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.select__anim-bot .suptitle {
  font-weight: 400;
  font-size: 11px;
  line-height: 21px;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  height: 21px;
  background: #F4F4F4;
  border-radius: 5px;
  margin-top: -11px;
  z-index: 2;
  position: relative;
}
.select__anim-bot strong {
  font-weight: 800;
  font-size: 18px;
  line-height: 23px;
  display: block;
  margin-bottom: 17px;
  margin-top: 16px;
}
.select__anim-bot p {
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 26px;
}
.select__anim-bot .anim-wrap {
  padding: 30px 28px;
  padding-top: 0;
}
.select__anim-bot .anim-row {
  display: grid;
  grid-template-columns: 1fr 35px;
  gap: 12px;
}
.select__anim-bot .large {
  font-weight: 800;
  font-size: 13px;
  line-height: 16px;
  color: #FFFFFF;
  background-color: var(--orange);
  border-radius: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.select__anim-bot .large.blink::after {
  content: " ";
  margin-left: -30px;
  width: 30px;
  height: 90px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
  position: absolute;
  left: -40px;
  top: -30px;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
          animation-name: slideme;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  transform: rotate(45deg);
  z-index: -1;
}
.select__anim-bot .call {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBEBEB;
  border-radius: 100px;
}
.select ul {
  display: grid;
  grid-template-columns: repeat(3, -webkit-max-content);
  grid-template-columns: repeat(3, max-content);
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
}
.select ul.text-grid {
  grid-template-columns: auto;
  grid-auto-flow: column;
  gap: 12px;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.socials .social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.socials .social__name {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  color: #000000;
  display: flex;
  align-items: center;
  margin-right: 15px;
  min-width: 104px;
}
.socials .social__name img {
  margin-left: 10px;
}
.socials .social__input {
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  max-width: 500px;
  width: 100%;
}
.socials .social__input.vissible {
  visibility: visible;
  opacity: 1;
}

.switch-block {
  display: none;
  transition: var(--transition);
}
.switch-block.vissible {
  display: block;
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.copyright__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 410px;
  background-color: #fff;
  min-height: 130px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.copyright__item.active {
  box-shadow: 0 0 0 3px var(--orange);
}
.copyright__item:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.copyright__btn {
  width: 90px;
  height: 45px;
  border-radius: 52px;
  background-color: #fff;
  border: 5px solid #D9D9D9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
}
.copyright__label {
  cursor: pointer;
}
.copyright__label input:checked + span {
  background-color: var(--orange);
}
.copyright__label input:checked + span svg {
  transform: scale(1);
}
.copyright__label span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}
.copyright__label span svg {
  position: absolute;
  transform: scale(0);
}
.copyright__label span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border-radius: 50%;
  display: block;
  z-index: -1;
}
.copyright__col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.copyright__col:last-child {
  background-color: #F8F8F8;
}
.copyright strong {
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  color: #252525;
}
.copyright p {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.copyright img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.analitic {
  max-width: 790px;
  margin-left: auto;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 5px;
}

.text-row {
  display: flex;
  align-items: flex-end;
}
.text-row p, .text-row h4 {
  margin: 0;
}
.text-row p {
  font-size: 15px;
  margin-left: 30px;
}

.host-label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 35px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
}
.host-label .select-check {
  position: static;
  margin-right: 20px;
  background-color: #fff;
}

.host {
  padding: 35px;
  background: #E7E7E7;
  border-radius: 10px;
  transition: var(--transition);
  color: #000;
}
.host.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.host.grid .input {
  width: 100%;
}
.host.grid .input--host {
  max-width: 195px;
}
.host.grid .input--gb {
  max-width: 125px;
}
.host__top {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.host.active {
  background: #323232;
  color: #fff;
}
.host-tarif {
  position: relative;
  display: flex;
  cursor: pointer;
}
.host-tarif:not(:last-child) {
  margin-bottom: 24px;
}
.host-tarif .select__item {
  width: 100%;
}
.host-tarif .select-check {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.host-tarif strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

.ssl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 15px;
  margin-left: 20px;
}

.select-host {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
  min-height: 35px;
  width: 100%;
}
.select-host p {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  margin: 0;
}
.select-host p u {
  text-decoration: none;
  margin-top: 4px;
  font-size: 14px;
  line-height: 14px;
}
.select-host span {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
}

.domen {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: #FFFFFF;
  height: 30px;
  display: flex;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 9px;
  background: #323232;
  border-radius: 5px;
  margin-left: 15px;
  margin-right: 20px;
}
.domen-word {
  display: flex;
  background: #323232;
  border-radius: 10px;
  padding: 8px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
}
.domen-word .dot {
  width: 23px;
}
.domen-word span {
  height: 46px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 700;
  font-size: 24px;
  line-height: 20px;
  color: #fff;
  background-color: var(--orange);
}
.domen-name {
  display: contents;
}
.domen-name span {
  color: #323232;
  background-color: #fff;
}
.domen-label, .domen-label2 {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
}
.domen-label.ml, .domen-label2.ml {
  margin-left: 20px;
}
.domen-label .select-check, .domen-label2 .select-check {
  position: static;
  background-color: #fff;
  margin-right: 12px;
}

.iframe, .iframe2 {
  width: 100%;
  min-height: 400px;
  margin-top: 24px;
}

.rating {
  background: #292929;
  border-radius: 10px;
  padding: 25px 10px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.rating__number {
  font-weight: 300;
  font-size: 48px;
  line-height: 48px;
  margin-right: 12px;
}
.rating__be1 {
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  display: flex;
  margin-top: 4px;
}
.rating__be1 img {
  margin-left: 12px;
}

.amo__top {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.amo__url {
  display: flex;
  align-items: center;
  padding: 15px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #0084C3;
  background-color: #fff;
  border-radius: 5px;
}
.amo__url span {
  word-break: break-all;
}
.amo__url img {
  margin-right: 15px;
}
.s5_img {
  width: 350px;
}
.service-item:nth-child(2):hover .s5_img {
  width: 380px;
}

@-webkit-keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}

@keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}
.preloader {
  text-align: center;
}

.auth {
  padding: 0;
  background-color: #fff;
}
.auth__body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent!important;
}

.last_s2 {
  width: 270px;
}
.auth__content {
  margin-top: 30px;
}
.auth__box {
  background: #F1F2F5;
  border-radius: 10px;
  overflow: hidden;
}
.auth__box h1 {
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: #252525;
  text-align: center;
  margin-top: 27px;
  margin-bottom: 20px;
  color: #252525;
}
.auth__brif {
  height: 30px;
  background-color: var(--orange);
  height: 30px;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: -15px;
  z-index: 2;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
.auth__copy {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #B8B8B8;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 22px;
  margin-top: 45px;
  border-top: 1px solid currentColor;
}
.auth__wrap {
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}
.auth__fail {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #B8B8B8;
  position: relative;
}
.auth__error {
  display: flex;
  justify-content: space-between;
}
.auth__error-row {
  font-size: 25px;
}
.auth__error-row span {
  color: #B8B8B8;
}
.auth__error-row span.red {
  color: red;
}
.auth-input {
  margin-top: 25px;
}
.auth-input span {
  text-align: center;
  display: block;
  margin-bottom: 14px;
}
.auth-input .input__field {
  height: 48px;
}

.fail-password {
  text-align: center;
  font-size: 12px;
  color: red;
  margin-top: 10px;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  text-align: center;
}

.c-select__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #252525;
  margin-bottom: 14px;
}
.c-select__btn {
  background: #FFFFFF;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 21px;
  color: #B8B8B8;
  cursor: pointer;
}
.c-select__btn svg {
  transition: var(--transition);
}
.c-select__btn.open svg {
  transform: scaleY(-1);
}
.c-select__btn.selected {
  color: #252525;
}
.c-select__arrow {
  width: 30px;
  height: 30px;
  background: #252525;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
}
.c-select__wrap {
  position: relative;
}
.c-select__list {
  background: #f0f7ff;
  border-radius: 5px;
  position: absolute;
  top: 52px;
  left: 0;
  z-index: 3;
  width: 100%;
  border: 1px solid #252525;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.checked_bg {
  position: absolute;
  background: rgb(240,248,255);
  background: linear-gradient(0deg, rgba(240,248,255,1) 0%, rgba(255,255,255,1) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.3s ease;
  opacity: 0;
}
.select {
  transition: 0.5s ease;
}
.select:has(input:checked) {
  background: linear-gradient(0deg, rgb(223 246 255) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 0 50px #add4ff;
  outline: 1px solid #007aff;
}

.select__type {
  position: relative;
  z-index: 2;
}

.select__item input:checked ~ .checked_bg {
  opacity: 1;
}

h2.brief__title:first-letter {
  text-transform: uppercase;
}

.c-select__list.open {
  visibility: visible;
  opacity: 1;
}
.c-select__item {
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 16px;
  line-height: 21px;
  cursor: pointer;
  transition: var(--transition);
}
.c-select__item input:checked + span {
  color: var(--orange);
}
.c-select__item:hover {
  color: var(--orange);
}

.panel {
  background: #292929;
  padding-top: 0;
  padding-bottom: 50px;
}
.panel .page-header__info {
  margin-top: -3px;
}
.panel-header {
  padding-top: 45px;
  padding-bottom: 55px;
}
.panel-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-header__left {
  display: flex;
  align-items: center;
}
.panel-header__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.panel-container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.panel__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
  color: #FFFFFF;
  padding-left: 30px;
  margin-left: 30px;
  margin-bottom: 0;
  border-left: 1px solid var(--orange);
}

.user {
  background: #363636;
  border-radius: 27px;
  padding-left: 14px;
  padding-right: 4px;
  height: 45px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  padding-top: 4px;
  padding-bottom: 4px;
  transition: var(--transition);
}
.user:hover, .user:focus {
  background-color: var(--orange);
  color: #fff;
}
.user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 12px;
}

.year {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #4A4A4A;
  margin-left: 17px;
}

.service__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}
.service-item {
  background: #363636;
  border-radius: 10px;
  position: relative;
  padding: 35px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  overflow: hidden;
}
.www_img {
  width: 360px;
  right: -77px !important;
}
.www_service:hover .www_img {
  right: -40px !important;
}
.service-item * {
  transition: var(--transition);
}
.service-item__tag {
  text-transform: uppercase;
  border: 1px solid var(--orange);
  padding-left: 15px;
  padding-right: 15px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--orange);
  font-weight: 500;
}
.service-item img {
  position: absolute;
  top: 0;
  right: 0;
}
.service-item:nth-child(1) img {
  top: 10px;
}
.service-item:nth-child(3) img {
  top: 5px;
}
.service-item:nth-child(1), .service-item:nth-child(2) {
  width: calc(50% - 22.5px);
  min-height: 415px;
}
.service-item:nth-child(3), .service-item:nth-child(4), .service-item:nth-child(5) {
  min-height: 365px;
  width: calc(33.3333333333% - 30px);
}
.service-item__info h2 {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.service-item__info p {
  margin: 0;
  color: #A5A5A5;
}
.service-item:hover, .service-item:focus {
  background-color: var(--orange);
  box-shadow: 0px 10px 15px rgb(0 122 255 / 40%);
}
.service-item:hover .service-item__tag, .service-item:focus .service-item__tag {
  border-color: #fff;
  color: #fff;
}
.service-item:hover .service-item__info p, .service-item:focus .service-item__info p {
  color: #fff;
}
.service-item:hover .project-select__btn, .service-item:focus .project-select__btn {
  background-color: #000000 !important;
  color: #fff !important;
}
.service-item:hover .project-date, .service-item:focus .project-date {
  color: #fff;
}
.service-item:hover .project-date path, .service-item:focus .project-date path {
  fill: #fff;
}

.project-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.project-select {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.project-select__btn {
  background: #4A4A4A;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  padding-left: 11px;
  padding-left: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--color);
  background: var(--bg);
  cursor: pointer;
  position: relative;
  z-index: 1;
  background: #4A4A4A;
  color: #6C6C6C;
}
.project-select__btn span {
  padding-left: 11px;
  padding-right: 11px;
  margin-top: 2px;
  min-width: 114px;
}
.project-select__btn div {
  width: 27px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4A4A4A;
}
.project-select li:nth-child(2) .project-select__item {
  color: #FDECC8;
}
.project-select li:nth-child(2) .project-select__item input:checked + span {
  background-color: #4a4845;
}
.project-select li:nth-child(3) .project-select__item {
  color: #C8F2B9;
}
.project-select li:nth-child(3) .project-select__item input:checked + span {
  background-color: #2a2c27;
}
.project-select li:nth-child(4) .project-select__item {
  color: #007aff;
}
.project-select li:nth-child(4) input:checked + span {
  background-color: #2e1d14;
}
.project-select__item {
  display: block;
  cursor: pointer;
  color: #6C6C6C;
}
.project-select__item span {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
  display: block;
}
.project-select__item input:checked + span {
  background-color: #fff;
}
.project-select__list {
  background: #4a4a4a;
  border-radius: 4px;
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  z-index: 10;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.project-select__list.open {
  visibility: visible;
  opacity: 1;
}

.project-date {
  font-weight: 400;
  font-size: 12px;
  color: #A5A5A5;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.project-date span {
  margin-left: 9px;
  margin-top: 2px;
}
.project-date path {
  transition: var(--transition);
}

.new-project {
  margin-top: 170px;
  margin-bottom: auto;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.new-project .np-title {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  transition: var(--transition);
}
.new-project__label {
  display: flex;
  flex-direction: column;
  position: relative;
}
.new-project__label:not(:last-child) {
  margin-top: 70px;
}
.new-project__label .np-title.span {
  text-align: center;
  margin-bottom: 5px;
  display: block;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #6B6B6B;
}
.new-project__label .np-title {
  font-weight: 800;
  cursor: pointer;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: #6B6B6B;
  margin-bottom: 5px;
  display: block;
}
.new-project__label.fz32 input {
  font-size: 32px;
}
.new-project__label.project {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.new-project__label input {
  border-bottom: 1px solid #414141;
  padding: 0 15px;
  height: 70px;
  text-align: center;
  background: transparent;
  color: #fff;
  transition: var(--transition);
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
}
.new-project__label input:focus {
  outline: none;
  border-color: #fff;
}
.new-project__label input:not(:-moz-placeholder-shown) + label {
  top: -55px;
}
.new-project__label input:focus + label,
.new-project__label input:not(:placeholder-shown) + label {
  top: -55px;
}
.new-project__label input:not(:-moz-placeholder-shown) + label.span {
  top: -28px;
}
.new-project__label input:focus + label.span,
.new-project__label input:not(:placeholder-shown) + label.span {
  top: -28px;
}
.new-project__btn {
  max-width: 326px;
  width: 100%;
  margin-top: 55px;
}

.account-page {
  padding-top: 0;
}

.account-top {
  padding-top: 118px;
  padding-bottom: 46px;
  background: url(../img/account-bg.jpg) no-repeat center/cover;
  padding-left: 30px;
  padding-right: 30px;
}
.account-top__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1368px;
  padding-left: 35px;
  padding-right: 35px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  box-shadow: -4px 8px 24px rgba(44, 63, 88, 0.02);
  max-height: 180px;
  padding-top: 55px;
  padding-bottom: 55px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
.account-top__row {
  max-height: 180px;
  display: flex;
  margin-top: -55px;
  align-items: center;
  position: relative;
}

.ac-img {
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
  border-radius: 47px;
  width: 200px;
  height: 200px;
  padding: 7px;
  position: relative;
  top: -55px;
}
.ac-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 43px;
}

.ac-info {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}
.ac-info strong {
  font-weight: 500;
  font-size: 26px;
  line-height: 26px;
  color: #000;
  margin-bottom: 15px;
}
.ac-info span {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--orange);
}

.ac-new {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 14px;
  background: #28282a;
  border-radius: 22px;
  transition: var(--transition);
  cursor: pointer;
  margin-left: 30px;
  padding-top: 5px;
}
.ac-new path {
  transition: var(--transition);
}
.ac-new:hover, .ac-new:focus {
  background-color: var(--orange);
}
.ac-new:hover path, .ac-new:focus path {
  fill: #fff;
}

.ac-projects {
  position: relative;
  padding-left: 60px;
  margin-left: 60px;
  display: flex;
  align-items: center;
}
.ac-projects::before {
  content: "";
  height: 114px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ac-projects__count {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #000;
  font-weight: 500;
  margin-right: 60px;
}
.ac-projects__count strong {
  font-size: 64px;
  line-height: 64px;
  margin-bottom: 8px;
  font-weight: 500;
}
.ac-projects__count span {
  font-size: 16px;
  line-height: 16px;
}
.ac-projects__price {
  display: flex;
  flex-direction: column;
  color: #007aff;
  font-weight: 500;
  margin-top: 4px;
}
.ac-projects__price span {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 12px;
}
.ac-projects__price strong {
  font-weight: 500;
  font-size: 36px;
  line-height: 36px;
  color: #000;
}

.ac-projects__count span font {
  color: #007aff;
}


.account__container {
  max-width: 1300px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
.account__cross {
  font-size: 28px;
  font-weight: 800;
  height: 25px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  padding-top: 5px;
}
.account__cross:hover, .account__cross:focus {
  color: #C70000;
}
.account__search {
  position: relative;
  max-width: 420px;
  width: 100%;
  display: block;
  margin-top: -20px;
  margin-bottom: 20px;
}
.account__search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.account__search input {
  background: #FFFFFF;
  border-radius: 14px;
  height: 40px;
  transition: var(--transition);
  padding-left: 44px;
  padding-right: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  width: 100%;
}
.account__search input::-moz-placeholder {
  color: #8A9099;
}
.account__search input::placeholder {
  color: #8A9099;
}
.account__search input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--orange);
}

.reset_table,
.reset_table table tr,
.reset_table tr td,
.reset_table table tbody,
.reset_table table thead,
.reset_table table tfoot,
.reset_table table tr th,
.reset_table table tfoot tr tf {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  background-image: none;
}

.table {
  position: relative;
  z-index: 7;
}
.table__btns {
  display: flex;
}
.table__btn {
  border-radius: 14px 14px 0 0;
  height: 44px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  background: #F7F7F7;
  box-shadow: 8px 4px 16px rgba(44, 63, 88, 0.03);
  color: #8A9099;
  position: relative;
}
.table__btn:nth-child(1) {
  z-index: 4;
}
.table__btn:nth-child(2) {
  z-index: 3;
  margin-left: -5px;
}
.table__btn:nth-child(3) {
  z-index: 2;
  margin-left: -5px;
}
.table__btn:nth-child(4) {
  z-index: 1;
  margin-left: -5px;
}
.table__btn.active {
  color: #3F434A;
  box-shadow: 8px -4px 16px rgba(44, 63, 88, 0.05);
  background: #FFFFFF;
  z-index: 6;
}
.table__btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  border-radius: 5px;
  background-color: var(--bg);
  font-weight: 500;
  font-size: 10px;
  line-height: 10px;
  padding-left: 5px;
  padding-right: 5px;
  color: #8A9099;
  transition: var(--transition);
}
.table__btn span.fff {
  color: #fff;
}
.table__item.active {
  background-color: #f5f5f5;
}
.table__cells {
  border-collapse: unset;
  width: 100%;
  background: #FFFFFF;
  border-radius: 0px 4px 4px 4px;
}
.table__cells th, .table__cells td {
  width: 14.2857142857%;
}
.table__cells thead {
  padding: 8px !important;
  display: block;
  margin-bottom: 4px;
}
.table__cells thead tr {
  display: flex;
  border-bottom: 1px solid #E9E9E7;
}
.table__cells tbody {
  display: block;
  padding: 8px 0 !important;
}
.table__cells tbody tr {
  display: flex;
  position: relative;
  padding: 12px 8px !important;
}
.table__cells tbody td:first-child {
  position: absolute;
  left: -40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 26px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.table__cells-btn {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  color: #121212;
  position: relative;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 4px 0;
}
.table__cells-btn.div {
  cursor: default;
}
.table__cells-btn.div::after {
  content: unset;
}
.table__cells-btn span {
  margin-left: 8px;
  margin-top: 2px;
}
.table__cells-btn::after {
  content: url(../img/arrow.svg);
  display: block;
  margin-left: 8px;
  transition: var(--transition);
}
.table__cells-btn.active::after {
  transform: scaleY(-1);
}

.more-dots {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.more-dots path {
  transition: var(--transition);
}
.more-dots:hover, .more-dots:focus {
  outline: none;
}
.more-dots:hover path, .more-dots:focus path {
  fill: var(--orange);
}

.table-company {
  margin-left: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.table-company svg {
  flex-shrink: 0;
}
.table-company svg > * {
  transition: var(--transition);
}
.table-company:hover, .table-company:focus {
  outline: none;
}
.table-company:hover rect, .table-company:focus rect {
  fill: var(--orange);
}
.table-company:hover path, .table-company:focus path {
  fill: #fff;
}
.table-company__info {
  font-size: 12px;
  line-height: 15px;
  display: flex;
  flex-direction: column;
}
.table-company__info b {
  color: #000000;
  font-weight: 700;
}
.table-company__info span {
  color: #aaa;
}

.table-tag {
  border: 1px solid var(--orange);
  color: var(--orange);
  border-radius: 4px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  line-height: 15px;
  margin-left: 4px;
  padding-top: 3px;
}

.table-date {
  font-size: 12px;
  line-height: 15px;
  color: #000000;
  display: flex;
  flex-direction: column;
  padding-left: 4px;
}
.table-date strong {
  color: #000000;
  font-weight: 400;
}
.table-date span {
  color: #aaa;
}

.table-price {
  font-size: 12px;
  line-height: 15px;
  color: #000000;
  padding-left: 4px;
}

.table-links {
  display: flex;
  gap: 10px;
}
.table-links a {
  width: 20px;
  height: 20px;
}

.table-link {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #0084C3;
  word-break: break-all;
  padding-right: 15px;
  display: flex;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 4px;
}
.pagination__link {
  padding-top: 2px;
  text-decoration: none;
  width: 34px;
  height: 34px;
  font-size: 15px;
  line-height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #3F434A;
  border-radius: 10px;
  transition: var(--transition);
}
.pagination__link path {
  transition: var(--transition);
}
.pagination__link.disabled {
  pointer-events: none;
}
.pagination__link.arrow {
  background-color: #f1e3dd;
}
.pagination__link.arrow path {
  fill: var(--orange);
}
.pagination__link.arrow.disabled {
  pointer-events: none;
}
.pagination__link.arrow.disabled path {
  fill: #c9c9c9;
}
.pagination__link:hover, .pagination__link:focus, .pagination__link.current {
  outline: none;
  background-color: var(--orange);
  color: #fff;
}
.pagination__link:hover path, .pagination__link:focus path, .pagination__link.current path {
  fill: #fff;
}
.pagination__link.current {
  pointer-events: none;
}

.table-status {
  border-radius: 4px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  line-height: 15px;
  margin-left: 4px;
  padding-top: 2px;
}

[data-filter-item=active] .table-status {
  background-color: #fdecc8;
}

[data-filter-item=finished] .table-status {
  background-color: #c8f2b9;
}

[data-filter-item=passed] .table-status {
  background-color: #007aff;
  color: #fff;
}

.table-more {
  position: relative;
}
.table-more__list {
  background: #363636;
  width: 190px;
  position: absolute;
  right: 30px;
  top: -8px;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  overflow: hidden;
}
.table-more__list.open {
  visibility: visible;
  opacity: 1;
}
.table-more__list a, .table-more__list button, .table-more__list label {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 8px 10px;
  display: block;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
}
.table-more__list a svg, .table-more__list button svg, .table-more__list label svg {
  margin-top: -2px;
}
.table-more__list a path, .table-more__list button path, .table-more__list label path {
  transition: var(--transition);
  fill: #fff;
}
.table-more__list a:focus, .table-more__list a:hover, .table-more__list button:focus, .table-more__list button:hover, .table-more__list label:focus, .table-more__list label:hover {
  outline: none;
  color: var(--orange);
  background-color: var(--light-orange);
}
.table-more__list a:focus path, .table-more__list a:hover path, .table-more__list button:focus path, .table-more__list button:hover path, .table-more__list label:focus path, .table-more__list label:hover path {
  fill: var(--orange);
}
.table-more__list a svg, .table-more__list button svg, .table-more__list label svg {
  margin-right: 5px;
}

.ac-more {
  position: relative;
  position: absolute;
  top: -50px;
  left: 210px;
}
.ac-more__list {
  right: -200px;
  top: auto;
  bottom: -7px;
}
.ac-new svg path {
  fill: #007aff;
}

.ac-more__btn {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.ac-more__btn path {
  transition: var(--transition);
}
.ac-more__btn:focus, .ac-more__btn:hover {
  outline: none;
  background: rgba(0, 0, 0, 0.85);
}
.ac-more__btn:focus path, .ac-more__btn:hover path {
  fill: var(--orange);
}

.error-404 {
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  padding-bottom: 90px;
}
.error-404 h1 {
  font-weight: 300;
  font-size: 128px;
  line-height: 128px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
}
.error-404 strong {
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: #6B6B6B;
}
.error-404 p {
  margin-top: 80px;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #6B6B6B;
  padding-bottom: 45px;
  position: relative;
  margin-bottom: 0;
}
.error-404 p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  border-bottom: 1px solid #414141;
}
/*# sourceMappingURL=main.css.map */



#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}

.main-content {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 50px;
}

/*.white, .white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white p {*/
/*  color: #fff;*/
/*}*/
/*.whitness .main-content {*/
/*  background: #00173980;*/
/*}*/
.video-play {
  position: absolute;
  width: 35px;
  height: 35px;
  overflow: hidden;
  bottom: 50px;
  left: 50%;
  margin-left: -18px;
  background: #007aff;
  border-radius: 50%;
  padding: 5px;
}
.popup {
  display: none;
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
  background: #000c;
}
.popup .popuptext {
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  width: 70vw;
  left: 50%;
  top: 50%;
  margin-top: -300px;
  margin-left: -35vw;
  z-index: 100;
}
.show {
  display: block;
  opacity: 1;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

.table-id {
  padding: 4px 8px 2px;
  border-radius: 5px;
}
.th-center {
  text-align: center;
}
.th-center div {
  margin: 0 auto;
}

.pro8 {
  width: 10% !important;
}
.order-id {
  vertical-align: inherit;
  background-color: #0279fe;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff!important;
}