@-webkit-keyframes scale {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  45% {
    opacity: 0.7;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  80% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.36s
    infinite;
  animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.36s infinite;
}
.ball-pulse > div:first-child {
  -webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.24s
    infinite;
  animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.24s infinite;
}
.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.12s
    infinite;
  animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.12s infinite;
}
.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s infinite;
  animation: scale 0.75s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s infinite;
}
.ball-pulse > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  margin: 2px;
  width: 15px;
}
@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.ball-pulse-sync > div:nth-child(0) {
  -webkit-animation: ball-pulse-sync 0.6s ease-in-out -0.21s infinite;
  animation: ball-pulse-sync 0.6s ease-in-out -0.21s infinite;
}
.ball-pulse-sync > div:first-child {
  -webkit-animation: ball-pulse-sync 0.6s ease-in-out -0.14s infinite;
  animation: ball-pulse-sync 0.6s ease-in-out -0.14s infinite;
}
.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s ease-in-out -0.07s infinite;
  animation: ball-pulse-sync 0.6s ease-in-out -0.07s infinite;
}
.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s ease-in-out 0s infinite;
  animation: ball-pulse-sync 0.6s ease-in-out 0s infinite;
}
.ball-pulse-sync > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  margin: 2px;
  width: 15px;
}
@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-scale > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-scale 1s ease-in-out 0s infinite;
  animation: ball-scale 1s ease-in-out 0s infinite;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  height: 60px;
  margin: 2px;
  width: 15px;
  width: 60px;
}
.ball-scale-random {
  height: 40px;
  width: 37px;
}
.ball-scale-random > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-scale 1s ease-in-out 0s infinite;
  animation: ball-scale 1s ease-in-out 0s infinite;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  height: 30px;
  margin: 2px;
  position: absolute;
  width: 15px;
  width: 30px;
}
.ball-scale-random > div:first-child {
  -webkit-animation: ball-scale 1s ease-in-out 0.2s infinite;
  animation: ball-scale 1s ease-in-out 0.2s infinite;
  margin-left: -7px;
}
.ball-scale-random > div:nth-child(3) {
  -webkit-animation: ball-scale 1s ease-in-out 0.5s infinite;
  animation: ball-scale 1s ease-in-out 0.5s infinite;
  margin-left: -2px;
  margin-top: 9px;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.ball-rotate,
.ball-rotate > div {
  position: relative;
}
.ball-rotate > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 100%;
  height: 15px;
  margin: 2px;
  width: 15px;
}
.ball-rotate > div:first-child {
  -webkit-animation: rotate 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) 0s infinite;
  animation: rotate 1s cubic-bezier(0.7, -0.13, 0.22, 0.86) 0s infinite;
}
.ball-rotate > div:after,
.ball-rotate > div:before {
  background-color: #fff;
  border-radius: 100%;
  content: "";
  height: 15px;
  margin: 2px;
  opacity: 0.8;
  position: absolute;
  width: 15px;
}
.ball-rotate > div:before {
  left: -28px;
  top: 0;
}
.ball-rotate > div:after {
  left: 25px;
  top: 0;
}
.ball-clip-rotate > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: rotate 0.75s linear 0s infinite;
  animation: rotate 0.75s linear 0s infinite;
  background-color: #fff;
  background: transparent !important;
  border: 2px solid;
  border-color: #fff #fff transparent;
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  height: 25px;
  margin: 2px;
  width: 15px;
  width: 25px;
}
.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.ball-clip-rotate-pulse > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border-radius: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.ball-clip-rotate-pulse > div:first-child {
  -webkit-animation: scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
  animation: scale 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
  background: #fff;
  height: 16px;
  left: -7px;
  top: 7px;
  width: 16px;
}
.ball-clip-rotate-pulse > div:last-child {
  -webkit-animation: rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
  animation: rotate 1s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  background: transparent;
  border: 2px solid;
  border-color: #fff transparent;
  border-style: solid;
  border-width: 2px;
  height: 30px;
  left: -16px;
  position: absolute;
  top: -2px;
  width: 30px;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
    transform: rotate(180deg) scale(0.6);
  }
  to {
    -webkit-transform: rotate(1turn) scale(1);
    transform: rotate(1turn) scale(1);
  }
}
.ball-clip-rotate-multiple {
  position: relative;
}
.ball-clip-rotate-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: rotate 1s ease-in-out 0s infinite;
  animation: rotate 1s ease-in-out 0s infinite;
  border-color: transparent #fff;
  border-radius: 100%;
  border-style: solid;
  border-width: 2px;
  height: 35px;
  left: -20px;
  position: absolute;
  top: -20px;
  width: 35px;
}
.ball-clip-rotate-multiple > div:last-child {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  border-color: #fff transparent;
  display: inline-block;
  height: 15px;
  left: -10px;
  top: -10px;
  width: 15px;
}
@-webkit-keyframes ball-scale-ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: 0.7;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: 0.7;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
  }
}
.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-scale-ripple 1s cubic-bezier(0.21, 0.53, 0.56, 0.8) 0s
    infinite;
  animation: ball-scale-ripple 1s cubic-bezier(0.21, 0.53, 0.56, 0.8) 0s
    infinite;
  border: 2px solid #fff;
  border-radius: 100%;
  height: 50px;
  width: 50px;
}
@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: 0.7;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
  }
}
@keyframes ball-scale-ripple-multiple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  70% {
    opacity: 0.7;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    opacity: 0;
  }
}
.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  transform: translateY(-25px);
}
.ball-scale-ripple-multiple > div:nth-child(0) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.ball-scale-ripple-multiple > div:first-child {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.ball-scale-ripple-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-ripple-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-ripple-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-scale-ripple-multiple 1.25s
    cubic-bezier(0.21, 0.53, 0.56, 0.8) 0s infinite;
  animation: ball-scale-ripple-multiple 1.25s
    cubic-bezier(0.21, 0.53, 0.56, 0.8) 0s infinite;
  border: 2px solid #fff;
  border-radius: 100%;
  height: 50px;
  left: -26px;
  position: absolute;
  top: -2px;
  width: 50px;
}
@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-beat > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-beat 0.7s linear 0s infinite;
  animation: ball-beat 0.7s linear 0s infinite;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  margin: 2px;
  width: 15px;
}
.ball-beat > div:nth-child(2n-1) {
  -webkit-animation-delay: -0.35s !important;
  animation-delay: -0.35s !important;
}
@-webkit-keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-scale-multiple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.ball-scale-multiple > div:nth-child(3) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.ball-scale-multiple > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: ball-scale-multiple 1s linear 0s infinite;
  animation: ball-scale-multiple 1s linear 0s infinite;
  background-color: #fff;
  border-radius: 100%;
  height: 15px;
  height: 60px;
  left: -30px;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 15px;
  width: 60px;
}
@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px);
    transform: translate(50px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
    transform: translate(25px, -50px);
  }
  66% {
    -webkit-transform: translate(50px);
    transform: translate(50px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
    transform: translate(25px, 50px);
  }
  66% {
    -webkit-transform: translate(-25px, 50px);
    transform: translate(-25px, 50px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px);
    transform: translate(-50px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px);
    transform: translate(-50px);
  }
  66% {
    -webkit-transform: translate(-25px, -50px);
    transform: translate(-25px, -50px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-29.994px, -37.50938px);
  -ms-transform: translate(-29.994px, -37.50938px);
  transform: translate(-29.994px, -37.50938px);
}
.ball-triangle-path > div:first-child {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ball-triangle-path-1;
  animation-name: ball-triangle-path-1;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.ball-triangle-path > div:nth-child(2) {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ball-triangle-path-2;
  animation-name: ball-triangle-path-2;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.ball-triangle-path > div:nth-child(3) {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ball-triangle-path-3;
  animation-name: ball-triangle-path-3;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.ball-triangle-path > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 1px solid #fff;
  border-radius: 100%;
  height: 10px;
  position: absolute;
  width: 10px;
}
.ball-triangle-path > div:first-of-type {
  top: 50px;
}
.ball-triangle-path > div:nth-of-type(2) {
  left: 25px;
}
.ball-triangle-path > div:nth-of-type(3) {
  left: 50px;
  top: 50px;
}
@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  25% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  75% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  25% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
}
.ball-pulse-rise > div {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 15px;
  margin: 2px;
  width: 15px;
}
.ball-pulse-rise > div:nth-child(2n) {
  -webkit-animation-name: ball-pulse-rise-even;
  animation-name: ball-pulse-rise-even;
}
.ball-pulse-rise > div:nth-child(2n-1) {
  -webkit-animation-name: ball-pulse-rise-odd;
  animation-name: ball-pulse-rise-odd;
}
@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
@keyframes ball-grid-beat {
  50% {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
.ball-grid-beat {
  width: 57px;
}
.ball-grid-beat > div:first-child {
  -webkit-animation-delay: 0.44s;
  animation-delay: 0.44s;
  -webkit-animation-duration: 1.27s;
  animation-duration: 1.27s;
}
.ball-grid-beat > div:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-duration: 1.52s;
  animation-duration: 1.52s;
}
.ball-grid-beat > div:nth-child(3) {
  -webkit-animation-delay: 0.14s;
  animation-delay: 0.14s;
  -webkit-animation-duration: 0.61s;
  animation-duration: 0.61s;
}
.ball-grid-beat > div:nth-child(4) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
  -webkit-animation-duration: 0.82s;
  animation-duration: 0.82s;
}
.ball-grid-beat > div:nth-child(5) {
  -webkit-animation-delay: -0.01s;
  animation-delay: -0.01s;
  -webkit-animation-duration: 1.24s;
  animation-duration: 1.24s;
}
.ball-grid-beat > div:nth-child(6) {
  -webkit-animation-delay: -0.07s;
  animation-delay: -0.07s;
  -webkit-animation-duration: 1.35s;
  animation-duration: 1.35s;
}
.ball-grid-beat > div:nth-child(7) {
  -webkit-animation-delay: 0.29s;
  animation-delay: 0.29s;
  -webkit-animation-duration: 1.44s;
  animation-duration: 1.44s;
}
.ball-grid-beat > div:nth-child(8) {
  -webkit-animation-delay: 0.63s;
  animation-delay: 0.63s;
  -webkit-animation-duration: 1.19s;
  animation-duration: 1.19s;
}
.ball-grid-beat > div:nth-child(9) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
  -webkit-animation-duration: 1.48s;
  animation-duration: 1.48s;
}
.ball-grid-beat > div {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ball-grid-beat;
  animation-name: ball-grid-beat;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  float: left;
  height: 15px;
  margin: 2px;
  width: 15px;
}
@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-grid-pulse {
  width: 57px;
}
.ball-grid-pulse > div:first-child {
  -webkit-animation-delay: 0.58s;
  animation-delay: 0.58s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.ball-grid-pulse > div:nth-child(2) {
  -webkit-animation-delay: 0.01s;
  animation-delay: 0.01s;
  -webkit-animation-duration: 0.94s;
  animation-duration: 0.94s;
}
.ball-grid-pulse > div:nth-child(3) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  -webkit-animation-duration: 1.43s;
  animation-duration: 1.43s;
}
.ball-grid-pulse > div:nth-child(4) {
  -webkit-animation-delay: -0.03s;
  animation-delay: -0.03s;
  -webkit-animation-duration: 0.74s;
  animation-duration: 0.74s;
}
.ball-grid-pulse > div:nth-child(5) {
  -webkit-animation-delay: 0.21s;
  animation-delay: 0.21s;
  -webkit-animation-duration: 0.68s;
  animation-duration: 0.68s;
}
.ball-grid-pulse > div:nth-child(6) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  -webkit-animation-duration: 1.17s;
  animation-duration: 1.17s;
}
.ball-grid-pulse > div:nth-child(7) {
  -webkit-animation-delay: 0.46s;
  animation-delay: 0.46s;
  -webkit-animation-duration: 1.41s;
  animation-duration: 1.41s;
}
.ball-grid-pulse > div:nth-child(8) {
  -webkit-animation-delay: 0.02s;
  animation-delay: 0.02s;
  -webkit-animation-duration: 1.56s;
  animation-duration: 1.56s;
}
.ball-grid-pulse > div:nth-child(9) {
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
  -webkit-animation-duration: 0.78s;
  animation-duration: 0.78s;
}
.ball-grid-pulse > div {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: ball-grid-pulse;
  animation-name: ball-grid-pulse;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  float: left;
  height: 15px;
  margin: 2px;
  width: 15px;
}
@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.ball-spin-fade-loader {
  left: -10px;
  position: relative;
  top: -10px;
}
.ball-spin-fade-loader > div:first-child {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.96s infinite;
  animation: ball-spin-fade-loader 1s linear -0.96s infinite;
  left: 0;
  top: 25px;
}
.ball-spin-fade-loader > div:nth-child(2) {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.84s infinite;
  animation: ball-spin-fade-loader 1s linear -0.84s infinite;
  left: 17.04545px;
  top: 17.04545px;
}
.ball-spin-fade-loader > div:nth-child(3) {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.72s infinite;
  animation: ball-spin-fade-loader 1s linear -0.72s infinite;
  left: 25px;
  top: 0;
}
.ball-spin-fade-loader > div:nth-child(4) {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.6s infinite;
  animation: ball-spin-fade-loader 1s linear -0.6s infinite;
  left: 17.04545px;
  top: -17.04545px;
}
.ball-spin-fade-loader > div:nth-child(5) {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.48s infinite;
  animation: ball-spin-fade-loader 1s linear -0.48s infinite;
  left: 0;
  top: -25px;
}
.ball-spin-fade-loader > div:nth-child(6) {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.36s infinite;
  animation: ball-spin-fade-loader 1s linear -0.36s infinite;
  left: -17.04545px;
  top: -17.04545px;
}
.ball-spin-fade-loader > div:nth-child(7) {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.24s infinite;
  animation: ball-spin-fade-loader 1s linear -0.24s infinite;
  left: -25px;
  top: 0;
}
.ball-spin-fade-loader > div:nth-child(8) {
  -webkit-animation: ball-spin-fade-loader 1s linear -0.12s infinite;
  animation: ball-spin-fade-loader 1s linear -0.12s infinite;
  left: -17.04545px;
  top: 17.04545px;
}
.ball-spin-fade-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 100%;
  height: 15px;
  margin: 2px;
  position: absolute;
  width: 15px;
}
@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@keyframes ball-spin-loader {
  75% {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
.ball-spin-loader {
  position: relative;
}
.ball-spin-loader > span:first-child {
  -webkit-animation: ball-spin-loader 2s linear 0.9s infinite;
  animation: ball-spin-loader 2s linear 0.9s infinite;
  left: 0;
  top: 45px;
}
.ball-spin-loader > span:nth-child(2) {
  -webkit-animation: ball-spin-loader 2s linear 1.8s infinite;
  animation: ball-spin-loader 2s linear 1.8s infinite;
  left: 30.68182px;
  top: 30.68182px;
}
.ball-spin-loader > span:nth-child(3) {
  -webkit-animation: ball-spin-loader 2s linear 2.7s infinite;
  animation: ball-spin-loader 2s linear 2.7s infinite;
  left: 45px;
  top: 0;
}
.ball-spin-loader > span:nth-child(4) {
  -webkit-animation: ball-spin-loader 2s linear 3.6s infinite;
  animation: ball-spin-loader 2s linear 3.6s infinite;
  left: 30.68182px;
  top: -30.68182px;
}
.ball-spin-loader > span:nth-child(5) {
  -webkit-animation: ball-spin-loader 2s linear 4.5s infinite;
  animation: ball-spin-loader 2s linear 4.5s infinite;
  left: 0;
  top: -45px;
}
.ball-spin-loader > span:nth-child(6) {
  -webkit-animation: ball-spin-loader 2s linear 5.4s infinite;
  animation: ball-spin-loader 2s linear 5.4s infinite;
  left: -30.68182px;
  top: -30.68182px;
}
.ball-spin-loader > span:nth-child(7) {
  -webkit-animation: ball-spin-loader 2s linear 6.3s infinite;
  animation: ball-spin-loader 2s linear 6.3s infinite;
  left: -45px;
  top: 0;
}
.ball-spin-loader > span:nth-child(8) {
  -webkit-animation: ball-spin-loader 2s linear 7.2s infinite;
  animation: ball-spin-loader 2s linear 7.2s infinite;
  left: -30.68182px;
  top: 30.68182px;
}
.ball-spin-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background: green;
  border-radius: 100%;
  height: 15px;
  position: absolute;
  width: 15px;
}
@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  66% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  66% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.ball-zig-zag > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 100%;
  height: 15px;
  left: -7px;
  margin: 2px 2px 2px 15px;
  position: absolute;
  top: 4px;
  width: 15px;
}
.ball-zig-zag > div:first-child {
  -webkit-animation: ball-zig 0.7s linear 0s infinite;
  animation: ball-zig 0.7s linear 0s infinite;
}
.ball-zig-zag > div:last-child {
  -webkit-animation: ball-zag 0.7s linear 0s infinite;
  animation: ball-zag 0.7s linear 0s infinite;
}
@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  34% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  67% {
    -webkit-transform: translate(15px, -30px);
    transform: translate(15px, -30px);
  }
  84% {
    -webkit-transform: translate(-15px, -30px);
    transform: translate(-15px, -30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  34% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  67% {
    -webkit-transform: translate(-15px, 30px);
    transform: translate(-15px, 30px);
  }
  84% {
    -webkit-transform: translate(15px, 30px);
    transform: translate(15px, 30px);
  }
  to {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
  -ms-transform: translate(-15px, -15px);
  transform: translate(-15px, -15px);
}
.ball-zig-zag-deflect > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 100%;
  height: 15px;
  left: -7px;
  margin: 2px 2px 2px 15px;
  position: absolute;
  top: 4px;
  width: 15px;
}
.ball-zig-zag-deflect > div:first-child {
  -webkit-animation: ball-zig-deflect 1.5s linear 0s infinite;
  animation: ball-zig-deflect 1.5s linear 0s infinite;
}
.ball-zig-zag-deflect > div:last-child {
  -webkit-animation: ball-zag-deflect 1.5s linear 0s infinite;
  animation: ball-zag-deflect 1.5s linear 0s infinite;
}
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  to {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  to {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale > div:first-child {
  -webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.4s
    infinite;
  animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.4s infinite;
}
.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.3s
    infinite;
  animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.3s infinite;
}
.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.2s
    infinite;
  animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.2s infinite;
}
.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.1s
    infinite;
  animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) -0.1s infinite;
}
.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s
    infinite;
  animation: line-scale 1s cubic-bezier(0.2, 0.68, 0.18, 1.08) 0s infinite;
}
.line-scale > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  height: 35px;
  margin: 2px;
  width: 4px;
}
@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.line-scale-party > div:first-child {
  -webkit-animation-delay: -0.09s;
  animation-delay: -0.09s;
  -webkit-animation-duration: 0.83s;
  animation-duration: 0.83s;
}
.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: 0.33s;
  animation-delay: 0.33s;
  -webkit-animation-duration: 0.64s;
  animation-duration: 0.64s;
}
.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
  -webkit-animation-duration: 0.39s;
  animation-duration: 0.39s;
}
.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: 0.47s;
  animation-delay: 0.47s;
  -webkit-animation-duration: 0.52s;
  animation-duration: 0.52s;
}
.line-scale-party > div {
  -webkit-animation-delay: 0;
  animation-delay: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: line-scale-party;
  animation-name: line-scale-party;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  height: 35px;
  margin: 2px;
  width: 4px;
}
@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  to {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
  to {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale-pulse-out > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: line-scale-pulse-out 0.9s
    cubic-bezier(0.85, 0.25, 0.37, 0.85) -0.6s infinite;
  animation: line-scale-pulse-out 0.9s
    cubic-bezier(0.85, 0.25, 0.37, 0.85) -0.6s infinite;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  height: 35px;
  margin: 2px;
  width: 4px;
}
.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}
.line-scale-pulse-out > div:first-child,
.line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}
@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
  80% {
    -webkit-transform: scaley(0.3);
    transform: scaley(0.3);
  }
  90% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}
.line-scale-pulse-out-rapid > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s
    cubic-bezier(0.11, 0.49, 0.38, 0.78) -0.5s infinite;
  animation: line-scale-pulse-out-rapid 0.9s
    cubic-bezier(0.11, 0.49, 0.38, 0.78) -0.5s infinite;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  height: 35px;
  margin: 2px;
  width: 4px;
}
.line-scale-pulse-out-rapid > div:nth-child(2),
.line-scale-pulse-out-rapid > div:nth-child(4) {
  -webkit-animation-delay: -0.25s !important;
  animation-delay: -0.25s !important;
}
.line-scale-pulse-out-rapid > div:first-child,
.line-scale-pulse-out-rapid > div:nth-child(5) {
  -webkit-animation-delay: 0s !important;
  animation-delay: 0s !important;
}
@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
.line-spin-fade-loader {
  left: -4px;
  position: relative;
  top: -10px;
}
.line-spin-fade-loader > div:first-child {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.84s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out -0.84s infinite;
  left: 0;
  top: 20px;
}
.line-spin-fade-loader > div:nth-child(2) {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.72s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out -0.72s infinite;
  left: 13.63636px;
  top: 13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.line-spin-fade-loader > div:nth-child(3) {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.6s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out -0.6s infinite;
  left: 20px;
  top: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.line-spin-fade-loader > div:nth-child(4) {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.48s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out -0.48s infinite;
  left: 13.63636px;
  top: -13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.line-spin-fade-loader > div:nth-child(5) {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.36s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out -0.36s infinite;
  left: 0;
  top: -20px;
}
.line-spin-fade-loader > div:nth-child(6) {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.24s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out -0.24s infinite;
  left: -13.63636px;
  top: -13.63636px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.line-spin-fade-loader > div:nth-child(7) {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out -0.12s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out -0.12s infinite;
  left: -20px;
  top: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.line-spin-fade-loader > div:nth-child(8) {
  -webkit-animation: line-spin-fade-loader 1.2s ease-in-out 0s infinite;
  animation: line-spin-fade-loader 1.2s ease-in-out 0s infinite;
  left: -13.63636px;
  top: 13.63636px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.line-spin-fade-loader > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
  border-radius: 2px;
  height: 35px;
  height: 15px;
  margin: 2px;
  position: absolute;
  width: 4px;
  width: 5px;
}
@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  to {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  to {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: triangle-skew-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9)
    0s infinite;
  animation: triangle-skew-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s
    infinite;
  border-bottom: 20px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  height: 0;
  width: 0;
}
@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  to {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
    transform: perspective(100px) rotateX(180deg) rotateY(0);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
    transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
    transform: perspective(100px) rotateX(0) rotateY(180deg);
  }
  to {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
    transform: perspective(100px) rotateX(0) rotateY(0);
  }
}
.square-spin > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: square-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s
    infinite;
  animation: square-spin 3s cubic-bezier(0.09, 0.57, 0.49, 0.9) 0s infinite;
  background: #fff;
  border: 1px solid red;
  height: 50px;
  width: 50px;
}
@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
  to {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  50% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
  to {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
}
@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  to {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
@keyframes pacman-balls {
  75% {
    opacity: 0.7;
  }
  to {
    -webkit-transform: translate(-100px, -6.25px);
    transform: translate(-100px, -6.25px);
  }
}
.pacman {
  position: relative;
}
.pacman > div:nth-child(2) {
  -webkit-animation: pacman-balls 1s linear -0.99s infinite;
  animation: pacman-balls 1s linear -0.99s infinite;
}
.pacman > div:nth-child(3) {
  -webkit-animation: pacman-balls 1s linear -0.66s infinite;
  animation: pacman-balls 1s linear -0.66s infinite;
}
.pacman > div:nth-child(4) {
  -webkit-animation: pacman-balls 1s linear -0.33s infinite;
  animation: pacman-balls 1s linear -0.33s infinite;
}
.pacman > div:nth-child(5) {
  -webkit-animation: pacman-balls 1s linear 0s infinite;
  animation: pacman-balls 1s linear 0s infinite;
}
.pacman > div:first-of-type {
  -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  animation: rotate_pacman_half_up 0.5s 0s infinite;
  border: 25px solid #fff;
  border-radius: 25px;
  border-right-color: transparent;
  height: 0;
  left: -30px;
  position: relative;
  width: 0;
}
.pacman > div:nth-child(2) {
  -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  animation: rotate_pacman_half_down 0.5s 0s infinite;
  border: 25px solid #fff;
  border-radius: 25px;
  border-right-color: transparent;
  height: 0;
  left: -30px;
  margin-top: -50px;
  position: relative;
  width: 0;
}
.pacman > div:nth-child(3),
.pacman > div:nth-child(4),
.pacman > div:nth-child(5),
.pacman > div:nth-child(6) {
  background-color: #fff;
  border-radius: 100%;
  height: 15px;
  height: 10px;
  left: 70px;
  margin: 2px;
  position: absolute;
  top: 25px;
  -webkit-transform: translateY(-6.25px);
  -ms-transform: translateY(-6.25px);
  transform: translateY(-6.25px);
  width: 15px;
  width: 10px;
}
@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }
  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}
@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
    transform: translateX(50px) scale(0.5) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
    transform: translate(50px, 50px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
    transform: translateY(50px) scale(0.5) rotate(-270deg);
  }
  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}
.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
  -ms-transform: translate(-25px, -25px);
  transform: translate(-25px, -25px);
}
.cube-transition > div {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: cube-transition 1.6s ease-in-out 0s infinite;
  animation: cube-transition 1.6s ease-in-out 0s infinite;
  background-color: #fff;
  height: 10px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 10px;
}
.cube-transition > div:last-child {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.semi-circle-spin {
  height: 35px;
  overflow: hidden;
  position: relative;
  width: 35px;
}
.semi-circle-spin > div {
  -webkit-animation: spin-rotate 0.6s linear 0s infinite;
  animation: spin-rotate 0.6s linear 0s infinite;
  background-image: -webkit-linear-gradient(
    transparent,
    transparent 70%,
    #fff 0,
    #fff
  );
  background-image: linear-gradient(transparent, transparent 70%, #fff 0, #fff);
  border-radius: 100%;
  border-width: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}
@-webkit-keyframes bar-progress {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
  }
  25% {
    opacity: 0.7;
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(20%) scaleY(20%);
    transform: translateX(20%) scaleY(20%);
  }
  75% {
    opacity: 0.7;
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
  }
}
@keyframes bar-progress {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
  }
  25% {
    opacity: 0.7;
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(20%) scaleY(20%);
    transform: translateX(20%) scaleY(20%);
  }
  75% {
    opacity: 0.7;
    -webkit-transform: translateX(6%) scaleY(10%);
    transform: translateX(6%) scaleY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleY(20%);
    transform: scaleY(20%);
  }
}
.bar-progress {
  height: 12px;
  width: 30%;
}
.bar-progress > div {
  -webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93)
    infinite;
  animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
  background-color: #fff;
  border-radius: 10px;
  height: 12px;
  opacity: 1;
  position: relative;
  width: 20%;
}
@-webkit-keyframes bar-swing {
  0% {
    left: 0;
  }
  50% {
    left: 70%;
  }
  to {
    left: 0;
  }
}
@keyframes bar-swing {
  0% {
    left: 0;
  }
  50% {
    left: 70%;
  }
  to {
    left: 0;
  }
}
.bar-swing,
.bar-swing > div {
  height: 8px;
  width: 30%;
}
.bar-swing > div {
  -webkit-animation: bar-swing 1.5s infinite;
  animation: bar-swing 1.5s infinite;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
@-webkit-keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
  }
  to {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
  }
  to {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bar-swing-container {
  height: 8px;
  position: relative;
  width: 20%;
}
.bar-swing-container div:first-child {
  background-color: hsla(0, 0%, 100%, 0.2);
  border-radius: 10px;
  height: 12px;
  position: absolute;
  width: 100%;
}
.bar-swing-container div:nth-child(2) {
  -webkit-animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6)
    infinite;
  animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
  background-color: #fff;
  border-radius: 10px;
  height: 8px;
  margin: 2px 2px 0;
  position: absolute;
  width: 30%;
}
*,
:after,
:before {
  box-sizing: border-box;
}
blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}
a,
a:active,
a:visited {
  color: inherit;
  text-decoration: none;
}
a:active > .js-cursor,
a:visited > .js-cursor,
a > .js-cursor {
  transform: scale(0.7);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}
img,
picture {
  display: block;
  min-height: 1px;
}
button,
input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  padding: 0;
}
input[type="radio"] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 0;
  margin: 0;
  pointer-events: none;
  width: 0;
}
button,
input[type="submit"] {
  appearance: none;
  cursor: pointer;
}
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
.font-futura,
.section-about-blog .slider .blog-card .title {
  font-family: Futura PT;
}
.font-futura-demi {
  font-family: Futura PT Demi;
}
.font-nexa,
.footer .copyright-wrap .copyright,
.form-subscribe .title,
body {
  font-family: Nexa;
}
@font-face {
  font-family: Nexa;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Nexa/nexa_book.ttf) format("truetype");
}
@font-face {
  font-family: Nexa;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Nexa/nexa_bold.ttf) format("truetype");
}
@font-face {
  font-family: Nexa;
  font-style: italic;
  font-weight: 300;
  src: url(../fonts/Nexa/nexa_book-italic.ttf) format("truetype");
}
@font-face {
  font-family: Futura PT;
  font-style: normal;
  font-weight: 300;
  src:
    url(../fonts/FuturaPT/FuturaPT-Light.ttf) format("truetype"),
    url(../fonts/TTFirsNeue/FuturaPT-Light.woff) format("woff"),
    url(../fonts/TTFirsNeue/FuturaPT-Light.woff2) format("woff2");
}
@font-face {
  font-family: Futura PT;
  font-style: normal;
  font-weight: 400;
  src:
    url(../fonts/FuturaPT/FuturaPT-Book.ttf) format("truetype"),
    url(../fonts/TTFirsNeue/FuturaPT-Book.woff) format("woff"),
    url(../fonts/TTFirsNeue/FuturaPT-Book.woff2) format("woff2");
}
@font-face {
  font-family: Futura PT;
  font-style: normal;
  font-weight: 500;
  src:
    url(../fonts/FuturaPT/FuturaPT-Medium.ttf) format("truetype"),
    url(../fonts/TTFirsNeue/FuturaPT-Medium.woff) format("woff"),
    url(../fonts/TTFirsNeue/FuturaPT-Medium.woff2) format("woff2");
}
@font-face {
  font-family: Futura PT Demi;
  font-style: normal;
  font-weight: 500;
  src:
    url(../fonts/FuturaPT/FuturaPT-Demi.ttf) format("truetype"),
    url(../fonts/TTFirsNeue/FuturaPT-Demi.woff) format("woff"),
    url(../fonts/TTFirsNeue/FuturaPT-Demi.woff2) format("woff2");
}
@font-face {
  font-family: Futura PT;
  font-style: normal;
  font-weight: 700;
  src:
    url(../fonts/FuturaPT/FuturaPT-Bold.ttf) format("truetype"),
    url(../fonts/TTFirsNeue/FuturaPT-Bold.woff) format("woff"),
    url(../fonts/TTFirsNeue/FuturaPT-Bold.woff2) format("woff2");
}
@font-face {
  font-family: Futura PT;
  font-style: normal;
  font-weight: 900;
  src:
    url(../fonts/FuturaPT/FuturaPT-Heavy.ttf) format("truetype"),
    url(../fonts/TTFirsNeue/FuturaPT-Heavy.woff) format("woff"),
    url(../fonts/TTFirsNeue/FuturaPT-Heavy.woff2) format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/Inter/Inter-Light.ttf) format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Inter/Inter-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  src: url(../fonts/Inter/Inter-Medium.ttf) format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/Inter/Inter-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Inter/Inter-Bold.ttf) format("truetype");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/Inter/Inter-ExtraBold.ttf) format("truetype");
}
.cursor {
  height: 25px;
  left: 0;
  mix-blend-mode: difference;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition-duration: 0.3s;
  transition-property: transform;
  width: 25px;
  will-change: top, left, mix-blend-mode, transform;
  z-index: 9999999999;
}
.cursor,
.cursor .cursor-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
.cursor .cursor-wrapper {
  height: 100%;
  position: relative;
  width: 100%;
}
.cursor.white {
  mix-blend-mode: unset;
}
.cursor.hide {
  display: none;
}
.cursor.hover-on {
  transform: scale(0.7);
}
.cursor.hover-on-anim {
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-name: scale;
  animation-timing-function: ease-in-out;
}
.cursor .color {
  fill: #fff;
}
.cursor .cursor-color {
  background-color: #fff;
  border-radius: 50%;
  bottom: auto;
  height: 100%;
  left: 0;
  position: absolute;
  right: auto;
  top: 0;
  transition-duration: 0.2s;
  transition-property: transform, background-color, opacity;
  transition-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
  width: 100%;
}
.cursor .cursor-text {
  color: #f5f5f5;
  filter: invert(1);
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  position: absolute;
  transition-delay: 0.1s;
  transition-duration: 0.2s;
  transition-property: transform, color, opacity, filter;
  transition-timing-function: ease;
}
.cursor .custom-cursor .cursor-img-list {
  display: flex;
  height: 100%;
  transition-duration: 0.2s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
  width: 100%;
}
@keyframes scale {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  to {
    transform: scale(0.7);
  }
}
.cursor-switcher-wrap {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 16px;
}
@media (max-width: 1280px) {
  .cursor-switcher-wrap {
    flex-grow: 1;
    flex-shrink: 0;
  }
}
@media (max-width: 1024px) {
  .cursor-switcher-wrap {
    display: none;
  }
}
.cursor-switcher-wrap .cursor-switcher {
  position: relative;
}
.cursor-switcher-wrap .cursor-switcher .wrap {
  align-items: center;
  align-self: center;
  border: 2px solid #b1bc00;
  border-radius: 98px;
  display: flex;
  flex-direction: row;
  gap: 4px;
  height: 30px;
  justify-content: center;
  padding: 3px;
  position: relative;
  transition-duration: 0.3s;
  transition-property: border;
  transition-timing-function: ease-in-out;
}
.cursor-switcher-wrap .cursor-switcher .wrap .swither-btn {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 20px;
  justify-content: center;
  transition-duration: 0.3s;
  transition-property: background-color;
  transition-timing-function: ease-in-out;
  width: 20px;
}
.cursor-switcher-wrap .cursor-switcher .wrap .swither-btn svg circle,
.cursor-switcher-wrap .cursor-switcher .wrap .swither-btn svg path {
  fill: #b1bc00;
  transition-duration: 0.3s;
  transition-property: fill;
  transition-timing-function: ease-in-out;
}
.cursor-switcher-wrap .cursor-switcher .wrap .swither-btn-default svg circle,
.cursor-switcher-wrap .cursor-switcher .wrap .swither-btn-default svg path {
  fill: #fff;
}
.cursor-switcher-wrap .cursor-switcher .wrap .swither-btn-circle {
  height: 21px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition-duration: 0.3s;
  transition-property: top, left;
  transition-timing-function: ease-in-out;
  width: 20px;
  z-index: -1;
}
.cursor-switcher-wrap .cursor-switcher.active .wrap {
  border: 2px solid #929292;
}
.cursor-switcher-wrap .cursor-switcher.active .wrap .swither-btn svg circle,
.cursor-switcher-wrap .cursor-switcher.active .wrap .swither-btn svg path {
  fill: #929292;
}
.cursor-switcher-wrap
  .cursor-switcher.active
  .wrap
  .swither-btn-custom
  svg
  circle,
.cursor-switcher-wrap
  .cursor-switcher.active
  .wrap
  .swither-btn-custom
  svg
  path {
  fill: #fff;
}
.cursor-switcher-wrap .cursor-switcher.active .wrap .swither-btn-circle {
  left: 27px;
}
.cursor-switcher-wrap
  .cursor-switcher.active
  .wrap
  .swither-btn-circle
  svg
  circle,
.cursor-switcher-wrap
  .cursor-switcher.active
  .wrap
  .swither-btn-circle
  svg
  path {
  fill: #000;
}
.cursor-switcher-wrap .cursor-switcher .cursor-swither-tooltip {
  align-items: center;
  background-color: #fff;
  border: 2px solid #b1bc00;
  border-radius: 10px;
  display: flex;
  font-size: 11.5px;
  font-weight: 300;
  height: 50px;
  justify-content: center;
  line-height: 1;
  opacity: 1;
  padding: 5px 5px 10px 10px;
  position: absolute;
  right: calc(100% - 20px);
  top: calc(100% + 15px);
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  width: 110px;
}
.cursor-switcher-wrap .cursor-switcher .cursor-swither-tooltip:after,
.cursor-switcher-wrap .cursor-switcher .cursor-swither-tooltip:before {
  border: 11px solid rgba(0, 0, 0, 0);
  border-right: 16px solid #b1bc00;
  content: "";
  position: absolute;
  right: -2px;
  top: -13px;
}
.cursor-switcher-wrap .cursor-switcher .cursor-swither-tooltip:after {
  border-right: 15px solid #fff;
  right: 0;
  top: -10px;
}
.cursor-switcher-wrap .cursor-switcher .cursor-swither-tooltip.hide {
  opacity: 0;
  pointer-events: none;
}
.hideCursor *,
.hideCursor:after,
.hideCursor:before {
  cursor: none !important;
}
.btn,
button {
  font-weight: 400;
}
.btn {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  transition-duration: 0.3s;
  transition-property: color, background-color;
}
.btn .text {
  font-weight: 400;
}
.loading-btn {
  position: relative;
}
.loading-btn .text {
  margin: 0 !important;
}
.loading-btn .preloader {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: scale(0.5);
  width: 100%;
}
.loading-btn .preloader,
.loading-btn .text {
  transition-duration: 0.1s;
  transition-property: opacity;
}
.add-basket-form.loading .loading-btn,
.form-count.loading .loading-btn,
.form.loading .loading-btn,
.loading-btn.loading {
  pointer-events: none;
}
.add-basket-form.loading .loading-btn .preloader,
.form-count.loading .loading-btn .preloader,
.form.loading .loading-btn .preloader,
.loading-btn.loading .preloader {
  opacity: 1;
}
.add-basket-form.loading .loading-btn .text,
.form-count.loading .loading-btn .text,
.form.loading .loading-btn .text,
.loading-btn.loading .text {
  opacity: 0;
}
a.btn-circle,
button.btn-circle {
  background-color: #000;
  border-color: #fff;
  border-radius: 50%;
  border-width: 2px;
  color: #fff;
  font-size: 20px;
  transition-duration: 0.3s;
  transition-property: color, background;
}
a.btn-circle.btn-green,
a.btn-circle:hover,
button.btn-circle.btn-green,
button.btn-circle:hover {
  background-color: #b1bc00;
  color: #000;
}
a.btn-circle.btn-green:hover,
button.btn-circle.btn-green:hover {
  background-color: #000;
  color: #fff;
}
a.btn-circle.btn-white,
button.btn-circle.btn-white {
  background-color: #fff;
  border: 1px solid #b1bc00;
  color: #000;
}
a.btn-circle.btn-white:hover,
button.btn-circle.btn-white:hover {
  background-color: #b1bc00;
  color: #fff;
}
a.btn-circle.btn-black,
button.btn-circle.btn-black {
  background-color: #000;
  color: #fff;
}
a.btn-circle.btn-black:hover,
button.btn-circle.btn-black:hover {
  background-color: #b1bc00;
  color: #000;
}
.btn-white {
  background-color: #fff;
  border: 1px solid #b1bc00;
  color: #000;
}
.btn-white:hover {
  background-color: #b1bc00;
  color: #fff;
}
.btn-black,
a.btn-black,
button.btn-black {
  background-color: #000;
  color: #fff;
}
.btn-black:not(:last-child),
a.btn-black:not(:last-child),
button.btn-black:not(:last-child) {
  margin-right: 20px;
}
.btn-black:hover,
.btn-green,
a.btn-black:hover,
button.btn-black:hover {
  background-color: #b1bc00;
  color: #000;
}
.btn-green:hover {
  background-color: #000;
  color: #fff;
}
.other-link {
  color: #963ebd;
  text-decoration: underline;
}
.other-link:hover {
  opacity: 0.6;
}
.form .checkbox,
.form .input-container,
.form .input-wrap {
  position: relative;
}
.form .checkbox.has-error .alert-input-text,
.form .input-container.has-error .alert-input-text,
.form .input-wrap.has-error .alert-input-text {
  bottom: -24px;
  height: 23px;
  opacity: 1;
}
.form .alert-input-text {
  bottom: -15px;
  color: #e3000f;
  font-size: 14px;
  height: 0;
  opacity: 0;
  padding-left: 2px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: bottom, opacity, height;
}
.form .iti__flag-container {
  display: none;
}
.form-subscribe {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 35px;
}
.form-subscribe .title {
  display: block;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 25px;
}
.js-render-wrap {
  position: relative;
}
.js-render-wrap:before {
  background-color: hsla(0, 0%, 100%, 0.6);
  content: "";
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.js-render-wrap.loading {
  pointer-events: none;
}
.js-render-wrap.loading:before {
  display: block;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: -5px;
}
.breadcrumbs .breadcrumbs-item {
  margin-top: 5px;
}
.breadcrumbs .breadcrumbs-link {
  align-items: center;
  display: flex;
  font-size: 20px;
  line-height: 24px;
  margin-right: 15px;
  transition-duration: 0.3s;
  transition-property: color;
}
.breadcrumbs .breadcrumbs-link:hover {
  color: #963ebd;
}
.breadcrumbs .breadcrumbs-link:before {
  content: url(../img/svg/breadcrumbs-arrow2.svg);
  display: block;
  margin-right: 15px;
  width: 5px;
}
.breadcrumbs .breadcrumbs-item:first-child .breadcrumbs-link:before {
  content: none;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 25px;
  }
}
@media (max-width: 575.9px) {
  .breadcrumbs .breadcrumbs-item {
    margin-top: 8px;
  }
}
.select-default {
  position: relative;
}
.select-default .select-current {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding-right: 22px;
  position: relative;
  transition-duration: 0.2s;
  transition-property: opacity;
}
.select-default .select-current:hover {
  opacity: 0.6;
}
.select-default .select-current:after {
  background: url(../img/svg/select-arrow.svg) no-repeat 50% / contain;
  content: "";
  height: 7px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-20%);
  transition-duration: 0.2s;
  transition-property: transform;
  width: 12px;
}
.select-default .select-list {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  left: 0;
  min-width: max-content;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(20px);
  transition-duration: 0.3s;
  transition-property: transform, opacity;
  z-index: 1;
}
.select-default .select-option {
  color: #777;
  cursor: pointer;
  font-size: 14px;
  padding: 10px;
}
.select-default .select-option.selected {
  color: #000;
}
.select-default .hidden {
  display: none;
}
.select-default.active .select-current:after {
  transform: rotate(180deg) translateY(20%);
}
.select-default.active .select-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.select-init select {
  display: none;
}
.select-custom-wrap {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.select-custom-wrap .label-wrap {
  color: #000;
  font-family: Futura PT;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-transform: lowercase;
}
.select-custom-wrap .size-select-list {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px 10px;
  justify-content: flex-start;
}
.select-custom-wrap .size-select-list .list-item {
  align-items: center !important;
  background: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  color: #000;
  cursor: pointer;
  display: flex;
  font-family: Futura PT;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 26px;
  justify-content: center !important;
  line-height: 21px;
  min-width: 26px;
  padding: 4px;
  text-transform: lowercase;
  transition-duration: 0.15s;
  transition-property: border, opacity;
  transition-timing-function: ease-in-out;
}
.select-custom-wrap .size-select-list .list-item.disabled {
  opacity: 0.7;
  pointer-events: none;
  user-select: none;
}
.select-custom-wrap .size-select-list .list-item.selected {
  pointer-events: none;
}
.select-custom-wrap .size-select-list .list-item.selected,
.select-custom-wrap .size-select-list .list-item:hover {
  border: 1px solid #000;
}
.select-custom-wrap .color-select-list {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px 10px;
  justify-content: flex-start;
}
.select-custom-wrap .color-select-list .list-item {
  align-items: center !important;
  background: #fff;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  height: 22px;
  justify-content: center !important;
  overflow: hidden;
  position: relative;
  transition-duration: 0.15s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  width: 22px;
}
.select-custom-wrap .color-select-list .list-item:before {
  align-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  display: flex;
  inset: 2px;
  justify-content: center;
  position: absolute;
  z-index: 99;
}
.select-custom-wrap .color-select-list .list-item img {
  border-radius: 50%;
  height: 14px;
  object-fit: color;
  transition-duration: 0.15s;
  transition-property: height, width;
  transition-timing-function: ease-in-out;
  width: 14px;
}
.select-custom-wrap .color-select-list .list-item.disabled {
  display: none;
}
.select-custom-wrap .color-select-list .list-item.selected {
  pointer-events: none;
}
.select-custom-wrap .color-select-list .list-item.selected img,
.select-custom-wrap .color-select-list .list-item:hover img {
  height: 22px;
  width: 22px;
}
.color-select-wrap {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  left: 26px;
  position: absolute;
  top: 35px;
  user-select: none;
  z-index: 1;
}
.color-select-wrap .arrow-icon {
  bottom: -5px;
  cursor: pointer;
  height: 22px;
  position: absolute;
  transform: translateY(100%) rotate(90deg);
  transition-duration: 0.15s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  width: 22px;
}
.color-select-wrap .arrow-icon:hover {
  opacity: 0.7;
}
.color-select-wrap .arrow-icon svg {
  height: 22px;
  width: 22px;
}
.color-select-wrap .arrow-icon.top {
  bottom: unset;
  top: -5px;
  transform: translateY(-100%) rotate(-90deg);
}
.color-select-wrap .arrow-icon.hide {
  opacity: 0;
  pointer-events: none;
}
.color-select-wrap .color-select-list {
  -ms-overflow-style: none;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  overflow: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.color-select-wrap .color-select-list::-webkit-scrollbar {
  display: none;
}
.color-select-wrap .color-select-list .list-item {
  align-items: center !important;
  background: #fff;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 22px;
  justify-content: center !important;
  overflow: hidden;
  position: relative;
  transition-duration: 0.15s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  width: 22px;
}
.color-select-wrap .color-select-list .list-item:before {
  align-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  display: flex;
  inset: 2px;
  justify-content: center;
  position: absolute;
  z-index: 99;
}
.color-select-wrap .color-select-list .list-item img {
  border-radius: 50%;
  height: 14px;
  object-fit: color;
  transition-duration: 0.15s;
  transition-property: height, width;
  transition-timing-function: ease-in-out;
  width: 14px;
}
.color-select-wrap .color-select-list .list-item.disabled {
  display: none;
}
.color-select-wrap .color-select-list .list-item.selected {
  pointer-events: none;
}
.color-select-wrap .color-select-list .list-item.selected img,
.color-select-wrap .color-select-list .list-item:hover img {
  height: 22px;
  width: 22px;
}
@media (max-width: 768px) {
  .color-select-wrap {
    display: none;
  }
}
.color-select-wrap-mobile {
  display: none;
  left: unset;
  position: static;
  top: unset;
  z-index: unset;
}
.color-select-wrap-mobile .color-select-list {
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 1px;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .color-select-wrap-mobile {
    display: flex;
  }
}
.radio {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
}
.radio:hover .holder {
  border-color: #000;
}
.radio .input {
  display: none;
}
.radio .holder {
  align-items: center;
  background-color: #fff;
  border: 2px solid #929292;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 14px;
  justify-content: center;
  position: relative;
  transition-duration: 0.3s;
  transition-property: border-color;
  transition-timing-function: ease;
  width: 14px;
}
.radio .holder:after {
  background-color: #000;
  content: "";
  flex-shrink: 0;
  height: 6px;
  opacity: 0;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: ease;
  width: 6px;
}
.radio .text {
  font-size: 18px;
  line-height: 23px;
  margin-left: 10px;
}
.radio .input:checked + .holder:after {
  opacity: 1;
}
.radio .input[disabled] {
  pointer-events: none;
}
.radio .input[disabled] + .holder {
  opacity: 0.5;
  pointer-events: none;
}
.radio.radio-gradi .input:checked + .holder {
  border: none;
}
.radio.radio-gradi .input:checked + .holder:before {
  background-image: linear-gradient(225deg, #fecc00 -28.71%, #de373a 85.17%);
  border-radius: 50%;
  content: "";
  display: block;
  height: calc(100% + 2px);
  left: -1px;
  position: absolute;
  top: -1px;
  width: calc(100% + 2px);
  z-index: -1;
}
.radio.radio-gradi .input:checked + .holder:after {
  background-image: linear-gradient(225deg, #fecc00 -28.71%, #de373a 85.17%);
}
.checkbox {
  align-items: center;
  cursor: pointer;
  display: flex;
  position: relative;
}
.checkbox .input {
  display: none;
}
.checkbox .holder {
  align-items: center;
  background-color: #fff;
  border: 1px solid #bbb;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  position: relative;
  transition-duration: 0.3s;
  transition-property: border-color;
  transition-timing-function: ease;
  width: 20px;
}
.checkbox .holder:after {
  background-image: url(../img/svg/checked-icon.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  flex-shrink: 0;
  height: 12px;
  opacity: 0;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: ease;
  width: 12px;
}
.checkbox .text {
  font-size: 18px;
  line-height: 100%;
  margin-left: 10px;
}
.checkbox .input:checked + .holder:after {
  opacity: 1;
}
.checkbox input[disabled] {
  pointer-events: none;
}
.checkbox input[disabled] + .holder {
  opacity: 0.5;
  pointer-events: none;
}
.checkbox input:not([disabled]):hover + .holder {
  border-color: #000;
}
.checkbox .alert-input-text {
  background: #fff;
  left: 0;
  position: absolute;
  top: 100%;
}
.policy-checkbox .text {
  font-size: 18px;
  margin-bottom: unset;
}
.policy-checkbox .holder {
  border-color: #000;
  height: 24px;
  width: 24px;
}
.policy-checkbox .holder:after {
  background-image: url(../img/svg/checked-policy-icon.svg);
  bottom: 3px;
}
.policy-checkbox .policy-button {
  cursor: pointer;
  font-weight: 300;
  line-height: normal;
  text-decoration: underline;
  transition-duration: 0.3s;
  transition-property: color;
}
.policy-checkbox .policy-button:hover {
  color: #b1bc00;
}
.checkbox--outlined.checkbox--hits .text {
  border: 2px solid #b0be36;
  color: #b0be36;
  transition-duration: 0.15s;
  transition-property: background-color, color;
  transition-timing-function: ease-in-out;
}
.checkbox--outlined.checkbox--hits .text:hover {
  background-color: #b0be36;
  color: #fff;
}
.checkbox--outlined.checkbox--hits.c-sale .text {
  border-color: #7bc5d7;
  color: #7bc5d7;
}
.checkbox--outlined.checkbox--hits.c-sale .text:hover {
  background-color: #7bc5d7;
  color: #fff;
}
.checkbox--outlined.checkbox--hits.c-defect .text {
  border-color: #f75757;
  color: #f75757;
}
.checkbox--outlined.checkbox--hits.c-defect .text:hover {
  background-color: #f75757;
  color: #fff;
}
.checkbox--outlined.checkbox--novelty {
  margin-right: 20px !important;
}
.checkbox--outlined.checkbox--novelty .text {
  border: 2px solid #963ebd;
  color: #963ebd;
  transition-duration: 0.15s;
  transition-property: background-color, color;
  transition-timing-function: ease-in-out;
}
.checkbox--outlined.checkbox--novelty .text:hover {
  background-color: #963ebd;
  color: #fff;
}
.checkbox--outlined .holder {
  display: none;
}
.checkbox--outlined .text {
  border: 2px solid #000;
  border-radius: 98px;
  display: flex;
  font-family: Nexa;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  height: 24px;
  line-height: 18px;
  margin: 0;
  padding: 1px 10px;
  text-align: center;
  vertical-align: middle;
  width: fit-content;
}
.slider-button-next {
  transform: scaleX(-1);
}
.slider:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
}
.slider:not(.swiper-initialized) .swiper-slide {
  flex-shrink: 0;
}
.slider .slider-button:after,
.slider .slider-button:before,
.swiper .slider-button:after,
.swiper .slider-button:before {
  content: "" !important;
}
.slider .slider-button:before,
.swiper .slider-button:before {
  content: "";
  height: 200%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
}
.slider-button:not(.swiper-button-disabled) img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(99%) saturate(750%)
    hue-rotate(23deg) brightness(89%) contrast(98%) !important;
}
.dropdown {
  position: relative;
  white-space: nowrap;
}
.dropdown.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.dropdown .dropdown-trigger {
  align-items: center;
  cursor: pointer;
  display: flex;
  transition: opacity 0.3s ease;
}
.dropdown .dropdown-trigger .text {
  font-size: inherit;
  font-weight: inherit;
  margin-right: 5px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown .dropdown-trigger .icon {
  display: flex;
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.3s ease;
}
.dropdown .dropdown-trigger .icon img {
  height: 5px;
  width: 7px;
}
.dropdown .dropdown-trigger:hover {
  opacity: 0.6;
}
.dropdown .dropdown-list {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  left: 0;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(20px);
  transition-duration: 0.3s;
  transition-property: transform, opacity;
  z-index: 2;
}
.dropdown .dropdown-list .list-item {
  cursor: pointer;
}
.dropdown .dropdown-list .list-item:not(:last-child) {
  margin-bottom: 10px;
}
.dropdown .dropdown-list .search-input {
  align-items: center;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  margin: -20px -20px 20px;
  padding: 10px;
  width: calc(100% + 40px);
}
.dropdown .dropdown-list .search-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: inherit;
  font-weight: inherit;
  line-height: 150%;
}
.dropdown .dropdown-list .search-input .input {
  color: #000;
  font-size: inherit;
  font-weight: inherit;
  line-height: 150%;
}
.dropdown .dropdown-list .search-input .icon {
  margin-left: 10px;
}
.dropdown .dropdown-list .search-input .icon:hover {
  opacity: 0.5;
  transition: 0.2s;
}
.dropdown .dropdown-list .checkbox,
.dropdown .dropdown-list .radio,
.dropdown .dropdown-list .toggle {
  cursor: pointer;
}
.dropdown.active .dropdown-trigger .icon {
  transform: rotate(180deg);
}
.dropdown.active .dropdown-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.tabs-wrap .tabs-item {
  display: none;
}
.tabs-wrap .tabs-item.active {
  display: block;
}
.accord .accord-head,
.accord .accord-trigger {
  cursor: pointer;
}
.accord.collapsing,
.accord.disabled {
  pointer-events: none;
}
.accord.collapse:not(.active) > .accord-body,
.accord:not(.active):not(.accord-inited) > .accord-body {
  display: none;
}
.accord.collapsing > .accord-body {
  height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: height 0.6s ease;
}
.accord.collapsing > .long-accord {
  height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: height 1s ease;
}
html {
  scroll-behavior: smooth;
}
body {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.27;
  pointer-events: all !important;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: inherit;
}
body.compensate-for-scrollbar {
  overflow: hidden;
}
img.swiper-lazy,
img[data-src] {
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
}
img.swiper-lazy.lazyloaded,
img.swiper-lazy.swiper-lazy-loaded,
img[data-src].lazyloaded,
img[data-src].swiper-lazy-loaded {
  opacity: 1;
}
.tablebodytext {
  display: none !important;
}
[id^="wait_comp_"] {
  display: none !important;
}
.site-wrap {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.main {
  flex-grow: 1;
  line-height: 1.27;
  padding-block-start: 112px;
  z-index: 1;
}
@media (max-width: 1280px) {
  .main {
    padding-block-start: 50px;
  }
}
.gradient {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.3), #b1bc00);
  bottom: 0;
  height: 946px;
  left: 0;
  position: absolute;
  width: 100%;
}
input[type="search"] {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
}
.container {
  margin: 0 auto;
  max-width: 1660px;
  padding: 0 90px;
  width: 100%;
}
@media (max-width: 575.9px) {
  .container {
    padding: 0 20px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.col {
  width: 100%;
}
.editor-content.policy a,
.footer .soc-icon,
.footer .terms-wrap .link,
.header .form .btn,
.header .right-part .basket-btn,
.header .right-part .text-wrap .email,
.header .right-part .text-wrap .tel,
.header .search-form-wrap .btn,
.hov-opacity,
.mobile-menu .close-btn,
.mobile-menu .contacts-wrap .link,
.mobile-menu .menu-link,
.mobile-menu .submenu-link,
.modal.modal-policy .text-block a,
.section-about-blog .slider .blog-card .text-trigger,
.section-about-blog .slider-wrap .slider-button,
.section-about-vacancies .accord-head,
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .mas,
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .min,
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .price
  .del,
.section-block-solutions .slider-wrap .swiper-slide,
.section-brief-form .brief .add-block-btn,
.section-brief-form .brief .sticker-file .add-file,
.section-catalog .filter-btn,
.section-catalog .form .btn,
.section-home-cases .cases-card,
.section-home-cases .cases-video,
.section-home-catalog .slider .slider-button,
.section-home-slider-banner .slider-button,
.section-individual-gallery .gallery .slider-button,
.section-individual-services .services-list-mob .services-title,
.section-portfolio-cases .cases-item,
.section-search-head .form .btn,
.section-slider-goods .swiper-button-next,
.section-slider-goods .swiper-button-prev,
.section-slider-partners .partners-slider .slider-button img,
.section-solutions .solutions-item,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .total-info-subtext
  .oferta {
  transition: opacity 0.3s ease;
}
.editor-content.policy a:not(:disabled):hover,
.footer .soc-icon:not(:disabled):hover,
.footer .terms-wrap .link:not(:disabled):hover,
.header .form .btn:not(:disabled):hover,
.header .right-part .basket-btn:not(:disabled):hover,
.header .right-part .text-wrap .email:not(:disabled):hover,
.header .right-part .text-wrap .tel:not(:disabled):hover,
.header .search-form-wrap .btn:not(:disabled):hover,
.hov-opacity:not(:disabled):hover,
.mobile-menu .close-btn:not(:disabled):hover,
.mobile-menu .contacts-wrap .link:not(:disabled):hover,
.mobile-menu .menu-link:not(:disabled):hover,
.mobile-menu .submenu-link:not(:disabled):hover,
.modal.modal-policy .text-block a:not(:disabled):hover,
.section-about-blog .slider .blog-card .text-trigger:not(:disabled):hover,
.section-about-blog .slider-wrap .slider-button:not(:disabled):hover,
.section-about-vacancies .accord-head:not(:disabled):hover,
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .mas:not(:disabled):hover,
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .min:not(:disabled):hover,
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .price
  .del:not(:disabled):hover,
.section-block-solutions .slider-wrap .swiper-slide:not(:disabled):hover,
.section-brief-form .brief .add-block-btn:not(:disabled):hover,
.section-brief-form .brief .sticker-file .add-file:not(:disabled):hover,
.section-catalog .filter-btn:not(:disabled):hover,
.section-catalog .form .btn:not(:disabled):hover,
.section-home-cases .cases-card:not(:disabled):hover,
.section-home-cases .cases-video:not(:disabled):hover,
.section-home-catalog .slider .slider-button:not(:disabled):hover,
.section-home-slider-banner .slider-button:not(:disabled):hover,
.section-individual-gallery .gallery .slider-button:not(:disabled):hover,
.section-individual-services
  .services-list-mob
  .services-title:not(:disabled):hover,
.section-portfolio-cases .cases-item:not(:disabled):hover,
.section-search-head .form .btn:not(:disabled):hover,
.section-slider-goods .swiper-button-next:not(:disabled):hover,
.section-slider-goods .swiper-button-prev:not(:disabled):hover,
.section-slider-partners
  .partners-slider
  .slider-button
  img:not(:disabled):hover,
.section-solutions .solutions-item:not(:disabled):hover,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .total-info-subtext
  .oferta:not(:disabled):hover {
  opacity: 0.6;
}
.design-gallery .gallery-item .img,
.img-in-wrap,
.modal.modal-product-slider .modal-content .bottom-modal-slider .img-wrap .img,
.product-card .img-wrap .img,
.section-blogs .blogs-item .img-wrap .img,
.section-cases .img-wrap .img,
.section-individual-services .img,
.section-individual-services .merch-wrap .line .img,
.section-individual-services .services-list-mob .img,
.section-other-cases .img-wrap .img,
.section-portfolio-cases .cases-item .img-wrap .img,
.section-product .img-wrap .img,
.section-solutions .slider-wrap .img-wrap .img,
.section-solutions .solutions-item .img,
.section-we-can .img-wrap .img {
  height: 100%;
  left: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-title {
  font-size: 132px;
  font-weight: 500;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 77px;
    line-height: 1.05;
  }
}
.underlined {
  position: relative;
}
.underlined .line {
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
}
.section {
  padding: 40px 0;
}
@media (max-width: 575.9px) {
  .section {
    padding: 24px 0;
  }
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}
.tag .color-tag {
  border: 2px solid #000;
  border-radius: 98px;
  display: flex;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  height: 24px;
  line-height: 18px;
  margin: 0;
  padding: 1px 10px;
  text-align: center;
  vertical-align: middle;
  width: fit-content;
}
.tag .tag--hits {
  border: 2px solid #b0be36;
  color: #b0be36;
}
.tag .tag--novelty {
  border: 2px solid #963ebd;
  color: #963ebd;
}
.tag .tag--sale {
  border: 2px solid #7bc5d7;
  color: #7bc5d7;
}
.offer-status {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}
.offer-status .status {
  border: 2px solid #000;
  border-radius: 98px;
  display: flex;
  font-family: Futura PT;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  height: 24px;
  line-height: 18px;
  margin: 0;
  padding: 1px 10px;
  text-align: center;
  vertical-align: middle;
  width: fit-content;
}
.offer-status .status--hits {
  border: 2px solid #b0be36;
  color: #b0be36;
}
.offer-status .status--novelty {
  border: 2px solid #963ebd;
  color: #963ebd;
}
.offer-status .c-sale {
  border: 2px solid #7bc5d7;
  color: #7bc5d7;
}
.offer-status .c-defect {
  border: 2px solid #f75757;
  color: #f75757;
}
.product-card .product-status {
  background: #fff;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(10px, -10px);
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  z-index: 99999;
}
.product-card .product-status .status {
  border: 2px solid #000;
  border-radius: 98px;
  display: flex;
  font-family: Nexa;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  height: 24px;
  line-height: 18px;
  margin: 0;
  padding: 1px 10px;
  text-align: center;
  vertical-align: middle;
  width: fit-content;
}
.product-card .product-status .status:not(:last-child) {
  margin-bottom: 5px;
}
.product-card .product-status .status--hits {
  border: 2px solid #b0be36;
  color: #b0be36;
}
.product-card .product-status .status--novelty {
  border: 2px solid #963ebd;
  color: #963ebd;
}
.product-card .product-status .c-sale {
  border: 2px solid #7bc5d7;
  color: #7bc5d7;
}
.product-card .product-status .c-defect {
  border: 2px solid #f75757;
  color: #f75757;
}
.product-card:hover .product-status {
  opacity: 1;
  z-index: 99999;
}
.mobile-menu {
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  height: 100%;
  left: 0;
  line-height: 150%;
  overflow: hidden;
  padding: 20px 20px 40px;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition-duration: 0.3s;
  transition-property: transform;
  width: 100vw;
  z-index: 10;
}
.mobile-menu .close-btn {
  align-items: center;
  display: flex;
  line-height: 1;
  margin-bottom: 30px;
  padding: 5px 0;
}
.mobile-menu .close-btn .icon {
  height: 11px;
  margin-right: 20px;
  width: 6px;
}
.mobile-menu .close-btn .icon img,
.mobile-menu .close-btn .icon svg {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.mobile-menu .form.mob-search-form {
  border-bottom: 1px solid #929292;
  border-left: 0 solid #929292;
  display: flex;
  margin-bottom: 30px;
  margin-left: 0;
  padding-bottom: 10px;
  padding-left: 0;
}
.mobile-menu .form.mob-search-form .form-btn {
  height: 20px;
  margin-right: 21px;
  width: 20px;
}
.mobile-menu .form.mob-search-form .clear-btn {
  height: 15px;
  margin-left: 10px;
  width: 15px;
}
.mobile-menu .form.mob-search-form .clear-btn .img,
.mobile-menu .form.mob-search-form .form-btn .img {
  background-color: #fff;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.mobile-menu .form.mob-search-form .input-wrap {
  width: 100%;
}
.mobile-menu .form.mob-search-form .input {
  font-size: 20px;
  width: 100%;
}
.mobile-menu .form.mob-search-form .input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.mobile-menu .form.mob-search-form .input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background: url(../img/svg/clear-btn.svg) no-repeat 50% 50%;
  background-size: contain;
  display: block;
  height: 15px;
  opacity: 1;
  width: 15px;
}
.mobile-menu .menu-list {
  color: #000;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #aaa #eee;
  scrollbar-width: thin;
  width: 100%;
}
.mobile-menu .menu-list::-webkit-scrollbar {
  background-color: #eee;
  height: 3px;
  width: 2px;
}
.mobile-menu .menu-list::-webkit-scrollbar-thumb {
  background: #aaa;
}
.mobile-menu .menu-list .menu-item {
  color: #000;
  margin-bottom: 10px;
  margin-right: 0;
  opacity: 1;
  width: 100%;
}
.mobile-menu .menu-item.has-submenu .menu-link .icon {
  display: block;
}
.mobile-menu .accord[data-collapse="open"] .icon {
  transform: rotate(-180deg);
}
.mobile-menu .menu-link {
  align-items: center;
  color: #000;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  width: 100%;
}
.mobile-menu .menu-link .icon {
  display: none;
  height: 6px;
  transform: rotate(0);
  transition-duration: 0.3s;
  transition-property: transform;
  width: 11px;
}
.mobile-menu .menu-link .icon .img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.mobile-menu .submenu-item {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}
.mobile-menu .submenu-link {
  align-items: center;
  display: flex;
  padding: 7px 0;
}
.mobile-menu .catalog-icon {
  margin-right: 15px;
}
.mobile-menu .contacts-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 83px;
}
.mobile-menu .contacts-wrap .link {
  color: #963ebd;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 5px;
}
.mobile-menu .contacts-wrap .text {
  color: #929292;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
}
.mobile-filter {
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  height: 100%;
  left: 0;
  line-height: 150%;
  overflow: hidden;
  padding: 20px 20px 40px;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition-duration: 0.3s;
  transition-property: transform;
  width: 100vw;
  z-index: 10000;
}
.mobile-filter .close-btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  line-height: 1;
  margin-bottom: 20px;
  padding: 5px 0;
}
.mobile-filter .close-btn .icon {
  height: 11px;
  margin-right: 20px;
  width: 6px;
}
.mobile-filter .close-btn .icon img,
.mobile-filter .close-btn .icon svg {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.mobile-filter .close-btn .text {
  padding-bottom: 5px;
}
.mobile-filter .menu-list {
  color: #000;
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 141px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: #aaa #eee;
  scrollbar-width: thin;
  width: 100%;
}
.mobile-filter .menu-list::-webkit-scrollbar {
  background-color: #eee;
  height: 3px;
  width: 2px;
}
.mobile-filter .menu-list::-webkit-scrollbar-thumb {
  background: #aaa;
}
.mobile-filter .menu-list .menu-item {
  color: #000;
  margin-bottom: 10px;
  margin-right: 0;
  width: 100%;
}
.mobile-filter .menu-list .checkbox {
  margin-bottom: 10px;
  padding: 5px 0;
}
.mobile-filter .btn-wrap {
  max-width: 100px;
  padding-top: 10px;
}
.mobile-filter .btn-wrap .btn {
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 7.5px 0 9.5px;
}
.mobile-filter .btn-wrap .btn:not(:last-child) {
  margin-bottom: 10px;
}
.mobile-filter .menu-item.has-submenu .menu-link .icon {
  display: block;
}
.mobile-filter .accord[data-collapse="open"] .icon {
  transform: rotate(-180deg);
}
.mobile-filter .menu-link {
  align-items: center;
  color: #000;
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  width: 100%;
}
.mobile-filter .menu-link .icon {
  display: none;
  height: 6px;
  transform: rotate(0);
  transition-duration: 0.3s;
  transition-property: transform;
  width: 11px;
}
.mobile-filter .menu-link .icon .img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.mobile-filter .submenu-item {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}
.mobile-filter .submenu-link {
  padding: 7px 0;
}
.mobile-filter .contacts-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 83px;
}
.mobile-filter .contacts-wrap .link {
  color: #963ebd;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 5px;
}
.mobile-filter .contacts-wrap .text {
  color: #929292;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
}
.header.active-mob-menu .mobile-menu,
body.filter-is-open .mobile-filter {
  transform: translateX(0);
}
.pagination {
  margin-top: 50px;
}
.pagination .pag-item.prev svg {
  transform: rotate(180deg);
}
.pagination .pag-item.next,
.pagination .pag-item.prev {
  width: 200px;
}
.pagination .pag-item.next svg,
.pagination .pag-item.prev svg {
  min-height: 30px;
  min-width: 30px;
}
.pagination .pag-item.next svg path,
.pagination .pag-item.prev svg path {
  fill: #000;
  transition-duration: 0.3s;
  transition-property: fill;
  transition-timing-function: ease-in-out;
}
.pagination .pag-item.next svg:hover path,
.pagination .pag-item.prev svg:hover path {
  fill: #fff;
}
.pagination .pag-item.next.disabled,
.pagination .pag-item.prev.disabled {
  pointer-events: none;
}
.pagination .pag-item.next.disabled svg path,
.pagination .pag-item.prev.disabled svg path {
  fill: #efefef;
}
@media (max-width: 768px) {
  .pagination .pag-item.next,
  .pagination .pag-item.prev {
    min-width: 40px;
    width: fit-content;
  }
  .pagination .pag-item.next svg,
  .pagination .pag-item.prev svg {
    height: 20px;
    min-height: 20px;
    min-width: 20px;
    width: 20px;
  }
}
.pagination .pag {
  flex-wrap: nowrap;
}
.pagination .pag,
.pagination .pag-item {
  align-items: center;
  display: flex;
  justify-content: center;
}
.pagination .pag-item {
  background: #fff;
  border: 2px solid #c4c4c4;
  color: #000;
  font-family: Futura PT;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  height: 50px;
  line-height: 150%;
  margin: 0 9px;
  min-width: 60px;
  padding: 5px 21px;
  transition-duration: 0.3s;
  transition-property: background, border-color, color;
  transition-timing-function: ease-in-out;
  width: fit-content;
}
.pagination .pag-item:hover {
  background: #963ebd;
  border-color: #963ebd;
  color: #fff;
}
@media (max-width: 1024px) {
  .pagination .pag-item {
    margin: 0 4px;
  }
}
@media (max-width: 768px) {
  .pagination .pag-item {
    font-size: 16px;
    height: 40px;
    margin: 0 4px;
    min-width: 40px;
    padding: 3px 15px;
  }
}
.pagination .pag-item.active {
  background: #963ebd;
  border-color: #963ebd;
  color: #fff;
  pointer-events: none;
}
.pagination .pag-item.dots {
  display: none;
}
.pagination .pag-item.before-more:after {
  content: "...";
}
.pagination .pag-item.after-more:before {
  content: "...";
}
.product-card {
  background-color: #fff;
  justify-content: space-between;
  padding: 30px 30px 50px;
  position: relative;
  transition-duration: 0.3s;
  transition-property: box-shadow, margin-bottom;
}
.product-card,
.product-card .product-link {
  display: flex;
  flex-direction: column;
}
.product-card .img-wrap {
  margin-bottom: 35px;
  position: relative;
}
.product-card .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-card .title {
  font-size: 20px;
  font-weight: 400;
  line-height: 129%;
  margin-bottom: 5px;
}
.product-card .price {
  font-size: 25px;
  font-weight: 700;
  line-height: 129%;
  margin-bottom: 5px;
}
.product-card .articul,
.product-card .stock {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}
.product-card .min-circulation {
  font-size: 9px;
  line-height: 11px;
}
.product-card .hidden-part {
  align-items: center;
  display: flex;
  margin-top: 15px;
  opacity: 0;
  pointer-events: none;
  position: relative;
  transition: opacity 0.3s ease;
}
.product-card .circulation {
  border: 2px solid #c4c4c4;
  color: #929292;
  font-size: 16px;
  line-height: 19px;
  margin-right: 25px;
  padding: 5px 12px;
  width: calc(100% - 97px);
}
.product-card .circulation .input {
  width: 100%;
}
.product-card .to-cart {
  background-color: #b1bc00;
  color: #000;
  font-size: 16px;
  height: 33px;
  line-height: 33px;
  min-width: 97px;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  width: 97px;
}
.product-card .to-cart:hover {
  background-color: #000;
  color: #fff;
}
.product-card .slider-product .slide {
  pointer-events: none;
  user-select: none;
}
.product-card:hover {
  box-shadow: 0 0 7.15408px rgba(0, 0, 0, 0.25);
  z-index: 3;
}
.product-card:hover .hidden-part {
  opacity: 1;
  pointer-events: all;
}
.product-card:hover .js-slider-product .swiper-scrollbar {
  opacity: 1;
}
.product-card .js-slider-product {
  display: flex;
  max-width: 100%;
  padding: 0 !important;
  position: relative;
  width: 100%;
}
.product-card .js-slider-product .swiper-scrollbar {
  bottom: 16px;
  height: 3px;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card .js-slider-product:hover .swiper-scrollbar {
  opacity: 1;
}
.section-slider-goods .swiper-slide {
  padding-bottom: 87px;
}
.section-slider-goods .swiper-slide .product-card {
  margin-bottom: -87px;
}
@media only screen and (max-width: 768px) {
  .product-card .js-slider-product .swiper-scrollbar {
    height: 3px;
    margin-top: 3px;
    opacity: 1;
  }
  .product-card {
    border: 1px solid #eee;
    padding: 30px 30px 66px;
  }
  .product-card .stock {
    display: block;
    margin-bottom: 35px;
  }
  .product-card .hidden-part {
    bottom: unset;
    left: unset;
    margin-top: 10px;
    opacity: 1;
    pointer-events: all;
    position: relative;
    right: unset;
    top: unset;
  }
  .product-card .circulation {
    padding: 4px 12px 5px;
  }
}
@media only screen and (max-width: 630px) {
  .product-card {
    border: 0;
    padding: 10px;
  }
  .product-card .hidden-part {
    flex-direction: column;
  }
  .product-card .stock {
    margin-bottom: 10px;
  }
  .product-card .circulation {
    margin-right: 0;
    width: 100%;
  }
  .product-card .to-cart {
    margin-top: 10px;
    width: 100%;
  }
  .product-card .img-wrap {
    margin-bottom: 10px;
  }
  .product-card .js-slider-product .swiper-scrollbar {
    display: none;
  }
  .product-card .title {
    font-size: 16px;
  }
  .product-card .price {
    font-size: 20px;
  }
}
.editor-content:not(.policy) p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.29;
  padding-bottom: 55px;
  text-transform: lowercase;
  width: 100%;
}
.editor-content:not(.policy) h2 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}
.editor-content:not(.policy) h1 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.27;
  margin-bottom: 19px;
}
.editor-content:not(.policy) .img-wrap {
  margin-bottom: 54px;
  position: relative;
}
.editor-content:not(.policy) .img-wrap:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.editor-content:not(.policy) .img-wrap img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.editor-content:not(.policy) img {
  height: auto;
  margin-bottom: 54px;
  object-fit: contain;
  position: relative;
  width: 100%;
}
.editor-content:not(.policy) li,
.editor-content:not(.policy) ol,
.editor-content:not(.policy) ul {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.28;
  list-style: initial;
  padding: unset;
  text-transform: lowercase;
}
.editor-content:not(.policy) li p,
.editor-content:not(.policy) ol p,
.editor-content:not(.policy) ul p {
  padding-top: 12px;
}
.editor-content.policy {
  display: block;
  height: 100%;
  max-height: 80vh;
  overflow: auto;
  overflow-y: auto;
  padding-right: 15px;
}
.editor-content.policy h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 40px;
}
.editor-content.policy a {
  color: #963ebd;
  text-decoration: underline;
}
.editor-content.policy h3 {
  font-size: 28px;
  font-weight: 450;
  margin-bottom: 20px;
}
.editor-content.policy p {
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  padding-bottom: 32px;
}
.editor-content.policy p + h3 {
  margin-top: -32px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .editor-content.policy {
    max-height: 100%;
  }
  .editor-content.policy h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .editor-content.policy h3 {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.9px) {
  .editor-content:not(.policy) p {
    font-size: 18px;
    line-height: 23px;
    padding-bottom: 30px;
  }
  .editor-content:not(.policy) h2 {
    font-size: 24px;
    line-height: 31px;
  }
  .editor-content:not(.policy) h1 {
    font-size: 50px;
  }
  .editor-content:not(.policy) .img-wrap,
  .editor-content:not(.policy) img {
    margin-bottom: 30px;
  }
  .editor-content.policy h2 {
    font-size: 25px;
  }
  .editor-content.policy h3 {
    font-size: 18px;
    line-height: 23px;
  }
  .editor-content.policy p {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 20px;
  }
  .editor-content.policy p + h3 {
    margin-top: -20px;
    padding-top: 20px;
  }
}
@media (max-width: 420px) {
  .editor-content:not(.policy) h1 {
    font-size: 40px;
  }
}
.modal {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  height: 100vh;
  left: 0;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition-delay: 0.1s;
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: ease;
  width: 100vw;
  z-index: 1050;
}
.modal:not(.active) {
  opacity: 0;
  pointer-events: none;
}
.modal .modal-content {
  background-color: #fff;
  margin: auto;
  max-width: 780px;
  padding: 15px;
  position: relative;
  width: 100%;
}
.modal .right-side {
  text-align: end;
}
.modal .modal-close {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 15px;
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: ease;
  width: 30px;
}
.modal .modal-close:after,
.modal .modal-close:before {
  background-color: #d9d9d9;
  content: "";
  height: 1px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: background-color;
  transition-timing-function: ease;
  width: 28px;
}
.modal .modal-close:before {
  transform: rotate(45deg);
}
.modal .modal-close:after {
  transform: rotate(135deg);
}
.modal .modal-close:hover:after,
.modal .modal-close:hover:before {
  background-color: #000;
}
.modal.modal-policy .modal-content {
  max-width: 62.5%;
  padding: 100px 55px 70px 40px;
}
.modal.modal-policy .modal-close {
  height: 20px;
  right: 70px;
  top: 40px;
  width: 20px;
}
.modal.modal-policy .text-block {
  display: block;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  max-height: 622px;
  overflow-y: auto;
  padding-bottom: 40px;
  padding-right: 10px;
  scrollbar-color: #c4c4c4 #f7f7f7;
  scrollbar-width: thin;
}
.modal.modal-policy .text-block::-webkit-scrollbar {
  background-color: #f7f7f7;
  height: 3px;
  width: 2px;
}
.modal.modal-policy .text-block::-webkit-scrollbar-thumb {
  background: #c4c4c4;
}
.modal.modal-policy .text-block p {
  font-family: Graphik LCG;
  padding-bottom: 20px;
}
.modal.modal-policy .text-block h3 {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1280px) {
  .modal.modal-policy .modal-content {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .modal.modal-policy .modal-close {
    right: 40px;
    top: 40px;
  }
  .modal.modal-policy .modal-content {
    height: 100%;
    max-width: 100%;
    padding: 80px 25px 40px 40px;
  }
}
@media (max-width: 575.9px) {
  .modal.modal-policy .modal-close {
    right: 20px;
    top: 20px;
  }
  .modal.modal-policy .modal-content {
    padding: 60px 5px 20px 20px;
  }
}
.modal.modal-product-slider {
  height: 100%;
}
.modal.modal-product-slider .modal-close {
  height: 30px;
  right: 30px;
  top: 30px;
  width: 30px;
  z-index: 10;
}
.modal.modal-product-slider .modal-close:after,
.modal.modal-product-slider .modal-close:before {
  width: 38px;
}
.modal.modal-product-slider .modal-content {
  height: 100%;
  max-width: 100vw;
  padding: 0;
  width: 100vw;
}
.modal.modal-product-slider .modal-content .product-slider {
  height: 100%;
  position: relative;
}
.modal.modal-product-slider .modal-content .swiper-button-next {
  right: 30px;
}
.modal.modal-product-slider .modal-content .swiper-button-prev {
  left: 30px;
}
.modal.modal-product-slider .modal-content .top-modal-slider {
  height: 100%;
  margin: 0 0 0 150px;
  padding: 50px 0;
}
.modal.modal-product-slider .modal-content .top-modal-slider .img-wrap {
  height: 100%;
  width: 100%;
}
.modal.modal-product-slider .modal-content .top-modal-slider .img {
  height: calc(100% - 100px);
  object-fit: contain;
  width: 100%;
}
.modal.modal-product-slider .modal-content .bottom-modal-slider {
  height: 100%;
  left: 30px;
  max-height: 460px;
  position: absolute;
  top: 30px;
  width: max-content;
}
.modal.modal-product-slider .modal-content .bottom-modal-slider .swiper-slide {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  height: 100px !important;
  opacity: 0;
  padding: 5px;
  width: 100px !important;
}
.modal.modal-product-slider
  .modal-content
  .bottom-modal-slider
  .swiper-slide-visible {
  opacity: 1;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.modal.modal-product-slider
  .modal-content
  .bottom-modal-slider
  .swiper-slide-thumb-active {
  border: 1px solid #292929;
  transition-duration: 0.6s;
  transition-property: border;
}
.modal.modal-product-slider .modal-content .bottom-modal-slider .img-wrap {
  border-radius: 8px;
  position: relative;
}
.modal.modal-product-slider
  .modal-content
  .bottom-modal-slider
  .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.modal.modal-product-slider .modal-content .bottom-modal-slider .img-wrap .img {
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .modal.modal-product-slider .modal-content .bottom-modal-slider {
    bottom: 15px;
    left: 50%;
    max-height: 100px;
    max-width: 488px;
    padding: 0 20px;
    top: unset;
    transform: translateX(-50%);
  }
  .modal.modal-product-slider .modal-content .top-modal-slider {
    height: calc(100vh - 140px);
    margin: 0 0 140px;
    padding: 50px 0 0;
  }
  .modal.modal-product-slider .modal-content .top-modal-slider .img {
    height: calc(100vh - 190px);
    object-fit: contain;
    width: 100%;
  }
}
@media (max-height: 800px) {
  .modal.modal-product-slider .modal-content .top-modal-slider {
    margin: 0;
    padding: 20px 0 0;
  }
  .modal.modal-product-slider .modal-content .top-modal-slider .img {
    height: calc(100vh - 160px);
  }
}
@media (max-width: 575.9px) {
  .modal.modal-product-slider .modal-content .bottom-modal-slider {
    max-height: 80px;
    max-width: 310px;
  }
  .modal.modal-product-slider
    .modal-content
    .bottom-modal-slider
    .swiper-slide {
    height: 80px !important;
    width: 80px !important;
  }
}
.modal.modal-count .modal-content {
  margin: auto;
  max-width: 1200px;
  padding: 50px;
}
.modal.modal-count .alert-input-text {
  bottom: -24px;
  color: #e3000f;
  font-size: 14px;
  height: 23px;
  padding-left: 2px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: bottom, opacity, height;
}
.modal.modal-count .count-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}
.modal.modal-count .content-wrap {
  height: 100%;
  max-height: 80vh;
  overflow: auto;
}
.modal.modal-count .text-wrap {
  align-items: center;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  padding: 10px;
}
.modal.modal-count .text-wrap .text {
  margin-left: 30px;
}
.modal.modal-count .text-wrap .img-wrap {
  position: relative;
  width: 49px;
}
.modal.modal-count .text-wrap .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.modal.modal-count .text-wrap .img-wrap img {
  height: 100%;
  left: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal.modal-count .count {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.modal.modal-count .count:before {
  background: #eee;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}
.modal.modal-count .count-col {
  display: flex;
  flex-direction: column;
  max-width: calc(50% - 60px);
  width: 100%;
}
.modal.modal-count .input-list {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  width: 100%;
}
.modal.modal-count .input-wrap {
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 150%;
  position: relative;
  width: 100%;
}
.modal.modal-count .input-wrap:not(:last-child) {
  margin-bottom: 30px;
}
.modal.modal-count .input {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 24px;
  height: 54px;
  padding: 5px 15px;
}
.modal.modal-count .input-message {
  color: rgba(0, 0, 0, 0.4);
  height: 145px;
  margin-bottom: 50px;
  resize: none;
}
.modal.modal-count .count-col .img-wrap {
  margin-top: 90px;
  padding: 0 50px;
  position: relative;
}
.modal.modal-count .count-col .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.modal.modal-count .count-col .img-wrap img {
  height: 100%;
  left: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal.modal-count .prompt-text {
  color: #bbb;
  margin-bottom: 60px;
}
.modal.modal-count .modal-button {
  color: #c0db7e;
  cursor: pointer;
  text-decoration: underline;
}
.modal.modal-count .btn-wrap {
  display: flex;
  justify-content: center;
}
.modal.modal-count .btn-wrap .img-wrap {
  margin-top: unset;
  max-width: 300px;
  padding: unset;
  width: 100%;
}
.modal.modal-count .btn-wrap .img-wrap .line.desk {
  display: block;
}
.modal.modal-count .btn-wrap .img-wrap .line.mob {
  display: none;
}
.modal.modal-count .btn-circle {
  font-size: 26px;
  height: 200px;
  width: 200px;
}
@media (max-width: 768px) {
  .modal.modal-count .modal-content {
    padding: 50px 20px 20px;
  }
  .modal.modal-count .count-title {
    font-size: 40px;
  }
  .modal.modal-count .count {
    flex-direction: column;
  }
  .modal.modal-count .count:before {
    display: none;
  }
  .modal.modal-count .content-wrap {
    min-height: unset;
    padding-right: 13px;
  }
  .modal.modal-count .count-col {
    max-width: 100%;
  }
  .modal.modal-count .btn-wrap .img-wrap .line.desk,
  .modal.modal-count .count-col:first-child .img-wrap {
    display: none;
  }
  .modal.modal-count .btn-wrap .img-wrap .line.mob {
    display: block;
  }
  .modal.modal-count .btn-circle {
    font-size: 26px;
    height: 180px;
    width: 180px;
  }
}
@media (max-width: 479.9px) {
  .modal.modal-count .input-wrap {
    font-size: 18px;
  }
  .modal.modal-count .count-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .modal.modal-count .text-wrap {
    font-size: 18px;
    margin-bottom: 0;
  }
  .modal.modal-count .text-wrap .text {
    margin-left: 10px;
  }
  .modal.modal-count .text-wrap .img-wrap {
    width: 30px;
  }
  .modal.modal-count .btn-circle {
    font-size: 20px;
    height: 140px;
    width: 140px;
  }
}
@media (max-width: 390px) {
  .modal.modal-count .text-wrap {
    font-size: 14px;
  }
}
.modal.modal-vacancy {
  height: 100%;
}
.modal.modal-vacancy .modal-close {
  right: 45px;
  top: 35px;
}
.modal.modal-vacancy .modal-content {
  height: max-content;
  max-height: 1005px;
  max-width: 1000px;
  overflow-x: clip;
  overflow-y: auto;
  padding: 80px 50px 40px;
  scroll-behavior: smooth;
  scrollbar-color: #fff rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}
.modal.modal-vacancy .modal-content::-webkit-scrollbar {
  width: 4px;
}
.modal.modal-vacancy .modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.modal.modal-vacancy .modal-title,
.modal.modal-vacancy .subtitle {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.modal.modal-vacancy .modal-title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 150%;
}
.modal.modal-vacancy .subtitle {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 29px;
}
.modal.modal-vacancy .form-vacancy {
  display: flex;
  gap: 40px;
}
.modal.modal-vacancy .col {
  display: flex;
  flex-direction: column;
  max-width: 50%;
}
.modal.modal-vacancy .col-left .img-wrap {
  height: auto;
  margin: 30px auto 0;
  max-width: 100%;
  width: 400px;
}
.modal.modal-vacancy .input-wrap:not(.input-file) {
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 150%;
  position: relative;
  width: 100%;
}
.modal.modal-vacancy .input-wrap:not(.input-file) .input {
  transition-duration: 0.3s;
  transition-property: background-color;
}
.modal.modal-vacancy .input-wrap:not(.input-file) .alert-input-text {
  transition-duration: 0.3s;
  transition-property: color;
}
.modal.modal-vacancy .input-wrap:not(.input-file).has-error .input {
  border-color: red;
}
.modal.modal-vacancy .input-wrap:not(.input-file).has-error .alert-input-text {
  color: red;
}
.modal.modal-vacancy .input-wrap:not(.input-file):not(:last-child) {
  margin-bottom: 22px;
}
.modal.modal-vacancy .input {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 24px;
  height: 54px;
  padding: 5px 15px;
}
.modal.modal-vacancy .input-message {
  font-size: 20px;
  height: 148px;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
  resize: none;
}
.modal.modal-vacancy .input-message::-webkit-scrollbar {
  width: 4px;
}
.modal.modal-vacancy .input-message::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 4px;
}
.modal.modal-vacancy .input-message::-webkit-scrollbar-thumb {
  background: #963ebd;
  border-radius: 45px;
}
.modal.modal-vacancy .input-message::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.modal.modal-vacancy .input-descr {
  color: rgba(0, 0, 0, 0.7);
  display: block;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 8px;
}
.modal.modal-vacancy .input-file .add-file {
  align-items: center;
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  font-weight: 400;
  height: 53px;
  justify-content: center;
  line-height: 112.2%;
  max-height: 53px;
  padding: 5px 20px;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: background;
}
.modal.modal-vacancy .input-file .add-file:hover {
  background: #b1bc00;
}
.modal.modal-vacancy .input-file .file-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.modal.modal-vacancy .input-file .input-descr {
  margin-bottom: 10px;
}
.modal.modal-vacancy .input-file .list-item {
  align-items: center;
  display: flex;
  max-width: 100%;
  padding-left: 10px;
  padding-top: 10px;
}
.modal.modal-vacancy .input-file .input-file-list {
  align-self: center;
  height: max-content;
  margin-top: -10px;
  max-width: 100%;
}
.modal.modal-vacancy .input-file .input {
  display: none;
}
.modal.modal-vacancy .input-file .file-name {
  align-items: center;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  font-size: 24px;
  line-height: 1.2;
  max-width: calc(100% - 25px);
}
.modal.modal-vacancy .input-file .file-name__name {
  display: block;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.modal.modal-vacancy .input-file .file-name__type {
  display: block;
}
.modal.modal-vacancy .input-file .file-delete {
  align-items: center;
  cursor: pointer;
  display: inline-block;
  display: flex;
  height: 20px;
  justify-content: center;
  margin-left: 5px;
  min-width: 20px;
  width: 20px;
}
.modal.modal-vacancy .input-file .file-delete:after,
.modal.modal-vacancy .input-file .file-delete:before {
  background: #aaa;
  content: "";
  height: 1px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: background;
  width: 15px;
}
.modal.modal-vacancy .input-file .file-delete:before {
  transform: rotate(45deg);
}
.modal.modal-vacancy .input-file .file-delete:after {
  transform: rotate(135deg);
}
.modal.modal-vacancy .input-file .file-delete:hover:after,
.modal.modal-vacancy .input-file .file-delete:hover:before {
  background: #000;
}
.modal.modal-vacancy .policy-button,
.modal.modal-vacancy .policy-checkbox .text {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
.modal.modal-vacancy .policy-checkbox {
  margin-top: 10px;
}
.modal.modal-vacancy .policy-checkbox .text {
  color: #929292;
  margin-left: 20px;
}
.modal.modal-vacancy .policy-checkbox .holder {
  height: 20px;
  width: 20px;
}
.modal.modal-vacancy .policy-checkbox .alert-input-text {
  color: red;
}
.modal.modal-vacancy .policy-checkbox .policy-button {
  color: #b1bc00;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .modal.modal-vacancy .policy-checkbox .policy-button:hover {
    opacity: 0.5;
  }
}
.modal.modal-vacancy .btn-circle {
  font-size: 26px;
  font-weight: 400;
  height: 150px;
  line-height: 112.2%;
  padding: 10px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-out;
  width: 150px;
}
.modal.modal-vacancy .btn-circle .line-bottom,
.modal.modal-vacancy .btn-circle .line-top {
  position: absolute;
}
.modal.modal-vacancy .btn-wrap {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
.modal.modal-vacancy .btn-wrap .btn {
  margin-left: -3px;
}
.modal.modal-vacancy .btn-wrap .img-wrap {
  margin-top: -10px;
  max-width: 230px;
  width: max-content;
}
.modal.modal-vacancy .img-wrap {
  height: 100%;
  width: 100%;
}
.modal.modal-vacancy .img-wrap .mob,
.modal.modal-vacancy .img-wrap .tab {
  display: none;
}
.modal.modal-vacancy .img-wrap img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
@media (max-height: 1005px) {
  .modal.modal-vacancy .modal-content {
    max-height: 100%;
  }
}
@media (max-width: 700px) {
  .modal.modal-vacancy .modal-close {
    right: 35px;
    top: 16px;
  }
  .modal.modal-vacancy .modal-content {
    padding: 50px 40px 41px;
  }
  .modal.modal-vacancy .modal-title {
    font-size: 32px;
  }
  .modal.modal-vacancy .subtitle {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .modal.modal-vacancy .input-descr {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 10px;
  }
  .modal.modal-vacancy .form-vacancy {
    gap: 20px;
  }
  .modal.modal-vacancy .file-wrap {
    margin-bottom: 10px;
  }
  .modal.modal-vacancy .input-wrap:not(.input-file):not(:last-child) {
    margin-bottom: 10px;
  }
  .modal.modal-vacancy .input-file .add-file {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    max-height: 48px;
    min-width: 160px;
    padding: 10px;
  }
  .modal.modal-vacancy .input-file .file-wrap {
    margin-bottom: 10px;
  }
  .modal.modal-vacancy .col {
    max-width: calc(50% - 10px);
  }
  .modal.modal-vacancy .input-message {
    height: 128px;
    line-height: 1.4;
    margin-right: 11px;
    padding: 20px 14px 20px 20px;
  }
  .modal.modal-vacancy .policy-checkbox {
    margin-top: 20px;
  }
  .modal.modal-vacancy .policy-checkbox .policy-button,
  .modal.modal-vacancy .policy-checkbox .text {
    font-size: 16px;
    line-height: 1.3125;
  }
  .modal.modal-vacancy .btn-circle {
    font-size: 17px;
    height: 110px;
    width: 110px;
  }
  .modal.modal-vacancy .btn-wrap {
    margin-top: 22px;
  }
  .modal.modal-vacancy .btn-wrap .img-wrap {
    margin-left: -10px;
    margin-top: 6px;
    min-width: 196px;
  }
  .modal.modal-vacancy .img-wrap .tab {
    display: block;
  }
  .modal.modal-vacancy .img-wrap .desk {
    display: none;
  }
}
@media (max-width: 615px) {
  .modal.modal-vacancy .form-vacancy {
    flex-direction: column;
  }
  .modal.modal-vacancy .modal-content {
    max-height: 100%;
    padding: 58px 20px 23px;
  }
  .modal.modal-vacancy .modal-title {
    font-size: 40px;
  }
  .modal.modal-vacancy .modal-close {
    right: 15px;
    top: 15px;
  }
  .modal.modal-vacancy .subtitle {
    font-size: 30px;
    margin-bottom: 22px;
    margin-top: 10px;
  }
  .modal.modal-vacancy .col {
    max-width: 100%;
  }
  .modal.modal-vacancy .col-left .img-wrap {
    display: none;
  }
  .modal.modal-vacancy .input-descr {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .modal.modal-vacancy .input-message {
    font-size: 24px;
    font-weight: 400;
    height: 148px;
    line-height: 150%;
    margin-right: 36px;
    padding: 20px 10px 20px 20px;
  }
  .modal.modal-vacancy .input-file {
    margin-bottom: 10px;
  }
  .modal.modal-vacancy .input-file .file-name {
    font-size: 20px;
  }
  .modal.modal-vacancy .input-file .input-file-list {
    margin-left: -10px;
  }
  .modal.modal-vacancy .input-file .input-descr {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .modal.modal-vacancy .input-file .input {
    height: 45px;
  }
  .modal.modal-vacancy .input-file .add-file {
    font-size: 20px;
    max-height: 54px;
    min-width: 230px;
    padding: 10px;
  }
  .modal.modal-vacancy .policy-checkbox {
    margin-bottom: 28px;
    margin-top: 12px;
  }
  .modal.modal-vacancy .policy-checkbox .policy-button,
  .modal.modal-vacancy .policy-checkbox .text {
    font-size: 20px;
    line-height: 1.3;
  }
  .modal.modal-vacancy .policy-checkbox .text {
    margin-left: 20px;
  }
  .modal.modal-vacancy .form-vacancy {
    gap: 0;
  }
  .modal.modal-vacancy .btn-circle {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    height: 140px;
    line-height: 112.2%;
    width: 140px;
  }
  .modal.modal-vacancy .input-wrap:not(.input-file):not(:last-child) {
    margin-bottom: 20px;
  }
  .modal.modal-vacancy .input-wrap .alert-input-text {
    font-size: 20px;
    line-height: 1.5;
  }
  .modal.modal-vacancy .btn-circle {
    font-size: 26px;
    height: 180px;
    width: 180px;
  }
  .modal.modal-vacancy .btn-wrap {
    margin-top: 12px;
  }
  .modal.modal-vacancy .btn-wrap .img-wrap {
    margin-top: 0;
    max-width: 263px;
    width: 100%;
  }
  .modal.modal-vacancy .img-wrap .mob {
    display: block;
  }
  .modal.modal-vacancy .img-wrap .tab {
    display: none;
  }
}
@media (max-width: 479.9px) {
  .modal.modal-vacancy .modal-content {
    padding: 50px 20px 53px;
  }
  .modal.modal-vacancy .modal-title {
    font-size: 30px;
    line-height: 150%;
  }
  .modal.modal-vacancy .subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .modal.modal-vacancy .policy-checkbox .policy-button,
  .modal.modal-vacancy .policy-checkbox .text {
    font-size: 14px;
    line-height: 1.2;
  }
  .modal.modal-vacancy .policy-checkbox .text {
    margin-left: 15px;
  }
  .modal.modal-vacancy .input {
    height: 45px;
  }
  .modal.modal-vacancy .input-descr {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 5px;
  }
  .modal.modal-vacancy .input-message {
    font-size: 18px;
    height: 100px;
    margin-right: 7px;
    padding: 10px 19px;
  }
  .modal.modal-vacancy .input-file .input-descr {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .modal.modal-vacancy .input-file .file-name {
    font-size: 16px;
  }
  .modal.modal-vacancy .input-file .add-file {
    font-size: 16px;
    line-height: 1.2;
    max-height: 47px;
    min-width: 168px;
    padding: 10px 28px;
  }
  .modal.modal-vacancy .btn-wrap .img-wrap {
    margin-left: 0;
  }
  .modal.modal-vacancy .img-wrap.mob {
    max-width: 200px;
  }
  .modal.modal-vacancy .btn-circle {
    font-size: 20px;
    height: 140px;
    width: 140px;
  }
}
@media (max-width: 340px) {
  .modal.modal-vacancy .modal-title {
    font-size: 28px;
  }
}
.anim-section,
.section-about-blog,
.section-about-command,
.section-about-company,
.section-about-cooperation,
.section-about-head,
.section-about-vacancies,
.section-blogs,
.section-case-goods,
.section-cases,
.section-cases-head,
.section-design-coop,
.section-design-head,
.section-design-stages,
.section-home-cases,
.section-home-catalog,
.section-home-partners,
.section-home-services,
.section-home-slider-banner,
.section-individual-gallery,
.section-individual-head,
.section-individual-services,
.section-other-cases,
.section-portfolio-head,
.section-questions-form,
.section-slider-partners,
.section-solutions,
.section-solutions-head,
.section-watched-goods,
.section-we-can {
  opacity: 0;
  transform: translateY(200px);
  transition-duration: 0.8s;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}
.anim-section.anim,
.anim.section-about-blog,
.anim.section-about-command,
.anim.section-about-company,
.anim.section-about-cooperation,
.anim.section-about-head,
.anim.section-about-vacancies,
.anim.section-blogs,
.anim.section-case-goods,
.anim.section-cases,
.anim.section-cases-head,
.anim.section-design-coop,
.anim.section-design-head,
.anim.section-design-stages,
.anim.section-home-cases,
.anim.section-home-catalog,
.anim.section-home-partners,
.anim.section-home-services,
.anim.section-home-slider-banner,
.anim.section-individual-gallery,
.anim.section-individual-head,
.anim.section-individual-services,
.anim.section-other-cases,
.anim.section-portfolio-head,
.anim.section-questions-form,
.anim.section-slider-partners,
.anim.section-solutions,
.anim.section-solutions-head,
.anim.section-watched-goods,
.anim.section-we-can {
  opacity: 1;
  transform: translateY(0);
}
.anim-underline,
.section-about-blog.anim .section-title .line path,
.section-about-command.anim .underlined .line path,
.section-about-cooperation.anim .underlined svg path,
.section-about-head.anim .section-title .underlined .line path,
.section-about-vacancies.anim .underlined .line path,
.section-basket-logo.anim .underlined .line path,
.section-basket.anim .basket-main-container .underlined .line path,
.section-basket.anim .title-wrap .underlined .line path,
.section-basket.anim .title-wrap .underlined .line.tab path,
.section-case-goods.anim .underlined .line path,
.section-cases-head.anim .section-title .underlined .line path,
.section-cases-head.anim .section-title .underlined .line.mob path,
.section-design-head.anim .title-underline path,
.section-design-stages.anim .underlined .line path,
.section-home-head.anim .home-title .underline path,
.section-individual-services.anim .title-underline path,
.section-other-cases.anim .section-title .underlined .line path,
.section-portfolio-cases.anim .underlined .line.desk path,
.section-portfolio-cases.anim .underlined .line.mob path,
.section-portfolio-head.anim .underlined .line path,
.section-slider-goods.anim.section-recommended-goods
  .section-title
  .underlined
  .line
  path,
.section-slider-goods.anim.section-recommended-goods
  .section-title
  .underlined
  .line.mob
  path,
.section-slider-goods.anim.section-watched-goods
  .section-title
  .underlined
  .line
  path,
.section-we-can.anim .title-underline path,
.section.anim .section-title .underline path {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transition-property: stroke-dashoffset;
  transition-timing-function: line;
}
.modal-form-response {
  z-index: 9999;
}
.modal-form-response.modal-form-response-vacancy .block-title {
  max-width: 550px;
}
.modal-form-response .modal-content {
  padding: 45px;
}
.modal-form-response .content-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.modal-form-response .content-wrap > * {
  margin-bottom: 20px;
}
.modal-form-response .content-wrap > :last-child {
  margin-bottom: 0;
}
.modal-form-response .img {
  height: 220px;
  width: 131px;
}
.modal-form-response .block-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 64px;
  max-width: 465px;
  text-align: center;
  text-transform: lowercase;
}
.modal-form-response .text {
  font-size: 16px;
}
.modal-form-response .btn {
  height: 100px;
  width: 100px;
}
@media (max-width: 768px) {
  .modal-form-response .block-title {
    font-size: 45px;
    line-height: 42px;
  }
}
.hide-on-mobile {
  display: block;
}
@media (max-width: 1024px) {
  .hide-on-mobile {
    display: none;
  }
}
.header {
  position: relative;
  z-index: 10;
}
.header .header-container {
  background-color: #fff;
  left: 0;
  padding: 12px 0;
  position: fixed;
  top: 0;
  width: 100vw;
}
.header .burger-menu {
  align-items: center;
  display: none;
  flex-direction: column;
  height: 30px;
  justify-content: center;
  margin-right: 40px;
  min-width: 30px;
  padding: 6px 3px;
  width: 30px;
}
.header .burger-menu.active .line {
  background-color: #b1bc00;
}
.header .burger-menu .line {
  background-color: #000;
  display: block;
  height: 2px;
  transition-duration: 0.3s;
  transition-property: background-color;
  width: 100%;
}
.header .burger-menu .line:not(:last-child) {
  margin-bottom: 5px;
}
.header .burger-menu:hover .line {
  background-color: #b1bc00;
}
.header .header-wrap {
  justify-content: space-between;
  position: relative;
}
.header .center-part,
.header .header-wrap,
.header .menu,
.header .right-part {
  align-items: center;
  display: flex;
}
.header .left-part {
  display: flex;
}
.header .form {
  align-items: center;
  border-left: 2px solid #929292;
  display: flex;
  margin-left: 40px;
  padding-left: 20px;
  position: relative;
}
.header .form.form-btn {
  cursor: pointer;
}
.header .form.form-btn .input {
  pointer-events: none;
}
.header .form.form-btn .btn:hover {
  opacity: 1;
}
.header .form .btn {
  background: rgba(0, 0, 0, 0);
  border: none;
  height: 19px;
  margin-right: 10px;
  outline: none;
  width: 19px;
}
.header .form .btn img {
  height: 100%;
  width: 100%;
}
.header .form .input {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  width: 80px;
}
.header .form .input::placeholder {
  color: #929292;
}
.header .search-form-wrap {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  left: 0;
  opacity: 0;
  padding-bottom: 35px;
  padding-top: 35px;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  transition-duration: 0.3s;
  transition-property: opacity, transform;
  width: 100%;
  z-index: 100;
}
.header .search-form-wrap .btn {
  background-color: rgba(0, 0, 0, 0);
}
.header .search-form-wrap .search-btn {
  margin-right: 30px;
  width: 25px;
}
.header .search-form-wrap .search-btn .icon {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.header .search-form-wrap .close-search-btn {
  margin-left: auto;
}
.header .search-form-wrap .search-input {
  font-family: Futura PT;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}
.header .search-form-wrap .search-form {
  align-items: center;
  display: flex;
  font-size: 20px;
  height: 30px;
  line-height: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  padding: 0 20px;
}
.header .logo {
  max-width: 160px;
}
.header .logo .img,
.header .logo img {
  width: 120px;
}
/* Мобильные устройства */
@media (max-width: 768px) {
  .header .logo .img,
  .header .logo img {
    width: 60px;
  }
}
.header .menu-item {
  color: #929292;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin-right: 60px;
  position: relative;
}
.header .menu-item:last-child {
  margin-right: 0;
}
.header .menu-item .menu-link {
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu-item .menu-link:hover {
    color: #000;
  }
}
.header .menu-item.has-submenu:before {
  border-bottom: 14px solid #fff;
  border-left: 6px solid rgba(0, 0, 0, 0);
  border-right: 6px solid rgba(0, 0, 0, 0);
  bottom: -11px;
  content: "";
  height: 0;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translate(-50%);
  transition-duration: 0.3s;
  transition-property: opacity;
  width: 0;
  z-index: 2;
}
.header .menu-item.has-submenu:after {
  background-color: rgba(0, 0, 0, 0);
  bottom: 5px;
  content: "";
  height: 30px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 100%);
  width: 150%;
}
.header .menu-item:hover:before {
  opacity: 1;
}
.header .menu-item:hover:after {
  pointer-events: all;
}
.header .menu-item:hover .menu-item-list {
  opacity: 1;
  pointer-events: all;
}
.header .menu-item.item-catalog .menu-list-wrap {
  flex-direction: row;
}
.header .menu-item.item-catalog .menu-list-wrap .link-item {
  width: 100%;
  width: calc(33.33333% - 40px);
}
.header .menu-item-list {
  background-color: #fff;
  box-shadow: 0 -1px 12px 6px #eee;
  display: block;
  left: 50%;
  max-width: max-content;
  opacity: 0;
  padding: 30px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px);
  transition-duration: 0.3s;
  transition-property: opacity;
  width: max-content;
  z-index: 1;
}
.header .menu-item-list .menu-list-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto -10px;
  max-width: 1062px;
}
.header .menu-item-list .menu-list-wrap .link-item {
  align-items: center;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  display: flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  transition-duration: 0.3s;
  transition-property: background;
  width: 100%;
}
.header .menu-item-list .menu-list-wrap .link-item:hover {
  background: #eee;
}
.header .menu-item-list .menu-list-wrap .link-icon {
  height: 39px;
  margin-right: 15px;
  width: 37px;
}
.header .menu-item-list .menu-list-wrap .link-icon img,
.header .menu-item-list .menu-list-wrap .link-icon svg {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.header .menu-item-list .menu-list-wrap .link-text {
  color: #000;
  font-size: 20px;
  line-height: 26px;
}
.header .menu-item-wrap {
  align-items: center;
  cursor: pointer;
  display: flex;
  transition: color 0.3s ease;
}
.header .menu-item-wrap .text {
  font-size: inherit;
  font-weight: inherit;
  margin-right: 5px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header .menu-item-wrap .icon {
  display: flex;
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.3s ease;
}
.header .menu-item-wrap .icon img {
  height: 5px;
  width: 7px;
}
@media (hover: hover) and (pointer: fine) {
  .header .menu-item-wrap:hover {
    color: #000;
  }
  .header .menu-item-wrap:hover .icon svg path {
    fill: #b1bc00;
  }
}
.header .right-part .text-wrap {
  align-items: flex-start;
  color: #929292;
  display: flex;
  flex-direction: column;
}
.header .right-part .text-wrap .text {
  font-size: 12px;
  line-height: 1.2;
}
.header .right-part .text-wrap .email,
.header .right-part .text-wrap .tel {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 5px;
}
.header .right-part .basket-btn {
  flex-shrink: 0;
  height: 47.75px;
  margin-right: 30px;
  position: relative;
  width: 42.18px;
}
.header .right-part .basket-btn .img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.header .right-part .basket-btn .category-count {
  align-items: center;
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 14px;
  height: 20px;
  justify-content: center;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -20%);
  width: 20px;
}
@media (max-width: 1600px) {
  .header .menu-item.item-catalog .menu-item-list {
    max-width: 1100px;
    transform: translate(-42%, 10px);
  }
}
@media (max-width: 1400px) {
  .header .menu-item {
    margin-right: 30px;
  }
}
@media (max-width: 1280px) {
  .header .header-container {
    padding: 17px 0;
  }
  .header .burger-menu {
    display: block;
  }
  .header .logo {
    left: 49%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .center-part,
  .header .form,
  .header .right-part .text-wrap {
    display: none;
  }
  .header .right-part .img-wrap {
    height: 30px;
    margin-right: 0;
    width: 30px;
  }
}
@media (max-width: 768px) {
  .header .right-part .basket-btn {
    margin-right: 0;
  }
}
@media (max-width: 575.9px) {
  .header .left-part {
    width: 100%;
  }
  .header .right-part {
    padding-right: 3px;
  }
  .header .right-part .basket-btn {
    height: 30px;
    width: 27px;
  }
  .header .right-part .basket-btn .category-count {
    font-size: 8px;
    height: 14px;
    line-height: 12px;
    width: 14px;
  }
  .header .burger-menu,
  .header .logo {
    margin-right: auto;
  }
  .header .logo {
    width: 120px;
  }
}
body.search-is-open .search-form-wrap {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.footer {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  padding: 40px 0;
  position: relative;
  z-index: 0;
}
.footer .container {
  max-width: 1305px;
}
.footer .main-image-line {
  height: 151px;
  position: absolute;
  right: -235px;
  top: -67px;
  width: 600px;
}
.footer .logo {
  display: flex;
  margin-bottom: 3px;
  max-width: 162px;
}
.footer .logo img,
.footer .logo svg {
  width: 100%;
}
.footer .row {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.footer .col-info {
  margin-right: 60px;
  max-width: fit-content;
}
.footer .col-subscribe {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-block-start: -5px;
  max-width: 500px;
}
.footer .col-subscribe .alert-input-text {
  bottom: -28px;
  left: 0;
  width: 100%;
}
.footer .col-subscribe .title {
  font-size: 24px;
  line-height: 24px;
  padding-left: 74px;
}
.footer .info-block {
  display: flex;
  flex-direction: column;
}
.footer .info-block:not(:last-child) {
  margin-bottom: 6px;
}
.footer .info-block .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
.footer .info-block .link,
.footer .info-block .text {
  color: #000;
  font-size: 16px;
  line-height: normal;
}
.footer .info-block .link {
  transition-property: opacity;
}
.footer .info-block .link:hover {
  opacity: 0.6;
}
.footer .form-body {
  max-width: 238px;
}
.footer .form-body .title {
  white-space: nowrap;
}
.footer .copyright-wrap {
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  margin-inline-start: 47px;
  white-space: nowrap;
}
.footer .copyright-wrap .copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-left: 12px;
}
.footer .copyright-wrap .black-circle {
  background-color: #000;
  border-radius: 50%;
  height: 26px;
  width: 26px;
}
.footer .icon-wrap {
  display: flex;
  gap: 5px;
}
.footer .terms-wrap {
  display: flex;
  justify-content: flex-end;
  margin-inline-start: 162px;
  text-align: right;
  white-space: nowrap;
}
.footer .terms-wrap .link {
  font-size: 14px;
  margin-right: 29px;
  text-decoration: underline;
}
.footer .terms-wrap .link:last-child {
  margin-right: 0;
}
.footer .soc-icon {
  border-radius: 50%;
  height: 26px;
  width: 26px;
}
.footer .soc-icon img,
.footer .soc-icon svg {
  height: 100%;
  width: 100%;
}
.footer .form-subscribe .btn {
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  height: 86px;
  margin-left: 30px;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  width: 86px;
}
.footer .form-subscribe .btn:hover {
  background-color: #b1bc00;
  color: #000;
}
.footer .human-merch-logo {
  display: flex;
  height: 87px;
  justify-content: center;
  margin-block: 37px 57px;
  margin-left: 74px;
  width: 262px;
}
.footer .human-merch-logo svg {
  height: 100%;
  width: 100%;
}
@media (max-width: 930px) {
  .footer .form-body {
    display: flex;
    max-width: unset;
    width: 100%;
  }
  .footer .form-col {
    width: 100%;
  }
  .footer .row:not(.copyright-wrap) {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer .col-subscribe {
    margin-top: 30px;
    max-width: 100%;
  }
  .footer .form-subscribe {
    justify-content: center;
    padding: 35px 50px;
  }
  .footer .copyright-wrap {
    margin-bottom: 0;
  }
  .footer .main-image-line {
    right: 50%;
    top: 180px;
    transform: translateX(calc(100% + 20px));
  }
}
@media (max-width: 768px) {
  .footer .form-body {
    display: block;
    max-width: unset;
    width: unset;
  }
  .footer .form-col {
    width: unset;
  }
}
@media (max-width: 575.9px) {
  .footer {
    margin-block-start: -5px;
    padding-block: 0 25px 20px;
  }
  .footer .container {
    padding-inline: 40px;
  }
  .footer .logo {
    margin-block-end: 13px;
    max-width: 227px;
  }
  .footer .info-block:not(:last-child) {
    margin-bottom: 0;
  }
  .footer .col-subscribe {
    margin-block-start: 61px;
  }
  .footer .col-subscribe .title {
    font-size: 16px;
    padding-left: 0;
  }
  .footer .col-info {
    margin-right: 0;
  }
  .footer .col-info .title {
    font-size: 16px;
  }
  .footer .form-subscribe {
    align-items: flex-end;
    padding: 20px;
  }
  .footer .form-subscribe .btn {
    height: 66px;
    width: 66px;
  }
  .footer .form-subscribe .input-wrap {
    height: unset;
    margin-bottom: 10px;
  }
  .footer .form-subscribe .title {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 20px;
  }
  .footer .copyright-wrap {
    align-items: flex-start;
    align-self: flex-start;
    height: 32px;
    justify-content: space-between;
    margin-inline-start: 0;
    white-space: unset;
    width: 100%;
  }
  .footer .copyright-wrap .black-circle {
    height: 32px;
    width: 32px;
  }
  .footer .copyright {
    max-width: 87px;
  }
  .footer .terms-wrap {
    align-items: flex-start;
    align-self: flex-start;
    flex-direction: column-reverse;
    margin-inline-start: 0;
    max-width: 70%;
    text-align: left;
  }
  .footer .human-merch-logo {
    height: 69px;
    margin-block-end: 73px;
    margin-inline-start: 0;
    width: 209px;
  }
  .footer .main-image-line {
    height: 120px;
    top: 190px;
    transform: translateX(100%) rotate(-5deg);
    width: 474px;
  }
  .footer .icon-wrap {
    gap: 10px;
  }
  .footer .soc-icon {
    height: 32px;
    width: 32px;
  }
}
@media (max-width: 370px) {
  .footer .copyright-wrap {
    flex-wrap: wrap;
    height: auto;
  }
  .footer .copyright-wrap .copyright {
    margin-left: 0;
    max-width: 100%;
  }
  .footer .form-body {
    max-width: 150px;
  }
  .footer .form-subscribe .btn {
    margin-left: 15px;
  }
}
.section-individual-gallery {
  padding: 80px 0 150px;
}
.section-individual-gallery .gallery {
  width: 100%;
}
.section-individual-gallery .gallery .swiper {
  height: 100%;
  padding: 0 78px;
  pointer-events: all;
  width: 100%;
}
.section-individual-gallery .gallery .swiper .slider-button {
  top: 40%;
}
.section-individual-gallery .gallery .swiper-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: max-content;
}
.section-individual-gallery .swiper-slide {
  background-color: #fff;
  cursor: pointer;
  height: 560px !important;
  position: relative;
  width: 448px !important;
}
.section-individual-gallery .swiper-slide:last-child {
  margin-right: 0 !important;
}
.section-individual-gallery .swiper-slide > .img {
  height: 448px;
  object-fit: cover;
  width: 448px;
}
.section-individual-gallery .swiper-slide .back-img {
  height: 448px;
  left: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 1s ease;
  width: 448px;
}
.section-individual-gallery .swiper-slide .description {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 42px;
  font-weight: 500;
  line-height: 46px;
  margin-top: 20px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
}
.section-individual-gallery .swiper-slide .overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.3) 34.11%,
    hsla(0, 0%, 40%, 0.09) 78.98%
  );
  height: 448px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 1s ease;
  width: 100%;
}
.section-individual-gallery .swiper-slide .additional-info {
  align-items: center;
  display: flex;
  height: calc(100% - 66px);
  left: 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(200%);
  transition:
    opacity,
    z-index,
    transform 1s ease;
  width: 50%;
  z-index: -10;
}
.section-individual-gallery .swiper-slide .additional-info .text {
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  color: #fff;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  max-height: 100%;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  width: 100%;
}
.section-individual-gallery .swiper-slide.active .additional-info,
.section-individual-gallery .swiper-slide:hover .additional-info {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
.section-individual-gallery .swiper-slide.active .back-img,
.section-individual-gallery .swiper-slide.active .overlay,
.section-individual-gallery .swiper-slide:hover .back-img,
.section-individual-gallery .swiper-slide:hover .overlay {
  opacity: 1;
}
@media (max-width: 1600px) {
  .section-individual-gallery .container .gallery {
    padding: 0 110px;
  }
  .section-individual-gallery .container .gallery .swiper {
    padding: 0 83px;
  }
  .section-individual-gallery .container .gallery .swiper-slide {
    height: 374px !important;
    width: 300px !important;
  }
  .section-individual-gallery .container .gallery .swiper-slide .back-img,
  .section-individual-gallery .container .gallery .swiper-slide .img,
  .section-individual-gallery .container .gallery .swiper-slide .overlay {
    height: 300px;
    width: 300px;
  }
  .section-individual-gallery .container .gallery .swiper-slide .description {
    font-size: 28px;
    line-height: 32px;
    margin-top: 10px;
  }
  .section-individual-gallery
    .container
    .gallery
    .swiper-slide
    .additional-info
    .text {
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .section-individual-gallery {
    padding-bottom: 80px;
    padding-top: 60px;
  }
  .section-individual-gallery .container {
    padding-right: 0;
  }
  .section-individual-gallery .container .gallery,
  .section-individual-gallery .container .gallery .swiper {
    padding: 0;
  }
  .section-individual-gallery .container .gallery .swiper .slider-button {
    display: none;
  }
  .section-individual-gallery .container .gallery .swiper-slide {
    height: 346px !important;
    width: 280px !important;
  }
  .section-individual-gallery .container .gallery .swiper-slide .back-img,
  .section-individual-gallery .container .gallery .swiper-slide .img,
  .section-individual-gallery .container .gallery .swiper-slide .overlay {
    height: 280px;
    width: 280px;
  }
  .section-individual-gallery .container .gallery .swiper-slide .description {
    font-size: 24px;
    line-height: 28px;
  }
  .section-individual-gallery
    .container
    .gallery
    .swiper-slide
    .additional-info
    .text {
    line-height: 23px;
  }
}
@media (max-width: 600px) {
  .section-individual-gallery
    .container
    .gallery
    .swiper-slide
    .additional-info {
    line-height: 23px;
  }
  .section-individual-gallery
    .container
    .gallery
    .swiper-slide:hover
    .additional-info {
    opacity: 0;
    transform: translateY(200%);
    z-index: -10;
  }
  .section-individual-gallery .container .gallery .swiper-slide:hover .back-img,
  .section-individual-gallery .container .gallery .swiper-slide:hover .overlay {
    opacity: 0;
  }
  .section-individual-gallery
    .container
    .gallery
    .swiper-slide.active
    .additional-info {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
  }
  .section-individual-gallery
    .container
    .gallery
    .swiper-slide.active
    .back-img,
  .section-individual-gallery
    .container
    .gallery
    .swiper-slide.active
    .overlay {
    opacity: 1;
  }
}
@media (max-width: 400px) {
  .section-individual-gallery {
    padding-bottom: 60px;
    padding-top: 40px;
  }
  .section-individual-gallery .container .gallery .swiper-slide {
    height: 316px !important;
    width: 250px !important;
  }
  .section-individual-gallery .container .gallery .swiper-slide .back-img,
  .section-individual-gallery .container .gallery .swiper-slide .img,
  .section-individual-gallery .container .gallery .swiper-slide .overlay {
    height: 250px;
    width: 250px;
  }
}
.design-gallery {
  padding: 40px 0 150px;
}
.design-gallery .gallery {
  column-gap: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 60px;
}
.design-gallery .gallery-item {
  position: relative;
}
.design-gallery .gallery-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (max-width: 1200px) {
  .design-gallery .container {
    padding-right: 40px;
  }
}
@media (max-width: 1024px) {
  .design-gallery .gallery {
    column-gap: 28px;
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .design-gallery {
    padding: 40px 0 60px;
  }
  .design-gallery .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .design-gallery .gallery .gallery-item:nth-of-type(n + 7) {
    display: none;
  }
}
@media (max-width: 575.9px) {
  .design-gallery {
    padding: 20px 0 60px;
  }
  .design-gallery .container {
    padding-right: 20px;
  }
  .design-gallery .gallery {
    column-gap: 15px;
    row-gap: 20px;
  }
}
.section-individual-head {
  padding: 100px 0;
}
.section-individual-head.anim .anim-head-line path,
.section-individual-head.anim .anim-title-underline path,
.section-individual-head.anim .anim-title-underline-mob path {
  stroke-dashoffset: 0;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-individual-head.anim .anim-head-line path {
  stroke-dashoffset: 2018;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-individual-head.anim .anim-title-underline path {
  stroke-dashoffset: 940;
  transition-delay: 0.4s;
  transition-duration: 0.8s;
}
.section-individual-head.anim .anim-title-underline-mob path {
  stroke-dashoffset: 288;
  transition-delay: 0.4s;
  transition-duration: 0.6s;
}
.section-individual-head .anim-head-line path {
  stroke-dasharray: 1009;
  stroke-dashoffset: 1009;
}
.section-individual-head .container {
  max-width: 1402px;
}
.section-individual-head .section-title {
  margin-bottom: 74px;
  position: relative;
  text-align: right;
  text-transform: lowercase;
}
.section-individual-head .line {
  bottom: -55px;
  left: 0;
  position: absolute;
}
.section-individual-head .bottom-title,
.section-individual-head .top-title {
  font-size: 132px;
  font-weight: 500;
  line-height: 118.03px;
}
.section-individual-head .bottom-title {
  margin-left: auto;
  margin-top: -19px;
  max-width: max-content;
  padding-right: 112px;
  position: relative;
}
.section-individual-head .top-title {
  padding-left: 111px;
  padding-right: 0;
  text-align: left;
}
.section-individual-head .subtitle {
  line-height: 26px;
  margin-left: auto;
  margin-right: 126px;
  max-width: 652px;
}
.section-individual-head .title-underline {
  bottom: 0;
  margin-top: 12px;
  position: absolute;
  right: 50px;
  transform: translateY(100%);
  width: 100%;
}
.section-individual-head .title-underline.mob {
  display: none;
}
.section-individual-head .anim-title-underline {
  stroke-dasharray: 470;
  stroke-dashoffset: 470;
}
.section-individual-head .anim-title-underline-mob {
  stroke-dasharray: 144;
  stroke-dashoffset: 144;
}
@media (max-width: 1420px) {
  .section-individual-head .line {
    max-width: 580px;
  }
}
@media (max-width: 1280px) {
  .section-individual-head .bottom-title,
  .section-individual-head .top-title {
    font-size: 100px;
  }
  .section-individual-head .line {
    bottom: 0;
  }
}
@media (max-width: 1024px) {
  .section-individual-head .bottom-title,
  .section-individual-head .top-title {
    font-size: 72px;
    line-height: 89.41%;
    padding: 0;
  }
  .section-individual-head .top-title {
    margin-right: auto;
    padding-left: 0;
  }
  .section-individual-head .bottom-title {
    margin-top: -6px;
  }
  .section-individual-head .section-title {
    margin: 0 auto 32px;
    max-width: 593px;
  }
  .section-individual-head .title-underline {
    margin-top: 0;
    right: -5px;
    width: 110%;
  }
  .section-individual-head .title-underline path {
    stroke-width: 2.5;
  }
  .section-individual-head .subtitle {
    margin-left: auto;
    margin-right: 0;
    max-width: 416px;
  }
  .section-individual-head .wrapper {
    overflow: hidden;
  }
  .section-individual-head .line {
    bottom: -45px;
    left: -89px;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .section-individual-head {
    padding: 40px 0;
  }
  .section-individual-head .subtitle {
    font-size: 18px;
    line-height: 23px;
  }
  .section-individual-head .wrapper {
    overflow: hidden;
  }
  .section-individual-head .line {
    max-width: 344px;
  }
  .section-individual-head .line path {
    stroke-width: 2.5;
  }
}
@media (max-width: 575.9px) {
  .section-individual-head {
    padding: 40px 0 20px;
  }
  .section-individual-head .bottom-title,
  .section-individual-head .top-title {
    font-size: 55px;
  }
  .section-individual-head .bottom-title {
    margin-right: 13px;
    margin-top: 0;
  }
  .section-individual-head .subtitle {
    font-size: 16px;
    line-height: 21px;
  }
  .section-individual-head .section-title {
    margin-bottom: 23px;
  }
  .section-individual-head .subtitle {
    max-width: 276px;
  }
  .section-individual-head .wrapper {
    overflow: visible;
  }
  .section-individual-head .line {
    max-width: 203px;
  }
  .section-individual-head .line path {
    stroke-width: 5;
  }
  .section-individual-head .title-underline {
    margin-top: 3px;
    right: -18px;
    width: 124%;
  }
  .section-individual-head .title-underline.mob {
    display: block;
  }
  .section-individual-head .title-underline.desk {
    display: none;
  }
  .section-individual-head .title-underline path {
    stroke-width: 1.2;
  }
  .section-individual-head .line {
    bottom: -38px;
  }
}
@media (max-width: 420px) {
  .section-individual-head .bottom-title,
  .section-individual-head .top-title {
    font-size: 44px;
  }
}
@media (max-width: 340px) {
  .section-individual-head .bottom-title,
  .section-individual-head .top-title {
    font-size: 40px;
  }
}
.section-individual-services {
  padding: 40px 0 0;
}
.section-individual-services.anim .title-underline path {
  stroke-dashoffset: 578;
}
.section-individual-services.anim .merch-wrap .line .img path {
  stroke-dashoffset: 1894;
  transition-delay: 0.5s;
  transition-duration: 1.5s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-individual-services .section-title {
  display: inline-block;
  font-size: 72px;
  line-height: 92px;
  margin-bottom: 32px;
  position: relative;
}
.section-individual-services .title-underline {
  display: block;
  height: 20%;
  left: 50%;
  margin-top: 3px;
  max-width: none;
  position: absolute;
  transform: translateX(-50%);
  width: 140%;
}
.section-individual-services .title-underline.mob {
  display: none;
}
.section-individual-services .title-underline path {
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
}
.section-individual-services .subtitle {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 50px;
  max-width: 464px;
}
.section-individual-services .wrap {
  display: flex;
  padding-bottom: 40px;
}
.section-individual-services .links-list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -40px;
  width: 100%;
}
.section-individual-services .links-list .link {
  background: #e9e9e9;
  color: #929292;
  margin-bottom: 40px;
  margin-right: 40px;
  padding: 45px 65px;
  transition-duration: 0.3s;
  transition-property: background, color;
  width: calc(50% - 20px);
}
.section-individual-services .links-list .link:nth-child(2n) {
  margin-right: 0;
}
.section-individual-services .links-list .link:last-child {
  margin-bottom: 40px;
}
.section-individual-services .links-list .link:hover {
  background: #b1bc00;
  color: #fff;
}
.section-individual-services .links-list .link .link-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 25px;
}
.section-individual-services .links-list .link .link-descr {
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
}
.section-individual-services .img-wrap {
  align-self: flex-start;
  flex-shrink: 0;
  margin-right: 110px;
  max-width: calc(50% - 60px);
  position: relative;
  width: 100%;
}
.section-individual-services .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-individual-services .text-wrap {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-individual-services .link {
  color: #c4c4c4;
  font-size: 40px;
  font-weight: 500;
  line-height: 51px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.section-individual-services .link:last-child {
  margin-bottom: 0;
}
.section-individual-services .link:hover {
  color: #000;
}
.section-individual-services .merch-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1144px;
  padding: 40px 0;
  width: 100%;
}
.section-individual-services .merch-wrap .btn {
  align-items: center;
  align-self: flex-start;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 30px;
  height: 260px;
  justify-content: center;
  line-height: 112.2%;
  margin-bottom: 33px;
  margin-right: 78px;
  transition-duration: 0.3s;
  transition-property: color, background-color;
  width: 260px;
}
.section-individual-services .merch-wrap .btn:hover {
  background-color: #b1bc00;
  color: #000;
}
.section-individual-services .merch-wrap .line {
  align-self: flex-end;
  position: relative;
  width: 70%;
}
.section-individual-services .merch-wrap .line:before {
  content: "";
  display: block;
  padding-top: 28%;
}
.section-individual-services .merch-wrap .line .img {
  height: auto;
}
.section-individual-services .merch-wrap .line .img path {
  stroke-dasharray: 947;
  stroke-dashoffset: 947;
}
.section-individual-services .services-list-mob {
  display: none;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}
.section-individual-services .services-list-mob .card {
  display: flex;
  flex-direction: column;
}
.section-individual-services .services-list-mob .card:not(:last-child) {
  margin-bottom: 30px;
}
.section-individual-services .services-list-mob .services-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  margin-bottom: 20px;
}
.section-individual-services .services-list-mob .img-wrap {
  flex-shrink: 0;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.section-individual-services .services-list-mob .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (max-width: 1280px) {
  .section-individual-services .links-list {
    margin-bottom: -40px;
  }
  .section-individual-services .links-list .link {
    padding: 30px;
  }
}
@media (max-width: 1024px) {
  .section-individual-services .img-wrap {
    margin-right: 20px;
  }
  .section-individual-services .link {
    font-size: 24px;
    line-height: 31px;
  }
  .section-individual-services .merch-wrap .btn {
    font-size: 17px;
    height: 165px;
    margin-bottom: 53px;
    margin-right: 34.5px;
    width: 165px;
  }
  .section-individual-services .merch-wrap .line {
    margin-right: -40px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section-individual-services {
    padding-top: 20px;
  }
  .section-individual-services .section-title {
    font-size: 50px;
    line-height: 64px;
    margin-bottom: 30px;
  }
  .section-individual-services .subtitle {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  .section-individual-services .img-wrap {
    max-width: 350px;
  }
  .section-individual-services .links-list {
    margin-bottom: -20px;
  }
  .section-individual-services .links-list .link {
    margin-bottom: 20px;
    margin-right: 0;
    padding: 30px;
    width: 100%;
  }
  .section-individual-services .merch-wrap .line:before {
    padding-top: 30%;
  }
  .section-individual-services .merch-wrap .line .img {
    height: 100%;
  }
  .section-individual-services .merch-wrap .line .img path {
    stroke-width: 2.5;
  }
}
@media (max-width: 700px) {
  .section-individual-services .img-wrap {
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 575.9px) {
  .section-individual-services {
    padding-top: 0;
  }
  .section-individual-services .links-list .link {
    min-height: 158px;
    padding: 15px;
  }
  .section-individual-services .links-list .link .link-title {
    font-size: 28px;
    line-height: 105%;
    margin-bottom: 15px;
  }
  .section-individual-services .links-list .link .link-descr {
    font-size: 16px;
    line-height: 21px;
  }
  .section-individual-services .section-title {
    font-size: 40px;
    line-height: 51px;
    margin-bottom: 10px;
  }
  .section-individual-services .title-underline {
    margin-top: 0;
  }
  .section-individual-services .title-underline.mob {
    display: block;
    height: 28%;
  }
  .section-individual-services .title-underline.desk {
    display: none;
  }
  .section-individual-services .title-underline path {
    stroke-width: 1.5;
  }
  .section-individual-services .subtitle {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 40px;
  }
  .section-individual-services .wrap {
    padding-bottom: 25px;
  }
  .section-individual-services .merch-wrap {
    padding: 0 0 20px;
  }
  .section-individual-services .merch-wrap .btn {
    font-size: 17px;
    height: 100px;
    margin-bottom: 33px;
    margin-right: 0;
    width: 100px;
  }
  .section-individual-services .merch-wrap .line .img path {
    stroke-width: 4;
  }
}
.section-design-head {
  padding: 100px 0;
}
.section-design-head.anim .title-underline path {
  stroke-dashoffset: 1140;
}
.section-design-head.anim .line-left path,
.section-design-head.anim .line-right path {
  stroke-dashoffset: 0;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-design-head.anim .line-right path {
  transition-delay: 0.5s;
  transition-duration: 2s;
}
.section-design-head.anim .line-left path {
  transition-delay: 0.2s;
  transition-duration: 1.5s;
}
.section-design-head .container {
  max-width: 1366px;
}
.section-design-head .section-title {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 132px;
  line-height: 118.03px;
  margin-bottom: 47px;
  position: relative;
  text-transform: lowercase;
}
.section-design-head .bottom-title {
  align-self: flex-end;
  position: relative;
  text-align: right;
}
.section-design-head .text {
  margin-left: auto;
  margin-right: 126px;
  max-width: 652px;
}
.section-design-head .title-underline {
  display: block;
  left: 50%;
  margin-top: 12px;
  position: absolute;
  transform: translateX(-50%);
  width: 110%;
}
.section-design-head .title-underline path {
  stroke-dasharray: 570;
  stroke-dashoffset: 570;
}
.section-design-head .title-wrap {
  margin: 0 auto;
  max-width: 1013px;
  position: relative;
}
.section-design-head .line-left,
.section-design-head .line-right {
  position: absolute;
}
.section-design-head .subtitle {
  font-size: 63px;
  font-weight: 500;
  line-height: 59px;
  margin-left: auto;
  max-width: 770px;
  text-align: right;
}
.section-design-head .line-right {
  max-width: 589px;
  right: -454px;
  top: 30px;
  width: 100%;
}
.section-design-head .line-right path {
  stroke-dasharray: 861;
  stroke-dashoffset: 861;
}
.section-design-head .line-left {
  left: -186px;
  max-width: 372px;
  top: 140px;
  width: 100%;
}
.section-design-head .line-left path {
  stroke-dasharray: 727;
  stroke-dashoffset: 727;
}
@media (max-width: 768px) {
  .section-design-head {
    padding: 40px 0;
  }
  .section-design-head .section-title {
    font-size: 72px;
    line-height: 89.41%;
    margin: 0 auto 21px;
    max-width: 518px;
  }
  .section-design-head .title-wrap {
    overflow: hidden;
  }
  .section-design-head .subtitle {
    font-size: 40px;
    font-weight: 500;
    line-height: 93.7%;
  }
  .section-design-head .title-underline {
    margin-top: 0;
    top: 71px;
  }
  .section-design-head .title-underline path {
    stroke-width: 3;
  }
  .section-design-head .line-right {
    max-width: 309px;
    right: -114px;
  }
  .section-design-head .line-right path {
    stroke-width: 3;
  }
  .section-design-head .line-left {
    left: 0;
    max-width: 197px;
    top: 77px;
    transform: rotate(7deg);
  }
  .section-design-head .line-left path {
    stroke-width: 3;
  }
}
@media (min-width: 576px) and (max-width: 740px) {
  .section-design-head .line-right {
    right: -150px;
  }
}
@media (max-width: 600px) {
  .section-design-head .section-title {
    font-size: 55px;
    line-height: 89.41%;
  }
  .section-design-head .title-underline {
    margin-top: 8px;
  }
  .section-design-head .bottom-title {
    margin-right: 28px;
  }
  .section-design-head .line-right {
    max-width: 187px;
    right: -114px;
    top: 14px;
  }
  .section-design-head .line-right path {
    stroke-width: 4;
  }
  .section-design-head .top-title {
    margin-left: auto;
    margin-right: 80px;
  }
  .section-design-head .line-left {
    left: -15px;
    max-width: 116px;
    top: 33px;
  }
  .section-design-head .line-left path {
    stroke-width: 4;
  }
  .section-design-head .subtitle {
    font-size: 24px;
    line-height: 93.7%;
    margin-right: 20px;
  }
  .section-design-head .title-wrap {
    overflow: visible;
  }
  .section-design-head .title-underline {
    left: 42%;
    top: 46px;
    width: 125%;
  }
}
@media (max-width: 450px) {
  .section-design-head .section-title {
    font-size: 40px;
  }
  .section-design-head .top-title {
    margin-left: 19px;
  }
  .section-design-head .title-underline {
    margin-top: 0;
    top: 40px;
  }
}
.section-we-can {
  background-color: #b1bc00;
  padding: 40px 0 76px;
}
.section-we-can.anim .title-underline path {
  stroke-dashoffset: 1056;
}
.section-we-can.anim .we-can-wrap .line path {
  stroke-dashoffset: 0;
  transition-delay: 0.5s;
  transition-duration: 2s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-we-can .section-title {
  color: #fff;
  font-size: 72px;
  font-weight: 500;
  line-height: 72px;
  margin-right: 150px;
  max-width: 497px;
  position: relative;
  width: 100%;
}
.section-we-can .top-wrap {
  align-items: center;
  display: flex;
  margin-bottom: 79px;
  position: relative;
}
.section-we-can .title-underline {
  display: block;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 110%;
}
.section-we-can .title-underline path {
  stroke-dasharray: 528;
  stroke-dashoffset: 528;
}
.section-we-can .img-wrap {
  height: 189px;
  position: relative;
  width: calc(100% - 553px);
}
.section-we-can .img-wrap .img {
  object-position: left;
}
.section-we-can .we-can-wrap {
  position: relative;
}
.section-we-can .we-can-wrap .line {
  bottom: -77px;
  max-width: 309px;
  position: absolute;
  right: -99px;
  width: 100%;
}
.section-we-can .we-can-wrap .line path {
  stroke-dasharray: 729;
  stroke-dashoffset: 729;
}
.section-we-can .links-list {
  column-gap: 43px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
}
.section-we-can .links-list .link {
  background-color: #fff;
  color: #929292;
  min-height: 303px;
  padding: 45px 65px;
  transition-duration: 0.3s;
  transition-property: color, background-color;
}
.section-we-can .links-list .link:hover {
  background-color: #000;
  color: #fff;
}
.section-we-can .links-list .block-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 25px;
  text-transform: lowercase;
}
.section-we-can .links-list .block-text {
  font-size: 22px;
  line-height: 131.4%;
}
@media (max-width: 991px) {
  .section-we-can .section-title {
    font-size: 50px;
    line-height: 50px;
    margin-right: 81px;
    max-width: 328px;
    width: 100%;
  }
  .section-we-can .img-wrap {
    height: 125px;
    margin-bottom: -25px;
    width: calc(100% - 398px);
  }
}
@media (max-width: 820px) {
  .section-we-can {
    overflow: hidden;
    padding: 40px 0;
  }
  .section-we-can .links-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-we-can .we-can-wrap .line {
    bottom: -36px;
    max-width: 200px;
    right: -19px;
  }
  .section-we-can .top-wrap {
    margin-bottom: 56px;
  }
}
@media (max-width: 650px) {
  .section-we-can .section-title {
    font-size: 40px;
    line-height: 40px;
    margin-left: 18px;
    margin-right: 0;
    max-width: 263px;
  }
  .section-we-can .img-wrap {
    height: 70px;
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: -27px;
    top: -30px;
    width: 50%;
  }
}
@media (max-width: 575.9px) {
  .section-we-can .section-title {
    font-size: 40px;
    line-height: 40px;
    margin-left: 18px;
    margin-right: 0;
    max-width: 263px;
  }
  .section-we-can .links-list {
    row-gap: 20px;
  }
  .section-we-can .links-list .link {
    min-height: 253px;
    padding: 15px;
  }
  .section-we-can .links-list .block-title {
    font-size: 28px;
    line-height: 111.7%;
    margin-bottom: 25px;
  }
  .section-we-can .links-list .block-text {
    font-size: 16px;
    line-height: 131.4%;
  }
  .section-we-can .top-wrap {
    margin-bottom: 45px;
  }
  .section-we-can .img-wrap {
    height: 70px;
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: -27px;
    top: -30px;
    width: 50%;
  }
  .section-we-can .we-can-wrap .line {
    max-width: 155px;
  }
}
.section-catalog-head {
  padding: 100px 0 144px;
  position: relative;
}
.section-catalog-head.anim .line path {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
  transition-duration: 2s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-catalog-head .section-title {
  font-size: 132px;
  font-weight: 500;
  line-height: 116px;
  margin-bottom: 28px;
  text-align: center;
  word-break: break-word;
}
.section-catalog-head .subtitle {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 417px;
  text-align: center;
}
.section-catalog-head .subtitle-desk {
  display: block;
}
.section-catalog-head .subtitle-mob {
  display: none;
}
.section-catalog-head .line {
  bottom: 40px;
  position: absolute;
  right: 50%;
}
.section-catalog-head .line path {
  stroke-dasharray: 1674;
  stroke-dashoffset: 1674;
}
@media (max-width: 768px) {
  .section-catalog-head {
    padding: 21px 0 121px;
  }
  .section-catalog-head .section-title {
    font-size: 72px;
    line-height: 89.41%;
    margin-bottom: 15px;
    word-break: break-word;
  }
  .section-catalog-head .subtitle {
    font-size: 18px;
    max-width: 258px;
  }
  .section-catalog-head .line {
    bottom: 22px;
    height: 221px;
    max-width: 795px;
    right: 39%;
  }
}
@media (max-width: 575.9px) {
  .section-catalog-head {
    margin-bottom: 20px;
    overflow: hidden;
    padding: 40px 0 55px;
  }
  .section-catalog-head .section-title {
    font-size: 40px;
    line-height: 89.41%;
    margin-bottom: 6px;
    word-break: break-word;
  }
}
@media (max-width: 479.9px) {
  .section-catalog-head .subtitle {
    font-size: 16px;
    max-width: 100%;
  }
  .section-catalog-head .subtitle-desk {
    display: none;
  }
  .section-catalog-head .subtitle-mob {
    display: block;
  }
  .section-catalog-head .line {
    bottom: -30px;
    height: 102px;
    width: 360px;
  }
}
.section-catalog .total-show-text {
  color: #963ebd;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
  margin-top: 30px;
  width: 100%;
}
.section-catalog .filter-tags {
  margin-top: 30px;
}
.section-catalog .catalog-body,
.section-catalog .catalog-head > .dropdown,
.section-catalog .filter-tags {
  transition-duration: 0.2s;
  transition-property: opacity;
}
.section-catalog.loading .catalog-body,
.section-catalog.loading .catalog-head > .dropdown,
.section-catalog.loading .filter-tags {
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}
.section-catalog .search-form {
  height: 30px;
}
.section-catalog .form {
  align-items: center;
  border-left: 2px solid #929292;
  display: flex;
  margin-bottom: 30px;
  padding-left: 20px;
  position: relative;
}
.section-catalog .form .btn {
  background: rgba(0, 0, 0, 0);
  border: none;
  height: 19px;
  margin-right: 10px;
  outline: none;
  width: 19px;
}
.section-catalog .form .btn img {
  height: 100%;
  width: 100%;
}
.section-catalog .form .input {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
  font-size: 16px;
  line-height: 19px;
  padding-bottom: 5px;
  padding-left: 10px;
}
.section-catalog .form .input::placeholder {
  color: #929292;
}
.section-catalog .filter-btn {
  display: none;
  height: 35px;
  margin-left: auto;
  margin-right: 0 !important;
  min-height: 35px;
  min-width: 35px;
  width: 35px;
}
.section-catalog .filter-btn .icon,
.section-catalog .filter-btn .img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.section-catalog .section-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  max-width: 510px;
  word-break: break-word;
}
.section-catalog .catalog-head {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  height: 29px;
  line-height: 1;
}
.section-catalog .catalog-head > * {
  margin-right: 70px;
}
.section-catalog .catalog-head > :last-child {
  margin-right: 0;
}
.section-catalog .catalog-head .mobile-filter {
  display: none;
}
.section-catalog .catalog-head .sort-wrap {
  margin-left: auto;
}
.section-catalog .catalog-head .sort-wrap-mob .radio-title {
  margin-bottom: 12px;
}
.section-catalog .catalog-head .sort-wrap-mob .radio:not(:last-child) {
  margin-bottom: 10px;
}
.section-catalog .catalog-head .sort-wrap-mob .input:checked + .holder {
  border-color: #b1bc00;
}
.section-catalog .catalog-head .sort-wrap-mob .input:checked + .holder:after {
  opacity: 1;
}
.section-catalog .catalog-head .sort-wrap-mob .holder {
  border: 2px solid #929292;
  border-radius: 66px;
  transition-duration: 0.3s;
  transition-property: border-color;
}
.section-catalog .catalog-head .sort-wrap-mob .holder:after {
  background-color: #b1bc00;
  border-radius: 50%;
  content: "";
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-catalog .catalog-head .dropdown .dropdown-trigger .icon img {
  height: auto;
  margin-top: 1px;
  transform: none;
  width: 12px;
}
.section-catalog .catalog-head .dropdown .text {
  margin-left: 0;
}
.section-catalog .catalog-head .dropdown .dropdown-list {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  max-height: 400px;
  min-width: 200px;
  overflow-y: auto;
  padding: 0;
  scrollbar-color: #aaa #eee;
  scrollbar-width: thin;
}
.section-catalog .catalog-head .dropdown .dropdown-list::-webkit-scrollbar {
  background-color: #eee;
  height: 3px;
  width: 2px;
}
.section-catalog
  .catalog-head
  .dropdown
  .dropdown-list::-webkit-scrollbar-thumb {
  background: #aaa;
}
.section-catalog .catalog-head .dropdown .list-item {
  margin-bottom: 0;
  padding: 12px 10px;
  transition-duration: 0.3s;
  transition-property: background;
}
.section-catalog
  .catalog-head
  .dropdown
  .list-item
  .radio
  .input:checked
  + .text {
  color: #963ebd;
}
.section-catalog .catalog-head .dropdown .list-item .checkbox {
  gap: 10px;
}
.section-catalog .catalog-head .dropdown .list-item:hover {
  background: #f9f9f9;
}
.section-catalog .catalog-head .dropdown .color-icon {
  border-radius: 50%;
  margin-left: auto;
  max-height: 20px;
  max-width: 20px;
  min-width: 20px;
  overflow: hidden;
}
.section-catalog .catalog-head .dropdown .color-icon img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.section-catalog .filter-checkboxes {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.section-catalog .filter-checkboxes > * {
  margin-bottom: 5px;
  margin-right: 10px !important;
}
.section-catalog .dropdown-list.prices .bx-filter-parameters-box {
  padding: 20px 30px;
}
.section-catalog
  .dropdown-list.prices
  .bx-filter-parameters-box
  .bx-filter-input-container {
  border: 2px solid #c4c4c4;
  color: #929292;
  font-size: 16px;
  line-height: 19px;
  padding: 5px 12px;
}
.section-catalog
  .dropdown-list.prices
  .bx-filter-parameters-box
  .bx-filter-input-container
  .input {
  width: 100%;
}
.section-catalog .bx-filter-parameters-box {
  width: 271px;
}
.section-catalog .bx-filter-parameters-box .row {
  gap: 10px;
  justify-content: space-between;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-track {
  background: #e7e7e7;
  height: 10px;
  position: relative;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-track-container {
  padding: 20px 0;
}
.section-catalog .bx-filter-parameters-box .col-50 {
  width: calc(50% - 10px);
}
.section-catalog .bx-filter-parameters-box .col-50 .text {
  display: inline-block;
  margin-bottom: 5px;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-vn {
  background-color: #d9d9d9;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-v {
  background-color: #b99acc;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-part {
  background: #d9d9d9;
  height: 20px;
  position: absolute;
  top: -5px;
  width: 2px;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-part.p1 {
  left: 0;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-part.p2 {
  left: 33%;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-part.p3 {
  left: 66%;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-part.p4 {
  right: 0;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-part span {
  color: #6b8086;
  display: block;
  font-size: 11px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  text-align: center;
  top: 30px;
  width: unset;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-v,
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-vd,
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-vn,
.section-catalog .bx-filter-parameters-box .bx-ui-slider-range {
  bottom: 0;
  position: absolute;
  top: 0;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-range {
  z-index: 100;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-vd {
  background: #849da4;
  z-index: 60;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-vn {
  z-index: 70;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-pricebar-v {
  z-index: 80;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-handle {
  background-color: #963ebd;
  background-image: none;
  border-bottom: none;
  border-radius: 50%;
  height: 16px;
  position: absolute;
  top: -26%;
  width: 16px;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-handle:hover {
  -webkit-cursor: grab;
  -ms-cursor: grab;
  -o-cursor: grab;
  cursor: grab;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-handle:active {
  -webkit-cursor: grabbing;
  -ms-cursor: grabbing;
  -o-cursor: grabbing;
  cursor: grabbing;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-handle.left {
  margin-left: -8px;
}
.section-catalog .bx-filter-parameters-box .bx-ui-slider-handle.right {
  margin-right: -8px;
}
.section-catalog .bx-filter-parameters-box .text {
  color: #929292;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: lowercase;
}
.section-catalog .filter-tags {
  align-items: center;
  background-color: #f8f8f8;
  display: none;
  max-width: 920px;
  min-height: 49px;
  padding: 0 30px;
  position: relative;
  width: 100%;
}
.section-catalog .filter-tags .list-tile {
  color: #963ebd;
}
.section-catalog .filter-tags.active {
  display: flex;
}
.section-catalog .filter-tags .tag-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.section-catalog .filter-tags .tag {
  align-items: center;
  display: flex;
  font-size: 18px;
  margin: 10px 0;
}
.section-catalog .filter-tags .tag:not(:last-child) {
  margin-right: 20px;
}
.section-catalog .filter-tags .remove-filter {
  cursor: pointer;
  height: 12px;
  margin-left: 10px;
  position: relative;
  width: 12px;
}
.section-catalog .filter-tags .remove-filter:after,
.section-catalog .filter-tags .remove-filter:before {
  background-color: #d9d9d9;
  content: "";
  height: 1px;
  left: -2px;
  position: absolute;
  top: 6px;
  transition-duration: 0.3s;
  transition-property: background-color;
  transition-timing-function: ease;
  width: 17px;
}
.section-catalog .filter-tags .remove-filter:after {
  transform: rotate(135deg);
}
.section-catalog .filter-tags .remove-filter:before {
  transform: rotate(45deg);
}
.section-catalog .filter-tags .reset-btn {
  color: #929292;
  cursor: pointer;
  font-size: 18px;
  margin: 13px 0 auto auto;
  min-width: 100px;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-catalog .filter-tags .reset-btn:hover {
  color: #963ebd;
}
.section-catalog .catalog-body {
  display: flex;
  flex-wrap: wrap;
  margin-left: -38px;
  padding: 60px 0 0;
  width: calc(100% + 76px);
}
.section-catalog .catalog-body .card-wrap {
  margin-bottom: 4px;
  margin-left: 8px;
  margin-right: 8px;
  width: calc(20% - 16px);
}
@media (min-width: 768.1px) {
  .section-catalog
    .catalog-body
    .card-wrap
    .product-card.product-card-with-color-select {
    position: relative;
    transform: translateZ(0);
    transition-duration: 0.3s;
    transition-property: padding-left;
    transition-timing-function: ease-in-out;
    will-change: padding-left;
  }
  .section-catalog
    .catalog-body
    .card-wrap
    .product-card.product-card-with-color-select
    .color-select-wrap {
    opacity: 0;
    transition-duration: 0.3s;
    transition-property: opacity, width;
    transition-timing-function: ease-in-out;
  }
  .section-catalog
    .catalog-body
    .card-wrap
    .product-card.product-card-with-color-select:hover {
    padding-left: 64px;
  }
  .section-catalog
    .catalog-body
    .card-wrap
    .product-card.product-card-with-color-select:hover
    .color-select-wrap {
    opacity: 1;
  }
}
.section-catalog .catalog-body .product-card {
  height: 100%;
  transition-duration: 0.3s;
  transition-property: height, box-shadow;
  width: 100%;
}
.section-catalog .catalog-body .product-card .img-wrap {
  max-width: 100%;
  width: 100%;
}
.section-catalog .catalog-footer {
  margin-top: 30px;
  position: relative;
}
.section-catalog .catalog-footer[data-collapse="open"] .btn-circle {
  display: none;
}
.section-catalog .catalog-footer .catalog-body {
  padding-top: 0;
}
.section-catalog .btn-circle {
  font-size: 25px;
  height: 140px;
  line-height: 112.2%;
  margin: 0 auto;
  position: relative;
  width: 140px;
  z-index: 9;
}
@media (min-width: 1500px) and (max-width: 1640px) {
  .section-catalog .catalog-body .card-wrap {
    min-height: 478px;
  }
}
@media (max-width: 1330px) {
  .section-catalog .catalog-head > * {
    margin-right: 50px;
  }
}
@media (max-width: 1500px) {
  .section-catalog .catalog-body .card-wrap {
    width: calc(25% - 16px);
  }
}
@media (max-width: 1280px) {
  .section-catalog .catalog-body .card-wrap {
    width: calc(33.33333% - 16px);
  }
}
@media (max-width: 1200px) {
  .section-catalog .catalog-head .dropdown:last-of-type .dropdown-list {
    left: -70px;
  }
}
@media (max-width: 1150px) {
  .section-catalog .catalog-head > * {
    margin-right: 33px;
  }
}
@media (max-width: 1024px) {
  .section-catalog .filter-tags {
    margin-top: 20px;
  }
  .section-catalog .catalog-body {
    margin-left: -21px;
    width: calc(100% + 42px);
  }
  .section-catalog .catalog-body .card-wrap {
    margin-bottom: 20px;
    margin-left: 21px;
    margin-right: 21px;
    width: calc(50% - 42px);
  }
  .section-catalog .filter-btn {
    display: block;
  }
  .section-catalog .catalog-head .dropdown,
  .section-catalog .catalog-head .reset-btn {
    display: none;
  }
  .section-catalog .catalog-head .mobile-filter {
    display: block;
  }
  .section-catalog .catalog-head .mobile-filter .color-icon {
    border-radius: 50%;
    margin-left: auto;
    max-height: 20px;
    max-width: 20px;
    overflow: hidden;
  }
  .section-catalog .catalog-head .mobile-filter .color-icon img {
    height: 100%;
    object-fit: contain;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section-catalog {
    padding: 20px 0;
  }
  .section-catalog .section-title {
    font-size: 50px;
    line-height: 101.66%;
    margin-bottom: 20px;
    max-width: 100%;
    word-break: break-word;
  }
  .section-catalog .search-form {
    margin-bottom: 20px;
  }
  .section-catalog .catalog-head {
    height: 35px;
  }
  .section-catalog .catalog-body {
    padding-bottom: 0;
    padding-top: 40px;
  }
  .section-catalog .catalog-body .product-card:hover {
    height: 100%;
    margin-bottom: 0;
  }
  .section-catalog .catalog-footer {
    margin-top: 0;
  }
  .section-catalog .filter-tags {
    margin-top: 10px;
  }
}
@media (max-width: 575.9px) {
  .section-catalog .section-title {
    font-size: 40px;
    line-height: 101.66%;
    word-break: break-word;
  }
  .section-catalog .catalog-body {
    margin-left: -5px;
    padding-top: 20px;
    width: calc(100% + 15px);
  }
  .section-catalog .catalog-body .card-wrap {
    margin: 0 5px 20px;
    width: calc(50% - 10px);
  }
  .section-catalog .btn-circle {
    font-size: 16px;
    height: 80px;
    width: 80px;
  }
  .section-catalog .filter-tags .reset-btn {
    position: absolute;
    right: 0;
    top: 0;
  }
  .section-catalog .filter-tags .tag-list {
    padding-top: 40px;
  }
  .section-catalog .filter-tags .tag:first-child {
    position: absolute;
    top: 3px;
  }
}
@media (max-width: 370px) {
  .section-catalog .catalog-head {
    justify-content: space-between;
  }
  .section-catalog .catalog-head > * {
    margin-left: 0;
    margin-right: 0;
  }
}
.section-slider-catalog-footer .container .slider-footer {
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .section-slider-catalog-footer .container .slider-footer {
    padding-bottom: 0;
  }
}
.section-category-catalog-list .category-list {
  grid-gap: 20px;
  display: grid;
  grid-auto-rows: 179px;
  grid-template-columns: repeat(auto-fill, 253px);
  justify-content: center;
}
.section-category-catalog-list .category-catalog-item {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  position: relative;
}
.section-category-catalog-list .category-catalog-item .main-section-item {
  display: block;
  transition-duration: 0.2s;
  transition-property: opacity;
}
.section-category-catalog-list
  .category-catalog-item
  a.main-section-item:hover {
  opacity: 0.6;
}
.section-category-catalog-list
  .category-catalog-item.with-list
  .category-sub-list {
  opacity: 1;
  pointer-events: all;
  z-index: 999999;
}
.section-category-catalog-list .category-catalog-item .categoty-item-close {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
}
.section-category-catalog-list .category-catalog-item .image-wrap {
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 100px;
}
.section-category-catalog-list .category-catalog-item .image-wrap img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.section-category-catalog-list .category-catalog-item .label {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
}
.section-category-catalog-list .category-sub-list {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: fit-content;
  left: 0;
  max-height: 504px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
  z-index: 2;
}
.section-category-catalog-list .category-sub-list .list-title {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
}
.section-category-catalog-list .category-sub-list .sub-list {
  display: flex;
  flex-direction: column;
  margin-right: -10px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}
.section-category-catalog-list .category-sub-list .sub-list::-webkit-scrollbar {
  width: 4px;
}
.section-category-catalog-list
  .category-sub-list
  .sub-list::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 4px;
}
.section-category-catalog-list
  .category-sub-list
  .sub-list::-webkit-scrollbar-thumb {
  background: #963ebd;
  border-radius: 45px;
}
.section-category-catalog-list .category-sub-list .sub-item-link {
  display: flex;
  padding: 2px;
  transition-duration: 0.3s;
  transition-property: color;
  width: 100%;
}
.section-category-catalog-list
  .category-sub-list
  .sub-item:hover
  .sub-item-link {
  color: #963ebd;
}
@media (min-width: 1000.1px) {
  .section-category-catalog-list
    .category-catalog-item:hover
    .category-sub-list {
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 1000px) {
  .section-category-catalog-list
    .category-catalog-item.active
    .category-sub-list {
    opacity: 1;
    pointer-events: all;
  }
  .section-category-catalog-list .category-list {
    grid-gap: 15px;
    grid-auto-rows: 179px;
    grid-template-columns: repeat(auto-fill, 219px);
  }
  .section-category-catalog-list .category-catalog-item {
    cursor: pointer;
  }
  .section-category-catalog-list .category-catalog-item .categoty-item-close {
    display: block;
  }
}
@media (max-width: 575.9px) {
  .section-category-catalog-list .category-list {
    grid-gap: 15px;
    grid-template-columns: 100%;
  }
}
.section-slider-goods {
  padding: 40px 0 0;
}
.section-slider-goods.anim.section-recommended-goods
  .section-title
  .underlined
  .line
  path {
  stroke-dashoffset: 522;
}
.section-slider-goods.anim.section-recommended-goods
  .section-title
  .underlined
  .line.mob
  path {
  stroke-dashoffset: 444;
}
.section-slider-goods.anim.section-watched-goods
  .section-title
  .underlined
  .line
  path {
  stroke-dashoffset: 614;
}
.section-slider-goods .section-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 39px;
}
.section-slider-goods .section-title .underlined {
  display: block;
  position: relative;
  width: max-content;
}
.section-slider-goods .section-title .line {
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
}
.section-slider-goods.section-recommended-goods
  .section-title
  .underlined
  .line
  path {
  stroke-dasharray: 261;
  stroke-dashoffset: 261;
}
.section-slider-goods.section-recommended-goods
  .section-title
  .underlined
  .line.mob {
  display: none;
}
.section-slider-goods.section-recommended-goods
  .section-title
  .underlined
  .line.mob
  path {
  stroke-dasharray: 222;
  stroke-dashoffset: 222;
}
.section-slider-goods.section-watched-goods
  .section-title
  .underlined
  .line
  path {
  stroke-dasharray: 307;
  stroke-dashoffset: 307;
}
.section-slider-goods.section-search-watched-goods {
  padding-bottom: 110px;
}
.section-slider-goods .swiper-slide {
  display: flex;
  height: unset;
  opacity: 0;
  width: 25%;
}
.section-slider-goods .swiper-slide.swiper-slide-visible {
  opacity: 1;
}
.section-slider-goods .swiper-slide .product-card {
  width: 100%;
}
.section-slider-goods .slider-product .swiper-slide {
  opacity: 1;
}
.section-slider-goods .slider {
  padding: 30px 72px 40px;
}
.section-slider-goods .swiper-pagination {
  bottom: 0 !important;
  display: none;
  font-size: 0;
}
.section-slider-goods .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #c4c4c4;
  height: 10px;
  transition-duration: 0.1s;
  transition-property: background;
  width: 10px;
}
.section-slider-goods .swiper-pagination-bullet-active {
  background: #b1bc00;
}
.section-slider-goods .swiper-wrapper {
  align-items: stretch;
}
.section-slider-goods .swiper-button-next,
.section-slider-goods .swiper-button-prev {
  top: 200px;
}
.section-slider-goods .swiper-button-next,
.section-slider-goods .swiper-rtl .swiper-button-prev {
  right: 0;
}
.section-slider-goods .swiper-button-prev,
.section-slider-goods .swiper-rtl .swiper-button-next {
  left: 0;
}
.section-slider-goods .statick-width > .swiper-slide {
  width: 323px !important;
}
@media (max-width: 1250px) {
  .section-slider-goods .product-card {
    min-height: 510px;
  }
}
@media (min-width: 1025px) {
  .section-slider-goods .product-card {
    min-height: 560px;
  }
}
@media (max-width: 575.9px) {
  .section-slider-goods .product-card {
    min-height: 520px;
  }
}
@media only screen and (max-width: 768px) {
  .section-slider-goods {
    padding: 20px 0;
  }
  .section-slider-goods .product-card {
    min-height: 525px;
  }
  .section-slider-goods .section-title {
    font-size: 50px;
    margin-bottom: 29px;
    margin-left: 52px;
  }
  .section-slider-goods .section-title .line {
    left: 59%;
    transform: scale(0.81) translateX(-64%);
    width: 160%;
  }
  .section-slider-goods .slider {
    padding: 3px 18px;
  }
  .section-slider-goods .slider .swiper-button-next {
    right: -5px;
  }
  .section-slider-goods .slider .swiper-button-prev {
    left: -5px;
  }
  .section-slider-goods .swiper-pagination {
    bottom: 3px !important;
  }
  .section-slider-goods .statick-width > .swiper-slide {
    margin-right: 6px !important;
  }
  .section-slider-goods.section-search-watched-goods {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 575.9px) {
  .section-slider-goods .product-card {
    padding-bottom: 66px;
  }
}
@media (max-width: 768px) {
  .section-slider-goods .slider-button {
    top: 165px;
  }
}
@media (max-width: 575.9px) {
  .section-slider-goods .slider {
    margin-left: -5px;
    padding: 3px;
    width: calc(100% + 5px);
  }
  .section-slider-goods .slider .slider-button {
    display: none;
  }
  .section-slider-goods .swiper-pagination {
    display: block;
  }
  .section-slider-goods .swiper-wrapper {
    margin-bottom: 30px;
  }
  .section-slider-goods .slider-product .swiper-wrapper {
    margin-bottom: 0;
  }
}
@media (max-width: 630px) {
  .section-slider-goods .product-card {
    min-height: 390px;
  }
}
@media (max-width: 575.9px) {
  .section-slider-goods .section-title {
    font-size: 40px;
    margin-bottom: 29px;
    margin-left: 0;
    text-align: center;
  }
  .section-slider-goods .section-title .line {
    left: 0;
    transform: scale(1) translateX(-7%);
    width: 110%;
  }
  .section-slider-goods.section-search-goods .section-title {
    margin-bottom: 20px;
  }
  .section-slider-goods.section-search-goods .section-title .line {
    top: 86%;
    transform: scale(1) translateX(0);
  }
  .section-slider-goods.section-recommended-goods
    .section-title
    .underlined
    .line.mob {
    display: block;
  }
  .section-slider-goods.section-recommended-goods
    .section-title
    .underlined
    .line.desk {
    display: none;
  }
  .section-slider-goods .product-card {
    min-height: 325px;
  }
}
@media (max-width: 430px) {
  .section-slider-goods:not(.section-search-goods)
    .section-title
    .underlined
    .line {
    left: 4%;
    top: 100%;
    transform: translateX(-25%);
    width: 188%;
  }
  .section-slider-goods:not(.section-search-goods).section-watched-goods
    .section-title {
    margin-bottom: 20px;
  }
  .section-slider-goods .product-card {
    min-height: 325px;
  }
}
.section-case-goods.anim .underlined .line path {
  stroke-dashoffset: 970;
}
.section-case-goods .swiper {
  padding-bottom: 5px;
}
.section-case-goods .underlined {
  width: max-content;
}
.section-case-goods .section-title {
  margin-left: 0;
}
.section-case-goods .underlined .line {
  left: 0;
  left: -7%;
  transform: translateX(0);
  width: 116%;
}
@media (min-width: 768.1px) {
  .section-case-goods .underlined .line {
    transform: translateX(0);
  }
  .section-case-goods .swiper {
    padding-bottom: 5px;
  }
  .section-case-goods .swiper .product-card {
    padding-bottom: 110px;
  }
}
.section-case-goods .underlined .line path {
  stroke-dasharray: 485;
  stroke-dashoffset: 485;
}
@media (max-width: 575.9px) {
  .section-case-goods .underlined {
    margin: 0 auto;
  }
  .section-case-goods .underlined .line {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 110% !important;
  }
}
.section-catalog-category {
  padding-top: 60px;
}
.section-catalog-category .section-title {
  margin-bottom: 40px;
  max-width: 360px;
  word-break: break-word;
}
.section-catalog-category .catalog-body {
  padding-top: 40px;
}
@media (max-width: 768px) {
  .section-catalog-category {
    padding-top: 40px;
  }
  .section-catalog-category .section-title {
    margin-bottom: 20px;
    max-width: 250px;
    word-break: break-word;
  }
  .section-catalog-category .catalog-body {
    padding-top: 20px;
  }
}
.section-cases-head {
  padding: 100px 0 40px;
}
.section-cases-head.anim .section-title .underlined .line.mob path {
  stroke-dashoffset: 456;
}
.section-cases-head.anim .section-title .underlined .line path {
  stroke-dashoffset: 1248;
}
.section-cases-head .container {
  font-size: 16px;
  font-weight: 400;
}
.section-cases-head .section-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 96px;
  margin-bottom: 80px;
  text-transform: none;
}
.section-cases-head .section-title .underlined .line {
  bottom: 0;
  width: 120%;
}
.section-cases-head .section-title .underlined .line.mob {
  display: none;
}
.section-cases-head .section-title .underlined .line.mob path {
  stroke-dasharray: 228;
  stroke-dashoffset: 228;
}
.section-cases-head .section-title .underlined .line path {
  stroke-dasharray: 624;
  stroke-dashoffset: 624;
}
.section-cases-head .subtitle {
  font-size: 24px;
  line-height: 29px;
  margin-top: 29px;
  max-width: 599px;
}
.section-cases-head .subtitle:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .section-cases-head {
    padding: 40px 0 20px;
  }
  .section-cases-head .section-title {
    font-size: 72px;
    line-height: 90.94%;
    margin-bottom: 57px;
  }
  .section-cases-head .subtitle {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media (max-width: 575.9px) {
  .section-cases-head .section-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .section-cases-head .section-title .underlined .line {
    left: 0;
    transform: scaleY(0.6);
    width: 100%;
  }
  .section-cases-head .section-title .underlined .line.mob {
    display: block;
  }
  .section-cases-head .section-title .underlined .line.desk {
    display: none;
  }
  .section-cases-head .subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
}
.section-cases .img-wrap {
  position: relative;
}
.section-cases .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-cases .img-wrap .img {
  object-fit: cover;
}
.section-cases .video {
  align-items: center;
  background: #c4c4c4;
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.section-cases .video:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-cases .video .case-video {
  width: 100%;
}
.section-cases .video .iframe-wrap {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 0;
  position: relative;
  width: 100%;
}
.section-cases .video iframe {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-cases .cases-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 -40px -40px;
  width: calc(100% + 40px);
}
.section-cases .cases-wrap .case {
  margin: 0 0 40px 40px;
  max-width: calc(50% - 40px);
  width: 100%;
}
.section-cases .cases-wrap .case.video {
  max-width: 100%;
}
.section-cases .cases-wrap .case.video:before {
  display: none;
}
.section-cases .cases-wrap .case.video video {
  display: block;
  height: auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .section-cases .cases-wrap {
    margin: 0 0 -20px -20px;
    width: calc(100% + 20px);
  }
  .section-cases .cases-wrap .case {
    margin: 0 0 20px 20px;
    max-width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .section-cases {
    padding: 20px 0;
  }
}
@media (max-width: 400px) {
  .section-cases .cases-wrap {
    margin: 0 0 -20px;
    width: 100%;
  }
  .section-cases .cases-wrap .case {
    margin: 0 0 20px;
    max-width: 100%;
  }
}
.section-other-cases {
  padding: 40px 0 150px;
}
.section-other-cases.anim .section-title .underlined .line path {
  stroke-dashoffset: 970;
}
.section-other-cases .section-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 92px;
  margin-bottom: 69px;
}
.section-other-cases .section-title .underlined .line {
  width: 110%;
}
.section-other-cases .section-title .underlined .line path {
  stroke-dasharray: 485;
  stroke-dashoffset: 485;
}
.section-other-cases .cases-wrap {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.section-other-cases .case:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.section-other-cases .img-wrap {
  position: relative;
}
.section-other-cases .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (min-width: 768.1px) {
  .section-other-cases {
    padding-top: 0;
  }
}
@media (max-width: 1024px) {
  .section-other-cases .cases-wrap {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .section-other-cases {
    padding: 20px 0 40px;
  }
  .section-other-cases .cases-wrap {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  .section-other-cases .cases-wrap .case:nth-of-type(n + 4) {
    display: none;
  }
  .section-other-cases .section-title {
    font-size: 50px;
    line-height: 1.28;
    margin-bottom: 38px;
    margin-left: 23px;
  }
}
@media (max-width: 575.9px) {
  .section-other-cases .section-title {
    font-size: 40px;
    margin-bottom: 32px;
    margin-left: 0;
    text-align: center;
  }
  .section-other-cases .cases-wrap {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .section-other-cases .case:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.section-solutions-head {
  padding-top: 60px;
}
.section-solutions-head.anim .line path {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
  transition-duration: 2s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-solutions-head .section-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
}
.section-solutions-head .bottom-title {
  display: block;
  text-align: center;
}
.section-solutions-head .subtitle {
  font-size: 16px;
  line-height: 1.3;
  margin-left: auto;
  max-width: 500px;
}
.section-solutions-head .title-wrap {
  margin: 0 auto;
  max-width: 748px;
  position: relative;
}
.section-solutions-head .line {
  left: calc(100% - 129px);
  position: absolute;
  top: 59px;
}
.section-solutions-head .line path {
  stroke-dasharray: 441;
  stroke-dashoffset: 441;
}
@media (min-width: 768.1px) and (max-width: 1130px) {
  .section-solutions-head .line {
    left: 63%;
  }
}
@media (max-width: 768px) {
  .section-solutions-head {
    padding: 40px 0 20px;
  }
  .section-solutions-head .section-title {
    font-size: 72px;
    line-height: 89.41%;
    margin-bottom: 0;
  }
  .section-solutions-head .title-wrap {
    max-width: 500px;
  }
  .section-solutions-head .bottom-title {
    margin-top: 0;
    text-align: center;
  }
  .section-solutions-head .subtitle {
    font-size: 18px;
    margin-right: 108px;
    max-width: 250px;
  }
  .section-solutions-head .line {
    left: 57%;
    max-width: 216px;
    top: 34px;
  }
}
@media (max-width: 479.9px) {
  .section-solutions-head .section-title {
    font-size: 50px;
    line-height: 89.41%;
    margin-bottom: 16px;
  }
  .section-solutions-head .bottom-title {
    margin-right: 50px;
    text-align: right;
  }
  .section-solutions-head .subtitle {
    font-size: 14px;
    margin-right: 50px;
    max-width: 197px;
  }
  .section-solutions-head .line {
    left: 59%;
    max-width: 128px;
    top: 11px;
  }
}
.section-solutions .title-wrap {
  align-items: center;
  display: flex;
  padding: 40px 0;
}
.section-solutions .section-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 90px;
}
.section-solutions .slider-wrap {
  margin-left: auto;
  max-width: 1020px;
  padding: 0 37px;
  position: relative;
}
.section-solutions .slider-wrap .img-wrap {
  position: relative;
}
.section-solutions .slider-wrap .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-solutions .slider-wrap .text-wrap {
  font-size: 14px;
  line-height: 17px;
  padding: 10px 7.5px 0;
  text-align: center;
}
.section-solutions .swiper-button-next,
.section-solutions .swiper-button-prev {
  margin: 0;
  top: 35px;
}
.section-solutions .swiper-button-next,
.section-solutions .swiper-rtl .swiper-button-prev {
  right: 0;
}
.section-solutions .swiper-button-prev,
.section-solutions .swiper-rtl .swiper-button-next {
  left: 0;
}
.section-solutions .solutions-wrap {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(12, 1fr);
}
.section-solutions .solutions-item {
  grid-column: span 3;
  position: relative;
}
.section-solutions .solutions-item:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.65%, #000);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-solutions .solutions-item .img-wrap {
  height: 100%;
  position: relative;
  z-index: -1;
}
.section-solutions .solutions-item .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-solutions .solutions-item .img {
  object-fit: cover;
}
.section-solutions .solutions-item .text-wrap {
  bottom: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  left: 0;
  line-height: 1.28;
  padding: 0 10px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
}
@media (max-width: 1440px) {
  .section-solutions .solutions-wrap {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .section-solutions .solutions-wrap {
    gap: 14px;
  }
  .section-solutions .solutions-item {
    grid-column: span 4;
  }
}
@media (max-width: 768px) {
  .section-solutions {
    padding: 20px 0;
  }
  .section-solutions .solutions-item .text-wrap {
    font-size: 22px;
  }
}
@media (max-width: 575.9px) {
  .section-solutions .solutions-wrap .text-wrap {
    font-size: 18px;
  }
  .section-solutions .solutions-item {
    grid-column: span 12;
  }
}
@media (max-width: 479.9px) {
  .section-solutions .solutions-wrap {
    gap: 15px;
  }
  .section-solutions .solutions-wrap .text-wrap {
    font-size: 32px;
  }
}
.section-solutions-partners.section-slider-partners {
  padding: 40px 0 150px;
}
@media (max-width: 768px) {
  .section-solutions-partners.section-slider-partners {
    padding: 20px 0 40px;
  }
}
@media (max-width: 479.9px) {
  .section-solutions-partners.section-slider-partners {
    padding: 20px 0 71px;
  }
}
.section-blogs {
  padding: 116px 0 150px;
}
.section-blogs.anim .title-wrap .line path {
  stroke-dashoffset: 956;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transition-property: stroke-dashoffset;
  transition-timing-function: line;
}
.section-blogs .title-wrap {
  margin: 0 auto 40px;
  max-width: 262px;
  position: relative;
}
.section-blogs .title-wrap .line {
  bottom: 10px;
  display: block;
  left: 154px;
  max-width: 169px;
  position: absolute;
  width: 100%;
}
.section-blogs .title-wrap .line path {
  stroke-dasharray: 478;
  stroke-dashoffset: 478;
}
.section-blogs .title-wrap .dropdown {
  display: none;
  font-size: 18px;
  width: 60px;
}
.section-blogs .title-wrap .dropdown .dropdown-trigger .icon img {
  height: auto;
  margin-top: 1px;
  transform: none;
  width: 12px;
}
.section-blogs .title-wrap .dropdown .text {
  font-size: 18px;
  margin-right: 25px;
}
.section-blogs .title-wrap .dropdown .dropdown-list {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  max-height: 400px;
  min-width: 200px;
  overflow-y: auto;
  padding: 0;
  scrollbar-color: #aaa #eee;
  scrollbar-width: thin;
}
.section-blogs .title-wrap .dropdown .dropdown-list::-webkit-scrollbar {
  background-color: #eee;
  height: 3px;
  width: 2px;
}
.section-blogs .title-wrap .dropdown .dropdown-list::-webkit-scrollbar-thumb {
  background: #aaa;
}
@media (max-width: 520px) {
  .section-blogs .title-wrap .dropdown .dropdown-list {
    left: -230%;
  }
}
.section-blogs .title-wrap .dropdown .list-item {
  margin-bottom: 0;
  padding: 12px 10px;
  transition-duration: 0.3s;
  transition-property: background;
}
.section-blogs .title-wrap .dropdown .list-item .radio .input:checked + .text {
  color: #963ebd;
}
.section-blogs .title-wrap .dropdown .list-item:hover {
  background: #f9f9f9;
}
.section-blogs .section-title {
  line-height: 87.1%;
}
.section-blogs .tabs-head {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 20px 0 30px;
}
.section-blogs .tabs-title {
  color: #000;
  color: #929292;
  display: block;
  font-size: 23px;
  line-height: 29px;
  overflow-x: clip;
  padding: 0 5px;
  transition: color 0.3s ease;
}
.section-blogs .tabs-title:hover {
  color: #b1bc00;
}
.section-blogs .tabs-title .line {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-blogs .tabs-title .line.xl {
  left: 0;
  transform: translateX(0);
  width: unset;
}
.section-blogs .tabs-title.active {
  color: #b1bc00;
}
.section-blogs .tabs-title.active .line {
  opacity: 1;
}
.section-blogs .blogs-wrap {
  grid-gap: 0 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.section-blogs .desk-filter {
  display: none;
}
.section-blogs .blogs-item {
  padding: 40px 20px;
  position: relative;
}
.section-blogs .blogs-item:nth-of-type(-n + 3) {
  padding-top: 20px;
}
.section-blogs .blogs-item:after {
  background-color: #eee;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}
.section-blogs .blogs-item:before {
  background: #eee;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  right: -60px;
  top: 0;
  width: 1px;
}
.section-blogs .blogs-item:nth-child(3n + 3):before {
  display: none;
}
.section-blogs .blogs-item .title {
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
  margin-bottom: 15px;
}
.section-blogs .blogs-item .tag {
  color: #b1bc00;
  display: block;
  font-size: 23px;
  line-height: 29px;
  margin-bottom: 15px;
}
.section-blogs .blogs-item .date {
  color: #b1bc00;
  display: block;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
}
.section-blogs .blogs-item .img-wrap {
  margin-bottom: 15px;
  max-width: 460px;
  position: relative;
  width: 100%;
}
.section-blogs .blogs-item .img-wrap:before {
  content: "";
  display: block;
  padding-top: 70%;
}
.section-blogs .blogs-item .text {
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 15px;
}
.section-blogs .blogs-item .btn {
  align-items: center;
  display: flex;
  font-size: 16px;
  height: 50px;
  justify-content: center;
  line-height: 21px;
  width: 170px;
}
@media (max-width: 1280px) {
  .section-blogs .blogs-wrap {
    grid-gap: 0 28px;
    grid-template-columns: repeat(2, 1fr);
  }
  .section-blogs .blogs-item:nth-of-type(-n + 3) {
    padding-top: 40px;
  }
  .section-blogs .blogs-item:nth-of-type(-n + 2) {
    padding-top: 20px;
  }
  .section-blogs .blogs-item:nth-child(3n + 3):before {
    display: block;
  }
  .section-blogs .blogs-item:nth-child(2n + 2):before {
    display: none;
  }
  .section-blogs .blogs-item:before {
    right: -15px;
  }
}
@media (max-width: 1024px) {
  .section-blogs .blogs-tabs-wrap {
    display: none;
  }
  .section-blogs .desk-filter {
    display: grid;
  }
  .section-blogs .title-wrap {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    max-width: 500px;
  }
  .section-blogs .title-wrap .dropdown {
    display: flex;
  }
}
@media (max-width: 768px) {
  .section-blogs {
    padding: 66px 0 60px;
  }
  .section-blogs .section-title {
    font-size: 72px;
    line-height: 87.1%;
  }
  .section-blogs .title-wrap {
    max-width: 353px;
  }
  .section-blogs .title-wrap .line {
    bottom: 23px;
    left: 115px;
    max-width: 93px;
  }
  .section-blogs .blogs-item {
    padding: 30px 20px;
  }
  .section-blogs .blogs-item .title {
    font-size: 30px;
    line-height: 38px;
  }
  .section-blogs .blogs-item .img-wrap:before {
    padding-top: 81%;
  }
  .section-blogs .blogs-item .text {
    font-size: 20px;
    line-height: 26px;
  }
  .section-blogs .desk-filter {
    padding-top: 40px;
  }
}
@media (max-width: 650px) {
  .section-blogs {
    padding: 66px 0 40px;
  }
  .section-blogs .blogs-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-blogs .blogs-item:nth-child(n):before {
    display: none;
  }
  .section-blogs .desk-filter {
    padding-top: 20px;
  }
}
.section-blogs-single {
  padding: 55px 0 150px;
}
.section-blogs-single .container {
  max-width: 830px;
}
.section-blogs-single .author {
  align-items: center;
  display: flex;
  margin-bottom: 42px;
}
.section-blogs-single .author .img-block {
  border-radius: 50%;
  height: 58px;
  margin-right: 18px;
  overflow: hidden;
  width: 58px;
}
.section-blogs-single .author .img-block img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.section-blogs-single .author .author-info {
  display: flex;
  flex-direction: column;
}
.section-blogs-single .author .author-name {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 1px;
}
.section-blogs-single .author .time-public {
  color: #929292;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}
.section-blogs-single .tag {
  color: #b1bc00;
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: -20px;
}
@media (max-width: 768px) {
  .section-blogs-single {
    padding: 55px 0 50px;
  }
}
@media (max-width: 575.9px) {
  .section-blogs-single .tag {
    margin-bottom: 0;
  }
}
.section-blogs-single-old {
  padding: 80px 0 150px;
}
.section-blogs-single-old .container {
  max-width: 1460px;
}
.section-blogs-single-old .blog-title {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.28;
  margin-bottom: 30px;
}
.section-blogs-single-old .tag {
  background: #000;
  color: #b1bc00;
  display: block;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 10px;
  padding: 5px 25px;
  width: max-content;
}
.section-blogs-single-old .date {
  color: #b1bc00;
  display: block;
  font-size: 20px;
  margin-bottom: 30px;
}
.section-blogs-single-old .main-image {
  display: block;
  margin: 0 auto 50px;
  max-width: 844px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.section-blogs-single-old .main-image:before {
  content: "";
  display: block;
  padding-top: 70%;
}
.section-blogs-single-old .main-image .img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-blogs-single-old .blog-content .images-wrap {
  align-items: stretch;
  display: flex;
  margin-bottom: 40px;
  padding: 0 30px;
  width: 100%;
}
.section-blogs-single-old .blog-content .images-wrap .img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-blogs-single-old .blog-content .image-block {
  display: block;
  overflow: hidden;
  position: relative;
}
.section-blogs-single-old .blog-content .image-block:before {
  content: "";
  display: block;
  position: relative;
}
.section-blogs-single-old .blog-content .image-block:first-child {
  margin-right: 63px;
  max-width: 29.5%;
  width: 100%;
}
.section-blogs-single-old .blog-content .image-block:first-child:before {
  padding-top: 150%;
}
.section-blogs-single-old .blog-content .image-block:last-child {
  max-width: 900px;
  width: 100%;
}
.section-blogs-single-old .blog-content .image-block:last-child:before {
  padding-top: 66%;
}
.section-blogs-single-old .blog-content .main-text {
  background: #f2f2f2;
  font-size: 28px;
  font-weight: 450;
  line-height: 1.28;
  margin-bottom: 40px;
  padding: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .section-blogs-single-old {
    padding: 60px 0;
  }
  .section-blogs-single-old .blog-content .images-wrap {
    padding: 0;
  }
  .section-blogs-single-old .blog-content .image-block:first-child {
    margin-right: 19px;
    max-width: 30.1%;
  }
}
@media (max-width: 575.9px) {
  .section-blogs-single-old {
    padding: 60px 0 40px;
  }
  .section-blogs-single-old .blog-title {
    font-size: 30px;
    line-height: 1.26;
  }
  .section-blogs-single-old .blog-content .images-wrap {
    flex-direction: column;
  }
  .section-blogs-single-old .blog-content .image-block:first-child {
    margin-bottom: 20px;
    margin-right: 0;
    max-width: 100%;
  }
  .section-blogs-single-old .blog-content .main-text {
    font-size: 22px;
    line-height: 28px;
  }
}
.section-product .product-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: calc(50% + 40px);
}
.section-product .product-view .articul {
  display: none;
}
.section-product .product-view .section-title {
  display: none;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}
.section-product .not-in-stock {
  align-items: center;
  display: flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: -20px;
  width: 163px;
}
.section-product .not-in-stock img,
.section-product .not-in-stock svg {
  display: block;
  height: 100%;
  width: 100%;
}
.section-product .img-wrap {
  position: relative;
}
.section-product .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-product .variations-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}
.section-product .variation-label {
  margin-bottom: 5px;
}
.section-product .variations-select-wrap {
  width: 100%;
}
.section-product .variations-select-wrap select {
  display: none;
}
.section-product .variations-select-wrap .dropdown-trigger {
  border-bottom: 2px solid #000;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.section-product .variations-select-wrap .dropdown-list {
  padding: 8.5px 10px;
  width: fit-content;
}
.section-product .variations-select-wrap .dropdown-list .text {
  pointer-events: none;
  text-transform: lowercase;
}
.section-product .variations-select-wrap .list-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.section-product .variations-select-wrap .color-icon {
  border-radius: 50%;
  display: block;
  margin-left: 10px;
  max-height: 20px;
  max-width: 20px;
  min-width: 20px;
  overflow: hidden;
}
.section-product .variations-select-wrap .color-icon img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.section-product .variations-select-wrap .dropdown.active .icon {
  transform: rotate(90deg);
}
.section-product .defect-text {
  margin-bottom: 16px;
}
.section-product .variations-select-label {
  display: flex;
}
.section-product .bottom-slider {
  padding: 0 44px;
}
.section-product .bottom-slider .swiper-wrapper {
  height: unset;
}
.section-product .swiper-button-next,
.section-product .swiper-rtl .swiper-button-prev {
  right: 0;
}
.section-product .swiper-button-prev,
.section-product .swiper-rtl .swiper-button-next {
  left: 0;
}
.section-product .product-wrap {
  display: flex;
}
.section-product .product-wrap .product-info {
  padding-left: 79px;
  width: calc(50% - 40px);
}
.section-product .product-wrap .product-info .min-circulation {
  color: #963ebd;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 30px;
  text-align: left;
}
.section-product .product-wrap .product-info .section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
.section-product .color-wrap,
.section-product .product-form {
  display: flex;
  flex-direction: column;
}
.section-product .articul:not(.active),
.section-product .circulation-wrap:not(.active),
.section-product .color-value:not(.active),
.section-product .defect-text:not(.active),
.section-product .js-product-sliders:not(.active),
.section-product .not-in-stock:not(.active),
.section-product .offer-status-item:not(.active),
.section-product .price:not(.active),
.section-product .stock-eu:not(.active),
.section-product .stock:not(.active) {
  display: none;
}
.section-product .js-product-sliders {
  display: block;
  height: max-content;
}
.section-product .articul {
  color: #c4c4c4;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 5px;
}
.section-product .section-title {
  font-size: 50px;
  line-height: 99.6%;
  margin-bottom: 30px;
}
.section-product .color-value {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 15px;
  text-transform: lowercase;
}
.section-product .color-radio-wrap {
  align-items: center;
  display: flex;
  position: relative;
  z-index: 1;
}
.section-product .color-radio-wrap .radio:not(:last-child) {
  margin-right: 15px;
}
.section-product .color-radio-wrap .holder {
  border: 2px solid #fff;
  border-radius: 50%;
  height: 18px;
  position: relative;
  width: 18px;
}
.section-product .color-radio-wrap .holder:after {
  background-color: inherit;
  border-radius: 50%;
  content: "";
  display: block;
  height: 22px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  z-index: -1;
}
.section-product .color-radio-wrap .input:checked + .holder:after {
  opacity: 1;
}
.section-product .price {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}
.section-product .stock {
  font-size: 16px;
  font-size: 400;
  line-height: 1.3;
}
.section-product .stock-eu {
  color: #b1bc00;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
}
.section-product .circulation-wrap {
  display: flex;
  flex-wrap: wrap;
}
.section-product .circulation-wrap .input-wrap {
  margin-bottom: 20px;
  margin-right: 20px;
}
.section-product .circulation-wrap .input {
  border-bottom: 2px solid #000;
  font-size: 13px;
  font-weight: 400;
  height: 100%;
  line-height: 1.3;
  margin-bottom: 20px;
  padding-bottom: 3px;
  width: 129px;
}
.section-product .circulation-wrap .input::placeholder {
  color: #000;
}
.section-product .circulation-wrap .btn {
  font-size: 16px;
  font-weight: 400;
  height: 38px;
  line-height: 1;
  margin-bottom: 20px;
  width: 155px;
}
.section-product .circulation-wrap .btn .text {
  padding-bottom: 2px;
}
.section-product .circulation-wrap .btn:last-child {
  margin-bottom: 10px;
}
.section-product .tabs-head {
  display: flex;
}
@media (max-width: 400px) {
  .section-product .tabs-head {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.section-product .tabs-head .underlined .line {
  left: 0 !important;
  top: unset !important;
  transform: unset !important;
}
.section-product .tabs-title {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  margin-right: 50px;
  transition: color 0.3s ease;
}
.section-product .tabs-title:first-child .line {
  top: 86%;
}
.section-product .tabs-title:last-child {
  margin-right: 0;
}
.section-product .tabs-title.active,
.section-product .tabs-title:hover {
  color: #b1bc00;
}
.section-product .tabs-title.active {
  margin-top: 0;
}
.section-product .tabs-title .line {
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}
.section-product .tabs-title.active .line {
  opacity: 1;
}
.section-product .tabs-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  padding-top: 35px;
}
.section-product .tabs-body .content {
  text-transform: lowercase;
}
.section-product .accord-body {
  min-height: 525px;
  position: relative;
}
.section-product .accord-body:after {
  background: linear-gradient(180deg, transparent 3.04%, #fff 96.96%);
  content: "";
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transition-duration: 0.15s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  z-index: 2;
}
.section-product .accord.disable .text-toggle {
  display: none;
}
.section-product .accord.disable .content {
  height: 100%;
  min-height: unset;
}
.section-product .accord.disable .accord-body:after {
  display: none;
}
.section-product
  .accord.disable:not(.active):not(.accord-inited)
  > .accord-body {
  display: block;
}
.section-product .accord[data-collapse="open"] .accord-body:after {
  opacity: 0;
}
.section-product .accord[data-collapse="open"] .accord-head img {
  transform: rotate(90deg);
}
.section-product .accord.collapse:not(.active) .accord-body {
  display: block;
  height: 525px;
  overflow: hidden;
}
.section-product .text-toggle {
  align-items: center;
  display: flex;
  justify-content: center;
}
.section-product .text-toggle img {
  transform: rotate(-90deg);
  transition-duration: 0.3s;
  transition-property: transform;
}
.section-product .top-slider {
  height: 100%;
  margin-bottom: 30px;
  max-height: 400px;
  min-height: 595px;
}
.section-product .top-slider .img-wrap {
  height: 100%;
  width: 100%;
}
.section-product .top-slider .img-wrap:before {
  display: none;
}
.section-product .top-slider .img-wrap .img {
  margin: auto;
  max-height: 580px;
  max-width: 580px;
  object-fit: contain;
  position: relative;
}
.section-product .bottom-slider:not(.swiper-initialized),
.section-product .top-slider:not(.swiper-initialized) {
  display: none;
}
.section-product .defect-caution {
  align-items: center;
  background-color: rgba(177, 188, 0, 0.188);
  display: flex;
  gap: 17px;
  margin-block-end: 30px;
  max-width: max-content;
  padding-block: 8px;
  padding-inline: 15px;
}
.section-product .defect-caution__text {
  font-size: 18px;
}
.section-product .defect-caution__icon {
  height: 20px;
  width: 20px;
}
.section-product .defect-caution__icon svg {
  height: 100%;
  width: 100%;
}
.section-product .product-characteristics {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 61px;
  height: max-content;
  justify-content: flex-start;
  width: 100%;
}
.section-product .product-characteristics .characteristics {
  align-items: flex-start;
  display: flex;
  flex-basis: 190px;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
  margin: 0;
  max-width: 190px;
}
.section-product .product-characteristics .characteristics .name {
  color: #929292;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.section-product .product-characteristics .characteristics .value {
  color: #000;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}
@media (max-width: 1540px) {
  .section-product .product-characteristics .characteristics {
    flex-basis: 170px;
    max-width: 170px;
  }
  .section-product .product-characteristics .characteristics .name {
    font-size: 18px;
    line-height: 23px;
  }
  .section-product .product-characteristics .characteristics .value {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 1200px) {
  .section-product .product-characteristics {
    gap: 20px;
  }
  .section-product .product-characteristics .characteristics {
    flex-basis: 160px;
    max-width: 160px;
  }
}
@media (max-width: 1024px) {
  .section-product .product-characteristics {
    gap: 20px 59px;
  }
  .section-product .product-characteristics .characteristics {
    flex-basis: 190px;
    max-width: 190px;
  }
  .section-product .product-characteristics .characteristics .name {
    font-size: 20px;
    line-height: 26px;
  }
  .section-product .product-characteristics .characteristics .value {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 710px) {
  .section-product .product-characteristics {
    gap: 20px;
    width: 100%;
  }
  .section-product .product-characteristics .characteristics {
    flex-basis: 150px;
    gap: 4px;
    max-width: 150px;
  }
  .section-product .product-characteristics .characteristics .name {
    font-size: 14px;
    line-height: 18px;
  }
  .section-product .product-characteristics .characteristics .value {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 1280px) {
  .section-product {
    padding-bottom: 20px;
  }
  .section-product .product-view {
    width: calc(40% + 100px);
  }
  .section-product .product-info {
    padding-left: 40px;
    width: calc(60% - 100px);
  }
  .section-product .color-wrap {
    align-items: center;
    flex-direction: row;
  }
  .section-product .color-value {
    margin-bottom: 0;
    margin-left: 50px;
    order: 5;
  }
  .section-product .tabs-body {
    font-size: 22px;
  }
  .section-product .top-slider {
    max-height: 40vw;
    min-height: 40vw;
  }
  .section-product .top-slider .img-wrap .img {
    max-height: 400px;
    max-width: 400px;
    top: 50%;
    transform: translateY(-50%);
  }
  .section-product .accord-body {
    min-height: 470px;
  }
  .section-product .accord.collapse:not(.active) .accord-body {
    height: 470px;
  }
}
@media (max-width: 1024px) {
  .section-product .product-wrap {
    flex-direction: column;
  }
  .section-product .product-wrap .product-info {
    margin-left: 0;
    margin-top: 30px;
    padding-left: 0;
    width: 100%;
  }
  .section-product .section-title {
    font-size: 40px;
  }
  .section-product .product-view {
    width: 100%;
  }
  .section-product .product-view .articul,
  .section-product .product-view .section-title {
    display: block;
  }
  .section-product .top-slider {
    max-height: 60vw;
    min-height: 60vw;
  }
  .section-product .top-slider .img-wrap {
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
  }
  .section-product .top-slider .img-wrap .img {
    max-height: unset;
    max-width: unset;
    top: unset;
    transform: unset;
  }
  .section-product .variations-wrap {
    margin-bottom: 30px;
  }
  .section-product .accord-body {
    min-height: 200px;
  }
  .section-product .accord.collapse:not(.active) .accord-body {
    height: 200px;
  }
}
@media (max-width: 828px) {
  .section-product .price {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section-product .section-title {
    font-size: 28px;
  }
  .section-product .bottom-slider {
    padding: 0 53px;
  }
  .section-product .slider-button {
    width: max-content;
  }
  .section-product .price {
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
  }
  .section-product .accord-body {
    min-height: 199px;
  }
  .section-product .accord.collapse:not(.active) .accord-body {
    height: 199px;
  }
}
@media (max-width: 575.9px) {
  .section-product .top-slider {
    max-height: unset;
    min-height: unset;
  }
  .section-product .top-slider .img-wrap {
    height: 100%;
    width: 100%;
  }
  .section-product .top-slider .img-wrap .img {
    height: 230px;
    max-height: unset;
    max-width: 230px;
  }
}
@media (max-width: 479.9px) {
  .section-product .product-view .section-title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
  }
  .section-product .top-slider {
    margin-bottom: 10px;
  }
  .section-product .bottom-slider {
    padding: 0 20px;
  }
  .section-product .product-wrap .product-info {
    margin-top: 15px;
  }
  .section-product .circulation-wrap .input-wrap .input {
    width: 100%;
  }
  .section-product .tabs-body {
    font-size: 16px;
  }
  .section-product .defect-caution {
    max-width: 100%;
  }
}
.section-portfolio-head {
  padding: 40px 0 200px;
}
.section-portfolio-head.anim .underlined .line path {
  stroke-dashoffset: 1428;
}
.section-portfolio-head.anim .text-wrap .line path {
  stroke-dashoffset: 2352;
  transition-delay: 0.4s;
  transition-duration: 2s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-portfolio-head .section-title {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 59px;
}
.section-portfolio-head .underlined .line path {
  stroke-dasharray: 714;
  stroke-dashoffset: 714;
}
.section-portfolio-head .text-wrap {
  margin-left: auto;
  margin-right: 14.69%;
  max-width: 759px;
  position: relative;
}
.section-portfolio-head .text-wrap .line {
  position: absolute;
  right: 0;
  top: 105px;
  transform: translate(58%);
}
.section-portfolio-head .text-wrap .line path {
  stroke-dasharray: 1176;
  stroke-dashoffset: 1176;
}
.section-portfolio-head .subtitle {
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
}
.section-portfolio-head .text {
  font-size: 16px;
  font-weight: 400;
  max-width: 561px;
}
@media (min-width: 768.1px) and (max-width: 1400px) {
  .section-portfolio-head .text-wrap .line {
    transform: translate(72%);
  }
}
@media (max-width: 768px) {
  .section-portfolio-head {
    padding: 40px 0;
  }
  .section-portfolio-head .section-title {
    font-size: 72px;
    margin-bottom: 31px;
    margin-left: 11px;
  }
  .section-portfolio-head .section-title .underlined .line {
    width: 377px;
  }
  .section-portfolio-head .subtitle {
    font-size: 50px;
  }
  .section-portfolio-head .text-wrap {
    margin-right: 0;
    max-width: 623px;
  }
  .section-portfolio-head .text-wrap .line {
    bottom: -37px;
    height: 168px;
    top: unset;
    transform: translate(49%);
    width: 577px;
  }
  .section-portfolio-head .text {
    font-size: 18px;
    max-width: 560px;
  }
}
@media (max-width: 712px) {
  .section-portfolio-head .text-wrap .line {
    transform: translate(62%, 17px);
  }
}
@media (max-width: 575.9px) {
  .section-portfolio-head {
    padding: 40px 0 20px;
  }
  .section-portfolio-head .section-title {
    font-size: 40px;
    margin-bottom: 8px;
    margin-left: 0;
  }
  .section-portfolio-head .section-title .underlined .line {
    width: 222px;
  }
  .section-portfolio-head .subtitle {
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .section-portfolio-head .text-wrap {
    margin-bottom: 10px;
    margin-left: 18px;
  }
  .section-portfolio-head .text-wrap .line {
    bottom: -15px;
    height: 80px;
    transform: translate(49%);
  }
  .section-portfolio-head .text {
    font-size: 16px;
    line-height: 1.31;
    margin-right: 35px;
  }
}
@media (max-width: 375px) {
  .section-portfolio-head .text {
    margin-right: 0;
  }
}
@media (max-width: 335px) {
  .section-portfolio-head .text-wrap .text {
    margin-right: 25px;
  }
}
.section-portfolio-cases.anim .underlined .line.desk path {
  stroke-dashoffset: 886;
}
.section-portfolio-cases.anim .underlined .line.mob path {
  stroke-dashoffset: 568;
}
.section-portfolio-cases .cases-footer.anim .line.mob path#arrow,
.section-portfolio-cases .cases-footer.anim .line.mob path#first,
.section-portfolio-cases .cases-footer.anim .line.mob path#line,
.section-portfolio-cases .cases-footer.anim .line.mob path#second,
.section-portfolio-cases .cases-footer.anim .line.tab path#arrow,
.section-portfolio-cases .cases-footer.anim .line.tab path#first,
.section-portfolio-cases .cases-footer.anim .line.tab path#line,
.section-portfolio-cases .cases-footer.anim .line.tab path#second,
.section-portfolio-cases .cases-footer.anim .line:not(.mob, .tab) path#arrow,
.section-portfolio-cases .cases-footer.anim .line:not(.mob, .tab) path#first,
.section-portfolio-cases .cases-footer.anim .line:not(.mob, .tab) path#line,
.section-portfolio-cases .cases-footer.anim .line:not(.mob, .tab) path#second {
  stroke-dashoffset: 0;
  transition-property: stroke-dashoffset;
  transition-timing-function: linear;
}
.section-portfolio-cases .cases-footer.anim .line:not(.mob, .tab) path#first {
  stroke-dashoffset: 1190;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-portfolio-cases .cases-footer.anim .line:not(.mob, .tab) path#second {
  stroke-dashoffset: 1240;
  transition-delay: 1.2s;
  transition-duration: 1s;
}
.section-portfolio-cases .cases-footer.anim .line:not(.mob, .tab) path#arrow {
  transition-delay: 2.2s;
  transition-duration: 0.3s;
}
.section-portfolio-cases .cases-footer.anim .line.tab path#line {
  stroke-dashoffset: 818;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-portfolio-cases .cases-footer.anim .line.tab path#arrow {
  transition-delay: 1.2s;
  transition-duration: 0.3s;
}
.section-portfolio-cases .cases-footer.anim .line.mob path#line {
  stroke-dashoffset: 424;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-portfolio-cases .cases-footer.anim .line.mob path#arrow {
  transition-delay: 1.2s;
  transition-duration: 0.3s;
}
.section-portfolio-cases .section-title {
  font-size: 55px;
  font-weight: 400;
  line-height: 1.27;
  margin-left: -20px;
}
.section-portfolio-cases .underlined {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.section-portfolio-cases .underlined .line {
  left: 0;
  position: relative;
  transform: translate(0);
}
.section-portfolio-cases .underlined .line.desk path {
  stroke-dasharray: 443;
  stroke-dashoffset: 443;
}
.section-portfolio-cases .underlined .line.mob {
  display: none;
}
.section-portfolio-cases .underlined .line.mob path {
  stroke-dasharray: 284;
  stroke-dashoffset: 284;
}
.section-portfolio-cases .cases-head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  max-width: 1000px;
}
.section-portfolio-cases .cases-controls {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  margin-left: auto;
}
.section-portfolio-cases .cases-controls .dropdown {
  margin-right: 70px;
}
.section-portfolio-cases .cases-controls .dropdown:last-child {
  margin-right: 0;
}
.section-portfolio-cases .cases-controls .dropdown .dropdown-trigger .icon img {
  height: auto;
  margin-top: 1px;
  transform: none;
  width: 11px;
}
.section-portfolio-cases .cases-controls .dropdown .text {
  margin-right: 25px;
}
.section-portfolio-cases .cases-controls .dropdown .dropdown-list {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  max-height: 400px;
  max-width: 300px;
  min-width: 250px;
  overflow-y: auto;
  padding: 0;
  scrollbar-color: #aaa #eee;
  scrollbar-width: thin;
}
.section-portfolio-cases
  .cases-controls
  .dropdown
  .dropdown-list::-webkit-scrollbar {
  background-color: #eee;
  height: 3px;
  width: 2px;
}
.section-portfolio-cases
  .cases-controls
  .dropdown
  .dropdown-list::-webkit-scrollbar-thumb {
  background: #aaa;
}
.section-portfolio-cases .cases-controls .dropdown .list-item {
  margin-bottom: 0;
  padding: 8.5px 10px;
  transition-duration: 0.3s;
  transition-property: background;
}
.section-portfolio-cases
  .cases-controls
  .dropdown
  .list-item
  .radio
  .input:checked
  + .text {
  color: #963ebd;
  white-space: normal;
}
.section-portfolio-cases .cases-controls .dropdown .list-item:hover {
  background: #f9f9f9;
}
.section-portfolio-cases .reset-btn {
  cursor: pointer;
  opacity: 0.5;
  pointer-events: none;
}
.section-portfolio-cases .reset-btn.active {
  opacity: 1;
  pointer-events: all;
}
.section-portfolio-cases .reset-btn.active:hover {
  color: #963ebd;
}
.section-portfolio-cases .reset-btn .text {
  margin-left: 0;
}
.section-portfolio-cases .select-default .select-current {
  padding-right: 36px;
}
.section-portfolio-cases .select {
  margin-right: 70px;
}
.section-portfolio-cases .select:last-child {
  margin-right: 0;
}
.section-portfolio-cases .cases-body {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
}
.section-portfolio-cases .cases-wrap[data-collapse="open"] .cases-footer {
  display: none;
}
.section-portfolio-cases .cases-item {
  display: flex;
  flex-direction: column;
}
.section-portfolio-cases .cases-item .img-wrap {
  margin-bottom: 10px;
  position: relative;
}
.section-portfolio-cases .cases-item .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-portfolio-cases .cases-item .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}
.section-portfolio-cases .cases-item .text {
  font-size: 22px;
  line-height: 28px;
}
.section-portfolio-cases .cases-footer {
  align-items: center;
  display: flex;
  max-width: 1262px;
  position: relative;
}
.section-portfolio-cases .cases-footer .line {
  bottom: 0;
  left: -16%;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-portfolio-cases .cases-footer .line:not(.mob, .tab) path#first {
  stroke-dasharray: 595;
  stroke-dashoffset: 595;
}
.section-portfolio-cases .cases-footer .line:not(.mob, .tab) path#second {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}
.section-portfolio-cases .cases-footer .line:not(.mob, .tab) path#arrow {
  stroke-dasharray: 43;
  stroke-dashoffset: 43;
}
.section-portfolio-cases .cases-footer .line.tab path#line {
  stroke-dasharray: 409;
  stroke-dashoffset: 409;
}
.section-portfolio-cases .cases-footer .line.tab path#arrow {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
}
.section-portfolio-cases .cases-footer .line.mob path#line {
  stroke-dasharray: 212;
  stroke-dashoffset: 212;
}
.section-portfolio-cases .cases-footer .line.mob path#arrow {
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
}
.section-portfolio-cases .cases-footer .line.mob,
.section-portfolio-cases .cases-footer .line.tab {
  display: none;
}
.section-portfolio-cases .cases-footer .link {
  color: #929292;
  font-size: 18px;
  line-height: 1.27;
  margin-left: auto;
  transition: color 0.3s ease;
}
.section-portfolio-cases .cases-footer .link:hover {
  color: #000;
}
@media (max-width: 1280px) {
  .section-portfolio-cases .cases-body {
    grid-column-gap: 18px;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .section-portfolio-cases .cases-item .title {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .section-portfolio-cases .section-title {
    font-size: 50px;
    margin-left: -25px;
  }
  .section-portfolio-cases .underlined .line {
    width: 315px;
  }
  .section-portfolio-cases .cases-body {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-portfolio-cases
    .cases-controls
    .dropdown:not(:first-child)
    .dropdown-list {
    left: auto;
    right: 0;
  }
  .section-portfolio-cases .cases-footer {
    max-width: 496px;
  }
  .section-portfolio-cases .cases-footer .line {
    height: auto;
    left: unset;
    right: 31%;
    width: 380px;
  }
  .section-portfolio-cases .cases-footer .line.tab {
    display: block;
  }
  .section-portfolio-cases .cases-footer .line.desk {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-portfolio-cases {
    padding: 20px 0;
  }
  .section-portfolio-cases .cases-body {
    margin-bottom: 30px;
  }
}
@media (max-width: 720px) {
  .section-portfolio-cases .section-title {
    margin-bottom: 20px;
  }
  .section-portfolio-cases .cases-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-portfolio-cases .cases-controls {
    margin-left: 0;
  }
}
@media (max-width: 575.9px) {
  .section-portfolio-cases .cases-head {
    margin-bottom: 20px;
  }
  .section-portfolio-cases .section-title {
    font-size: 40px;
    margin-left: -2px;
  }
  .section-portfolio-cases .underlined .line {
    margin-top: 13px;
    width: 259px;
  }
  .section-portfolio-cases .underlined .line.mob {
    display: block;
  }
  .section-portfolio-cases .underlined .line.desk {
    display: none;
  }
  .section-portfolio-cases .select {
    margin-right: 34px;
  }
  .section-portfolio-cases .cases-controls {
    align-self: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .section-portfolio-cases .cases-controls .dropdown {
    margin-right: 0;
    width: 50%;
  }
  .section-portfolio-cases .cases-controls .reset-btn {
    margin-top: 15px;
  }
  .section-portfolio-cases .cases-body {
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
    margin-bottom: 15px;
  }
  .section-portfolio-cases .cases-footer {
    margin-right: 15px;
  }
  .section-portfolio-cases .cases-footer .line {
    left: -20px;
    right: unset;
    width: 200px;
  }
  .section-portfolio-cases .cases-footer .line.desk,
  .section-portfolio-cases .cases-footer .line.tab {
    display: none;
  }
  .section-portfolio-cases .cases-footer .line.mob {
    display: block;
  }
}
@media (max-width: 400px) {
  .section-portfolio-cases .cases-controls .dropdown .dropdown-list {
    max-width: 100%;
    overflow-x: hidden;
  }
  .section-portfolio-cases .cases-controls .dropdown:last-child .dropdown-list {
    left: -38%;
  }
  .section-portfolio-cases .cases-controls .dropdown .text {
    white-space: normal;
  }
}
@media (max-width: 375px) {
  .section-portfolio-cases .cases-footer .line {
    left: unset;
    right: 139px;
  }
}
@media (max-width: 335px) {
  .section-portfolio-cases .cases-controls .dropdown:last-child .dropdown-list {
    left: -50%;
  }
}
@media (max-width: 330px) {
  .section-portfolio-cases .cases-controls .dropdown .text {
    word-wrap: break-word;
    max-width: 195px;
  }
}
.section-cooperation {
  padding-bottom: 100px;
}
.section-cooperation.anim .line path,
.section-cooperation.anim .line.mob path {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transition-property: stroke-dashoffset;
  transition-timing-function: linear;
}
.section-cooperation.anim .line .path {
  stroke-dashoffset: 2212;
}
.section-cooperation.anim .line.mob .path {
  stroke-dashoffset: 1472;
}
.section-cooperation .wrap {
  margin: 0 auto;
  max-width: 1134px;
  position: relative;
}
.section-cooperation .section-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.27;
  margin-bottom: 62px;
  text-align: center;
}
.section-cooperation .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto 50px;
  max-width: 473px;
  text-transform: lowercase;
}
.section-cooperation .btn {
  font-size: 16px;
  font-weight: 400;
  height: 194px;
  line-height: 112.2%;
  margin-left: auto;
  margin-right: 91px;
  padding: 40px;
  text-align: center;
  width: 194px;
}
.section-cooperation .line {
  bottom: 15px;
  left: 148px;
  position: absolute;
}
.section-cooperation .line.mob {
  display: none;
}
.section-cooperation .line.mob path {
  stroke-dasharray: 736;
  stroke-dashoffset: 736;
}
.section-cooperation .line path {
  stroke-dasharray: 1106;
  stroke-dashoffset: 1106;
}
@media (max-width: 1280px) {
  .section-cooperation .line {
    left: 0;
  }
  .section-cooperation .text {
    margin: 0 0 50px 72px;
  }
}
@media (max-width: 1024px) {
  .section-cooperation .section-title {
    font-size: 60px;
    line-height: 1.5;
  }
  .section-cooperation .line {
    left: 50px;
    max-width: 405px;
  }
  .section-cooperation .btn {
    height: 200px;
    width: 200px;
  }
}
@media (max-width: 880px) {
  .section-cooperation .line {
    left: 0;
  }
}
@media (max-width: 768px) {
  .section-cooperation {
    padding: 20px 0;
  }
  .section-cooperation .section-title {
    font-size: 46px;
    margin-bottom: 20px;
  }
  .section-cooperation .text {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 0 auto;
    max-width: 456px;
  }
  .section-cooperation .btn {
    font-size: 17px;
    height: 150px;
    margin-right: 0;
    margin-top: 5px;
    width: 150px;
  }
  .section-cooperation .line {
    height: 239px;
    left: 78px;
    width: 405px;
  }
}
@media (max-width: 720px) {
  .section-cooperation .section-title {
    text-align: left;
  }
  .section-cooperation .line {
    height: 200px;
    left: 0;
    width: auto;
  }
}
@media (max-width: 575.9px) {
  .section-cooperation {
    padding: 20px 0 48px;
  }
  .section-cooperation .section-title {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .section-cooperation .text {
    font-size: 16px;
    margin: 0 auto;
    max-width: 222px;
  }
  .section-cooperation .btn {
    height: 100px;
    margin-top: -31px;
    width: 100px;
  }
  .section-cooperation .line {
    bottom: -28px;
    height: auto;
    width: 259px;
  }
  .section-cooperation .line.desk {
    display: none;
  }
  .section-cooperation .line.mob {
    display: block;
  }
}
.section-form {
  padding: 40px 0 150px;
}
.section-form.anim .line path {
  stroke-dashoffset: 456;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-form.section-portfolio-form .wrapper {
  max-width: 1140px;
}
.section-form.section-portfolio-form .text {
  margin-bottom: 50px;
}
.section-form .wrap {
  align-items: center;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  max-width: 1620px;
  padding: 45px 120px 45px 45px;
}
.section-form .wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1118px;
  width: 100%;
}
.section-form .policy-checkbox .text {
  margin-bottom: unset;
}
.section-form .section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 126%;
  margin-bottom: 15px;
  text-transform: lowercase;
}
.section-form .text {
  font-size: 13.26px;
  line-height: normal;
  margin-bottom: 40px;
  max-width: 384px;
  text-transform: lowercase;
}
.section-form .soc-title {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  text-transform: lowercase;
}
.section-form .soc-list {
  display: flex;
}
.section-form .soc-item {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 80px;
  justify-content: center;
  margin-right: 10px;
  position: relative;
  width: 80px;
}
.section-form .soc-item:hover .icon.active {
  opacity: 1;
}
.section-form .soc-item:hover .icon.default {
  opacity: 0;
}
.section-form .soc-item:last-child {
  margin-right: 0;
}
.section-form .soc-item .icon {
  height: min-content;
  pointer-events: none;
  transition-duration: 0.3s;
  transition-property: opacity;
  width: min-content;
}
.section-form .soc-item .icon.active {
  left: 17px;
  opacity: 0;
  position: absolute;
  top: 5px;
}
.section-form .soc-item:nth-child(3) .icon.active {
  top: 4px;
}
.section-form .soc-item input:checked ~ .active {
  opacity: 1;
}
.section-form .soc-item input:checked ~ .icon:not(.active) {
  opacity: 0;
}
.section-form:not(:has(input[value="34"]:checked)) .nickname-field {
  display: none;
}
.section-form:has(input[value="34"]:checked) .nickname-field {
  display: flex;
}
.section-form .left-part {
  max-width: 465px;
  width: 100%;
}
.section-form .form {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.section-form .form .right-part {
  display: flex;
}
.section-form .input-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  max-width: 210px;
  text-transform: lowercase;
}
.section-form .input-wrap.hidden-mob {
  display: flex;
}
.section-form .input-wrap.hidden-tab {
  display: none;
}
.section-form .placeholder {
  color: #000;
  font-size: 15px;
  line-height: 23px;
}
.section-form .input {
  border-bottom: 2px solid #000;
  font-size: 16px;
}
.section-form .btn {
  font-size: 15px;
  height: 150px;
  line-height: 112.2%;
  width: 150px;
}
.section-form .btn-wrap {
  margin-left: auto;
  margin-right: 60px;
  position: relative;
  width: fit-content;
}
.section-form .line {
  position: absolute;
  right: calc(100% + 11px);
}
.section-form .line path {
  stroke-dasharray: 228;
  stroke-dashoffset: 228;
}
.section-form .form-col {
  margin-right: 100px;
}
.section-form .form-col:last-child {
  margin-right: 0;
}
@media (max-width: 1150px) {
  .section-form .wrap {
    padding: 30px;
  }
  .section-form .wrapper {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-form .right-part {
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
  }
  .section-form .form-col {
    width: 50%;
  }
  .section-form .input-wrap {
    max-width: 100%;
  }
  .section-form .form {
    flex-direction: column;
  }
  .section-form .form .right-part {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .section-form {
    padding: 20px 0 40px;
  }
  .section-form .section-title {
    font-size: 40px;
  }
  .section-form .text {
    margin-bottom: 20px;
  }
  .section-form .soc-title {
    margin-bottom: 10px;
  }
  .section-form .input {
    font-size: 23px;
  }
  .section-form .right-part .form-col:first-child .input-wrap:last-child {
    margin-bottom: 20px;
  }
  .section-form.section-portfolio-form {
    padding: 20px 0 50px;
  }
  .section-form.section-portfolio-form .text {
    margin-bottom: 20px;
  }
  .section-form .soc-item:hover .icon.active,
  .section-form .soc-item:hover .icon.default {
    pointer-events: none;
  }
}
@media (min-width: 661px) and (max-width: 750px) {
  .section-form .line {
    right: 95%;
    width: 138px;
  }
}
@media (max-width: 720px) {
  .section-form .form-col {
    margin-right: 50px;
  }
}
@media (max-width: 660px) {
  .section-form .section-title {
    font-size: 30px;
  }
  .section-form .left-part,
  .section-form .text {
    max-width: 100%;
    width: 100%;
  }
  .section-form .text {
    font-size: 14px;
    line-height: 1.28;
  }
  .section-form .soc-title {
    font-size: 14px;
  }
  .section-form .soc-list {
    justify-content: space-around;
  }
  .section-form .soc-item {
    height: 68px;
    width: 35px;
  }
  .section-form .soc-item .icon.active {
    left: unset;
    top: 6px;
  }
  .section-form .soc-item:first-child .icon {
    height: 54px;
    width: 54px;
  }
  .section-form .soc-item:nth-child(2) .icon {
    height: 54px;
    width: 60px;
  }
  .section-form .soc-item:nth-child(3) .icon {
    height: 54px;
    width: 51px;
  }
  .section-form .soc-item:nth-child(3) .icon.active {
    top: 5px;
  }
  .section-form .soc-item:nth-child(4) .icon {
    height: 45px;
    width: 63px;
  }
  .section-form .soc-item span {
    font-size: 16px;
  }
  .section-form .right-part {
    flex-direction: column;
    margin-top: 10px;
  }
  .section-form .form-col {
    margin-right: 0;
    width: 100%;
  }
  .section-form .placeholder {
    line-height: 1;
  }
  .section-form .input {
    font-size: 19px;
  }
  .section-form .input-wrap {
    margin-bottom: 20px;
  }
  .section-form .input-wrap.hidden-mob {
    display: none;
  }
  .section-form .input-wrap.hidden-tab {
    display: flex;
  }
  .section-form .btn-wrap {
    margin-top: -15px;
  }
  .section-form.section-portfolio-form {
    padding: 20px 0 40px;
  }
  .section-form.section-portfolio-form .text {
    margin-bottom: 15px;
  }
}
@media (max-width: 479.9px) {
  .section-form .wrap {
    padding: 15px;
  }
  .section-form .btn {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 374px) {
  .section-form .line {
    width: 42vw;
  }
}
.section-portfolio-form .btn-circle {
  font-size: 17px;
  line-height: 112.2%;
}
.section-search-head {
  padding: 60px 0 20px;
}
.section-search-head .form {
  align-items: center;
  border-left: 2px solid #929292;
  display: flex;
  margin-bottom: 30px;
  padding: 2px 0 2px 20px;
  position: relative;
}
.section-search-head .form .btn {
  background: rgba(0, 0, 0, 0);
  border: none;
  height: 19px;
  margin-right: 10px;
  outline: none;
  width: 19px;
}
.section-search-head .form .btn img {
  height: 100%;
  width: 100%;
}
.section-search-head .form .input-wrap {
  width: 100%;
}
.section-search-head .form .input {
  font-size: 16px;
  line-height: 19px;
  width: 100%;
}
.section-search-head .form .input::placeholder {
  color: #929292;
}
.section-search-head .section-title {
  font-size: 72px;
  line-height: 101.66%;
  margin-bottom: 30px;
}
.section-search-head .search-request {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.section-search-head .search-request .tags,
.section-search-head .search-request .text {
  font-size: 40px;
  font-weight: 500;
  line-height: 101.66%;
}
.section-search-head .search-request .text {
  padding-right: 10px;
}
.section-search-head .search-request .tags {
  color: #b1bc00;
}
@media (max-width: 768px) {
  .section-search-head {
    padding: 40px 0 20px;
  }
  .section-search-head .form {
    margin-bottom: 20px;
  }
  .section-search-head .section-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .section-search-head .search-request .tags,
  .section-search-head .search-request .text {
    font-size: 30px;
  }
}
@media (max-width: 575.9px) {
  .section-search-head .section-title {
    font-size: 40px;
  }
  .section-search-head .search-request .tags,
  .section-search-head .search-request .text {
    font-size: 20px;
  }
}
.section-search-results.section-catalog .btn-circle {
  font-size: 25px;
  line-height: 112.2%;
  padding: 10px;
  text-align: center;
}
.section-search-results.section-catalog .catalog-body {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .section-search-results {
    padding: 20px 0;
  }
}
@media (max-width: 575.9px) {
  .section-search-results.section-catalog .btn-circle {
    font-size: 16px;
  }
}
.section-block-solutions .section-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 101.66%;
  margin-bottom: 40px;
}
.section-block-solutions .slider-wrap {
  display: flex;
  overflow: hidden;
  padding: 0 30px;
  position: relative;
}
.section-block-solutions .slider-wrap .swiper {
  height: 100%;
  width: 100%;
}
.section-block-solutions .slider-wrap .swiper-slide {
  opacity: 0;
}
.section-block-solutions .slider-wrap .swiper-slide-visible {
  opacity: 1;
}
.section-block-solutions .slider-wrap .slider-button {
  background-color: #fff;
  flex: 1;
  height: 100%;
  justify-content: flex-start;
  margin-top: 0;
  max-width: 30px;
  min-width: 30px;
  padding-bottom: 6%;
  position: absolute;
  top: 0;
}
.section-block-solutions .slider-wrap .slider-button .img,
.section-block-solutions .slider-wrap .slider-button img {
  height: 30px;
  width: 11px;
}
.section-block-solutions .slider-wrap .slider-button-next {
  right: 0;
}
.section-block-solutions .slider-wrap .slider-button-prev {
  left: 0;
  right: unset;
}
.section-block-solutions .slider-wrap .img-wrap {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.section-block-solutions .slider-wrap .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-block-solutions .slider-wrap .img-wrap .img,
.section-block-solutions .slider-wrap .img-wrap img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-block-solutions .slider-wrap .text-wrap {
  font-size: 24px;
  line-height: 1.29;
  text-align: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .section-block-solutions .section-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .section-block-solutions .slider-wrap .text-wrap {
    font-size: 20px;
  }
  .section-block-solutions .slider-wrap .slider-button {
    padding-bottom: 9%;
  }
}
@media (max-width: 768px) {
  .section-block-solutions {
    padding: 40px 0 20px;
  }
  .section-block-solutions .slider-wrap .slider-button {
    max-width: 26px;
    min-width: 26px;
    padding-bottom: 9%;
  }
}
@media (max-width: 630px) {
  .section-block-solutions .slider-wrap .text-wrap {
    font-size: 18px;
  }
}
@media (max-width: 752px) {
  .section-block-solutions .slider-wrap .slider-button {
    padding-bottom: 11%;
  }
}
@media (max-width: 575.9px) {
  .section-block-solutions .section-title {
    font-size: 30px;
  }
  .section-block-solutions .slider-wrap .slider-button {
    max-width: 13px;
    min-width: 13px;
    padding-bottom: 11%;
  }
  .section-block-solutions .slider-wrap .slider-button .img,
  .section-block-solutions .slider-wrap .slider-button img {
    height: 20px;
    width: 7.33px;
  }
}
@media (max-width: 500px) {
  .section-block-solutions .slider-wrap .slider-button {
    padding-bottom: 13%;
  }
}
@media (max-width: 420px) {
  .section-block-solutions .slider-wrap .slider-button {
    padding-bottom: 17%;
  }
}
@media (max-width: 375px) {
  .section-block-solutions .slider-wrap .slider-button {
    padding-bottom: 20%;
  }
}
.section-basket {
  padding: 40px 0;
}
.section-basket .container {
  padding-inline: 150px 65px;
}
.section-basket.anim .title-wrap .underlined .line path {
  stroke-dashoffset: 1084;
}
.section-basket.anim .title-wrap .underlined .line.tab path {
  stroke-dashoffset: 668;
}
.section-basket.anim .basket-main-container .underlined .line path {
  stroke-dashoffset: 332;
  transition-delay: 0.5s;
}
.section-basket .title-wrap {
  margin: 0 0 56px;
  position: relative;
}
.section-basket .title-wrap .section-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: lowercase;
}
@media (max-width: 575.9px) {
  .section-basket .title-wrap .section-title {
    font-size: 40px;
    line-height: 120%;
    text-align: center;
  }
}
.section-basket .title-wrap .underlined .line {
  transform: translate(-54%);
  width: 110%;
}
.section-basket .title-wrap .underlined .line path {
  stroke-dasharray: 524;
  stroke-dashoffset: 524;
}
.section-basket .basket-main-container {
  display: flex;
  justify-content: space-between;
}
.section-basket .basket-main-container .underlined .line path {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 1.5;
}
.section-basket .basket-main-container .basket-text {
  display: block;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 38px;
}
.section-basket .basket-main-container .basket-text-green {
  color: #b1bc00;
  display: block;
  font-weight: 700;
  line-height: 110%;
  margin-block-end: 16px;
}
.section-basket .basket-main-container .basket-main-products {
  max-width: 1075px;
  min-width: 688px;
  width: 100%;
}
.section-basket .basket-main-container .basket-main-products .input-block {
  display: flex;
  justify-content: left;
  margin-bottom: 35px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .input-block
  .input-container {
  display: flex;
  flex-direction: column;
  max-width: 436.6px;
  position: relative;
  width: 100%;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .input-block
  .input-container
  label {
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  text-transform: lowercase;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .input-block
  .input-container
  label
  .tab-mob {
  display: none;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .input-block
  .input-container
  label
  sup {
  color: #963ebd;
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  text-transform: lowercase;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .input-block
  .input-container
  input {
  border-bottom: 2px solid #000;
  width: 100%;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .input-block
  .input-container:last-child {
  margin-left: 65px;
}
.section-basket .basket-main-container .basket-main-products .basket-products {
  margin-top: 70px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .title-wrap-min {
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 575.9px) {
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .title-wrap-min {
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
  }
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .title-wrap-min
  .underlined
  .line {
  transform: translate(-54%);
  width: 200%;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .title-wrap-min
  .img-line {
  bottom: -9px;
  left: -13px;
  position: absolute;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .min {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-transform: lowercase;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list {
  width: 100%;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .product-col:last-child
  .basket-product {
  margin-bottom: 0;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .product-list-text {
  display: block;
  margin-bottom: 40px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product {
  grid-gap: 0 30px;
  display: grid;
  grid-template-columns: 200px auto;
  grid-template-rows: auto auto;
  margin-bottom: 30px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .img-wrap {
  grid-row: 1/3;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .img-wrap
  img {
  object-fit: contain;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .product-info {
  max-width: 805px;
  padding-right: 40px;
  width: 100%;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .product-info
  .article {
  color: #929292;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 22px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .product-info
  .product-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
  margin-bottom: 40px;
  text-transform: lowercase;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .product-info
  .sub-text {
  color: #c4c4c4;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 45px;
  margin-top: 0;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 125px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .mas,
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .min {
  align-items: center;
  display: flex;
  height: 100%;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .min {
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .min:disabled {
  cursor: default;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .min:disabled
  > img {
  opacity: 0.6;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .mas {
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .mas:disabled {
  cursor: default;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .mas:disabled
  > img {
  opacity: 0.6;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .count {
  align-items: center;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  height: 51px;
  justify-content: center;
  padding: 3px;
  position: relative;
  width: 51px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .count
  .error {
  color: #ee5554;
  font-size: 14px;
  position: absolute;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .counter
  .count
  input {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  width: 90%;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .price {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  padding-right: 40px;
  transform: translateY(20px);
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .price
  .price-container {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  margin-bottom: 22px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .price
  .price-container
  span {
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .price
  .price-container
  .val {
  margin-left: 3px;
}
.section-basket
  .basket-main-container
  .basket-main-products
  .basket-products
  .product-list
  .basket-product
  .prices
  .price
  .del {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
.section-basket .basket-main-container .basket-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-left: 50px;
  max-width: 445px;
  width: 100%;
}
.section-basket .basket-main-container .basket-info .purple-text {
  color: #963ebd;
  font-weight: 600;
}
.section-basket .basket-main-container .basket-info .info-item {
  margin-bottom: 100px;
}
.section-basket .basket-main-container .basket-info .info-item .img-wrap {
  margin-bottom: 20px;
}
.section-basket .basket-main-container .basket-info .info-item .info-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 20px;
  text-transform: lowercase;
}
.section-basket .basket-main-container .basket-info .info-item .info-sub-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 20px;
}
.section-basket
  .basket-main-container
  .basket-info
  .info-item
  .info-sub-text:last-child {
  margin-bottom: 0;
}
.section-basket .basket-main-container .basket-info .info-item .info-sub-title {
  font-size: 24px;
}
.section-basket
  .basket-main-container
  .basket-info
  .info-item
  .info-sub-title
  span {
  font-weight: 900 !important;
}
.section-basket-logo {
  padding: 40px 0;
}
.section-basket-logo .container {
  padding-inline: 150px 65px;
}
.section-basket-logo.anim .underlined .line path {
  stroke-dashoffset: 770;
}
.section-basket-logo .section-title {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 29px;
  text-transform: lowercase;
}
.section-basket-logo .underlined .line {
  transform: translateX(-51%);
  width: 110%;
}
.section-basket-logo .underlined .line path {
  stroke-dasharray: 385;
  stroke-dashoffset: 385;
  stroke-width: 1.3;
}
.section-basket-logo .input-file {
  display: flex;
  flex-direction: column;
}
.section-basket-logo .input-file .alert-input-text {
  color: red;
  opacity: 0;
  position: static !important;
  transform: translateY(-3px);
  transition:
    opacity,
    transform 0.5s ease;
}
.section-basket-logo .input-file .input-file-list {
  transition: padding 0.5s ease;
}
.section-basket-logo .input-file.has-error .alert-input-text {
  opacity: 1 !important;
  transform: translateY(0);
}
.section-basket-logo .input-file.has-error .input-file-list:has(.list-item) {
  padding-top: 20px;
}
.section-basket-logo .input-file .list-item {
  display: flex;
  padding-left: 10px;
  padding-top: 10px;
}
.section-basket-logo .input-file .input {
  display: none;
}
.section-basket-logo .input-file .file-name {
  color: #929292;
  font-size: 14px;
}
.section-basket-logo .input-file .file-delete {
  align-items: center;
  cursor: pointer;
  display: inline-block;
  display: flex;
  height: 20px;
  justify-content: center;
  margin-left: 5px;
  width: 20px;
}
.section-basket-logo .input-file .file-delete:after,
.section-basket-logo .input-file .file-delete:before {
  background: #aaa;
  content: "";
  height: 1px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: background;
  width: 15px;
}
.section-basket-logo .input-file .file-delete:before {
  transform: rotate(45deg);
}
.section-basket-logo .input-file .file-delete:after {
  transform: rotate(135deg);
}
.section-basket-logo .input-file .file-delete:hover:after,
.section-basket-logo .input-file .file-delete:hover:before {
  background: #000;
}
.section-basket-logo .add-file {
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 15px;
  height: 45px;
  line-height: 45px;
  margin-top: 40px;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: background;
  width: 166px;
}
.section-basket-logo .add-file:hover {
  background: #b1bc00;
}
.section-basket-logo .logo-comment-container {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.section-basket-logo .logo-comment-container .logo-comment {
  font-size: 18px;
  line-height: 23px;
  text-transform: lowercase;
}
.section-basket-logo .logo-comment-container .logo-comment-text {
  border: 2px solid #000;
  height: 122px;
  margin-top: 20px;
  max-width: 552px;
  padding: 8px;
  resize: none;
  width: 100%;
}
.section-total-price {
  padding: 40px 0 150px;
  position: relative;
  z-index: 1;
}
.section-total-price .container {
  padding-inline: 150px 65px;
}
.section-total-price .send-basket {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.5);
  border: 2px solid #000;
  display: flex;
  padding-bottom: 40px;
  padding-top: 40px;
  padding-inline-start: 66px;
}
.section-total-price .send-basket .form-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1015px;
  row-gap: 20px;
  width: 100%;
}
.section-total-price .send-basket .form-container .total {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  max-width: 620px;
  width: 100%;
}
.section-total-price .send-basket .form-container .total .total-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 55px;
  text-transform: lowercase;
}
.section-total-price .send-basket .form-container .total .total-info {
  display: flex;
  flex-direction: column;
  max-width: 395px;
  padding-top: 13px;
  width: 100%;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .total-info-title {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 15px;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .total-info-subtext {
  color: #929292;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  margin-right: 26px;
  text-transform: lowercase;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .total-info-subtext
  .oferta {
  color: #b1bc00;
  text-decoration: underline;
}
.section-total-price .send-basket .form-container .total .total-info .checkbox,
.section-total-price .send-basket .form-container .total .total-info .input {
  align-items: center;
  display: flex;
  margin-top: 40px;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .checkbox
  .holder,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .input
  .holder {
  border: 2px solid #000;
  border-radius: 50%;
  display: block;
  height: 22px;
  width: 22px;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .checkbox
  .holder:after,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .input
  .holder:after {
  background: #000;
  border-radius: 50%;
  height: 14px;
  left: 2px;
  top: 2px;
  width: 14px;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .checkbox
  input,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .input
  input {
  display: none;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .checkbox
  input:checked
  + .holder:after,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .input
  input:checked
  + .holder:after {
  opacity: 1;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .checkbox
  label,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .input
  label {
  cursor: pointer;
  font-size: 18px;
  line-height: 23px;
  margin-left: 35px;
  position: relative;
  text-transform: lowercase;
}
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .checkbox
  label:before,
.section-total-price
  .send-basket
  .form-container
  .total
  .total-info
  .input
  label:before {
  border: 2px solid #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 22px;
  left: -35px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
.section-total-price .send-basket .form-container button {
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 17px;
  height: 150px;
  line-height: 112.2%;
  text-align: center;
  width: 150px;
}
.section-total-price .send-basket .form-container button:hover {
  background: #b1bc00;
}
@media only screen and (max-width: 1280px) {
  .section-basket {
    padding: 40px 0 20px;
  }
  .section-basket .title-wrap {
    margin-bottom: 48px;
  }
  .section-basket .title-wrap .section-title {
    font-size: 50px;
    line-height: 64px;
  }
  .section-basket .basket-main-container {
    flex-direction: column;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .input-block
    .input-container
    label
    .tab-mob {
    display: inline;
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .input-block
    .input-container
    label
    sup {
    font-size: 24px;
    font-weight: 300;
    line-height: 18px;
    vertical-align: text-top;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .input-block
    .input-container
    label
    .desk {
    display: none;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .price {
    transform: translateY(0);
  }
  .section-basket .basket-main-container .basket-info {
    align-items: baseline;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-left: 0;
    margin-top: 30px;
    max-width: 100%;
  }
  .section-basket .basket-main-container .basket-info .info-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
    text-align: center;
  }
  .section-basket .basket-main-container .basket-info .info-item:first-child {
    width: 100%;
  }
  .section-basket .basket-main-container .basket-info .info-item:nth-child(2) {
    margin-bottom: 0;
  }
  .section-basket .basket-main-container .basket-info .info-item:last-child {
    margin-bottom: 0;
    margin-left: 20px;
  }
  .section-basket .basket-main-container .basket-info .info-item .img-wrap {
    margin-bottom: 10px;
  }
  .section-basket .basket-main-container .basket-info .info-item .img-wrap img {
    margin: 0 auto;
  }
  .section-basket
    .basket-main-container
    .basket-info
    .info-item
    .info-sub-title {
    font-size: 20px;
    font-weight: 500;
  }
  .section-basket .basket-main-container .basket-info .info-item .info-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .section-basket
    .basket-main-container
    .basket-info
    .info-item
    .info-sub-text {
    margin-bottom: 10px;
  }
  .section-basket-logo .logo-comment-container {
    margin-top: 30px;
  }
  .section-basket-logo .logo-comment-text {
    background: hsla(0, 0%, 100%, 0.5);
  }
  .section-total-price {
    padding: 20px 0 40px;
  }
  .section-total-price .send-basket {
    padding: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-basket .container,
  .section-basket-logo .container,
  .section-total-price .container {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .section-basket {
    padding: 40px 0 20px;
  }
  .section-basket .title-wrap {
    text-align: center;
  }
  .section-basket .basket-main-container .basket-main-products {
    min-width: 270px;
  }
  .section-basket .basket-main-container .basket-main-products .form {
    margin-bottom: -5px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products {
    margin-top: 30px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .min {
    text-align: center;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .min
    .underlined
    .line {
    transform: translateX(-50%);
  }
  .section-basket .basket-main-container .basket-info {
    justify-content: space-between;
  }
  .section-basket-logo {
    padding: 20px 0;
  }
  .section-total-price {
    padding: 20px 0 40px;
  }
  .section-total-price .send-basket .form-container .total .total-info {
    margin-left: 30px;
    padding-top: 11px;
  }
  .section-total-price .send-basket .form-container .total .total-info .input {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .section-basket .basket-main-container .basket-info .info-item.design,
  .section-basket .basket-main-container .basket-info .info-item.pickup {
    width: calc(50% - 10px);
  }
  .section-total-price .send-basket {
    padding: 20px 11px 30px;
  }
  .section-total-price .send-basket .form-container,
  .section-total-price .send-basket .form-container .total {
    align-items: center;
    flex-direction: column;
  }
  .section-total-price .send-basket .form-container .total .total-title {
    margin-bottom: 15px;
  }
  .section-total-price .send-basket .form-container .total .total-info {
    margin-left: 0;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .total-info-subtext {
    margin-right: 0;
  }
  .section-total-price .send-basket .form-container .total .total-info .input {
    margin-top: 20px;
  }
  .section-total-price .send-basket .form-container .button-total-price {
    margin-top: 15px;
  }
  .section-total-price .send-basket .form-container .button-total-price button {
    height: 144px;
    width: 144px;
  }
}
@media only screen and (max-width: 644px) {
  .section-basket .title-wrap {
    margin-bottom: 23px;
  }
  .section-basket .title-wrap .section-title {
    font-size: 40px;
    line-height: 46px;
  }
  .section-basket .title-wrap .img-line {
    bottom: -3px;
    height: 9px;
    left: -6px;
    width: 212px;
  }
  .section-basket .title-wrap .img-line img {
    height: 100%;
    width: 100%;
  }
  .section-basket .basket-main-container .basket-info {
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
  }
  .section-basket .basket-main-container .basket-info .info-item {
    margin-bottom: 20px;
  }
  .section-basket .basket-main-container .basket-info .info-item.design,
  .section-basket .basket-main-container .basket-info .info-item.pickup {
    width: 100%;
  }
  .section-basket .basket-main-container .basket-info .info-item:nth-child(2) {
    margin-bottom: 20px;
  }
  .section-basket .basket-main-container .basket-info .info-item:last-child {
    margin-left: 0;
  }
  .section-basket .basket-main-container .basket-info .info-item .img-wrap {
    margin-bottom: 10px;
  }
  .section-basket
    .basket-main-container
    .basket-info
    .info-item
    .info-sub-text {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 8px;
    text-align: left;
  }
  .section-basket
    .basket-main-container
    .basket-info
    .info-item
    .info-sub-title {
    font-weight: 700;
    line-height: 30px;
    margin-block-end: 4px;
    text-align: left;
  }
  .section-basket .basket-main-container .basket-main-products .input-block {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .input-block
    .input-container {
    margin-bottom: 15px;
    max-width: 100%;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .input-block
    .input-container:last-child {
    margin-bottom: 0;
    margin-left: 0;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .title-wrap-min {
    margin-bottom: 42px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .title-wrap-min
    .img-line {
    bottom: -2px;
    height: 5px;
    left: -13px;
    width: 117px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .title-wrap-min
    .img-line
    img {
    height: 100%;
    width: 100%;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .min {
    font-size: 40px;
    line-height: 100%;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product {
    grid-gap: 12px 10px;
    grid-template-columns: 100px auto;
    margin-bottom: 20px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .img-wrap {
    grid-row: 1/2;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .img-wrap
    img {
    height: 100%;
    object-fit: contain;
    object-position: top;
    width: 100%;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .product-info {
    max-width: 805px;
    padding-right: 0;
    padding-top: 3px;
    width: 100%;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .product-info
    .product-name {
    font-size: 16px;
    line-height: 23px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .product-info
    .sub-text {
    margin-bottom: 0;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices {
    display: flex;
    grid-column: 1/3;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 125px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .min {
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .min:disabled {
    cursor: default;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .min:disabled
    > img {
    opacity: 0.6;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .mas {
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .mas:disabled {
    cursor: default;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .mas:disabled
    > img {
    opacity: 0.6;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .count {
    align-items: center;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    height: 51px;
    justify-content: center;
    width: 51px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .counter
    .count
    span {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .prices
    .price {
    padding-right: 0;
  }
  .section-basket-logo .section-title {
    font-size: 30px;
    line-height: 38px;
  }
  .section-basket-logo .logo-comment-container {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575.9px) {
  .section-basket .container,
  .section-basket-logo .container,
  .section-total-price .container {
    padding-inline: 20px;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .basket-products
    .product-list
    .basket-product
    .product-info
    .product-name {
    font-weight: 700;
  }
  .section-basket-logo .add-file {
    height: 60px;
    line-height: 60px;
    margin-inline: auto;
    width: 219px;
  }
}
@media only screen and (max-width: 431px) {
  .section-basket .title-wrap .line.desk {
    display: block;
    top: 84%;
  }
  .section-basket .title-wrap .line.tab {
    display: none;
  }
  .section-basket .basket-main-container .basket-text,
  .section-basket .basket-main-container .basket-text-green {
    font-size: 14px;
  }
  .section-basket .basket-main-container .basket-main-products .form {
    margin-bottom: 0;
  }
  .section-basket .basket-main-container .basket-main-products .min .line {
    top: 90%;
    width: 130%;
  }
  .section-basket
    .basket-main-container
    .basket-main-products
    .product-list
    .product-list-text {
    display: none !important;
  }
  .section-basket-logo .add-file {
    margin-top: 20px;
  }
  .section-basket-logo .section-title {
    margin-bottom: 6px;
  }
  .section-basket-logo .basket-logo-title {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
  }
  .section-basket-logo .basket-logo-title .section-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 38px;
    margin-bottom: 0;
  }
  .section-basket-logo .basket-logo-title .img-line {
    left: -11px;
    margin-bottom: 0;
    position: absolute;
    top: 38px;
    transform: scale(0.76) translateX(-13%);
  }
  .section-basket-logo .logo-text {
    font-size: 18px;
    line-height: 23px;
  }
  .section-total-price {
    padding: 20px 0 40px;
  }
  .section-total-price .send-basket {
    padding: 20px 11px;
  }
  .section-total-price .send-basket .form-container,
  .section-total-price .send-basket .form-container .total {
    align-items: center;
    flex-direction: column;
  }
  .section-total-price .send-basket .form-container .total .total-title {
    margin-bottom: 15px;
  }
  .section-total-price .send-basket .form-container .total .total-info {
    padding-top: 0;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .total-info-title {
    margin-block-end: 40px;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .total-info-subtext {
    font-size: 13px;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .checkbox {
    margin-block-start: 11px;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .checkbox
    .text {
    font-size: 14px;
    padding-bottom: 3px;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .input
    label {
    margin-left: 32px;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .input
    label:before {
    left: -32px;
    top: 60%;
  }
  .section-total-price
    .send-basket
    .form-container
    .total
    .total-info
    .input
    input:checked
    ~ label:after {
    left: -28px;
    top: 60%;
  }
  .section-total-price .send-basket .form-container .button-total-price button {
    font-size: 16px;
  }
}
.section-basket-info {
  display: none;
  padding-top: 20px;
}
.section-basket-info .basket-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-left: 50px;
  max-width: 445px;
  width: 100%;
}
.section-basket-info .basket-info .info-item {
  margin-bottom: 100px;
}
.section-basket-info .basket-info .info-item .img-wrap {
  margin-bottom: 20px;
}
.section-basket-info .basket-info .info-item .info-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 20px;
  text-transform: lowercase;
}
.section-basket-info .basket-info .info-item .info-sub-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 20px;
}
.section-basket-info .basket-info .info-item .info-sub-text:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1280px) {
  .section-basket-info .basket-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-left: 0;
    margin-top: 0;
    max-width: 100%;
  }
  .section-basket-info .basket-info .info-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
    text-align: center;
  }
  .section-basket-info .basket-info .info-item:nth-child(2) {
    margin-bottom: 0;
  }
  .section-basket-info .basket-info .info-item:last-child {
    margin-bottom: 0;
    margin-left: 20px;
  }
  .section-basket-info .basket-info .info-item .img-wrap {
    margin-bottom: 10px;
  }
  .section-basket-info .basket-info .info-item .img-wrap img {
    margin: 0 auto;
  }
  .section-basket-info .basket-info .info-item .info-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .section-basket-info .basket-info .info-item .info-sub-text {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .section-basket-info .basket-info {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 644px) {
  .section-basket-info .basket-info {
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
  }
  .section-basket-info .basket-info .info-item {
    margin-bottom: 20px;
  }
  .section-basket-info .basket-info .info-item.design,
  .section-basket-info .basket-info .info-item.pickup {
    width: 100%;
  }
  .section-basket-info .basket-info .info-item:nth-child(2) {
    margin-bottom: 20px;
  }
  .section-basket-info .basket-info .info-item:last-child {
    margin-left: 0;
  }
  .section-basket-info .basket-info .info-item .img-wrap {
    margin-bottom: 10px;
  }
  .section-basket-info .basket-info .info-item .info-sub-text {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
.section-merch-podarki .section-title {
  color: #000;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 43px;
  text-transform: lowercase;
}
.section-merch-podarki .section-title .underlined .line {
  height: 13px;
  left: 0;
  transform: none;
  width: 291px;
}
.section-merch-podarki .section-title .underlined .line-fw {
  height: auto;
  left: 0;
  transform: none;
  width: 100%;
}
.section-merch-podarki .editor-content {
  font-size: 16px;
  font-weight: 400;
}
.section-merch-podarki .editor-content h2,
.section-merch-podarki .editor-content h3,
.section-merch-podarki .editor-content h4,
.section-merch-podarki .editor-content h5,
.section-merch-podarki .editor-content h6 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 24px;
}
.section-merch-podarki .editor-content p {
  padding-bottom: 0;
  text-transform: none;
}
.section-merch-podarki .editor-content ul {
  padding-left: 30px;
}
.section-merch-podarki .editor-content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.section-merch-podarki .editor-content br {
  padding-bottom: 24px;
}
.section-merch-podarki .accord {
  position: relative;
}
.section-merch-podarki .accord .accord-head {
  height: 93px;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.section-merch-podarki .accord .accord-head .arrow {
  height: 30px;
  position: absolute;
  right: 0;
  top: 24px;
  transform: rotate(-90deg);
  transition-duration: 0.15s;
  transition-property: transform;
  transition-timing-function: ease-in-out;
  width: 11px;
}
.section-merch-podarki .accord .accord-body {
  margin-right: 46px;
  max-width: 1120px;
  min-height: 93px;
  position: relative;
}
.section-merch-podarki .accord .accord-body:after {
  background: linear-gradient(180deg, transparent 3.04%, #d8dd80 96.96%);
  content: "";
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transition-duration: 0.15s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  z-index: 2;
}
.section-merch-podarki .accord[data-collapse="open"] .accord-body:after {
  opacity: 0;
}
.section-merch-podarki .accord[data-collapse="open"] .accord-head .arrow {
  transform: rotate(90deg);
}
.section-merch-podarki .accord.collapse:not(.active) .accord-body {
  display: block;
  height: 93px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .section-merch-podarki .section-title {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 41px;
  }
  .section-merch-podarki .accord .accord-head {
    height: 155px;
  }
  .section-merch-podarki .accord .accord-body {
    min-height: 155px;
  }
  .section-merch-podarki .accord.collapse:not(.active) .accord-body {
    height: 155px;
  }
}
@media (max-width: 768px) {
  .section-merch-podarki .section-title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  .section-merch-podarki .accord .accord-head {
    height: 168px;
  }
  .section-merch-podarki .accord .accord-body {
    min-height: 168px;
  }
  .section-merch-podarki .accord.collapse:not(.active) .accord-body {
    height: 168px;
  }
}
.section-about-head {
  padding-bottom: 0;
  padding-top: 21px;
}
.section-about-head.anim .line-top path {
  stroke-dashoffset: 0;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-property: stroke-dashoffset;
  transition-timing-function: line;
}
.section-about-head.anim .section-title .underlined .line path {
  stroke-dashoffset: 1226;
}
.section-about-head .head-wrap {
  display: grid;
  gap: 45px 80px;
  grid-template-columns: minmax(550px, 1fr) 1fr;
  margin-block-end: 50px;
  padding-inline-start: 60px;
}
.section-about-head .head-wrap > :first-child {
  z-index: 1;
}
.section-about-head .head-wrap > :first-child .text {
  font-size: 22px;
  padding-top: 56px;
  text-align: right;
}
@media (max-width: 575.9px) {
  .section-about-head .head-wrap > :first-child .text {
    padding-top: 32px;
  }
}
.section-about-head .head-wrap > :last-child {
  font-size: 25px;
  font-style: italic;
  text-align: left;
  z-index: 1;
}
.section-about-head .head-wrap .partners-logo {
  column-gap: 48px;
  display: flex;
  min-height: 60px;
  position: relative;
  z-index: 0;
}
.section-about-head .head-wrap .partners-logo:before {
  background: #fff;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 1;
}
.section-about-head .head-wrap .partners-logo__wrap {
  column-gap: 48px;
  display: flex;
  flex-direction: row;
  position: absolute;
}
.section-about-head .head-wrap .partners-logo__wrap:before {
  content: "";
  position: absolute;
}
.section-about-head .head-wrap .partners-logo__rows {
  display: flex;
  flex-direction: column;
  row-gap: 55px;
}
.section-about-head .head-wrap .partners-logo__row {
  align-items: center;
  column-gap: 35px;
  display: flex;
}
.section-about-head .head-wrap .partners-logo__row img {
  max-height: 50px;
}
@media (max-width: 575.9px) {
  .section-about-head .head-wrap .partners-logo__row img {
    max-height: 27px;
  }
}
.section-about-head .head-wrap .partners-logo--bottom {
  top: -25px;
}
.section-about-head .head-wrap .partners-logo--bottom:before {
  height: calc(100% + 75px);
  left: 100%;
}
.section-about-head .head-wrap .partners-logo--bottom .partners-logo__row {
  justify-content: flex-end;
}
.section-about-head .head-wrap .partners-logo--bottom .partners-logo__wrap {
  right: 0;
}
.section-about-head .head-wrap .partners-logo--top:before {
  right: 100%;
}
.section-about-head .head-wrap .partners-logo--top .partners-logo__row {
  justify-content: flex-start;
}
.section-about-head .head-wrap .partners-logo--top .partners-logo__wrap {
  top: 25px;
}
.section-about-head .section-title {
  max-width: 555px;
  width: 100%;
}
.section-about-head .section-title img {
  width: 100%;
}
.section-about-head .line-top {
  max-width: 198px;
  position: absolute;
  right: 48%;
  top: -65px;
  transform: translateX(180%);
  width: 100%;
}
.section-about-head .line-top path {
  stroke-dasharray: 387;
  stroke-dashoffset: 387;
}
.section-about-head .text {
  font-size: 16px;
  line-height: 1.3;
  max-width: 569px;
  text-align: center;
  width: 100%;
}
.section-about-head .anchors-wrap {
  align-items: center;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  max-width: 820px;
  padding: 20px 0 30px;
  width: 100%;
}
.section-about-head .anchor {
  color: #929292;
  display: block;
  font-size: 20px;
  overflow-x: clip;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-about-head .anchor .line {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section-about-head .anchor .line.small {
  width: 105%;
}
.section-about-head .anchor:last-child .underlined img {
  transform: translateX(-50%) scaleX(1.5);
}
.section-about-head .anchor.active,
.section-about-head .anchor:hover {
  color: #b1bc00;
}
.section-about-head .anchor.active .line,
.section-about-head .anchor:hover .line {
  opacity: 1;
}
@media (max-width: 1280px) {
  .section-about-head .head-wrap {
    grid-template-columns: minmax(310px, 1fr) 1fr;
  }
}
@media (max-width: 1024px) {
  .section-about-head .head-wrap {
    padding-inline-start: 0;
  }
  .section-about-head .head-wrap > :first-child .text {
    font-size: 18px;
  }
  .section-about-head .head-wrap > :last-child {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section-about-head .line-top {
    right: 0;
    top: -50px;
    transform: translateX(0);
    width: 99px;
  }
  .section-about-head .line-top path {
    stroke-width: 3;
  }
  .section-about-head .anchors-wrap {
    justify-content: space-between;
    padding: 10px 0 20px;
  }
  .section-about-head .head-wrap {
    gap: 24px;
    grid-template-columns: 100%;
  }
  .section-about-head .head-wrap > :first-child .text {
    text-align: center;
  }
  .section-about-head .head-wrap > :last-child {
    text-align: center;
  }
  .section-about-head .head-wrap .partners-logo__wrap {
    column-gap: 19px;
    position: static;
    row-gap: 5px;
  }
  .section-about-head .head-wrap .partners-logo__row {
    column-gap: 19px;
  }
}
@media (max-width: 768px) and (max-width: 575.9px) {
  .section-about-head .head-wrap .partners-logo__rows {
    row-gap: 2px;
  }
}
@media (max-width: 768px) {
  .section-about-head .head-wrap .partners-logo--top {
    padding-block-start: 0;
  }
  .section-about-head .head-wrap .partners-logo--top:before {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-about-head .head-wrap .partners-logo--bottom {
    justify-content: flex-end;
    order: 1;
    top: 0;
  }
  .section-about-head .head-wrap .partners-logo--bottom:before {
    display: none;
  }
}
@media (max-width: 601px) {
  .section-about-head .anchors-wrap {
    display: none;
  }
}
@media (max-width: 479.9px) {
  .section-about-head .line-top {
    width: 80px;
  }
  .section-about-head .head-wrap {
    margin-block-end: 0;
    padding-inline: 20px;
  }
  .section-about-head .head-wrap > :first-child {
    padding-top: 32px;
  }
  .section-about-head .head-wrap > :first-child .text {
    font-size: 14px;
  }
  .section-about-head .head-wrap > :last-child {
    font-size: 12px;
  }
}
.section-about-company__section-title {
  display: none;
  font-size: 40px;
  font-weight: 700;
  line-height: 61px;
  margin: 0 auto;
  margin-block-end: 47px;
  text-align: center;
}
.section-about-company__section-title .underlined .line {
  width: 110%;
}
.section-about-company__banner {
  height: 609px;
  padding-block-end: 49px;
  padding-block-start: 25px;
  width: 100%;
}
.section-about-company__title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
  margin-block-end: 48px;
  opacity: 0;
  text-align: center;
  transform: translateY(-50px);
}
.section-about-company__title .line {
  filter: brightness(0) saturate(100%) invert(62%) sepia(99%) saturate(750%)
    hue-rotate(23deg) brightness(89%) contrast(98%);
  width: 100%;
}
.section-about-company__content {
  display: grid;
  gap: 42px 50px;
  grid-template-columns: 1fr 1fr;
  padding-inline: 200px 40px;
}
.section-about-company__content > :last-child {
  grid-column: 1/-1;
}
.section-about-company__phrase {
  color: #fff;
  opacity: 0;
  transform: translate(50px);
}
.section-about-company__phrase:first-of-type {
  transform: translate(-50px);
}
.section-about-company__phrase:nth-of-type(2) {
  padding-block-start: 37px;
}
.section-about-company__phrase:last-of-type {
  padding-inline-start: 272px;
  transform: translateY(50px);
}
.section-about-company__phrase .phrase-wrap {
  display: flex;
  flex-direction: column;
}
.section-about-company__phrase .phrase-wrap > :first-child {
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
}
.section-about-company__phrase .phrase-wrap > :last-child {
  font-size: 24px;
  font-weight: 300;
  line-height: 121%;
}
.section-about-company__phrase .phrase-wrap--mob {
  display: none;
}
@media (max-width: 1280px) {
  .section-about-company__content {
    padding-inline: 40px;
  }
}
@media (max-width: 1024px) {
  .section-about-company__content {
    padding-inline: 40px;
  }
  .section-about-company__title {
    font-size: 48px;
  }
  .section-about-company__phrase:last-of-type {
    padding-inline-start: 0;
  }
  .section-about-company__phrase .phrase-wrap > :first-child {
    font-size: 36px;
  }
  .section-about-company__phrase .phrase-wrap > :last-child {
    font-size: 20px;
  }
}
@media (max-width: 575.9px) {
  .section-about-company__section-title {
    display: block;
  }
  .section-about-company__banner {
    height: auto;
    padding-block-start: 56px;
  }
  .section-about-company__title {
    font-size: 28px;
    padding-left: 40px;
    text-align: left;
  }
  .section-about-company__phrase:nth-of-type(2) {
    padding-block-start: 0;
  }
  .section-about-company__phrase .phrase-wrap > :first-child {
    font-size: 15px;
  }
  .section-about-company__phrase .phrase-wrap > :last-child {
    font-size: 12px;
  }
  .section-about-company__phrase .phrase-wrap--mob {
    display: flex;
  }
  .section-about-company__phrase .phrase-wrap--desk {
    display: none;
  }
}
@media (max-width: 479.9px) {
  .section-about-company__content {
    gap: 16px 5px;
    padding-inline: 41px 24px;
  }
  .section-about-company__content > :first-child {
    grid-row: 1/3;
  }
  .section-about-company__content > :last-child {
    grid-column: 2/3;
  }
  .section-about-company__title {
    margin-block-end: 35px;
    padding-inline-start: 40px;
  }
}
@media (max-width: 374px) {
  .section-about-company__banner {
    padding-block-start: 32px;
  }
  .section-about-company__content {
    gap: 16px;
  }
}
.section-about-command {
  margin-bottom: 84px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
.section-about-command .arrow-bottom {
  bottom: -250px;
  left: 50%;
  max-width: 763px;
  opacity: 1;
  position: absolute;
  transform: translateX(-102%);
  transition-duration: 0.3s;
  transition-property: opacity;
  width: 100%;
}
.section-about-command .arrow-bottom svg {
  width: 100%;
}
.section-about-command.anim .underlined .line path {
  stroke-dashoffset: 1146;
}
.section-about-command .svg-wrap.anim + .arrow-line path {
  stroke-dashoffset: 0;
  transition-delay: 0.4s;
  transition-duration: 2.5s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-about-command .accord-mob {
  display: none;
  padding-top: 8px;
}
.section-about-command .accord-mob.active .arrow-line,
.section-about-command .accord-mob.active .svg-wrap {
  display: none;
}
.section-about-command .accord[data-collapse="open"] .btn.js-close-accord {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.section-about-command .container {
  max-width: 1660px;
}
.section-about-command .section-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.27;
  margin: 0 auto;
  text-align: center;
  width: max-content;
}
.section-about-command .svg-wrap {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.section-about-command .underlined {
  display: block;
  margin-bottom: 48px;
  max-width: 505px;
}
.section-about-command .underlined .line {
  display: block;
  position: relative;
  width: 118%;
}
.section-about-command .underlined .line path {
  stroke-dasharray: 573;
  stroke-dashoffset: 573;
}
@keyframes delay-overflow {
  to {
    overflow-y: unset;
  }
}
.section-about-command .accord-head .slider-group {
  flex-direction: column;
}
.section-about-command .accord-head .large-slider .swiper {
  margin-left: unset;
  margin-right: unset;
  max-width: 697px;
}
.section-about-command .accord-head .large-slider .title-wrap {
  position: relative;
}
.section-about-command .accord-head .large-slider .slider-button {
  margin: auto 0;
  position: relative;
}
.section-about-command .accord-head .right-slider.small-slider {
  max-width: unset;
}
.section-about-command .accord-head .right-slider .title-wrap {
  left: unset;
  position: relative;
  transform: unset;
}
.section-about-command .accord-head .right-slider .title-wrap .slider-title {
  left: unset;
  margin-left: unset;
  right: unset;
}
.section-about-command .accord-body {
  position: relative;
}
.section-about-command .accord-body .swiper {
  overflow-y: clip;
}
.section-about-command
  .accord[data-collapse="close"].collapsing
  > .accord-body {
  transition: height 0s ease;
}
@media (max-width: 500px) {
  .section-about-command .btn-circle:after {
    content: "смотреть больше";
  }
}
.section-about-command .accord[data-collapse="open"] .accord-body .swiper {
  animation: delay-overflow 1s 0s forwards;
}
.section-about-command .accord[data-collapse="open"] .btn-circle {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 500px) {
  .section-about-command .accord[data-collapse="open"] .btn-circle {
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 500px) {
  .section-about-command .accord[data-collapse="open"] .btn-circle:after {
    content: "свернуть";
  }
}
.section-about-command .accord[data-collapse="open"] .accord-body {
  padding-bottom: 30px;
}
.section-about-command .accord-mob[data-collapse="open"] {
  margin-bottom: -102px;
}
.section-about-command .accord-head {
  position: relative;
}
.section-about-command .accord[data-collapse="open"] + .arrow-line {
  opacity: 0;
}
.section-about-command .title-wrap {
  cursor: auto;
}
.section-about-command .slider {
  cursor: pointer;
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
.section-about-command .slider.hover {
  z-index: 50;
}
.section-about-command .slider .slider-button {
  justify-content: flex-start;
}
.section-about-command .slider .slider-button img {
  width: 15px;
}
.section-about-command .slider .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.section-about-command .slider.without-arrow {
  margin-left: 0;
  width: calc(100% + 5px);
}
.section-about-command .slider.without-arrow .swiper {
  margin-left: -35px;
}
.section-about-command .swiper {
  cursor: default;
  display: flex;
  max-width: 1202px;
  overflow: visible;
  overflow-x: clip;
  padding: 0 35px;
  width: calc(100% - 330px);
}
.section-about-command .swiper.hover {
  z-index: 30;
}
.section-about-command .swiper.hover ~ .btn-circle {
  opacity: 0;
}
.section-about-command .swiper .swiper-wrapper {
  z-index: 4;
}
.section-about-command .swiper .swiper-slide {
  height: 360px;
  opacity: 0;
  position: relative;
  transition-duration: 0.3s;
  transition-property: opacity;
  z-index: 0;
}
.section-about-command .swiper .swiper-slide.swiper-slide-visible {
  opacity: 1;
}
.section-about-command .swiper .swiper-slide:hover {
  z-index: 2;
}
.section-about-command .swiper .swiper-slide:hover .slide-wrap:before {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.section-about-command .swiper .swiper-slide:hover .hidden-block {
  max-height: max-content;
  opacity: 1;
  pointer-events: all;
}
.section-about-command .swiper .swiper-slide:hover .img-wrap img {
  filter: grayscale(0);
}
.section-about-command .swiper .swiper-slide:hover .img-wrap img.hover {
  opacity: 1;
}
.section-about-command .swiper .swiper-slide:hover .img-wrap img.default {
  opacity: 0;
}
.section-about-command .swiper .swiper-slide .slide-wrap {
  height: 100%;
  height: max-content;
  left: 50%;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
.section-about-command .swiper .swiper-slide .slide-wrap:before {
  background: #fff;
  background: linear-gradient(180deg, #fff, #d8dc7a 66.35%, #b1bc00);
  border-radius: 10px;
  box-sizing: content-box;
  content: "";
  height: 100%;
  left: -30px;
  opacity: 0;
  padding: 30px 30px 40px;
  position: absolute;
  top: -30px;
  transition-duration: 0.3s;
  transition-property: opacity, box-shadow;
  width: 100%;
}
.section-about-command .swiper .swiper-slide .img-wrap {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.section-about-command .swiper .swiper-slide .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-about-command .swiper .swiper-slide .img-wrap .img,
.section-about-command .swiper .swiper-slide .img-wrap img {
  filter: grayscale(100%);
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition-duration: 0.3s;
  transition-property: filter, opacity;
  width: 100%;
  z-index: 1;
}
.section-about-command .swiper .swiper-slide .img-wrap .img.hover,
.section-about-command .swiper .swiper-slide .img-wrap img.hover {
  opacity: 0;
}
.section-about-command .slider-button {
  flex: 1;
  height: 100%;
  height: unset;
  margin-top: 0;
  max-width: 50px;
  min-width: 50px;
  position: relative;
  top: 0;
}
.section-about-command .slider-title {
  align-items: center;
  background-color: #fff;
  box-sizing: content-box;
  display: flex;
  flex: 1;
  font-size: 40px;
  font-weight: 700;
  height: calc(100% + 5px);
  line-height: 1;
  max-height: 360px;
  max-width: 330px;
  min-height: 360px;
  min-width: 330px;
  position: relative;
  z-index: 3;
}
.section-about-command .left-slider {
  padding-right: 50px;
}
.section-about-command .left-slider .slider-title {
  justify-content: flex-end;
  right: 0;
  text-align: right;
}
.section-about-command .left-slider .slider-button {
  left: 0;
}
.section-about-command .left-slider .slider-button.slider-button-next {
  left: -30px;
}
.section-about-command .left-slider .swiper {
  margin-left: -34px;
}
.section-about-command .right-slider {
  padding-left: 50px;
}
.section-about-command .right-slider .swiper {
  margin-right: -34px;
}
.section-about-command .right-slider .slider-title {
  justify-content: flex-start;
  left: -20px;
  text-align: left;
}
.section-about-command .right-slider .slider-button {
  right: 0;
}
.section-about-command .right-slider .swiper-button-prev {
  left: 33px;
}
.section-about-command .name {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: lowercase;
}
.section-about-command .position {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 50px;
}
.section-about-command .quote {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
.section-about-command .hidden-block {
  display: flex;
  flex-direction: column;
  height: max-content;
  max-height: 0;
  opacity: 0;
  padding: 15px 0 0;
  pointer-events: none;
  position: relative;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-about-command .depart-title {
  display: block;
  font-size: 38px;
  font-weight: 500;
  line-height: 97.58%;
  margin-bottom: 22px;
}
.section-about-command .depart-cards {
  margin-bottom: 22px;
  width: 100%;
}
.section-about-command .card-block {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.section-about-command .card-block:before {
  content: "";
  display: block;
  padding-top: 100%;
  width: 100%;
}
.section-about-command .card-block .card-wrap {
  display: block;
  height: max-content;
  left: 0;
  min-height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-about-command .card-block .card-wrap:before {
  background: #fff;
  background: linear-gradient(180deg, #fff, #d8dc7a 66.35%, #b1bc00);
  border-radius: 10px;
  box-sizing: content-box;
  content: "";
  height: 100%;
  left: -15px;
  opacity: 0;
  padding: 15px;
  position: absolute;
  top: -15px;
  transition-duration: 0.3s;
  transition-property: opacity, box-shadow;
  width: 100%;
}
.section-about-command .card-block .img-wrap {
  height: 100%;
  position: relative;
  width: 100%;
}
.section-about-command .card-block .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-about-command .card-block .img-wrap img {
  filter: grayscale(100%);
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition-duration: 0.3s;
  transition-property: filter, opacity;
  width: 100%;
}
.section-about-command .card-block .img-wrap img.hover {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.section-about-command .department-block {
  position: relative;
}
.section-about-command .department-block:hover {
  z-index: 45;
}
.section-about-command .department-right .depart-title {
  margin-left: auto;
  text-align: right;
}
.section-about-command .department-left .depart-title {
  margin-right: auto;
  text-align: left;
}
.section-about-command .btn-circle {
  background: #fff;
  border: 2px solid #b1bc00;
  border-radius: 50%;
  bottom: 0;
  color: #000;
  cursor: pointer;
  font-size: 19px;
  height: 165px;
  left: 50%;
  line-height: 112.2%;
  margin: 0 auto;
  opacity: 1;
  padding: 20px;
  position: absolute;
  text-align: center;
  transform: translate(-50%, 50%);
  transition-duration: 0.3s;
  transition-property: opacity, background-color;
  width: 165px;
  z-index: 40;
}
.section-about-command .btn-circle.js-close-accord {
  opacity: 0;
  pointer-events: none;
}
.section-about-command .arrow-line {
  bottom: -300px;
  max-width: 685px;
  opacity: 1;
  position: absolute;
  right: 50%;
  transform: translate(113%, 10px);
  transition-duration: 0.3s;
  transition-property: opacity;
  width: 100%;
}
.section-about-command .arrow-line path {
  stroke-dasharray: 1087;
  stroke-dashoffset: 1087;
}
.section-about-command .accord-desk .card-block:hover,
.section-about-command .accord-mob .card-block.active {
  z-index: 2;
}
.section-about-command .accord-desk .card-block:hover .card-wrap:before,
.section-about-command .accord-mob .card-block.active .card-wrap:before {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.section-about-command .accord-desk .card-block:hover .hidden-block,
.section-about-command .accord-mob .card-block.active .hidden-block {
  max-height: max-content;
  opacity: 1;
  pointer-events: all;
}
.section-about-command .accord-desk .card-block:hover .img-wrap img,
.section-about-command .accord-mob .card-block.active .img-wrap img {
  filter: grayscale(0);
}
.section-about-command .accord-desk .card-block:hover .img-wrap img.hover,
.section-about-command .accord-mob .card-block.active .img-wrap img.hover {
  opacity: 1;
}
.section-about-command .accord-mob .card-block.active .img-wrap {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.section-about-command .accord-mob .position {
  margin-bottom: 20px;
}
.section-about-command .accord-mob .depart-title {
  margin-bottom: 42px;
}
.section-about-command .accord-mob .depart-cards {
  margin-bottom: 52px;
}
@media (min-width: 1661px) {
  .section-about-command .medium-slider .swiper-button-prev {
    margin-left: auto;
  }
  .section-about-command .medium-slider .swiper {
    margin-left: unset;
  }
}
@media (max-width: 1660px) {
  .section-about-command .accord-head .large-slider .swiper {
    max-width: 1200px;
    padding: 0 18px;
  }
  .section-about-command
    .accord-head
    .large-slider
    .slider-button.slider-button-next {
    left: -10px;
  }
  .section-about-command .accord-head .right-slider .title-wrap .slider-title {
    top: unset;
  }
  .section-about-command .left-slider .slider-button {
    left: 0;
  }
  .section-about-command .right-slider .swiper-button-prev {
    left: 53px;
  }
  .section-about-command .accord.active {
    margin-bottom: -84px;
  }
  .section-about-command .accord.active .arrow-line {
    display: none;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide
    .slide-wrap {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide
    .slide-wrap {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1650px) {
  .section-about-command .swiper .swiper-slide {
    height: 300px;
  }
  .section-about-command .right-slider .swiper-button-prev {
    left: 49px;
  }
}
@media (max-width: 1550px) {
  .section-about-command .left-slider .slider-button.slider-button-next {
    left: -50px;
  }
}
@media (max-width: 1450px) {
  .section-about-command .swiper .swiper-slide {
    height: 266px;
  }
}
@media (max-width: 1400px) {
  .section-about-command .swiper .swiper-slide {
    height: 266px;
  }
}
@media (max-width: 1380px) {
  .section-about-command .left-slider .slider-button.slider-button-next {
    left: -40px;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: -11px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: 11px;
  }
}
@media (max-width: 1323px) {
  .section-about-command .swiper {
    width: calc(100% - 270px);
  }
  .section-about-command .left-slider .slider-button.slider-button-next {
    left: -30px;
  }
  .section-about-command
    .accord-head
    .large-slider
    .slider-button.slider-button-next {
    left: 0;
  }
  .section-about-command .slider-title {
    font-size: 38px;
    line-height: 95.03%;
    max-height: 270px;
    max-width: 270px;
    min-height: 270px;
    min-width: 270px;
  }
  .section-about-command .slider {
    width: 100%;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: -21px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: 21px;
  }
}
@media (max-width: 1240px) {
  .section-about-command .swiper .swiper-slide {
    height: 270px;
  }
  .section-about-command .right-slider .swiper-button-prev {
    left: 30px;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: 4px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: -4px;
  }
  .section-about-command .arrow-line {
    bottom: -210px;
    max-width: 500px;
  }
}
@media (max-width: 1085px) {
  .section-about-command .slider {
    margin-bottom: 20px;
  }
  .section-about-command .slider .slider-button {
    max-width: 35px;
    min-width: 35px;
  }
  .section-about-command .slider .slider-button img {
    width: 11px;
  }
  .section-about-command
    .accord-head
    .large-slider
    .slider-button.slider-button-next,
  .section-about-command .left-slider .slider-button.slider-button-next {
    left: -50px;
  }
  .section-about-command .right-slider .swiper-button-prev {
    left: 49px;
  }
  .section-about-command .swiper {
    width: calc(100% - 200px);
  }
  .section-about-command .swiper .swiper-slide {
    height: 240px;
  }
  .section-about-command .swiper .swiper-slide .slide-wrap:before {
    left: -10px;
    padding: 10px;
    top: -10px;
  }
  .section-about-command .swiper .swiper-slide .name {
    font-size: 25px;
  }
  .section-about-command .swiper .swiper-slide .position {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .section-about-command .swiper .swiper-slide .quote {
    font-size: 16px;
  }
  .section-about-command .slider:not(.small-slider).right-slider {
    padding-left: 35px;
  }
  .section-about-command .slider:not(.small-slider).right-slider .swiper {
    margin-right: -35px;
    padding: 0 20px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: 13px;
  }
  .section-about-command .slider:not(.small-slider).left-slider {
    padding-right: 35px;
  }
  .section-about-command .slider:not(.small-slider).left-slider .swiper {
    margin-left: -35px;
    padding: 0 20px;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: -13px;
  }
  .section-about-command .slider-title {
    max-height: 200px;
    max-width: 200px;
    min-height: 200px;
    min-width: 200px;
  }
}
@media (max-width: 895px) {
  .section-about-command .swiper .swiper-slide {
    height: 200px;
  }
  .section-about-command
    .accord-head
    .large-slider
    .slider-button.slider-button-next {
    left: -30px;
  }
  .section-about-command .right-slider .swiper-button-prev {
    left: 30px;
  }
  .section-about-command .left-slider .slider-button.slider-button-next {
    left: -30px;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: 6px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: -6px;
  }
  .section-about-command .arrow-line {
    bottom: -260px;
  }
}
@media (max-width: 768px) {
  .section-about-command {
    margin-bottom: 180px;
    padding: 20px 0;
  }
  .section-about-command .accord.active {
    margin-bottom: -90px;
  }
  .section-about-command .right-slider .swiper-button-prev {
    left: 46px;
  }
  .section-about-command .swiper {
    min-width: 463px;
  }
  .section-about-command .slider:not(.small-slider).right-slider .swiper {
    padding: 0 15px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: -4px;
  }
  .section-about-command .slider:not(.small-slider).left-slider .swiper {
    padding: 0 15px;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: 4px;
  }
  .section-about-command .underlined {
    margin-bottom: 0;
    max-width: 350px;
  }
  .section-about-command .underlined .line {
    width: 112%;
  }
  .section-about-command .section-title {
    font-size: 50px;
    margin-bottom: 20px;
    max-width: 100%;
    padding-bottom: 0;
  }
  .section-about-command .btn-circle {
    transform: translate(-50%, 75%);
  }
  .section-about-command .arrow-bottom {
    bottom: -240px;
    max-width: 310px;
    transform: translateX(-120%);
  }
  .section-about-command .arrow-bottom svg {
    width: 100%;
  }
  .section-about-command .arrow-line {
    bottom: -110px;
    max-width: 306px;
    right: 51%;
  }
  .section-about-command .arrow-line path {
    stroke-width: 3;
  }
}
@media (max-width: 769px) {
  .section-about-command .slider-title {
    font-size: 30px;
    max-height: 150px;
    max-width: 150px;
    min-height: 150px;
    min-width: 150px;
  }
  .section-about-command
    .accord-head
    .large-slider
    .slider-button.slider-button-next {
    left: -45px;
  }
  .section-about-command .left-slider .slider-button.slider-button-next {
    left: -46px;
  }
  .section-about-command .swiper {
    min-width: unset;
    width: calc(100% - 150px);
  }
  .section-about-command .swiper .swiper-slide {
    height: 180px;
  }
  .section-about-command .slider:not(.small-slider).left-slider {
    padding-right: 35px;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: -11px;
  }
  .section-about-command .slider:not(.small-slider).right-slider {
    padding-left: 35px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: 11px;
  }
}
@media (max-width: 700px) {
  .section-about-command .swiper .swiper-slide {
    height: 150px;
  }
  .section-about-command
    .accord-head
    .large-slider
    .slider-button.slider-button-next,
  .section-about-command .left-slider .slider-button.slider-button-next {
    left: -30px;
  }
  .section-about-command .right-slider .swiper-button-prev {
    left: 30px;
  }
  .section-about-command
    .slider:not(.small-slider).left-slider
    .swiper
    .swiper-slide:not(.swiper-slide-active)
    .slide-wrap {
    margin-left: 4px;
  }
  .section-about-command
    .slider:not(.small-slider).right-slider
    .swiper
    .swiper-slide.swiper-slide-active
    .slide-wrap {
    margin-left: -4px;
  }
}
@media (max-width: 630px) {
  .section-about-command .slider-title {
    font-size: 24px;
    max-height: 120px;
    max-width: 120px;
    min-height: 120px;
    min-width: 120px;
  }
  .section-about-command .swiper {
    width: calc(100% - 120px);
  }
  .section-about-command .swiper .swiper-slide {
    height: 120px;
  }
}
@media (max-width: 575.9px) {
  .section-about-command .section-title {
    font-size: 40px;
  }
  .section-about-command .underlined .line {
    width: 100%;
  }
  .section-about-command .btn-circle {
    bottom: 0;
    transform: translate(-50%, calc(100% + 16px));
  }
  .section-about-command .arrow-line {
    bottom: -75px;
    max-width: 38%;
    right: 20px;
    transform: translate(0);
    transform: scaleY(-1);
  }
  .section-about-command .arrow-bottom {
    bottom: -330px;
    max-width: 310px;
    transform: translateX(-105%);
  }
}
@media (max-width: 500px) {
  .section-about-command .accord-desk {
    display: none;
  }
  .section-about-command .accord-mob {
    display: block;
  }
  .section-about-command .department-right {
    margin-top: 36px;
  }
  .section-about-command .arrow-bottom {
    bottom: -330px;
    max-width: 310px;
    transform: translateX(4%) scaleY(-1) rotate(0deg);
  }
}
.section-about-vacancies {
  padding-bottom: 20px;
  padding-top: 0;
  position: relative;
}
.section-about-vacancies .arrow-top {
  display: none;
}
.section-about-vacancies.anim .underlined .line path {
  stroke-dashoffset: 734;
}
.section-about-vacancies .section-title {
  align-items: flex-start;
  display: flex;
  font-size: 48px;
  font-weight: 400;
  gap: 38px;
  line-height: 1;
  padding-left: 55px;
  padding-top: 175px;
  text-align: center;
  width: max-content;
}
.section-about-vacancies .section-title .title-description {
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}
.section-about-vacancies .section-title .title-description--mob {
  display: none;
}
.section-about-vacancies .underlined {
  margin-bottom: 24px;
  transition: color 0.3s linear;
}
@media (hover: hover) {
  .section-about-vacancies .underlined:hover {
    color: #b1bc00;
  }
}
.section-about-vacancies .underlined .line {
  filter: brightness(0) saturate(100%) invert(62%) sepia(99%) saturate(750%)
    hue-rotate(23deg) brightness(89%) contrast(98%);
  width: 100%;
}
.section-about-vacancies .underlined .line path {
  stroke-dasharray: 367;
  stroke-dashoffset: 367;
}
.section-about-vacancies .accord-head {
  align-items: center;
  color: #929292;
  display: flex;
  font-size: 25px;
  font-weight: 400;
  justify-content: space-between;
  line-height: 1.3;
  transition-duration: 0.3s;
  transition-property: opacity, color;
}
.section-about-vacancies .vacancy-item:not(:last-child) {
  margin-bottom: 40px;
}
.section-about-vacancies .accord[data-collapse="open"] .arrow {
  opacity: 1;
  transform: rotate(180deg);
}
.section-about-vacancies .accord[data-collapse="open"] .accord-head {
  color: #000;
}
.section-about-vacancies .arrow {
  height: 30px;
  opacity: 0.5;
  transition-duration: 0.3s;
  transition-property: transform, opacity;
  width: 30px;
}
.section-about-vacancies .arrow img {
  height: 100%;
  object-fit: contain;
  transform: rotate(-90deg);
  width: 100%;
}
.section-about-vacancies .vacancy-wrap {
  align-items: stretch;
  border-top: 1px solid #000;
  display: flex;
  margin-top: 30px;
  padding-top: 60px;
}
.section-about-vacancies .img-wrap {
  max-height: 387px;
  max-width: 100%;
  object-fit: contain;
}
.section-about-vacancies .img-wrap .img,
.section-about-vacancies .img-wrap img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.section-about-vacancies .info-col-first {
  justify-content: space-between;
}
.section-about-vacancies .vacancy-info {
  display: flex;
  justify-content: space-between;
  margin-left: 54px;
  margin-right: 54px;
  max-width: 690px;
  width: 100%;
}
.section-about-vacancies .vacancy-col {
  margin-right: 200px;
}
.section-about-vacancies .vacancy-col:last-child {
  margin-right: 0;
}
.section-about-vacancies .info-col {
  display: flex;
  flex-direction: column;
}
.section-about-vacancies .info-col .info-block:not(:last-child) {
  margin-bottom: 50px;
}
.section-about-vacancies .info-col .text,
.section-about-vacancies .info-col .title {
  display: block;
}
.section-about-vacancies .info-col .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-about-vacancies .info-col .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}
.section-about-vacancies .info-col .list-item {
  line-height: 1;
  word-break: break-word;
}
.section-about-vacancies .info-col .list-item:not(:last-child) {
  margin-bottom: 5px;
}
.section-about-vacancies .btn-circle {
  font-size: 16px;
  font-weight: 400;
  height: 195px;
  line-height: 112.2%;
  padding: 10px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-out;
  width: 195px;
}
.section-about-vacancies .btn-circle .line-bottom,
.section-about-vacancies .btn-circle .line-top {
  position: absolute;
}
.section-about-vacancies .btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 70px;
}
.section-about-vacancies .btn-wrap .line {
  height: max-content;
  position: relative;
  top: -27px;
}
@media (max-width: 1400px) {
  .section-about-vacancies .vacancy-wrap {
    justify-content: space-between;
  }
  .section-about-vacancies .vacancy-col {
    margin-right: 20px;
  }
}
@media (max-width: 1024px) {
  .section-about-vacancies .vacancy-wrap {
    flex-wrap: wrap;
  }
  .section-about-vacancies .vacancy-col {
    margin-right: 0;
    width: calc(50% - 10px);
  }
  .section-about-vacancies .vacancy-col:last-child {
    margin-top: 20px;
    width: 100%;
  }
  .section-about-vacancies .info-col-first {
    justify-content: flex-start;
  }
  .section-about-vacancies .info-col .info-block:not(:last-child),
  .section-about-vacancies .info-col .title {
    margin-bottom: 10px;
  }
  .section-about-vacancies .info-col-second {
    flex-direction: row;
    justify-content: space-between;
  }
  .section-about-vacancies .info-col-second .info-block {
    margin-bottom: 0;
    width: calc(50% - 10px);
  }
  .section-about-vacancies .btn-circle {
    height: 150px;
    width: 150px;
  }
}
@media (max-width: 768px) {
  .section-about-vacancies .vacancy-wrap {
    padding-top: 20px;
  }
  .section-about-vacancies .section-title {
    flex-wrap: wrap;
    font-size: 50px;
    margin-bottom: 0;
    padding: 20px 0 30px;
    width: 100%;
  }
  .section-about-vacancies .section-title .title-description {
    font-size: 30px;
  }
  .section-about-vacancies .section-title .underlined {
    margin-bottom: 18px;
  }
  .section-about-vacancies .vacancy-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .section-about-vacancies .img-wrap {
    max-height: 254px;
  }
}
@media (max-width: 575.9px) {
  .section-about-vacancies {
    padding-block-start: 80px;
  }
  .section-about-vacancies .arrow-top {
    display: block;
    left: 0;
    max-width: 310px;
    position: absolute;
    top: 0;
    transform: rotate(10deg) scale(-1) translate(180px, -130px);
    transform-origin: center;
  }
  .section-about-vacancies .arrow-top svg {
    width: 100%;
  }
  .section-about-vacancies .section-title {
    flex-direction: column-reverse;
    gap: 13px;
    padding-bottom: 36px;
  }
  .section-about-vacancies .section-title .underlined {
    align-self: flex-start;
    font-size: 50px;
    margin-inline-start: 20px;
  }
  .section-about-vacancies .section-title .title-description {
    align-self: flex-end;
    font-size: 30px;
    font-style: italic;
    margin-right: 25px;
    text-align: right;
  }
  .section-about-vacancies .section-title .title-description--desk {
    display: none;
  }
  .section-about-vacancies .section-title .title-description--mob {
    display: block;
  }
  .section-about-vacancies .accord-head {
    font-size: 24px;
  }
  .section-about-vacancies .arrow {
    height: 25px;
    width: 25px;
  }
  .section-about-vacancies .vacancy-wrap {
    padding-top: 10px;
  }
  .section-about-vacancies .info-col .title {
    font-size: 24px;
  }
  .section-about-vacancies .info-col .text {
    font-size: 16px;
  }
  .section-about-vacancies .info-col-first .title {
    margin-bottom: 5px;
  }
  .section-about-vacancies .img-wrap {
    max-height: 191px;
  }
  .section-about-vacancies .btn-circle {
    height: 110px;
    width: 110px;
  }
}
@media (max-width: 360px) {
  .section-about-vacancies .vacancy-col {
    flex-direction: column;
  }
  .section-about-vacancies .info-col-second .info-block {
    width: 100%;
  }
}
.section-about-blog {
  background: rgba(0, 0, 0, 0);
  padding-top: 30px;
  position: relative;
  z-index: 2;
}
.section-about-blog.anim .section-title .line path {
  stroke-dashoffset: 388;
}
.section-about-blog .swiper-pagination {
  bottom: 0 !important;
  display: none;
  font-size: 0;
}
.section-about-blog .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #c4c4c4;
  height: 20px;
  margin-inline: 8px;
  transition-duration: 0.1s;
  transition-property: background;
  width: 20px;
}
.section-about-blog .swiper-pagination-bullet-active {
  background: #b1bc00;
}
.section-about-blog .dropdown {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 22px;
  margin-left: 94px;
  width: 60px;
}
.section-about-blog .dropdown .dropdown-trigger .icon img {
  height: auto;
  margin-top: 1px;
  transform: none;
  width: 12px;
}
.section-about-blog .dropdown .text {
  font-size: 20px;
  margin-right: 25px;
}
.section-about-blog .dropdown .dropdown-list {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  max-height: 400px;
  min-width: 200px;
  overflow-y: auto;
  padding: 0;
  scrollbar-color: #aaa #eee;
  scrollbar-width: thin;
}
.section-about-blog .dropdown .dropdown-list::-webkit-scrollbar {
  background-color: #eee;
  height: 3px;
  width: 2px;
}
.section-about-blog .dropdown .dropdown-list::-webkit-scrollbar-thumb {
  background: #aaa;
}
.section-about-blog .dropdown .list-item {
  margin-bottom: 0;
  padding: 12px 10px;
  transition-duration: 0.3s;
  transition-property: background;
}
.section-about-blog .dropdown .list-item .text {
  font-size: 16px;
  font-weight: 400;
}
.section-about-blog .dropdown .list-item .radio .input:checked + .text {
  color: #963ebd;
}
.section-about-blog .dropdown .list-item:hover {
  background: #f9f9f9;
}
.section-about-blog .section-title {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  margin-bottom: 58px;
  position: relative;
  text-align: center;
  z-index: 30;
}
.section-about-blog .section-title .underlined {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.27;
}
.section-about-blog .section-title .line {
  top: 95%;
  width: 110%;
}
.section-about-blog .section-title .line path {
  stroke-dasharray: 194;
  stroke-dashoffset: 194;
}
.section-about-blog .slider-wrap {
  position: relative;
  width: 100%;
}
.section-about-blog .slider-wrap .swiper-button-next {
  right: 0;
}
.section-about-blog .slider-wrap .swiper-button-prev {
  left: 0;
}
.section-about-blog .slider-wrap .slider-button img {
  height: 45px;
  width: 24px;
}
.section-about-blog .slider {
  margin: 0 70px;
  overflow-x: clip;
  overflow-y: visible;
  z-index: 10;
}
.section-about-blog .slider .swiper-slide {
  max-width: 262px;
  width: 100%;
}
.section-about-blog .slider .blog-card {
  display: block;
  position: relative;
}
.section-about-blog .slider .blog-card .img-wrap {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}
.section-about-blog .slider .blog-card .img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-about-blog .slider .blog-card .img-wrap .img,
.section-about-blog .slider .blog-card .img-wrap img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-about-blog .slider .blog-card .tag {
  color: #b1bc00;
  display: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 5px;
  position: relative;
}
.section-about-blog .slider .blog-card .tag:before {
  content: "#";
  position: relative;
}
.section-about-blog .slider .blog-card .title {
  display: block;
  font-size: 32px;
  font-weight: 500;
}
.section-about-blog .slider .blog-card .text {
  font-size: 20px;
  margin-bottom: 10px;
  max-height: 78px;
  overflow: hidden;
  transition-duration: 0.3s;
  transition-property: max-height;
}
.section-about-blog .slider .blog-card .text-trigger {
  align-items: center;
  display: flex;
  font-size: 15px;
  height: 22px;
  justify-content: flex-end;
  position: relative;
  text-align: right;
  width: 100%;
}
.section-about-blog .slider .blog-card .text-trigger.hide-trigger {
  display: none;
}
.section-about-blog .slider .blog-card .text-trigger:after {
  background-image: url(../img/svg/dropdown-arrow.svg);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 7px;
  margin-left: 10px;
  margin-top: 3px;
  transition-duration: 0.3s;
  transition-property: transform;
  width: 14px;
}
.section-about-blog .slider .blog-card .text-wrap {
  background-color: #fff;
  display: block;
  position: absolute;
  width: 100%;
}
.section-about-blog .slider .blog-card .text-wrap.active .text {
  max-height: 300px !important;
}
.section-about-blog .slider .blog-card .text-wrap.active .text-trigger:after {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .section-about-blog {
    padding: 20px 0 40px;
  }
  .section-about-blog .section-title {
    margin-bottom: 32px;
  }
  .section-about-blog .section-title .underlined {
    font-size: 50px;
  }
  .section-about-blog .slider {
    margin-right: 87px;
  }
  .section-about-blog .dropdown {
    margin-bottom: -8px;
    margin-left: 135px;
  }
}
@media (max-width: 575.9px) {
  .section-about-blog {
    padding-bottom: 0;
  }
  .section-about-blog .dropdown {
    margin-bottom: -14px;
    margin-left: auto;
    margin-right: 48px;
  }
  .section-about-blog .dropdown-list {
    left: auto;
    right: 0;
  }
  .section-about-blog .slider {
    margin: 0;
    padding-bottom: 30px;
  }
  .section-about-blog .slider .swiper-pagination {
    display: block;
  }
  .section-about-blog .slider .blog-card .title {
    font-size: 24px;
  }
  .section-about-blog .slider .blog-card .text {
    font-size: 16px;
    margin-bottom: 0;
  }
  .section-about-blog .slider .blog-card .text-trigger,
  .section-about-blog .slider-button {
    display: none;
  }
}
.section-about-cooperation {
  background: rgba(0, 0, 0, 0);
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.section-about-cooperation .container {
  max-width: 1320px;
}
.section-about-cooperation.anim .underlined svg path {
  stroke-dashoffset: 746;
}
.section-about-cooperation .section-title {
  align-items: flex-end;
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: 73px;
  position: relative;
  text-align: start;
  z-index: 30;
}
.section-about-cooperation .underlined .line {
  filter: brightness(0) saturate(100%) invert(62%) sepia(99%) saturate(750%)
    hue-rotate(23deg) brightness(89%) contrast(98%);
  transform: translateX(-50%);
}
.section-about-cooperation .underlined svg {
  display: block;
  width: 110%;
}
.section-about-cooperation .underlined svg path {
  stroke-width: 1;
  stroke-dasharray: 373;
  stroke-dashoffset: 373;
}
.section-about-cooperation .main-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 700px;
  text-transform: lowercase;
  width: 100%;
}
.section-about-cooperation .mail-link {
  font-size: 36px;
  font-weight: 700;
  line-height: 55px;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-about-cooperation .mail-link:hover {
  color: #9b51e0;
}
@media (max-width: 575.9px) {
  .section-about-cooperation {
    padding-block-start: 70px;
  }
  .section-about-cooperation .section-title {
    font-size: 40px;
    line-height: 1;
    text-align: center;
  }
  .section-about-cooperation .underlined {
    display: flex;
    justify-content: center;
    margin-block-start: 8px;
  }
  .section-about-cooperation .mail-link {
    font-size: 26px;
    line-height: 39px;
  }
}
.section-about-values {
  padding-block-start: 0;
}
.section-about-values .container {
  max-width: 1300px;
}
.section-about-values__title {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin-block-end: 24px;
  text-align: center;
}
.section-about-values__title .line {
  width: 100%;
}
.section-about-values__middle {
  display: flex;
  justify-content: space-between;
  margin-block: 21px 16px;
  margin-inline: auto;
  max-width: 680px;
  padding-inline: 20px;
}
.section-about-values__middle > * {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 10px;
  line-height: 21px;
}
.section-about-values__middle > :first-child {
  color: #60c9c0;
}
.section-about-values__middle > :nth-child(2) {
  color: #b1bc00;
}
.section-about-values__middle > :nth-child(2) img {
  margin-block-start: 10px;
}
.section-about-values__middle > :nth-child(3) {
  color: #963ebd;
}
.section-about-values__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-about-values__bottom > * {
  color: #929292;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  line-height: 15px;
}
.section-about-values__bottom > :first-child > :first-child {
  padding-inline-start: 4.8%;
}
.section-about-values__bottom > :first-child > :last-child {
  padding-inline-end: 21.7%;
}
.section-about-values__bottom > :nth-child(2) > :first-child {
  padding-inline-start: 32.8%;
}
.section-about-values__bottom > :nth-child(3) > :first-child {
  padding-inline-start: 5.7%;
}
.section-about-values__bottom > :nth-child(3) > :last-child {
  padding-inline-end: 24.5%;
}
.section-about-values__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-about-values__top > * {
  align-items: center;
  color: #929292;
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  line-height: 15px;
  text-align: right;
}
.section-about-values__top > :first-child > :first-child {
  padding-inline-start: 13%;
}
.section-about-values__top > :nth-child(2) > :last-child {
  padding-inline-end: 8px;
}
.section-about-values__text:last-child {
  display: none;
}
@media (min-width: 768.1px) {
  .section-about-values__title {
    font-size: 48px;
    line-height: 73px;
  }
  .section-about-values__bottom > *,
  .section-about-values__top > * {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1024.1px) {
  .section-about-values__text:first-child {
    display: none;
  }
  .section-about-values__text:last-child {
    display: block;
  }
  .section-about-values__top > :first-child {
    height: 38px;
  }
  .section-about-values__top > :first-child > :first-child {
    align-self: flex-end;
    padding-inline-start: 0;
  }
  .section-about-values__top > :first-child > :nth-child(2) {
    margin-right: 200px;
  }
  .section-about-values__top > :first-child > :last-child {
    align-self: flex-end;
    padding-inline-end: 47px;
  }
  .section-about-values__top > :nth-child(2) > :first-child {
    padding-inline-start: 33px;
    transform: translateY(165px);
  }
  .section-about-values__top > :nth-child(2) > :nth-child(2) {
    margin-left: 255px;
  }
  .section-about-values__top > :nth-child(2) > :last-child {
    display: inline-block;
    padding-inline-end: 0;
    transform: translateY(150px);
  }
  .section-about-values__middle {
    margin-block: 52px 37px;
    padding-inline: 0;
  }
  .section-about-values__middle > * {
    font-size: 27px;
    gap: 21px;
    line-height: 41px;
  }
  .section-about-values__middle > :first-child img {
    height: 135px;
    width: 135px;
  }
  .section-about-values__middle > :nth-child(2) img {
    height: 120px;
    margin-block-start: 10px;
    width: 120px;
  }
  .section-about-values__middle > :nth-child(3) img {
    height: 146px;
    width: 146px;
  }
  .section-about-values__bottom {
    gap: 16px;
  }
  .section-about-values__bottom > :first-child > :first-child {
    padding-inline-start: 0;
  }
  .section-about-values__bottom > :first-child > :last-child {
    padding-inline-end: 25px;
  }
  .section-about-values__bottom > :nth-child(2) {
    gap: 142px;
    height: 42px;
    justify-content: center;
  }
  .section-about-values__bottom > :nth-child(2) > :first-child {
    align-self: flex-start;
    padding-inline-start: 0;
  }
  .section-about-values__bottom > :nth-child(2) > :last-child {
    align-self: flex-end;
  }
  .section-about-values__bottom > :nth-child(3) {
    margin-block-start: 8px;
  }
  .section-about-values__bottom > :nth-child(3) > :first-child {
    padding-inline-start: 130px;
  }
  .section-about-values__bottom > :nth-child(3) > :last-child {
    padding-inline-end: 39px;
  }
}
.slider-group {
  width: 100%;
}
.accord[data-collapse="open"] .js-close-accord {
  display: none;
}
.small-group {
  display: flex;
  justify-content: space-between;
}
.small-group .swiper.hover ~ .btn-circle {
  opacity: 1;
}
.small-group .small-slider {
  max-width: 45.7%;
  width: 100%;
}
.small-group .small-slider .btn-circle {
  bottom: -75px;
}
.small-group .small-slider .title-wrap {
  left: 50%;
  margin: 0 auto;
  max-width: 672px;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
.small-group .small-slider .title-wrap .slider-title {
  font-size: 64px;
  line-height: 1;
  position: relative;
}
.small-group .small-slider .slider-title {
  height: max-content;
  max-height: unset;
  max-width: min-content;
  min-height: unset;
  min-width: unset;
  padding: 14px;
  position: absolute;
  text-align: right;
  width: max-content;
}
.small-group .small-slider .swiper {
  width: 100%;
}
.small-group .small-slider .swiper.hover {
  z-index: 50;
}
.small-group .small-slider .swiper .swiper-slide {
  height: 670px;
}
.small-group .small-slider .swiper .swiper-slide .slide-wrap {
  max-width: 670px;
  width: 100%;
}
.small-group .small-slider .swiper .swiper-button-disabled,
.small-group .small-slider .swiper .swiper-button-lock {
  display: none;
}
.small-group .small-slider .slider-button {
  height: 100%;
  position: absolute;
  z-index: 55;
}
.small-group .small-slider .slider-button:before {
  display: none;
}
.small-group .small-slider.right-slider {
  padding-left: 0;
}
.small-group .small-slider.right-slider .swiper {
  margin-left: 0;
  margin-right: 0;
}
.small-group .small-slider.right-slider .slider-button {
  transform: scaleX(-1) translateX(0);
}
.small-group .small-slider.right-slider .slider-title {
  left: unset;
  margin-left: auto;
  right: 0;
  top: -1px;
}
.small-group .small-slider.right-slider .title-wrap {
  max-width: 100%;
  top: 0;
}
.small-group .small-slider.left-slider {
  padding-right: 0;
}
.small-group .small-slider.left-slider .title-wrap {
  bottom: 0;
  max-width: 100%;
}
.small-group .small-slider.left-slider .slider-title {
  bottom: -1px;
  left: 0;
  right: unset;
  top: unset;
}
.small-group .small-slider.left-slider .swiper {
  margin-left: 0;
}
.small-group .small-slider.left-slider .slider-button {
  left: 0;
  right: unset;
  transform: scaleX(1) translateX(0);
}
@media (min-width: 1661px) {
  .small-group .medium-slider .swiper {
    max-width: 879px;
  }
  .small-group .large-slider,
  .small-group .medium-slider {
    width: 100%;
  }
  .small-group .large-slider .title-wrap,
  .small-group .medium-slider .title-wrap {
    left: 50%;
    margin: 0 auto;
    max-width: 672px;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
  }
  .small-group .large-slider .title-wrap .slider-title,
  .small-group .medium-slider .title-wrap .slider-title {
    position: relative;
  }
  .small-group .large-slider .slider-title,
  .small-group .medium-slider .slider-title {
    height: max-content;
    max-height: unset;
    max-width: min-content;
    min-height: unset;
    min-width: unset;
    padding: 14px;
    position: absolute;
    text-align: right;
    width: max-content;
  }
  .small-group .large-slider .swiper,
  .small-group .medium-slider .swiper {
    width: 100%;
  }
  .small-group .large-slider .swiper.hover,
  .small-group .medium-slider .swiper.hover {
    z-index: 50;
  }
  .small-group .large-slider .swiper .swiper-slide,
  .small-group .medium-slider .swiper .swiper-slide {
    height: 584px;
  }
  .small-group .large-slider .swiper .swiper-slide .slide-wrap,
  .small-group .medium-slider .swiper .swiper-slide .slide-wrap {
    max-width: 700px;
    width: 100%;
  }
  .small-group .large-slider .swiper .swiper-button-disabled,
  .small-group .large-slider .swiper .swiper-button-lock,
  .small-group .medium-slider .swiper .swiper-button-disabled,
  .small-group .medium-slider .swiper .swiper-button-lock {
    display: none;
  }
  .small-group .large-slider .slider-button,
  .small-group .medium-slider .slider-button {
    height: 100%;
    position: absolute;
    z-index: 55;
  }
  .small-group .large-slider .slider-button:before,
  .small-group .medium-slider .slider-button:before {
    display: none;
  }
  .small-group .large-slider.right-slider,
  .small-group .medium-slider.right-slider {
    padding-left: 0;
  }
  .small-group .large-slider.right-slider .swiper,
  .small-group .medium-slider.right-slider .swiper {
    margin-left: 0;
    margin-right: 0;
  }
  .small-group .large-slider.right-slider .slider-title,
  .small-group .medium-slider.right-slider .slider-title {
    left: unset;
    margin-left: auto;
    right: 0;
    top: -1px;
  }
  .small-group .large-slider.right-slider .title-wrap,
  .small-group .medium-slider.right-slider .title-wrap {
    top: 0;
  }
  .small-group .large-slider.right-slider .swiper-button-prev,
  .small-group .medium-slider.right-slider .swiper-button-prev {
    left: -10px;
  }
  .small-group .large-slider.left-slider,
  .small-group .medium-slider.left-slider {
    padding-right: 0;
  }
  .small-group .large-slider.left-slider .title-wrap,
  .small-group .medium-slider.left-slider .title-wrap {
    bottom: 30px;
  }
  .small-group .large-slider.left-slider .slider-title,
  .small-group .medium-slider.left-slider .slider-title {
    bottom: -1px;
    left: 0;
    right: unset;
    top: 40%;
  }
  .small-group .large-slider.left-slider .swiper,
  .small-group .medium-slider.left-slider .swiper {
    margin-left: 0;
  }
  .small-group .large-slider.left-slider .slider-button-prev,
  .small-group .medium-slider.left-slider .slider-button-prev {
    left: 0;
    right: unset;
    transform: scaleX(1) translateX(0);
  }
  .small-group .large-slider.left-slider .slider-button-next,
  .small-group .medium-slider.left-slider .slider-button-next {
    left: unset;
    right: 0;
  }
}
@media (max-width: 1660px) {
  .small-group {
    flex-direction: column;
  }
  .small-group .small-slider {
    max-width: 100%;
  }
  .small-group .small-slider .title-wrap {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    left: unset;
    max-width: max-content;
    position: relative;
    transform: translateX(0);
  }
  .small-group .small-slider .swiper {
    max-width: 100%;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 560px;
  }
  .small-group .small-slider.left-slider .title-wrap .slider-title {
    text-align: right;
  }
  .small-group .small-slider.left-slider .swiper {
    max-width: 1200px;
  }
  .small-group .small-slider.left-slider .swiper .swiper-slide .slide-wrap {
    left: 0;
    transform: translateX(0);
  }
  .small-group .small-slider.right-slider .title-wrap .slider-title {
    margin-left: unset;
    margin-right: auto;
    text-align: left;
  }
  .small-group .small-slider.right-slider .swiper .swiper-slide .slide-wrap {
    left: unset;
    right: 0;
    transform: translateX(0);
  }
  .small-group .small-slider .btn-circle {
    left: 50%;
  }
}
@media (max-width: 1550px) {
  .small-group .small-slider .swiper .swiper-slide {
    height: 420px;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 420px;
    width: 100%;
  }
}
@media (max-width: 1240px) {
  .small-group .small-slider .swiper .swiper-slide {
    height: 430px;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 430px;
    width: 100%;
  }
  .small-group .small-slider .title-wrap .slider-title {
    font-size: 50px;
  }
}
@media (max-width: 1025px) {
  .small-group .small-slider .swiper .swiper-slide {
    height: 340px;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 340px;
    width: 100%;
  }
  .small-group .small-slider .swiper {
    padding: 0 15px;
  }
}
@media (max-width: 920px) {
  .small-group .small-slider .swiper .swiper-slide {
    height: 300px;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 300px;
    width: 100%;
  }
  .small-group .small-slider .title-wrap .slider-title {
    font-size: 38px;
    line-height: 95.03%;
  }
}
@media (max-width: 768px) {
  .small-group .small-slider .swiper .swiper-slide {
    height: 280px;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 280px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .small-group .small-slider .swiper .swiper-slide {
    height: 230px;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 230px;
    width: 100%;
  }
}
@media (max-width: 620px) {
  .small-group .small-slider .swiper .swiper-slide {
    height: 180px;
  }
  .small-group .small-slider .swiper .swiper-slide .slide-wrap {
    max-width: 180px;
    width: 100%;
  }
}
.section-contacts-block {
  padding: 40px 0 150px;
}
.section-contacts-block .wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.section-contacts-block .nowrap-text {
  white-space: nowrap;
}
.section-contacts-block .info-block {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  margin-right: 50px;
}
.section-contacts-block .info-item {
  display: flex;
  flex-direction: column;
}
.section-contacts-block .info-item:not(:last-child) {
  margin-bottom: 35px;
}
.section-contacts-block .info-item .title {
  display: block;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: lowercase;
}
.section-contacts-block .info-item .text {
  font-size: 16px;
  font-weight: 400;
  transition-duration: 0.3s;
  transition-property: color, opacity;
}
.section-contacts-block .info-item .text-link:hover {
  color: #9b51e0;
}
.section-contacts-block .info-item .text-lower {
  text-transform: lowercase;
}
.section-contacts-block .map-block {
  display: flex;
  flex-direction: column;
  max-width: 857px;
  position: relative;
  width: 100%;
}
.section-contacts-block .map-block .img-wrap {
  height: auto;
  margin-bottom: -10px;
  margin-left: auto;
  max-width: 520px;
  position: relative;
  position: absolute;
  right: 0;
  top: -104px;
  width: 100%;
}
.section-contacts-block .map-block .img-wrap .img,
.section-contacts-block .map-block .img-wrap img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.section-contacts-block .map-block .map {
  height: 500px;
  width: 100%;
}
.section-contacts-block .map-block .map canvas {
  filter: grayscale(100%);
}
.section-contacts-block .map-block .map .img,
.section-contacts-block .map-block .map iframe,
.section-contacts-block .map-block .map img {
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  width: 100% !important;
}
.section-contacts-block .img-wrap-mobile {
  display: none;
}
.section-contacts-block .img-wrap-dekstop {
  transform: translate(50px, -370px);
}
@media (max-width: 1400px) {
  .section-contacts-block .map-block {
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .section-contacts-block .wrap {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .section-contacts-block .map-block {
    max-width: 100%;
  }
  .section-contacts-block .map-block .map {
    height: 400px;
  }
  .section-contacts-block .map-block .img-wrap {
    max-width: 300px;
    top: -270px;
    transform: translate(0);
  }
  .section-contacts-block .info-block {
    margin-left: 48px;
    margin-right: 0;
    margin-top: 30px;
  }
  .section-contacts-block .info-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .section-contacts-block .map {
    transform: none;
  }
}
@media (max-width: 768px) {
  .section-contacts-block {
    padding: 20px 0 40px;
  }
  .section-contacts-block .mail-link {
    color: #963ebd;
    opacity: 1;
    transition-duration: 0.3s;
    transition-property: opacity;
  }
  .section-contacts-block .mail-link:hover {
    color: #963ebd;
    opacity: 0.6;
  }
  .section-contacts-block .map-block .img-wrap {
    max-width: 260px;
    top: -235px;
  }
}
@media (max-width: 610px) {
  .section-contacts-block .info-block {
    margin-left: 0;
    margin-top: 20px;
  }
  .section-contacts-block .info-item .title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .section-contacts-block .info-item .text {
    font-size: 18px;
    line-height: 23px;
  }
  .section-contacts-block .info-item:not(:last-child) {
    margin-bottom: 15px;
  }
  .section-contacts-block .map-block .map {
    height: 225px;
  }
  .section-contacts-block .map-block .img-wrap {
    max-width: 200px;
    top: -180px;
  }
}
@media (max-width: 479.9px) {
  .section-contacts-block .map-block .img-wrap {
    max-width: 175px;
    top: -150px;
    transform: translateX(20px);
  }
}
.section-contacts-head.anim .section-title .line path {
  stroke-dashoffset: 2004;
  transition-delay: 0.2s;
  transition-duration: 1.8s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-contacts-head.anim .section-title .title .line path {
  stroke-dashoffset: 954;
  transition-delay: 0s;
  transition-duration: 1s;
}
.section-contacts-head .section-title {
  display: flex;
  flex-direction: column;
  height: 290px;
  position: relative;
}
.section-contacts-head .section-title .title {
  font-size: 70px;
  font-weight: 700;
  font-weight: 500;
  line-height: 0.89;
  margin-bottom: 30px;
  width: max-content;
}
.section-contacts-head .section-title .title .line {
  bottom: 0;
  display: block;
  height: unset;
  left: 50%;
  max-height: unset;
  max-width: unset;
  min-width: unset;
  position: absolute;
  transform: translateX(-50%);
  width: 105%;
}
.section-contacts-head .section-title .title .line path {
  stroke-dasharray: 477;
  stroke-dashoffset: 477;
  stroke-width: 2;
}
.section-contacts-head .section-title .main-text {
  font-size: 30px;
  font-weight: 400;
  line-height: 102.1%;
  margin-bottom: 40px;
  max-width: 318px;
  text-transform: lowercase;
}
.section-contacts-head .section-title .line {
  bottom: -10px;
  display: block;
  left: 50%;
  max-width: 50.6%;
  min-width: 450px;
  position: absolute;
  transform: translateX(-40%);
  width: 100%;
}
.section-contacts-head .section-title .line path {
  stroke-dasharray: 1002;
  stroke-dashoffset: 1002;
  stroke-width: 3;
}
.section-contacts-head .section-title .line-mobile {
  display: none;
}
.section-contacts-head .section-title .line-dekstop .line {
  bottom: -125px;
  left: 120px;
  transform: rotate(-5deg);
}
@media (max-width: 1280px) {
  .section-contacts-head .section-title {
    height: 340px;
  }
}
@media (max-width: 1053px) {
  .section-contacts-head .section-title .line-dekstop .line {
    left: 167px;
    max-width: 370px;
    min-width: unset;
  }
}
@media (max-width: 1024px) {
  .section-contacts-head {
    padding-top: 40px;
  }
  .section-contacts-head .section-title {
    height: auto;
  }
  .section-contacts-head .section-title .line-mobile {
    display: initial;
  }
  .section-contacts-head .section-title .line-dekstop {
    display: none;
  }
  .section-contacts-head .section-title .line {
    bottom: -50px;
    height: 100%;
    left: 30%;
    max-height: 110px;
    max-width: 38%;
    min-width: unset;
  }
  .section-contacts-head .section-title .line path {
    stroke-width: 5;
  }
}
@media (max-width: 768px) {
  .section-contacts-head {
    padding: 40px 0 20px;
  }
  .section-contacts-head .section-title .title {
    font-size: 72px;
    line-height: 89.41%;
  }
  .section-contacts-head .section-title .line {
    left: 0;
    transform: translate(0);
  }
  .section-contacts-head .section-title .line path {
    stroke-width: 3;
  }
  .section-contacts-head .section-title .line-dekstop .line {
    max-width: 310px;
  }
}
@media (max-width: 575.9px) {
  .section-contacts-head .section-title .title {
    font-size: 45px;
  }
  .section-contacts-head .section-title .main-text {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .section-contacts-head .section-title .line {
    bottom: -35px;
    max-height: 50px;
    max-width: 60%;
    right: 53px;
  }
}
@media (max-width: 479.9px) {
  .section-contacts-head .section-title .main-text {
    max-width: 200px;
  }
  .section-contacts-head .section-title .line {
    max-width: 45%;
  }
}
.section-404 {
  padding: 89px;
}
.section-404 .header-404 {
  display: flex;
  margin: 0 auto;
  max-width: 784px;
  width: 100%;
}
.section-404 .header-404 .title {
  color: #b1bc00;
  font-size: 200px;
  font-weight: 700;
  line-height: 89.41%;
  margin-left: -30px;
  margin-top: 11%;
}
.section-404 .header-404 .img-wrap {
  max-height: 411px;
  max-width: 450px;
  width: 100%;
}
.section-404 .header-404 .img-wrap .img {
  height: 100%;
  width: 100%;
}
.section-404 .returned {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 19px auto 0;
  max-width: 750px;
}
.section-404 .returned .massege {
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 102.1%;
  text-align: center;
  text-transform: lowercase;
}
.section-404 .returned .btr-circle {
  align-items: center;
  background: #000;
  border-radius: 50%;
  color: #fff;
  display: block;
  display: flex;
  font-size: 25px;
  font-weight: 400;
  height: 200px;
  justify-content: center;
  line-height: 112.2%;
  margin-top: 50px;
  text-align: center;
  width: 200px;
}
.section-404 .returned .btr-circle:hover {
  background: #b1bc00;
}
@media only screen and (max-width: 910px) {
  .section-404 {
    padding: 27px 25px 28px;
  }
  .section-404 .header-404 .title {
    font-size: 180px;
  }
  .section-404 .returned,
  .section-404 .returned .btr-circle {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .section-404 {
    padding: 17px 31px;
  }
}
@media only screen and (max-width: 700px) {
  .section-404 .header-404 {
    flex-direction: column;
    justify-content: center;
  }
  .section-404 .header-404 .title {
    font-size: 150px;
    margin-left: 0;
    margin-top: 0;
    text-align: center;
  }
  .section-404 .returned {
    margin-top: 3px;
  }
  .section-404 .returned .massege {
    font-size: 24px;
  }
  .section-404 .returned .btr-circle {
    font-size: 18px;
    height: 150px;
    line-height: 112.2%;
    margin-top: 20px;
    width: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .section-404 .header-404 .img-wrap {
    max-width: 250px;
  }
}
@media only screen and (max-width: 374px) {
  .section-404 .header-404 .title {
    font-size: 120px;
  }
}
.section-home-head {
  background: rgba(0, 0, 0, 0);
  padding: 48px 0 0;
  position: relative;
  z-index: 1;
}
@keyframes dog {
  0% {
    transform: skewX(5deg) translateX(0);
  }
  to {
    transform: skewX(-20deg) translateX(-33px);
  }
}
@keyframes floating {
  0%,
  to {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
@keyframes expand {
  to {
    opacity: 1;
  }
}
@keyframes showOverflow {
  to {
    overflow: visible;
  }
}
.section-home-head .ellipse-left {
  left: 0;
  opacity: 0;
  position: absolute;
  top: -70px;
}
.section-home-head .ellipse-right {
  opacity: 0;
  position: absolute;
  right: 0;
  top: -100px;
}
.section-home-head .ellipse-left_mob,
.section-home-head .ellipse-right_mob {
  display: none;
}
.section-home-head.anim .anim-dog-item {
  animation-direction: alternate;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-name: dog;
  animation-timing-function: linear;
  transform-origin: center center;
}
.section-home-head.anim .anim-ellipse {
  opacity: 1;
  transition-delay: 1s;
  transition-duration: 0.5s;
  transition-property: opacity;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .anim-word:after {
  transform: translateY(0);
  transition-delay: 0.2s;
  transition-duration: 0.6s;
  transition-property: transform;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .second-block .anim-word:after {
  transition-delay: 0.4s;
}
.section-home-head.anim .home-title .second-block .anim-word.word-best:after {
  transition-delay: 0.7s;
}
.section-home-head.anim .home-title .anim-dash {
  transform: translateY(0);
  transition-delay: 0.4s;
  transition-duration: 0.6s;
  transition-property: transform;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .third-block .anim-word:after {
  transition-delay: 0.7s;
}
.section-home-head.anim .home-title .third-block .anim-word.souvenir:after {
  transition-delay: 0.9s;
}
.section-home-head.anim .home-title .first-block .anim-word {
  transform: translateX(0);
  transition-delay: 1s;
  transition-duration: 0.6s;
  transition-property: transform;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .circle path {
  stroke-dashoffset: 0;
  transition-delay: 1.2s;
  transition-duration: 1.5s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .second-block .anim-first-word-block,
.section-home-head.anim .home-title .second-block .anim-second-word-block {
  transform: translateX(0);
  transition-delay: 1s;
  transition-duration: 0.6s;
  transition-property: transform;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .second-block .anim-second-word-block {
  transition-delay: 1.2s;
}
.section-home-head.anim .home-title .anim-third-block {
  transform: translateY(0);
  transition-delay: 1.2s;
  transition-duration: 0.6s;
  transition-property: transform;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .anim-third-block .anim-second-word-block {
  transform: translateY(-20px);
  transition-delay: 1.2s;
  transition-duration: 1.2s;
  transition-property: transform;
  transition-timing-function: ease;
}
@media (max-width: 950px) {
  .section-home-head.anim
    .home-title
    .anim-third-block
    .anim-second-word-block {
    transform: translateY(-40px);
  }
}
@media (max-width: 600px) {
  .section-home-head.anim
    .home-title
    .anim-third-block
    .anim-second-word-block {
    transform: translateY(-30px);
  }
}
.section-home-head.anim .home-title .anim-btn {
  opacity: 1;
  transition-delay: 1s;
  transition-duration: 0.6s;
  transition-property: opacity;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .anim-curve path {
  stroke-dashoffset: 800;
  transition-delay: 1.2s;
  transition-duration: 1.5s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .anim-btn-line path {
  stroke-dashoffset: 3270;
  transition-delay: 1.2s;
  transition-duration: 2.5s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-home-head.anim .home-title .anim-dog {
  max-height: 250px;
  transition-delay: 1.4s;
  transition-duration: 1s;
  transition-property: max-height;
  transition-timing-function: ease;
}
.section-home-head.anim .anim-text {
  opacity: 1;
  transition-delay: 1s;
  transition-duration: 0.6s;
  transition-property: opacity;
  transition-timing-function: ease;
}
.section-home-head .home-title {
  display: flex;
  flex-direction: column;
  font-size: 89px;
  font-weight: 400;
  line-height: 107.1%;
  margin-bottom: 60px;
  position: relative;
}
.section-home-head .home-title .row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.section-home-head .home-title .first-row {
  position: relative;
  top: -15px;
}
.section-home-head .home-title .last-row {
  align-items: center;
  max-width: 1100px;
  position: relative;
}
.section-home-head .home-title .last-row > svg {
  position: absolute;
  right: -50px;
  top: 44px;
}
.section-home-head .home-title .last-row > svg path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.section-home-head .home-title .last-row-line_mob {
  display: none;
}
.section-home-head .home-title .dash-block {
  display: block;
  overflow: hidden;
  position: relative;
  top: -13px;
}
.section-home-head .home-title .dash {
  display: block;
  height: 100%;
  transform: translateY(-100%);
}
.section-home-head .home-title .word-wrap {
  display: block;
  position: relative;
  width: min-content;
}
.section-home-head .home-title .word-block {
  display: block;
  height: max-content;
  position: relative;
  width: max-content;
}
.section-home-head .home-title .first-block {
  left: 11px;
  top: -27px;
}
.section-home-head .home-title .first-block .word {
  font-size: 120px;
  font-weight: 700;
  transform: translateX(48%);
}
.section-home-head .home-title .first-block .svg-word {
  transform: translate(48%, -150px);
}
.section-home-head .home-title .second-block {
  left: 7px;
  top: -15px;
}
.section-home-head .home-title .second-block .first-word-block {
  transform: translateX(-91%);
}
.section-home-head .home-title .second-block .second-word-block {
  left: 29px;
  top: -7px;
  transform: translateX(-31%);
}
.section-home-head .home-title .second-block .second-word-block .word {
  font-style: italic;
}
.section-home-head .home-title .third-block {
  left: 9px;
  transform: translateY(-97px);
}
.section-home-head .home-title .third-block .first-word-block .underline path {
  stroke-width: 3;
}
.section-home-head .home-title .third-block .second-word-block {
  transform: translate(51%, -160px);
}
.section-home-head .home-title .third-block .word:after {
  line-height: 116%;
}
.section-home-head .home-title .word {
  animation: showOverflow forwards;
  animation-delay: 1.5s;
  display: block;
  height: min-content;
  overflow: hidden;
  position: relative;
}
.section-home-head .home-title .word-friend {
  padding-bottom: 10px;
  position: relative;
}
.section-home-head .home-title .word:after {
  content: attr(data-word);
  display: block;
  line-height: 75%;
  position: relative;
  transform: translateY(-100%);
}
.section-home-head .home-title .word-best {
  padding-left: 80px;
}
.section-home-head .home-title .word-best:after {
  line-height: 116%;
}
.section-home-head .home-title .main-image {
  align-items: center;
  display: flex;
  height: 47px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.section-home-head .home-title .main-image-line {
  bottom: -33px;
  position: absolute;
  right: 414px;
}
.section-home-head .home-title .main-image-line path {
  stroke-dasharray: 1635;
  stroke-dashoffset: 1635;
}
.section-home-head .home-title .polygon {
  animation:
    expand 1s ease-out 3s forwards,
    showOverflow 0s linear 3s forwards;
  max-width: max-content;
  opacity: 0;
  overflow: hidden;
  transition: transform opacity;
  width: 100%;
}
.section-home-head .home-title .polygon__link {
  align-items: center;
  display: flex;
  justify-content: center;
  pointer-events: visiblePainted;
}
.section-home-head .home-title .polygon__svg {
  animation: floating 2.5s ease-in-out infinite;
  animation-delay: calc(1s * var(--random));
  pointer-events: visiblePainted;
}
.section-home-head .home-title .polygon__svg .hover-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.section-home-head .home-title .polygon__svg .default-image {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.section-home-head .home-title .polygon__svg .polygon__text {
  font-size: 19px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.section-home-head .home-title .polygon__svg:hover .hover-image,
.section-home-head .home-title .polygon__svg:hover .polygon__text {
  opacity: 1;
}
.section-home-head .home-title .polygon__svg:hover .default-image {
  opacity: 0;
}
.section-home-head .home-title .polygon.polygon--first {
  transform: translate(-225px, -37px);
}
.section-home-head .home-title .polygon.polygon--second {
  transform: translate(-94px, -103px);
}
.section-home-head .home-title .btn-wrap {
  bottom: 57px;
  position: absolute;
  right: 5px;
}
.section-home-head .home-title .btn-circle {
  align-items: center;
  font-size: 19px;
  font-weight: 400;
  height: 194px;
  justify-content: center;
  line-height: 112.2%;
  opacity: 0;
  text-align: center;
  width: 194px;
  z-index: 2;
}
.section-home-head .home-title .circle {
  left: -30px;
  position: absolute;
  top: -16px;
  transform: rotate(-2deg);
  width: 111%;
}
.section-home-head .home-title .circle path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.section-home-head .home-title .curve {
  bottom: -100px;
  max-width: 162px;
  position: absolute;
  right: 0;
}
.section-home-head .home-title .curve path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.section-home-head .home-title .underline {
  bottom: -30px;
  left: 0;
  position: absolute;
  transform: translate(-10%, -100%) scaleX(-1);
  width: 130%;
}
.section-home-head .home-title .underline path {
  stroke-dasharray: 381;
  stroke-dashoffset: 381;
  transition-delay: 1.5s !important;
}
.section-home-head .home-title .btn-line {
  position: absolute;
  right: -108px;
  top: -27px;
  width: 905px;
  z-index: -1;
}
.section-home-head .home-title .btn-line.tab {
  display: none;
}
.section-home-head .home-title .btn-line path {
  stroke-dasharray: 1635;
  stroke-dashoffset: 1635;
}
.section-home-head .text {
  font-family: Inter;
  font-size: 20px;
  max-width: 500px;
  opacity: 0;
  width: 100%;
}
.section-home-head .container {
  max-width: 1340px;
}
.section-home-head .home-title .last-row {
  max-width: 850px;
}
@media (max-width: 1600px) {
  .section-home-head .home-title .btn-line {
    max-width: 750px;
    transform: rotate(351deg);
  }
  .section-home-head .home-title .second-block .first-word-block {
    transform: translateX(-68%);
  }
}
@media (max-width: 1508px) {
  .section-home-head .home-title .first-block .word {
    transform: translateX(35%);
  }
  .section-home-head .home-title .second-block .first-word-block {
    transform: translateX(-40%);
  }
  .section-home-head .home-title .second-block .second-word-block {
    transform: translateX(-16%);
  }
}
@media (max-width: 1400px) {
  .section-home-head .home-title .main-image .dog {
    max-width: 500px;
  }
  .section-home-head .home-title .btn-line {
    max-width: 550px;
    right: -50px;
    top: 82px;
    transform: rotate(351deg);
  }
  .section-home-head .home-title .btn-line path {
    stroke-width: 3;
  }
  .section-home-head .home-title .first-block .word {
    transform: translateX(26%);
  }
  .section-home-head .home-title .second-block .first-word-block {
    transform: translateX(-17%);
  }
  .section-home-head .home-title .second-block .second-word-block {
    transform: translateX(-8%);
  }
}
@media (max-width: 1320px) {
  .section-home-head .home-title .first-block .word {
    transform: translateX(16%);
  }
  .section-home-head .home-title .second-block .first-word-block {
    transform: translateX(0);
  }
}
@media (max-width: 1280px) {
  .section-home-head .home-title .btn-wrap {
    right: 50px;
  }
  .section-home-head .home-title .btn-wrap .btn {
    height: 180px;
    width: 180px;
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-right: 0;
  }
  .section-home-head .home-title .first-row {
    top: unset;
  }
  .section-home-head .home-title .dash-block {
    left: 0;
  }
  .section-home-head .home-title .btn-line {
    max-width: 470px;
    top: 42px;
  }
  .section-home-head .home-title .main-image {
    margin-bottom: 10px;
  }
}
@media (max-width: 1216px) {
  .section-home-head .home-title .first-block .word,
  .section-home-head .home-title .second-block .first-word-block,
  .section-home-head .home-title .second-block .second-word-block {
    transform: translateX(0);
  }
  .section-home-head .home-title .dash-block {
    left: 0;
  }
}
@media (max-width: 1150px) {
  .section-home-head .home-title {
    font-size: 90px;
    line-height: 87.1%;
  }
  .section-home-head .home-title .main-image .dog {
    max-width: 400px;
  }
  .section-home-head .home-title .btn-wrap .btn {
    height: 150px;
    line-height: 112.2%;
    width: 150px;
  }
  .section-home-head .home-title .btn-line {
    max-width: 374px;
    top: 58px;
    transform: rotate(336deg);
  }
  .section-home-head .home-title .first-block .word {
    transform: translateX(27%);
  }
  .section-home-head .home-title .second-block .first-word-block {
    transform: translateX(-52%);
  }
  .section-home-head .home-title .second-block .second-word-block {
    transform: translateX(-32%);
  }
  .section-home-head .home-title .third-block .second-word-block {
    transform: translate(45%, -124px);
  }
  .section-home-head .home-title .polygon.polygon--second {
    transform: translate(-100px);
  }
  .section-home-head .home-title .polygon.polygon--third {
    margin-right: 115px;
    transform: translateY(70px);
  }
}
@media (max-width: 1084px) {
  .section-home-head .home-title .first-block .word {
    transform: translateX(8%);
  }
  .section-home-head .home-title .second-block .first-word-block {
    transform: translateX(-10%);
  }
  .section-home-head .home-title .second-block .second-word-block {
    transform: translateX(-16%);
  }
  .section-home-head .home-title .circle {
    top: -30px;
  }
}
@media (max-width: 1050px) {
  .section-home-head {
    padding: 73px 0 0;
  }
  .section-home-head .home-title {
    font-size: 72px;
    margin-bottom: 48px;
  }
  .section-home-head .home-title .first-block {
    margin-right: auto;
  }
  .section-home-head .home-title .dash-block {
    margin-bottom: -50px;
    margin-right: 17px;
    margin-top: 24px;
    overflow-x: hidden;
  }
  .section-home-head .home-title .word-best {
    padding-left: 0;
  }
  .section-home-head .home-title .curve {
    right: 30px;
    right: 22px;
    top: -50px;
    top: -72px;
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-right: 0;
    margin-top: 17px;
  }
  .section-home-head .home-title .third-block {
    margin-top: 70px;
  }
  .section-home-head .home-title .main-image {
    height: 26px;
    margin-bottom: 0;
    margin-top: 10px;
  }
  .section-home-head .home-title .main-image .dog {
    max-width: 340px;
    right: 90px;
    top: 34px;
  }
  .section-home-head .home-title .btn-wrap {
    bottom: 80px;
    right: 0;
  }
  .section-home-head .home-title .word-friend {
    padding-bottom: 35px;
  }
  .section-home-head .home-title .underline {
    bottom: 0;
    left: 15px;
  }
  .section-home-head .home-title .btn-line {
    max-width: 296px;
    right: -42px;
    top: -28px;
    transform: rotate(0);
  }
  .section-home-head .home-title .btn-line.tab {
    display: block;
  }
  .section-home-head .home-title .btn-line.tab path {
    stroke-width: 2;
  }
  .section-home-head .home-title .btn-line.desk {
    display: none;
  }
  .section-home-head .home-title .circle {
    top: -40px;
    width: 115%;
  }
  .section-home-head .home-title .first-row {
    justify-content: flex-end;
  }
  .section-home-head .home-title .last-row {
    max-width: 740px;
  }
  .section-home-head .home-title .first-block .word {
    transform: translateX(55%);
  }
  .section-home-head .home-title .second-block {
    transform: translateY(-20px);
  }
  .section-home-head .home-title .second-block .first-word-block,
  .section-home-head .home-title .second-block .second-word-block {
    transform: translateX(0);
  }
  .section-home-head .home-title .third-block .second-word-block {
    transform: translate(45%, -118px);
  }
  .section-home-head .home-title .dash-block {
    transform: translate(-34px, -14px);
  }
  .section-home-head .home-title .polygon.polygon--first .polygon__link,
  .section-home-head .home-title .polygon.polygon--second .polygon__link,
  .section-home-head .home-title .polygon.polygon--third .polygon__link {
    height: 170px;
    width: 170px;
  }
  .section-home-head .home-title .polygon.polygon--second {
    transform: translate(-100px);
  }
  .section-home-head .home-title .polygon.polygon--third {
    margin-right: 115px;
  }
  .section-home-head .text {
    font-size: 18px;
    line-height: 22px;
    max-width: 388px;
  }
  .section-home-head.anim .home-title .anim-dash-block,
  .section-home-head.anim .home-title .anim-second-block {
    transform: translateY(0);
    transition-delay: 1s;
    transition-duration: 0.6s;
    transition-property: transform;
    transition-timing-function: ease;
  }
}
@media (max-width: 895px) {
  .section-home-head .home-title .first-block .word {
    transform: translateX(46%);
  }
  .section-home-head .home-title .row {
    flex-wrap: wrap;
  }
  .section-home-head .home-title .polygon.polygon--first {
    transform: translate(-150px, -120px);
  }
  .section-home-head .home-title .polygon.polygon--second {
    transform: translate(-180px);
  }
}
@media (max-width: 870px) {
  .section-home-head .home-title .first-block .word {
    transform: translateX(26%);
  }
}
@media (max-width: 828px) {
  .section-home-head .home-title .first-block .word {
    transform: translateX(16%);
  }
}
@media (max-width: 800px) {
  .section-home-head .home-title .first-block .word {
    transform: translateX(0);
  }
  .section-home-head .home-title .dash-block {
    margin-right: 8px;
    transform: translateY(-14px);
  }
}
@media (max-width: 768px) {
  .section-home-head .ellipse-left,
  .section-home-head .ellipse-right {
    display: none;
  }
  .section-home-head .ellipse-left_mob,
  .section-home-head .ellipse-right_mob {
    display: block;
  }
  .section-home-head .ellipse-right {
    right: 0;
    top: -20px;
  }
  .section-home-head .ellipse-left {
    top: 70px;
  }
  .section-home-head .home-title .underline {
    left: 0;
    transform: translateY(-100%) scaleX(-1);
  }
}
@media (max-width: 737px) {
  .section-home-head .home-title .btn-wrap {
    bottom: 145px;
    right: 15px;
  }
  .section-home-head .home-title .btn-wrap .btn {
    height: 120px;
    width: 120px;
  }
  .section-home-head .home-title .dash-block {
    left: auto;
    margin: 0;
    position: absolute;
    right: 304px;
    top: 52px;
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-top: 56px;
  }
  .section-home-head .home-title .main-image {
    height: 53px;
  }
  .section-home-head .home-title .main-image-line {
    right: 0;
  }
  .section-home-head .home-title .main-image .dog {
    left: 0;
    max-width: 289px;
    right: unset;
    top: 14px;
  }
  .section-home-head .home-title .polygon.polygon--first {
    transform: translate(-70px, -120px);
  }
  .section-home-head .home-title .polygon.polygon--second {
    transform: translate(-70%, 18%);
  }
  .section-home-head .home-title .polygon.polygon--third {
    margin-right: 0;
  }
  .section-home-head .home-title .circle path {
    stroke-width: 3;
  }
  .section-home-head .home-title .third-block {
    transform: translateY(-133px);
  }
  .section-home-head
    .home-title
    .third-block
    .first-word-block
    .underline
    path {
    stroke-width: 4;
  }
  .section-home-head .home-title .curve {
    top: -80px;
  }
  .section-home-head .text {
    max-width: 320px;
  }
}
@media (max-width: 700px) {
  .section-home-head .home-title {
    font-size: 68px;
  }
  .section-home-head .home-title .btn-wrap {
    bottom: 130px;
  }
  .section-home-head .home-title .btn-line {
    max-width: 259px;
    right: -28px;
  }
  .section-home-head .home-title .third-block .second-word-block {
    transform: translate(45%, -114px);
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-right: 0;
  }
  .section-home-head .text {
    font-size: 16px;
    max-width: 427px;
  }
}
@media (max-width: 633px) {
  .section-home-head .home-title {
    font-size: 63px;
  }
  .section-home-head .home-title .main-image .dog {
    max-width: 250px;
  }
  .section-home-head .home-title .btn-wrap {
    bottom: 160px;
  }
  .section-home-head .home-title .btn-wrap .btn {
    height: 107px;
    width: 107px;
  }
  .section-home-head .home-title .btn-line {
    max-width: 208px;
    right: -11px;
    top: -41px;
    transform: rotate(14deg);
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-right: 0;
  }
  .section-home-head .home-title .third-block .second-word-block {
    transform: translate(45%, -108px);
  }
}
@media (max-width: 592px) {
  .section-home-head {
    padding: 40px 0 0;
  }
  .section-home-head .home-title {
    font-size: 40px;
    line-height: 87.1%;
    margin-bottom: 15px;
  }
  .section-home-head .home-title .btn-wrap {
    bottom: -8px;
    right: -5px;
  }
  .section-home-head .home-title .main-image .dog {
    max-width: 200px;
    top: 26px;
  }
  .section-home-head .home-title .first-block {
    top: 0;
    width: 100%;
  }
  .section-home-head .home-title .first-block svg {
    width: 100%;
  }
  .section-home-head .home-title .second-block {
    margin-top: 6px;
    transform: translateY(0);
  }
  .section-home-head .home-title .second-block .word-block:first-of-type {
    margin-left: auto;
    margin-right: 10px;
  }
  .section-home-head .home-title .dash-block,
  .section-home-head .home-title .third-block .second-word-block {
    transform: translate(0);
  }
  .section-home-head .home-title .curve {
    max-width: 92px;
    right: -8px;
    top: -36px;
  }
  .section-home-head .home-title .word-friend {
    padding-bottom: 25px;
  }
  .section-home-head .home-title .circle {
    top: -46px;
  }
}
@media (max-width: 575.9px) {
  .section-home-head {
    padding: 10px 0 0;
  }
  .section-home-head .home-title .btn-circle {
    font-size: 16px;
  }
  .section-home-head .home-title .main-image {
    margin: 0;
  }
  .section-home-head .home-title .main-image-line {
    bottom: -84px;
    max-width: 263px;
    right: 67px;
    width: 100%;
  }
  .section-home-head .home-title .first-row {
    flex-direction: column;
  }
  .section-home-head .home-title .first-block {
    left: 18px;
    width: 233px;
  }
  .section-home-head .home-title .third-block {
    left: 19px;
    margin-block-start: 47px;
  }
  .section-home-head .home-title .second-block {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-block: 0 !important;
    margin-inline: auto 40px !important;
  }
  .section-home-head .home-title .second-block .second-word-block {
    margin-inline-end: 35px;
  }
  .section-home-head .home-title .second-block .word-block:first-of-type {
    margin-inline-end: 0;
  }
  .section-home-head .home-title .last-row-line {
    display: none;
    max-width: 165px;
    right: 110px !important;
    top: 89px !important;
    width: 100%;
  }
  .section-home-head .home-title .last-row-line_mob {
    display: block;
  }
  .section-home-head .home-title .polygon.polygon--first {
    transform: translate(-64%, 25%);
  }
  .section-home-head .home-title .polygon.polygon--first .polygon__link {
    height: 73px;
    width: 73px;
  }
  .section-home-head .home-title .polygon.polygon--second {
    transform: translate(0);
  }
  .section-home-head .home-title .polygon.polygon--second .polygon__link {
    height: 67px;
    width: 67px;
  }
  .section-home-head .home-title .polygon.polygon--third {
    transform: translate(-190%, 85%);
  }
  .section-home-head .home-title .polygon.polygon--third .polygon__link {
    height: 82px;
    width: 82px;
  }
}
@media (max-width: 513px) {
  .section-home-head .home-title .word-wrap.second-block {
    margin-top: 14px;
  }
  .section-home-head .home-title .last-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-home-head .home-title .polygon.polygon--third {
    transform: translate(146%, -20%);
  }
}
@media (max-width: 479.9px) {
  .section-home-head .home-title .btn-line {
    max-width: 161px;
    right: -15px;
    top: -15px;
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-top: 56px;
  }
  .section-home-head .home-title .circle {
    left: -15px;
    top: -48px;
  }
  .section-home-head .text {
    font-size: 14px;
    line-height: 17px;
  }
}
@media (max-width: 465px) {
  .section-home-head .home-title .word-wrap.second-block {
    margin-top: 14px;
  }
}
@media (max-width: 435px) {
  .section-home-head .home-title .dash-block {
    top: 36px;
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-top: 40px;
  }
}
@media (max-width: 425px) {
  .section-home-head .home-title .word-wrap.second-block {
    margin-top: 4px;
  }
}
@media (max-width: 400px) {
  .section-home-head .home-title {
    font-size: 40px;
    line-height: 87.1%;
  }
  .section-home-head .home-title .word-wrap.second-block {
    margin-right: -4px;
    margin-top: 40px;
  }
  .section-home-head .home-title .circle {
    left: -15px;
    top: -55px;
  }
  .section-home-head .home-title .dash-block {
    right: 240px;
  }
  .section-home-head .text {
    max-width: 298px;
  }
}
@media (max-width: 375px) {
  .section-home-head .home-title .btn-wrap {
    bottom: 30px;
    right: 0;
  }
  .section-home-head .home-title .btn-wrap .btn {
    font-size: 14px;
    height: 80px;
    width: 80px;
  }
  .section-home-head .home-title .polygon.polygon--third {
    transform: translate(80%, -20%);
  }
}
@media (max-width: 365px) {
  .section-home-head .home-title .word-wrap.second-block {
    margin-top: 12px;
  }
}
@media (max-width: 350px) {
  .section-home-head .home-title .main-image .dog {
    max-width: 180px;
  }
  .section-home-head .home-title .third-block {
    transform: translateY(-70px);
  }
  .section-home-head .home-title .dash-block {
    margin-top: 4px;
  }
}
.section-home-slider-banner {
  display: none;
  padding-top: 0;
}
.section-home-slider-banner .slider .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: center;
}
.section-home-slider-banner .slider .swiper-slide img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
.section-home-slider-banner .slider-button {
  top: calc(50% - 17.5px);
  width: max-content;
}
.section-home-slider-banner .slider-button img {
  height: 39px;
}
.section-home-slider-banner .slider-button-next {
  right: 60px;
}
.section-home-slider-banner .slider-button-prev {
  left: 60px;
}
.section-home-slider-banner .slider .swiper-pagination {
  height: 25px;
  margin-top: 10px;
  position: static;
  width: 100%;
}
.section-home-slider-banner
  .slider
  .swiper-pagination
  .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0);
  border: 1px solid #c4c4c4;
  height: 10px;
  opacity: 1;
  transition-duration: 0.3s;
  transition-property: background, opacity;
  width: 10px;
}
.section-home-slider-banner
  .slider
  .swiper-pagination
  .swiper-pagination-bullet:hover {
  background: #c4c4c4;
  opacity: 0.7;
}
.section-home-slider-banner
  .slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background: #c4c4c4;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .section-home-slider-banner {
    padding: 0;
  }
  .section-home-slider-banner .slider .swiper-button-next {
    right: 10px;
  }
  .section-home-slider-banner .slider .swiper-button-prev {
    left: 10px;
  }
  .section-home-slider-banner .slider .swiper-pagination {
    margin-top: 5px;
  }
}
@media (max-width: 575.9px) {
  .section-home-slider-banner .slider .slider-button img {
    height: 25px;
  }
  .section-home-slider-banner .container {
    margin: 0;
    padding: 0;
  }
}
.section-home-services {
  position: relative;
  scroll-margin-top: 250px;
}
.section-home-services:target {
  animation: none !important;
  transform: none !important;
}
.section-home-services.was-target {
  scroll-margin-top: 100px;
}
.section-home-services.anim .anim-line .first path,
.section-home-services.anim .anim-line .second path,
.section-home-services.anim .anim-line .third path {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
  transition-duration: 1.5s;
  transition-property: stroke-dashoffset;
  transition-timing-function: linear;
}
.section-home-services.anim .anim-line .first path {
  stroke-dashoffset: 1212;
  transition-delay: 0.1s;
  transition-duration: 0.3s;
}
.section-home-services.anim .anim-line .second path {
  transition-delay: 0.4s;
  transition-duration: 1s;
}
.section-home-services.anim .anim-line .third path {
  transition-delay: 1.4s;
  transition-duration: 0.3s;
}
.section-home-services .section-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.27;
  margin-bottom: 83px;
}
.section-home-services .section-title .underlined {
  position: relative;
  width: max-content;
}
.section-home-services .section-title .underline {
  bottom: -30px;
  height: 20%;
  left: 0;
  position: absolute;
  transform: translate(-4%, -100%) scaleX(-1);
  width: 110%;
}
.section-home-services .section-title .underline path {
  stroke-dasharray: 374;
  stroke-dashoffset: 374;
}
.section-home-services .section-title .underline.tab {
  display: none;
}
.section-home-services .line {
  display: flex;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 60px;
  width: 100vw;
}
.section-home-services .line .first,
.section-home-services .line .second,
.section-home-services .line .third {
  flex: 0 0 auto;
  position: relative;
}
.section-home-services .line .first--mob,
.section-home-services .line .second--mob {
  display: none;
}
.section-home-services .line .first {
  margin-left: -60px;
  top: 128px;
  z-index: 1;
}
.section-home-services .line .first path {
  stroke-dasharray: 606;
  stroke-dashoffset: 606;
}
.section-home-services .line .second path {
  stroke-dasharray: 2173;
  stroke-dashoffset: 2173;
}
.section-home-services .line .third {
  left: -2px;
  top: 414px;
  z-index: 0;
}
.section-home-services .line .third path {
  stroke-dasharray: 558;
  stroke-dashoffset: 558;
}
.section-home-services .services {
  align-items: stretch;
  display: flex;
  gap: 30px;
  justify-content: center;
}
.section-home-services .services-wrap {
  display: flex;
  flex-direction: column;
  max-width: 555px;
  position: relative;
  width: 100%;
}
.section-home-services .services-wrap:first-of-type .service:last-child {
  flex-grow: 1;
}
.section-home-services .services-wrap:last-child .service:first-child {
  flex-grow: 1;
}
.section-home-services .services .service {
  background: #f8f8f8;
  border-radius: 32px;
  color: #929292;
  display: flex;
  flex-direction: column;
  padding: 28px 65px;
  transition-duration: 0.3s;
  transition-property: background;
}
.section-home-services .services .service:hover {
  background: #b1bc00;
  color: #fff;
}
.section-home-services .services .service:not(:last-child) {
  margin-bottom: 30px;
}
.section-home-services .services .service-title {
  color: inherit;
  font-size: 32px;
  font-weight: 700;
  line-height: 105%;
  margin-bottom: 16px;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-home-services .services .service-text {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 127%;
  max-width: 420px;
  text-transform: lowercase;
  transition-duration: 0.3s;
  transition-property: color;
}
@media (max-width: 1600px) {
  .section-home-services .line {
    justify-content: flex-start;
  }
}
@media (max-width: 1400px) {
  .section-home-services .line .first {
    margin-inline-start: -130px;
  }
}
@media (max-width: 768px) {
  .section-home-services {
    padding: 20px 0 56px;
  }
  .section-home-services .section-title {
    font-size: 50px;
    line-height: 64px;
    margin-bottom: 75px;
  }
  .section-home-services .section-title .underline {
    bottom: -41px;
    height: 30%;
    left: -15px;
    width: 120%;
  }
  .section-home-services .section-title .underline.desk {
    display: none;
  }
  .section-home-services .section-title .underline.tab {
    display: block;
  }
  .section-home-services .services {
    flex-direction: column;
  }
  .section-home-services .services .service:not(:last-child) {
    margin-bottom: 20px;
  }
  .section-home-services .services .service:last-child {
    margin-bottom: 20px;
  }
  .section-home-services .services .service {
    min-height: 217px;
  }
  .section-home-services .services .line {
    left: -110px;
    top: 23px;
    width: max-content;
  }
  .section-home-services .services .service-text {
    max-width: 450px;
  }
  .section-home-services .services-wrap {
    max-width: 100%;
  }
  .section-home-services .services-wrap:first-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.9px) {
  .section-home-services {
    padding: 0 0 10px;
  }
  .section-home-services .section-title {
    font-size: 40px;
    line-height: 51px;
    margin-bottom: 58px;
    text-align: center;
  }
  .section-home-services .section-title .underline {
    bottom: -34px;
    left: -2px;
    width: 113%;
  }
  .section-home-services .services .line {
    top: -25px;
  }
  .section-home-services .services .line svg path {
    stroke-width: 1.3;
  }
  .section-home-services .services .line .first,
  .section-home-services .services .line .second {
    display: none;
  }
  .section-home-services .services .line .first--mob,
  .section-home-services .services .line .second--mob {
    display: block;
  }
  .section-home-services .services .line .first {
    left: 1px;
    margin-inline-start: 105px;
    top: 117px;
  }
  .section-home-services .services .line .second {
    top: 45px;
  }
  .section-home-services .services .line .third {
    display: none;
  }
  .section-home-services .services .service:not(:last-child) {
    margin-bottom: 10px;
  }
  .section-home-services .services .service:last-child {
    margin-bottom: 10px;
  }
  .section-home-services .services .service {
    min-height: 158px;
    padding: 15px;
  }
  .section-home-services .services .service-text {
    font-size: 16px;
    line-height: 21px;
  }
}
.section-home-catalog {
  padding-bottom: 40px;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.section-home-catalog .title-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 49px;
  padding-top: 40px;
  position: relative;
}
.section-home-catalog .section-title {
  display: flex;
  flex-direction: column;
  word-break: break-word;
}
.section-home-catalog .section-title .main-text {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.27;
  margin-bottom: 36px;
  position: relative;
  width: max-content;
}
.section-home-catalog .section-title .underline {
  bottom: -30px;
  left: 0;
  position: absolute;
  transform: translate(-4%, -100%) scaleX(-1);
  width: 110%;
}
.section-home-catalog .section-title .underline path {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
}
.section-home-catalog .section-title .text {
  font-size: 30px;
  font-weight: 500;
  line-height: 127%;
}
.section-home-catalog .img-block {
  max-width: 275px;
  position: absolute;
  right: 60px;
  top: 50px;
  width: 100%;
}
.section-home-catalog .img-block img,
.section-home-catalog .img-block svg {
  width: 100%;
}
.section-home-catalog .catalog-card {
  align-items: center;
  display: flex;
  justify-content: center;
  max-height: 360px;
  position: relative;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-home-catalog .catalog-card .img-wrap {
  display: block;
  position: relative;
  width: 100%;
}
.section-home-catalog .catalog-card .img-wrap:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.section-home-catalog .catalog-card img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-home-catalog .slider {
  margin-inline: -60px;
  overflow-x: unset;
  overflow-y: visible;
  padding: 0 60px;
  position: relative;
  width: calc(100% + 120px);
}
.section-home-catalog .slider .swiper-wrapper {
  margin-bottom: -50px;
}
.section-home-catalog .slider .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  transition-duration: 0.3s;
  transition-property: opacity;
  height: 400px;
}
.section-home-catalog .slider .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
}
.section-home-catalog .slider .swiper-slide.active-hover .category-menu {
  opacity: 1;
  pointer-events: all;
  z-index: 100;
}
.section-home-catalog .slider .swiper-slide .img-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 400px;
}
.section-home-catalog .slider .swiper-slide .img-wrap:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.section-home-catalog .slider .swiper-slide img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-home-catalog .slider .slider-button {
  height: 56px;
  width: 20px;
}
.section-home-catalog .slider .slider-button .img,
.section-home-catalog .slider .slider-button img {
  height: 100%;
  min-width: 100%;
  transform: scale(-1);
  width: 100%;
}
.section-home-catalog .slider .swiper-button-next {
  right: 23px;
  top: calc(50% - 30px);
}
.section-home-catalog .slider .swiper-button-prev {
  left: 23px;
  top: calc(50% - 30px);
}
.section-home-catalog .category-menu {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  left: 0;
  min-height: 100%;
  opacity: 0;
  padding: 30px 65px 47px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition-duration: 0.3s;
  transition-property: opacity;
  width: calc(100% + 40px);
}
.section-home-catalog .category-menu .category,
.section-home-catalog .category-menu .subcategory {
  color: #000;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-home-catalog .category-menu .category:hover,
.section-home-catalog .category-menu .subcategory:hover {
  color: #963ebd;
}
.section-home-catalog .category-menu .category {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}
.section-home-catalog .category-menu .category-list {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  max-height: 613px;
  overflow: auto;
  scrollbar-color: #ddd !important;
  scrollbar-width: thin !important;
}
.section-home-catalog .category-menu .category-list::-webkit-scrollbar {
  background: rgba(0, 0, 0, 0);
  height: 3px;
  width: 3px;
}
.section-home-catalog .category-menu .category-list::-webkit-scrollbar-thumb {
  background: #ddd;
}
.section-home-catalog .category-menu .subcategory {
  font-size: 16px;
  font-weight: 400;
  line-height: 141%;
}
.section-home-catalog .accord {
  display: none;
}
.section-home-catalog .catalog-head-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-home-catalog .category-card {
  display: block;
  margin-bottom: 20px;
  max-width: calc(50% - 9px);
  width: 100%;
}
.section-home-catalog .accord-mob {
  display: none;
  position: relative;
}
.section-home-catalog .accord-mob[data-collapse="open"] .btn-circle .text-open {
  display: none;
}
.section-home-catalog
  .accord-mob[data-collapse="open"]
  .btn-circle
  .text-close {
  display: block;
}
.section-home-catalog .accord-mob .accord-body,
.section-home-catalog .accord-mob .accord-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-home-catalog .accord-mob .catalog-card {
  margin-bottom: 20px;
  max-width: calc(50% - 9px);
  width: 100%;
}
.section-home-catalog .accord-mob .catalog-card.active-hover .category-menu {
  opacity: 1;
  pointer-events: all;
  z-index: 100;
}
.section-home-catalog .accord-mob .btn-circle {
  bottom: -60px;
  height: 170px;
  left: 50%;
  padding: 15px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 170px;
  z-index: 5;
}
.section-home-catalog .accord-mob .btn-circle .text-open {
  display: block;
}
.section-home-catalog .accord-mob .btn-circle .text-close {
  display: none;
}
@media (max-width: 1600px) {
  .section-home-catalog .category-menu {
    padding: 20px 40px 40px;
    width: calc(100% + 20px);
  }
}
@media (max-width: 944px) {
  .section-home-catalog .img-block {
    right: 0;
    top: 40px;
  }
}
@media (max-width: 768px) {
  .section-home-catalog {
    padding: 0 0 70px;
  }
  .section-home-catalog .slider {
    display: block;
    margin-top: 50px;
  }
  .section-home-catalog .title-wrap {
    padding: 30px 0 84px;
  }
  .section-home-catalog .section-title .main-text {
    font-size: 50px;
    line-height: 64px;
  }
  .section-home-catalog .section-title .text {
    font-size: 28px;
    line-height: 36px;
  }
  .section-home-catalog .section-title .underline path {
    stroke-width: 3;
  }
  .section-home-catalog .img-block {
    right: 0;
    width: 100%;
  }
  .section-home-catalog .img-block .catalog-dog {
    width: 100%;
  }
  .section-home-catalog .accord-mob {
    display: block;
  }
  .section-home-catalog .accord-mob .catalog-card .category-menu {
    height: 100%;
    overflow: scroll;
    scrollbar-color: #ddd !important;
    scrollbar-width: thin !important;
    width: 100%;
  }
}
@media (max-width: 732px) {
  .section-home-catalog .img-block {
    max-width: 213px;
    top: 90px;
  }
}
@media (max-width: 630px) {
  .section-home-catalog .img-block {
    max-width: 170px;
    top: 120px;
  }
}
@media (max-width: 575.9px) {
  .section-home-catalog {
    padding: 0 0 48px;
  }
  .section-home-catalog .title-wrap {
    justify-content: center;
    padding: 10px 0 150px;
  }
  .section-home-catalog .title-wrap .section-title {
    align-items: center;
  }
  .section-home-catalog .title-wrap .section-title .main-text {
    font-size: 40px;
    line-height: 51px;
    margin-bottom: 14px;
  }
  .section-home-catalog .title-wrap .section-title .text {
    font-size: 20.34px;
    line-height: 31px;
  }
  .section-home-catalog .title-wrap .section-title .underline {
    bottom: -25px;
    width: 105%;
  }
  .section-home-catalog .category-menu {
    padding: 20px 24px 40px;
  }
  .section-home-catalog .category-menu .category,
  .section-home-catalog .category-menu .subcategory {
    font-size: 18px;
  }
  .section-home-catalog .section-home-catalog .category-menu .subcategory {
    font-size: 18px;
    line-height: 141%;
  }
  .section-home-catalog .img-block {
    right: 12px;
  }
  .section-home-catalog .accord-mob .btn-circle {
    bottom: -29px;
    font-size: 14px;
    height: 100px;
    line-height: 112.2%;
    width: 100px;
  }
  .section-home-catalog .img-block {
    max-width: 200px;
    top: 120px;
  }
}
@media (max-width: 400px) {
  .section-home-catalog .category-menu {
    padding: 20px 40px 40px;
  }
  .section-home-catalog .category-menu .category,
  .section-home-catalog .category-menu .category .subcategory {
    font-size: 24px;
  }
  .section-home-catalog
    .accord-mob
    .accord-head
    .catalog-card:nth-of-type(n + 5) {
    display: none;
  }
}
@media (max-width: 375px) {
  .section-home-catalog .accord-mob .catalog-card {
    max-width: 100%;
  }
}
.section-home-cases.anim .title-wrap .arrow #arrow,
.section-home-cases.anim .title-wrap .arrow #line {
  stroke-dashoffset: 0;
  transition-property: stroke-dashoffset;
  transition-timing-function: linear;
}
.section-home-cases.anim .title-wrap .arrow #line {
  stroke-dashoffset: 454;
  transition-delay: 0.4s;
  transition-duration: 1s;
}
.section-home-cases.anim .title-wrap .arrow #arrow {
  transition-delay: 1.4s;
  transition-duration: 0.2s;
}
.section-home-cases .cases-row {
  display: flex;
  flex-wrap: wrap;
}
.section-home-cases .title-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  line-height: 127%;
  margin-right: 30px;
  width: max-content;
  width: calc(33.33333% - 20px);
}
.section-home-cases .title-wrap .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 46px;
  margin-top: -8px;
  position: relative;
  width: max-content;
}
.section-home-cases .title-wrap .underline {
  bottom: -40px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -100%) scaleX(-1);
  width: 115%;
}
.section-home-cases .title-wrap .underline path {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  stroke-width: 3.5;
}
.section-home-cases .title-wrap .main-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 15px;
  text-align: center;
}
.section-home-cases .title-wrap .text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
  max-width: 310px;
  text-align: center;
}
.section-home-cases .title-wrap .btn-circle {
  align-items: center;
  display: flex;
  font-size: 19.54px;
  font-weight: 400;
  height: 171.94px;
  justify-content: center;
  line-height: normal;
  position: relative;
  text-align: center;
  width: 171.94px;
}
.section-home-cases .title-wrap .arrow {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(-103%, -50%);
}
.section-home-cases .title-wrap .arrow #line {
  stroke-dasharray: 227;
  stroke-dashoffset: 227;
  stroke-width: 1.7;
}
.section-home-cases .title-wrap .arrow #arrow {
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
  stroke-width: 1.7;
}
.section-home-cases .cases-video {
  background-color: gray;
  flex-shrink: 2;
  margin-bottom: 40px;
  margin-right: 30px;
  max-height: 520px;
  max-width: 520px;
  object-fit: cover;
  position: relative;
  width: 100%;
}
.section-home-cases .cases-video:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-home-cases .cases-video .video {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-home-cases .cases-video {
  width: calc(33.33333% - 20px);
}
.section-home-cases .cases-card {
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
  width: calc(33.33333% - 20px);
}
.section-home-cases .cases-card:not(:nth-child(3n)) {
  margin-right: 30px;
}
.section-home-cases .cases-card:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-home-cases .cases-card:nth-child(2) .img {
  object-fit: contain;
}
.section-home-cases .cases-card .img,
.section-home-cases .cases-card img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-home-cases .cases-footer {
  align-items: center;
  display: flex;
  max-width: 100%;
  position: relative;
}
.section-home-cases .cases-footer .link {
  color: #929292;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.27;
  margin-left: auto;
  margin-right: 7.8%;
  transform: translateY(-12px);
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .section-home-cases .cases-footer .link:hover {
    color: #b1bc00;
  }
}
.section-home-cases .cases-footer .line {
  left: -18%;
  position: absolute;
  width: 100%;
}
.section-home-cases .cases-footer .line:not(.mob, .tab) path#first {
  stroke-dasharray: 595;
  stroke-dashoffset: 595;
}
.section-home-cases .cases-footer .line:not(.mob, .tab) path#second {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}
.section-home-cases .cases-footer .line:not(.mob, .tab) path#arrow {
  stroke-dasharray: 43;
  stroke-dashoffset: 43;
}
.section-home-cases .cases-footer .line.tab path#line {
  stroke-dasharray: 409;
  stroke-dashoffset: 409;
}
.section-home-cases .cases-footer .line.tab path#arrow {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
}
.section-home-cases .cases-footer .line.mob path#line {
  stroke-dasharray: 212;
  stroke-dashoffset: 212;
}
.section-home-cases .cases-footer .line.mob path#arrow {
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
}
.section-home-cases .cases-footer .line.mob,
.section-home-cases .cases-footer .line.tab {
  display: none;
}
.section-home-cases .cases-footer.anim .line.mob path#arrow,
.section-home-cases .cases-footer.anim .line.mob path#first,
.section-home-cases .cases-footer.anim .line.mob path#line,
.section-home-cases .cases-footer.anim .line.mob path#second,
.section-home-cases .cases-footer.anim .line.tab path#arrow,
.section-home-cases .cases-footer.anim .line.tab path#first,
.section-home-cases .cases-footer.anim .line.tab path#line,
.section-home-cases .cases-footer.anim .line.tab path#second,
.section-home-cases .cases-footer.anim .line:not(.mob, .tab) path#arrow,
.section-home-cases .cases-footer.anim .line:not(.mob, .tab) path#first,
.section-home-cases .cases-footer.anim .line:not(.mob, .tab) path#line,
.section-home-cases .cases-footer.anim .line:not(.mob, .tab) path#second {
  stroke-dashoffset: 0;
  transition-property: stroke-dashoffset;
  transition-timing-function: linear;
}
.section-home-cases .cases-footer.anim .line:not(.mob, .tab) path#first {
  stroke-dashoffset: 1190;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-home-cases .cases-footer.anim .line:not(.mob, .tab) path#second {
  stroke-dashoffset: 1240;
  transition-delay: 1.2s;
  transition-duration: 1s;
}
.section-home-cases .cases-footer.anim .line:not(.mob, .tab) path#arrow {
  transition-delay: 2.2s;
  transition-duration: 0.3s;
}
.section-home-cases .cases-footer.anim .line.tab path#line {
  stroke-dashoffset: 818;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-home-cases .cases-footer.anim .line.tab path#arrow {
  transition-delay: 1.2s;
  transition-duration: 0.3s;
}
.section-home-cases .cases-footer.anim .line.mob path#line {
  stroke-dashoffset: 424;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-home-cases .cases-footer.anim .line.mob path#arrow {
  transition-delay: 1.2s;
  transition-duration: 0.3s;
}
@media (max-width: 1600px) {
  .section-home-cases .cases-row-second .cases-card:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 1400px) {
  .section-home-cases .cases-footer .line {
    left: -40%;
  }
}
@media (max-width: 1280px) {
  .section-home-cases .title-wrap {
    margin-right: 0;
    width: calc(50% - 15px);
  }
  .section-home-cases .title-wrap .text {
    margin-bottom: 60px;
  }
  .section-home-cases .cases-card {
    margin-bottom: 0;
  }
  .section-home-cases .cases-card:not(:last-child) {
    margin-right: 0;
  }
  .section-home-cases .cases-video {
    margin-bottom: 0;
    margin-right: 0;
    max-height: 100%;
    max-width: 100%;
    width: calc(50% - 15px);
  }
  .section-home-cases .cases-row {
    column-gap: 30px;
    row-gap: 40px;
  }
  .section-home-cases .cases-row .cases-card {
    width: calc(50% - 15px);
  }
  .section-home-cases .cases-row-first {
    margin-bottom: 20px;
  }
}
@media (max-width: 1100px) {
  .section-home-cases .title-wrap {
    min-width: unset;
  }
  .section-home-cases .title-wrap .section-title {
    margin-bottom: 15px;
  }
  .section-home-cases .title-wrap .main-text {
    margin-bottom: 10px;
  }
  .section-home-cases .title-wrap .text {
    margin-bottom: 15px;
  }
  .section-home-cases .title-wrap .underline {
    bottom: -30px;
  }
}
@media (max-width: 1024px) {
  .section-home-cases .cases-footer .line {
    height: auto;
    left: unset;
    margin-right: 0;
    right: 70%;
    width: 380px;
  }
  .section-home-cases .cases-footer .line.tab {
    display: block;
  }
  .section-home-cases .cases-footer .line.desk {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-home-cases {
    padding: 20px 0;
  }
  .section-home-cases .title-wrap {
    box-sizing: content-box;
    width: calc(50% - 10px);
  }
  .section-home-cases .title-wrap .btn-circle {
    font-size: 13.79px;
    height: 121.31px;
    width: 121.31px;
  }
  .section-home-cases .title-wrap .arrow {
    top: 55%;
  }
  .section-home-cases .cases-row {
    gap: 20px;
  }
  .section-home-cases .cases-row .cases-card,
  .section-home-cases .cases-video {
    width: calc(50% - 10px);
  }
}
@media (max-width: 680px) {
  .section-home-cases .title-wrap .section-title {
    font-size: 40px;
    line-height: 51px;
    margin-bottom: 15px;
  }
  .section-home-cases .title-wrap .text {
    margin-bottom: 10px;
  }
  .section-home-cases .title-wrap .arrow {
    left: -17px;
    top: 51%;
  }
}
@media (max-width: 575.9px) {
  .section-home-cases {
    padding: 0 0 20px;
  }
  .section-home-cases .title-wrap {
    margin-right: 0;
    width: 100%;
  }
  .section-home-cases .title-wrap .main-text {
    font-size: 13.48px;
  }
  .section-home-cases .title-wrap .text {
    font-size: 9px;
    max-width: 175px;
  }
  .section-home-cases .title-wrap .section-title {
    margin-bottom: 23px;
    margin-top: 0;
  }
  .section-home-cases .cases-row .cases-card {
    margin-right: 0 !important;
    width: 100%;
  }
  .section-home-cases .cases-row .cases-video {
    width: 100%;
  }
  .section-home-cases .cases-footer {
    margin-right: 0;
  }
  .section-home-cases .cases-footer .link {
    font-size: 20px;
    margin-inline-end: 0;
    transform: translateY(0);
  }
  .section-home-cases .cases-footer .line {
    left: 50%;
    right: unset;
    top: 10px;
    transform: translateX(-110%);
    width: 200px;
  }
  .section-home-cases .cases-footer .line.desk,
  .section-home-cases .cases-footer .line.tab {
    display: none;
  }
  .section-home-cases .cases-footer .line.mob {
    display: block;
  }
}
@media (max-width: 529px) {
  .section-home-cases .title-wrap {
    margin-right: 0;
    padding: 0;
  }
  .section-home-cases .cases-row-second .cases-card {
    max-width: unset;
  }
  .section-home-cases .cases-row-second .cases-card:nth-child(3) {
    display: block;
  }
  .section-home-cases .cases-row-first {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .section-home-cases .cases-row {
    flex-direction: column;
  }
  .section-home-cases .cases-row-second .cases-card {
    max-width: 100%;
  }
  .section-home-cases .title-wrap {
    margin-right: 0;
    padding: 0;
  }
  .section-home-cases .btn-circle .arrow {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .section-home-cases .cases-footer .line {
    transform: translateX(-140%);
  }
}
@media (max-width: 768px) {
  .section-home-partners.section-slider-partners {
    padding: 20px 0 17px;
  }
}
@media (max-width: 575.9px) {
  .section-home-partners.section-slider-partners {
    padding: 20px 0 51px;
  }
}
.section-home-gift {
  background: rgba(0, 0, 0, 0);
  display: none;
  padding: 0;
  position: relative;
}
@media (max-width: 768px) {
  .section-home-gift {
    padding-block-start: 40px;
  }
}
.section-home-gift-wrap {
  align-items: center;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  height: 1000px;
}
@media (max-width: 768px) {
  .section-home-gift-wrap {
    height: 711px;
  }
}
@media (max-width: 480px) {
  .section-home-gift-wrap {
    height: 484px;
  }
}
.section-home-gift.active {
  display: block;
}
.js-gift-gradient {
  pointer-events: none;
  user-select: none;
}
.gift-ellipse-middle {
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -30%);
}
@media (max-width: 768px) {
  .gift-ellipse-middle {
    transform: translate(-50%, -10%);
  }
}
@media (max-width: 575.9px) {
  .gift-ellipse-middle {
    transform: translate(-50%, -15%);
  }
}
@media (max-width: 480px) {
  .gift-ellipse-middle {
    width: max-content;
  }
  .gift-ellipse-middle img,
  .gift-ellipse-middle svg {
    height: 100%;
    width: 100%;
  }
}
.gift-phrase {
  color: #000;
  font-size: 60px;
  line-height: 87.1%;
  margin-block-end: 20px;
  max-width: 600px;
  text-align: center;
  z-index: 1;
}
@media (max-width: 630px) {
  .gift-phrase {
    font-size: 7vw;
    line-height: 90%;
    max-width: 58vw;
  }
}
.gift-phrase .bold {
  font-weight: 700;
}
.gift-phrase .italic {
  font-style: italic;
}
.gift-phrase .underlined .underline {
  left: 0;
  position: absolute;
  top: 85%;
  width: 100%;
}
@media (max-width: 630px) {
  .gift-phrase .underlined .underline {
    top: 70%;
  }
}
.gift-phrase .underlined .underline path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.gift-phrase .underlined.anim path {
  animation: draw 1s ease-out 2s forwards;
}
.gift-button {
  align-items: center;
  background-color: #000;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 18.59px;
  font-weight: 300;
  height: 194px;
  justify-content: center;
  left: 52%;
  outline: none;
  position: absolute;
  top: 22%;
  transform: translateX(-50%);
  width: 194px;
  z-index: 1;
}
@media (max-width: 768px) {
  .gift-button {
    font-size: 14px;
    height: 120px;
    width: 120px;
  }
}
@media (max-width: 480px) {
  .gift-button {
    top: 12%;
  }
}
.gift-cover,
.gift-cover-2 {
  bottom: -350px;
  height: max-content;
  left: 50%;
  position: fixed;
  transition: bottom 0.5s ease;
  will-change: transform;
  z-index: 2;
}
@media (max-width: 768px) {
  .gift-cover,
  .gift-cover-2 {
    bottom: -210px;
    width: 768px;
  }
}
@media (max-width: 480px) {
  .gift-cover,
  .gift-cover-2 {
    bottom: -157px;
    width: 530px;
  }
}
.gift-cover img,
.gift-cover-2 img {
  pointer-events: none;
  position: relative;
  user-select: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .gift-cover img,
  .gift-cover-2 img {
    width: 100%;
  }
}
.gift-box {
  align-items: center;
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .gift-box {
    width: 680px;
  }
}
@media (max-width: 480px) {
  .gift-box {
    width: 540px;
    width: 440px;
  }
}
.gift-box > * {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.gift-box__background {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .gift-box__background {
    height: 100vh;
    width: 150%;
  }
}
.gift-box__box {
  will-change: transform;
  z-index: 1;
}
@media (max-width: 768px) {
  .gift-box__box {
    width: 100%;
  }
}
.gift-box__anchor {
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.phrase {
  position: absolute;
  transform-origin: center;
  width: max-content;
  z-index: 1;
}
.phrase__wrap {
  background: linear-gradient(1turn, #b1bc00, #889201);
  border-radius: 63px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  justify-content: center;
  padding: 18px 33px 20px 35px;
  transition: transform 0.3s linear;
}
@media (max-width: 768px) {
  .phrase__wrap {
    font-size: 14px;
    padding: 10px;
  }
}
.phrase__wrap--1 {
  background: linear-gradient(180deg, #ff9d42, #ce6b0f);
}
.phrase__wrap--2 {
  background: linear-gradient(180deg, #8cb5e8, #548bcf);
}
.phrase__wrap--3 {
  background: linear-gradient(1turn, #a36dc6, #c385e9);
}
@media (hover: hover) and (pointer: fine) {
  .phrase__wrap:hover {
    transform: scale(1.1);
  }
}
@keyframes draw {
  0% {
    stroke-dashoffset: 400;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 575.9px) {
  .section-questions-form.section-form {
    padding-bottom: 17px;
  }
}
.section-questions-form.section-form .text {
  margin-bottom: 45px;
}
.section-questions-form.section-form .section-form .soc-title {
  margin-bottom: 4px;
}
.section-questions-form.section-form .section-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 575.9px) {
  .section-questions-form.section-form .section-title {
    font-size: 32px;
  }
}
.section-questions-form.section-form .text {
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 575.9px) {
  .section-questions-form.section-form .text {
    font-size: 20px;
  }
}
.section-questions-form.section-form .soc-title {
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
}
.section-questions-form.section-form .policy-checkbox .text {
  font-size: 10px;
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 575.9px) {
  .section-questions-form.section-form .policy-checkbox .text {
    font-size: 11px;
  }
}
.section-questions-form.section-form .policy-checkbox .holder {
  border-width: 2px;
}
@media (max-width: 575.9px) {
  .section-questions-form.section-form .policy-checkbox .holder {
    border-width: 3px;
    height: 34px;
    width: 34px;
  }
}
@media (max-width: 575.9px) {
  .section-questions-form.section-form .policy-checkbox .holder:after {
    bottom: 6px;
    height: 17px;
    width: 17px;
  }
}
.section-questions-form.section-form .placeholder {
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
}
.section-questions-form.section-form .btn-circle .text {
  font-size: 13px;
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 575.9px) {
  .section-questions-form.section-form .btn-circle .text {
    font-size: 12px;
  }
  .section-questions-form.section-form .soc-item {
    height: 54px;
    margin: 0;
    width: 54px;
  }
}
.section-questions-form {
  background: rgba(0, 0, 0, 0);
}
.section-questions-form .wrap {
  background-color: hsla(0, 0%, 100%, 0.3);
}
.section-questions-form .btn-circle {
  font-size: 17px;
  height: 117px;
  line-height: 112.2%;
  width: 117px;
}
.section-questions-form .soc-item {
  position: relative;
}
.section-questions-form .soc-item:after {
  background: #000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 18px;
  left: 0;
  opacity: 0;
  padding: 0.5em;
  pointer-events: none;
  position: absolute;
  top: 10px;
  transform: translateY(-100%);
  transition-duration: 0.3s;
  transition-property: opacity, top;
  width: max-content;
}
.section-questions-form .soc-item[data-tooltip]:hover {
  z-index: 3;
}
.section-questions-form .soc-item[data-tooltip]:hover:after {
  opacity: 1;
  top: 0;
}
.section-questions-form .input-wrap input {
  background-color: rgba(0, 0, 0, 0);
}
.section-questions-form .policy-checkbox .text {
  font-size: 15px;
  margin-bottom: unset;
}
.section-questions-form .policy-checkbox .holder {
  background: rgba(0, 0, 0, 0);
  border-color: #000;
  height: 24px;
  width: 24px;
}
.section-questions-form .policy-checkbox .holder:after {
  background-image: url(../img/svg/checked-policy-icon.svg);
  bottom: 3px;
}
.section-questions-form .policy-checkbox .policy-button {
  cursor: pointer;
  font-weight: 300;
  line-height: normal;
  text-decoration: underline;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-questions-form .policy-checkbox .policy-button:hover {
  color: #b1bc00;
}
.section-questions-form .policy-checkbox .checkbox {
  width: 230px;
}
@media (max-width: 660px) {
  .section-questions-form .policy-checkbox {
    align-content: center;
    display: flex;
    margin-bottom: 30px;
    margin-block: 0 40px;
    max-width: unset;
    width: max-content;
  }
  .section-questions-form .policy-checkbox .checkbox {
    justify-content: center;
    width: unset;
  }
  .section-questions-form .policy-checkbox .text {
    display: block;
    width: unset;
  }
}
@media (max-width: 575.9px) {
  .section-questions-form .btn-wrap {
    margin-inline: auto;
  }
  .section-questions-form .btn-circle {
    height: 108px;
    width: 108px;
  }
  .section-questions-form .line path {
    stroke-width: 1.5;
  }
}
.section-slider-partners {
  padding: 40px 0;
}
.section-slider-partners.anim .section-title {
  font-size: 55px;
  font-weight: 700;
}
.section-slider-partners.anim .section-title .underlined .line path {
  stroke-dashoffset: 314;
  transition-delay: 0.7s;
  transition-duration: 0.8s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-slider-partners.anim .section-title .circled .circle path {
  stroke: #b1bc00;
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
  transition-duration: 1s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-slider-partners .section-title {
  font-size: 72px;
  line-height: 79px;
  position: relative;
}
.section-slider-partners .section-title .circled {
  display: inline-block;
  position: relative;
}
.section-slider-partners .section-title .circled .circle {
  height: auto;
  left: -14%;
  position: absolute;
  top: 7%;
  width: 120%;
  z-index: 2;
}
.section-slider-partners .section-title .circled .circle path {
  stroke-dasharray: 786;
  stroke-dashoffset: 786;
}
.section-slider-partners .section-title .underlined .line {
  position: absolute;
  top: 86%;
  width: 130%;
}
.section-slider-partners .section-title .underlined .line path {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
}
.section-slider-partners .partners-slider {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-block: 40px;
  position: relative;
}
.section-slider-partners .partners-slider .swiper-wrapper {
  align-items: stretch;
  height: 209px;
  width: calc(100% - 152px);
}
.section-slider-partners .partners-slider .slider-button {
  position: static;
}
.section-slider-partners .partners-slider .slider-button:before {
  display: none;
}
.section-slider-partners .partners-slider .swiper-slide {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: unset;
  justify-content: center;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  opacity: 0;
  transition-duration: 0.1s;
  transition-property: opacity;
}
.section-slider-partners .partners-slider .swiper-slide .img-wrap {
  align-items: center;
  display: flex;
  height: 50%;
  justify-content: center;
  width: 100%;
}
.section-slider-partners .partners-slider .swiper-slide .img-wrap img {
  height: auto;
  max-height: 80%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.section-slider-partners .partners-slider .swiper-slide .img-wrap:first-child {
  padding-right: 40px;
}
.section-slider-partners .partners-slider .swiper-slide .img-wrap:last-child {
  padding-left: 40px;
}
.section-slider-partners .partners-slider .swiper-slide.swiper-slide-visible {
  opacity: 1;
}
.section-slider-partners .partners-slider .swiper-slide.br {
  height: 1px;
  width: 100% !important;
}
.section-slider-partners .partners-slider .swiper-slide.top {
  margin-right: 85px !important;
}
.section-slider-partners .partners-slider .swiper-slide.bott {
  margin-right: 50px !important;
}
.section-slider-partners .partners-slider .swiper-button-next:after,
.section-slider-partners .partners-slider .swiper-button-prev:after {
  display: none;
  opacity: 0;
}
.section-slider-partners .partners-slider .slider-button {
  background-color: #fff;
  background: linear-gradient(
    90deg,
    #fff,
    hsla(0, 0%, 100%, 0.86) 70%,
    hsla(0, 0%, 100%, 0)
  );
  height: 209px;
  justify-content: flex-start;
  padding: 10px 50px 10px 10px;
}
.section-slider-partners .partners-slider .slider-button img {
  height: 39px;
}
@media (max-width: 1100px) {
  .section-slider-partners .partners-slider .swiper-slide .img-wrap img {
    transform: scale(0.8);
  }
}
@media (max-width: 768px) {
  .section-slider-partners {
    padding: 20px 0 40px;
  }
  .section-slider-partners .section-title {
    font-size: 50px;
    line-height: 112.38%;
    max-width: 405px;
  }
  .section-slider-partners .section-title .circled .circle {
    left: -5%;
    top: 14%;
    width: 110%;
  }
  .section-slider-partners .partners-slider {
    padding-block: 20px;
  }
}
@media (max-width: 575.9px) {
  .section-slider-partners .partners-slider {
    padding-block: 15px;
  }
  .section-slider-partners .partners-slider .swiper-wrapper {
    height: 116px;
  }
  .section-slider-partners .partners-slider .swiper-slide {
    padding-right: 28px;
  }
  .section-slider-partners .partners-slider .slider-button img {
    height: 25px;
  }
}
@media (max-width: 479.9px) {
  .section-slider-partners .section-title {
    font-size: 30px;
    max-width: 250px;
  }
}
.section-brief-head {
  padding: 60px 0;
  text-transform: lowercase;
}
.section-brief-head .container {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.section-brief-head .title {
  font-size: 50px;
  line-height: 150%;
}
.section-brief-head .text {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  line-height: 31px;
  padding-top: 20px;
  text-align: center;
}
.section-brief-head .text.with-file {
  align-items: center;
  display: flex;
  justify-content: center;
}
.section-brief-head .text .mail {
  transition-duration: 0.3s;
  transition-property: color, opacity;
}
.section-brief-head .text .mail:hover {
  color: #963ebd;
}
.section-brief-head .file {
  align-items: center;
  display: flex;
  margin-left: 20px;
}
.section-brief-head .file .icon {
  display: block;
  height: 23px;
  margin-right: 15px;
  width: 25px;
}
.section-brief-head .file .icon img,
.section-brief-head .file .icon svg {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.section-brief-head .file-descr {
  transition-duration: 0.3s;
  transition-property: color, opacity;
}
.section-brief-head .file-descr:hover {
  color: #963ebd;
}
@media (max-width: 1024px) {
  .section-brief-head {
    padding: 40px 0;
  }
  .section-brief-head .container {
    align-items: flex-start;
  }
  .section-brief-head .text {
    text-align: left;
  }
  .section-brief-head .text .mail {
    display: block;
    padding-top: 20px;
  }
  .section-brief-head .text.with-file {
    justify-content: flex-start;
  }
}
@media (max-width: 650px) {
  .section-brief-head .text.with-file {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-brief-head .text .file {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 575.9px) {
  .section-brief-head .title {
    font-size: 30px;
    line-height: 150%;
  }
  .section-brief-head .text {
    font-size: 18px;
    line-height: 23px;
  }
  .section-brief-head .text .file-descr,
  .section-brief-head .text .mail {
    color: #963ebd;
  }
  .section-brief-head .text .file-descr:hover,
  .section-brief-head .text .mail:hover {
    opacity: 0.6;
  }
}
.section-brief-form {
  padding: 0 0 60px;
}
.section-brief-form .brief .btn-wrap.anim .line path,
.section-brief-form .brief .btn-wrap.anim .line.tab path {
  stroke-dashoffset: 0;
  transition-delay: 0.2s;
  transition-duration: 1.2s;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-brief-form .brief .btn-wrap.anim .line path {
  stroke-dashoffset: 1152;
}
.section-brief-form .brief .btn-wrap.anim .line.tab path {
  stroke-dashoffset: 1030;
}
.section-brief-form .brief {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.section-brief-form .brief:before {
  background: #eee;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  width: 1px;
}
.section-brief-form .brief .prompt-text {
  color: #bbb;
}
.section-brief-form .brief-col {
  display: flex;
  flex-direction: column;
  max-width: calc(50% - 60px);
  width: 100%;
}
.section-brief-form .brief-col.tab {
  display: none;
  max-width: 100%;
}
.section-brief-form .brief-block {
  display: flex;
  flex-direction: column;
}
.section-brief-form .brief-block:not(:last-child) {
  margin-bottom: 50px;
}
.section-brief-form .brief-title {
  font-size: 40px;
  line-height: 150%;
  padding-bottom: 20px;
}
.section-brief-form .brief-title .number {
  color: #b1bc00;
  font-weight: 500;
  margin-right: 15px;
}
.section-brief-form .brief-title .text {
  font-weight: 600;
}
.section-brief-form .brief-descr {
  color: #000;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 20px;
}
.section-brief-form .brief .input-list {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  width: 100%;
}
.section-brief-form .brief .double-input-wrap {
  align-items: flex-end;
  display: flex;
  margin-bottom: 30px;
}
.section-brief-form .brief .double-input-wrap .input-wrap {
  margin-bottom: 0 !important;
  max-width: 50%;
}
.section-brief-form .brief .input-file .prompt-text {
  font-size: 16px;
}
.section-brief-form .brief .input-file input {
  display: none;
}
.section-brief-form .brief .add-file {
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 18px;
  height: 38px;
  line-height: 38px;
  margin: 20px 0;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: background;
  width: 156px;
}
.section-brief-form .brief .add-file:hover {
  background: #b1bc00;
}
.section-brief-form .brief .sticker-file {
  margin-top: -10px;
}
.section-brief-form .brief .sticker-file .alert-input-text {
  line-height: 23px;
}
.section-brief-form .brief .sticker-file .input.has-value ~ .input-file-list {
  margin-top: 20px;
}
.section-brief-form .brief .sticker-file .add-file {
  align-items: center;
  background: rgba(0, 0, 0, 0);
  color: #000;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  height: auto;
  line-height: 150%;
  margin-bottom: 0 !important;
  position: relative;
  width: max-content;
}
.section-brief-form .brief .sticker-file .add-file:before {
  align-items: center;
  background: url(../img/svg/clip.svg) 50% no-repeat;
  background-size: contain;
  content: "";
  display: flex;
  height: 26px;
  justify-content: center;
  margin-right: 15px;
  width: 26px;
}
.section-brief-form .brief .file-delete {
  align-items: center;
  cursor: pointer;
  display: inline-block;
  display: flex;
  height: 20px;
  justify-content: center;
  margin-left: 5px;
  margin-top: 5px;
  width: 20px;
}
.section-brief-form .brief .file-delete:after,
.section-brief-form .brief .file-delete:before {
  background: #aaa;
  content: "";
  height: 1px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: background;
  width: 15px;
}
.section-brief-form .brief .file-delete:before {
  transform: rotate(45deg);
}
.section-brief-form .brief .file-delete:after {
  transform: rotate(135deg);
}
.section-brief-form .brief .file-delete:hover:after,
.section-brief-form .brief .file-delete:hover:before {
  background: #000;
}
.section-brief-form .brief .input-file-list .list-item {
  align-items: center;
  display: flex;
}
.section-brief-form .brief .input-wrap {
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 150%;
  position: relative;
  width: 100%;
}
.section-brief-form .brief .input-wrap:not(:last-child) {
  margin-bottom: 30px;
}
.section-brief-form .brief .input-wrap.has-error .alert-input-text {
  bottom: -24px;
  height: 23px;
  opacity: 1;
}
.section-brief-form .brief .alert-input-text {
  bottom: -15px;
  color: #e3000f;
  font-size: 14px;
  height: 0;
  opacity: 0;
  padding-left: 2px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: bottom, opacity, height;
}
.section-brief-form .brief .input-descr {
  color: rgba(0, 0, 0, 0.7);
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}
.section-brief-form .brief .input {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 24px;
  height: 54px;
  padding: 5px 15px;
}
.section-brief-form .brief .input-block {
  margin-bottom: 40px;
}
.section-brief-form .brief .input-block .sticker-title {
  color: #000;
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
.section-brief-form .brief .input-block .input-wrap {
  margin-bottom: 10px;
}
.section-brief-form .brief .input-block .input-wrap:last-child {
  margin-bottom: 0;
}
.section-brief-form .brief .add-block-btn {
  color: #963ebd;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  order: 1000;
  padding-top: 10px;
}
.section-brief-form .brief .checkbox-wrap {
  padding-top: 30px;
  width: 100%;
}
.section-brief-form .brief .checkbox-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
.section-brief-form .brief .checkbox-list {
  width: 100%;
}
.section-brief-form .brief .checkbox .text {
  color: rgba(0, 0, 0, 0.7);
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  margin-left: 20px;
}
.section-brief-form .brief .checkbox:not(:last-child) {
  margin-bottom: 20px;
}
.section-brief-form .brief .checkbox-columns {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -20px;
  max-width: 540px;
}
.section-brief-form .brief .checkbox-columns .checkbox {
  margin-right: 30px;
  width: max-content;
}
.section-brief-form .brief .checkbox-columns .checkbox:last-child {
  margin-bottom: 20px;
}
.section-brief-form .brief .radio-title {
  color: #000;
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}
.section-brief-form .brief .radio-list .radio {
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.section-brief-form .brief .radio-list .radio:last-child {
  margin-bottom: 0;
}
.section-brief-form .brief .radio-list .holder {
  border: 1px solid #eee;
  border-radius: 50%;
  height: 30px;
  margin-right: 20px;
  width: 30px;
}
.section-brief-form .brief .radio-list .holder:after {
  background: #963ebd;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}
.section-brief-form .brief .radio-wrap {
  margin-bottom: 10px;
  margin-top: 30px;
  width: calc(100% + 52px);
}
.section-brief-form .brief .service-title {
  color: rgba(0, 0, 0, 0.7);
  font-size: 24px;
  line-height: 150%;
  text-transform: uppercase;
}
.section-brief-form .brief .service-block {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  width: 100%;
}
.section-brief-form .brief .service-img {
  margin-right: 40px;
  max-width: 228px;
  position: relative;
  width: 100%;
}
.section-brief-form .brief .service-img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.section-brief-form .brief .service-img img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.section-brief-form .brief .service-img img:before {
  align-items: center;
  background: #f2f2f2;
  color: rgba(0, 0, 0, 0.7);
  content: attr(data-attribute);
  display: flex;
  font-size: 20px;
  font-weight: 400;
  height: max-content;
  left: 0;
  line-height: 150%;
  min-height: 100%;
  padding: 10px;
  position: absolute;
  text-align: left;
  top: 0;
  width: 100%;
}
.section-brief-form .brief .service-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-brief-form .brief .service-descr {
  color: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
}
.section-brief-form .brief .info-table {
  display: flex;
  flex-direction: column;
}
.section-brief-form .brief .info-table .info-row {
  align-items: center;
  display: flex;
}
.section-brief-form .brief .info-table .info-row:not(:last-child) {
  margin-bottom: 20px;
}
.section-brief-form .brief .info-table .col-head {
  margin-right: 40px;
  max-width: 105px;
  width: 100%;
}
.section-brief-form .brief .info-table .col {
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}
.section-brief-form .brief .info-table .col-head {
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}
.section-brief-form .brief .btn-wrap {
  align-items: center;
  display: flex;
  margin-top: 80px;
  position: relative;
}
.section-brief-form .brief .btn-wrap .input-wrap {
  position: absolute;
  top: -110px;
}
.section-brief-form
  .brief
  .btn-wrap
  .input-wrap
  .checkbox.has-error
  .alert-input-text {
  opacity: 1;
}
.section-brief-form .brief .btn-wrap .btn {
  font-size: 30px;
  font-weight: 400;
  height: 260px;
  line-height: 112.2%;
  padding: 40px;
  text-align: center;
  width: 260px;
}
.section-brief-form .brief .btn-wrap .line {
  margin-left: 40px;
  max-width: 451px;
}
.section-brief-form .brief .btn-wrap .line path {
  stroke-dasharray: 576;
  stroke-dashoffset: 576;
}
.section-brief-form .brief .btn-wrap .line.tab {
  display: none;
}
.section-brief-form .brief .btn-wrap .line.tab path {
  stroke-dasharray: 515;
  stroke-dashoffset: 515;
}
@media (max-width: 1280px) {
  .section-brief-form .brief .btn-wrap .btn {
    font-size: 17px;
    height: 150px;
    line-height: 112.2%;
    padding: 20px;
    width: 150px;
  }
  .section-brief-form .brief .btn-wrap .line {
    margin-left: 35px;
    max-width: calc(100% - 150px);
  }
  .section-brief-form .brief .btn-wrap .line.desk {
    display: none;
  }
  .section-brief-form .brief .btn-wrap .line.tab {
    display: block;
  }
  .section-brief-form .brief .info-table .col-head,
  .section-brief-form .brief .service-img {
    margin-right: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .section-brief-form .brief .service-img {
    max-width: 150px;
  }
  .section-brief-form .brief .service-img .img:before {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 1024px) {
  .section-brief-form {
    padding-top: 40px;
  }
  .section-brief-form .brief {
    flex-direction: column;
  }
  .section-brief-form .brief:before {
    background: rgba(0, 0, 0, 0);
  }
  .section-brief-form .brief-col {
    max-width: unset;
  }
  .section-brief-form .brief-block:not(:last-child) {
    margin-bottom: 40px;
  }
  .section-brief-form .brief .input-wrap:not(:last-child) {
    margin-bottom: 20px;
  }
  .section-brief-form .brief .checkbox-wrap {
    padding-top: 20px;
  }
  .section-brief-form .brief .btn-wrap {
    align-items: flex-start;
    padding-top: 40px;
  }
  .section-brief-form .brief .btn-wrap .line {
    margin-top: 75px;
  }
  .section-brief-form .brief .btn-wrap .text.mob {
    display: none;
  }
  .section-brief-form .brief .btn-wrap .input-wrap {
    left: 184px;
    top: 77px;
  }
  .section-brief-form .brief .info-table .col-head {
    margin-right: 40px;
  }
  .section-brief-form .brief .radio-wrap {
    margin-bottom: 0;
    margin-top: 20px;
    width: 100%;
  }
  .section-brief-form .brief .input-list {
    padding-top: 20px;
  }
  .section-brief-form .brief .js-add-block {
    padding-top: 30px;
  }
  .section-brief-form .brief .input-block {
    margin-bottom: 20px;
  }
  .section-brief-form .brief .input-block .input-wrap {
    margin-bottom: 10px;
  }
  .section-brief-form .brief .add-block-btn {
    padding-bottom: 10px;
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .section-brief-form .brief .btn-wrap {
    margin-top: 0;
  }
}
@media (max-width: 575.9px) {
  .section-brief-form {
    padding-bottom: 40px;
    padding-top: 20px;
  }
  .section-brief-form .brief-title {
    display: flex;
    font-size: 28px;
    line-height: 150%;
  }
  .section-brief-form .brief-block:not(:last-child) {
    margin-bottom: 30px;
  }
  .section-brief-form .brief-descr {
    margin-bottom: 30px;
  }
  .section-brief-form .brief .input-list {
    padding-top: 0;
  }
  .section-brief-form .brief .input-descr,
  .section-brief-form .brief .input-wrap {
    font-size: 18px;
  }
  .section-brief-form .brief .input {
    font-size: 18px;
    height: 40px;
    padding: 5px 15px;
  }
  .section-brief-form .brief .checkbox-title {
    font-size: 22px;
  }
  .section-brief-form .brief .checkbox .text {
    font-size: 18px;
  }
  .section-brief-form .brief .sticker-file .add-file:before {
    height: 20px;
    width: 20px;
  }
  .section-brief-form .brief .sticker-file .input.has-value ~ .input-file-list {
    margin-top: 10px;
  }
  .section-brief-form .brief .brief-descr {
    font-size: 18px;
  }
  .section-brief-form .brief .checkbox-columns {
    flex-direction: column;
    margin-bottom: 0;
  }
  .section-brief-form .brief .checkbox-column-title {
    font-size: 18px;
  }
  .section-brief-form .brief .btn-wrap {
    padding-top: 90px;
  }
  .section-brief-form .brief .btn-wrap .text.mob {
    display: block;
  }
  .section-brief-form .brief .btn-wrap .text.tab {
    display: none;
  }
  .section-brief-form .brief .btn-wrap .btn {
    height: 100px;
    padding: 0;
    width: 100px;
  }
  .section-brief-form .brief .btn-wrap .line {
    margin-left: 0;
    margin-top: 40px;
    max-width: calc(100% - 100px);
  }
  .section-brief-form .brief .btn-wrap .input-wrap {
    left: 50%;
    max-width: 236px;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
  }
  .section-brief-form .brief .btn-wrap .input-wrap .checkbox {
    justify-content: center;
  }
  .section-brief-form .brief .service-block {
    flex-direction: column;
  }
  .section-brief-form .brief .service-img {
    margin-bottom: 20px;
    margin-right: 0;
    max-width: 100%;
  }
  .section-brief-form .brief .service-img .img:before {
    align-items: center;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    font-size: 20px;
    font-weight: 400;
    height: max-content;
    left: 0;
    line-height: 150%;
    padding: 10px;
    position: absolute;
    text-align: left;
    top: 0;
    width: 100%;
  }
  .section-brief-form .brief .info-table .col,
  .section-brief-form .brief .input-block .sticker-title,
  .section-brief-form .brief .radio-title,
  .section-brief-form .brief .service-descr,
  .section-brief-form .brief .service-title {
    font-size: 18px;
  }
  .section-brief-form .brief .info-table .col-head {
    font-size: 20px;
    margin-right: 20px;
  }
}
.section-design-stages {
  padding: 40px 0;
}
.section-design-stages.anim .anim-stages-line path {
  stroke-dashoffset: 8918;
  transition-delay: 0.2s;
  transition-duration: 4s;
  transition-property: stroke-dashoffset;
  transition-timing-function: linear;
}
.section-design-stages.anim .first-stage {
  opacity: 1;
  transition-delay: 0.2s;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-design-stages.anim .second-stage {
  opacity: 1;
  transition-delay: 1.5s;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-design-stages.anim .third-stage {
  opacity: 1;
  transition-delay: 2.5s;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-design-stages.anim .fourth-stage {
  opacity: 1;
  transition-delay: 3.5s;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-design-stages.anim .fifth-stage {
  opacity: 1;
  transition-delay: 4.5s;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.section-design-stages.anim .underlined .line path {
  stroke-dashoffset: 486;
}
.section-design-stages .section-title {
  font-size: 72px;
  line-height: 92px;
  margin-bottom: 79px;
  margin-left: 23px;
}
.section-design-stages .underlined .line {
  width: 110%;
}
.section-design-stages .underlined .line path {
  stroke-dasharray: 243;
  stroke-dashoffset: 243;
}
.section-design-stages .stages-line {
  left: -110px;
  max-width: 1562px;
  pointer-events: none;
  position: absolute;
  top: -69px;
  width: 100%;
  width: 1562px;
}
.section-design-stages .stages-line.desk {
  display: block;
}
.section-design-stages .stages-line.tab {
  display: none;
}
.section-design-stages .stages-line path {
  stroke-dasharray: 4459;
  stroke-dashoffset: 4459;
}
.section-design-stages .stages-list {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.section-design-stages .stage-item {
  align-items: center;
  display: flex;
  opacity: 0;
}
.section-design-stages .stage-item:hover .stage-number {
  color: #b1bc00;
}
.section-design-stages .stage-item:hover .stage-descr,
.section-design-stages .stage-item:hover .stage-title {
  color: #000;
}
.section-design-stages .stage-number {
  color: #c4c4c4;
  font-size: 72px;
  font-weight: 500;
  line-height: 92px;
  margin-right: 20px;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-design-stages .stage-text {
  display: flex;
  flex-direction: column;
  max-width: 371px;
}
.section-design-stages .stage-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 41px;
  margin-bottom: 10px;
  text-transform: lowercase;
}
.section-design-stages .stage-descr {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  text-transform: lowercase;
}
.section-design-stages .stage-descr,
.section-design-stages .stage-title {
  color: #929292;
  transition-duration: 0.3s;
  transition-property: color;
}
.section-design-stages .first-stage {
  margin-bottom: 70px;
}
.section-design-stages .second-stage {
  margin: 0 auto 95px;
  padding-right: 39px;
}
.section-design-stages .third-stage {
  margin-bottom: 117px;
  margin-left: 220px;
}
.section-design-stages .fourth-stage {
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: 369px;
}
.section-design-stages .fifth-stage {
  margin-bottom: 33px;
  margin-left: auto;
  margin-right: 657px;
}
@media (max-width: 1560px) {
  .section-design-stages .stages-line {
    left: -33px;
    width: 1230px;
  }
}
@media (max-width: 1400px) {
  .section-design-stages .second-stage {
    margin-right: 250px;
  }
  .section-design-stages .third-stage {
    margin-left: 220px;
  }
  .section-design-stages .fourth-stage {
    margin-right: 202px;
  }
  .section-design-stages .fifth-stage {
    margin-right: 481px;
  }
}
@media (max-width: 1280px) {
  .section-design-stages .third-stage {
    margin-left: 150px;
  }
  .section-design-stages .fourth-stage {
    margin-right: 100px;
  }
  .section-design-stages .fifth-stage {
    margin-right: 367px;
  }
}
@media (max-width: 1180px) {
  .section-design-stages .stages-line {
    top: -140px;
    width: 1091px;
  }
  .section-design-stages .second-stage {
    margin-bottom: 25px;
    margin-right: 100px;
    padding-right: 0;
  }
  .section-design-stages .third-stage {
    margin-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .section-design-stages .stages-line {
    top: -184px;
    width: 965px;
  }
  .section-design-stages .first-stage {
    margin-bottom: 30px;
  }
  .section-design-stages .third-stage {
    margin-bottom: 50px;
    margin-left: 50px;
  }
  .section-design-stages .fourth-stage {
    margin-right: 30px;
  }
}
@media (max-width: 938px) {
  .section-design-stages {
    overflow-x: clip;
    overflow-y: hidden;
  }
  .section-design-stages.anim .anim-stages-line path {
    stroke-dashoffset: 5112;
  }
  .section-design-stages .stages-line {
    width: 800px;
  }
  .section-design-stages .stages-line.desk {
    display: none;
  }
  .section-design-stages .stages-line.tab {
    display: block;
    top: -19px;
  }
  .section-design-stages .stages-line path {
    stroke-dasharray: 2556;
    stroke-dashoffset: 2556;
  }
  .section-design-stages .first-stage {
    margin-bottom: 120px;
  }
  .section-design-stages .second-stage {
    margin-bottom: 24px;
  }
  .section-design-stages .third-stage {
    margin-bottom: 140px;
  }
  .section-design-stages .fourth-stage {
    margin-bottom: 36px;
    margin-left: 148px;
  }
}
@media (max-width: 827px) {
  .section-design-stages .stages-line {
    left: 10px;
    top: 22px;
    width: 720px;
  }
  .section-design-stages .second-stage {
    margin-right: 50px;
  }
  .section-design-stages .third-stage {
    margin-left: 70px;
  }
  .section-design-stages .fourth-stage {
    margin-left: 123px;
    margin-right: 0;
  }
  .section-design-stages .fifth-stage {
    margin-right: 277px;
  }
  .section-design-stages .stages-line path {
    stroke-width: 1.5;
  }
}
@media (max-width: 768px) {
  .section-design-stages .section-title {
    font-size: 50px;
    line-height: 64px;
    margin-bottom: 40px;
    margin-left: 0;
  }
  .section-design-stages .underlined .line {
    bottom: 4px;
    top: unset;
    width: 120%;
  }
  .section-design-stages .stages-line {
    width: 668px;
  }
  .section-design-stages .second-stage {
    margin-right: 0;
  }
  .section-design-stages .third-stage {
    margin-bottom: 107px;
    margin-left: 42px;
  }
  .section-design-stages .fourth-stage {
    margin-left: 148px;
  }
  .section-design-stages .stage-text {
    max-width: 342px;
  }
}
@media (max-width: 728px) {
  .section-design-stages .stages-line {
    left: 38px;
    top: 40px;
    width: 600px;
  }
  .section-design-stages .first-stage {
    margin-bottom: 105px;
  }
  .section-design-stages .third-stage {
    margin-bottom: 66px;
  }
  .section-design-stages .fourth-stage {
    margin-left: 113px;
  }
}
@media (max-width: 683px) {
  .section-design-stages .stages-line,
  .section-design-stages .stages-line.tab {
    display: none;
  }
  .section-design-stages .fifth-stage,
  .section-design-stages .first-stage,
  .section-design-stages .fourth-stage,
  .section-design-stages .second-stage,
  .section-design-stages .third-stage {
    margin: 0;
    opacity: 1;
  }
  .section-design-stages .stage-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .section-design-stages .stage-title {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 10px;
  }
  .section-design-stages .stage-descr {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 575.9px) {
  .section-design-stages {
    padding: 20px 0 40px;
  }
  .section-design-stages .section-title {
    font-size: 40px;
    line-height: 51px;
    margin-bottom: 27px;
  }
  .section-design-stages .underlined .line {
    bottom: -5px;
  }
}
.section-design-coop {
  padding: 40px 0 150px;
}
.section-design-coop.anim .btn-wrap .line-bottom path,
.section-design-coop.anim .btn-wrap .line-top path {
  stroke-dashoffset: 0;
  transition-property: stroke-dashoffset;
  transition-timing-function: ease;
}
.section-design-coop.anim .btn-wrap .line-top path {
  stroke-dashoffset: 958;
  transition-delay: 0.2s;
  transition-duration: 1s;
}
.section-design-coop.anim .btn-wrap .line-bottom path {
  stroke-dashoffset: 1398;
  transition-delay: 0.8s;
  transition-duration: 1.5s;
}
.section-design-coop .section-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 92px;
  margin-bottom: 89px;
  text-align: center;
  text-transform: lowercase;
  width: 100%;
}
.section-design-coop .btn-wrap {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1161px;
  width: 100%;
}
.section-design-coop .btn-wrap .text {
  align-self: flex-end;
  font-size: 24px;
  line-height: 31px;
  max-width: 473px;
  text-transform: lowercase;
}
.section-design-coop .btn-wrap .btn-circle {
  font-size: 20px;
  font-weight: 400;
  height: 195px;
  line-height: 112.2%;
  padding: 10px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-out;
  width: 195px;
}
.section-design-coop .btn-wrap .btn-circle .line-bottom,
.section-design-coop .btn-wrap .btn-circle .line-top {
  position: absolute;
}
.section-design-coop .btn-wrap .line-top {
  left: 228px;
  top: -118px;
  width: 414px;
}
.section-design-coop .btn-wrap .line-top.mob {
  display: none;
}
.section-design-coop .btn-wrap .line-top path {
  stroke-dasharray: 479;
  stroke-dashoffset: 479;
}
.section-design-coop .btn-wrap .line-bottom {
  bottom: -52px;
  right: 110%;
  width: 587px;
}
.section-design-coop .btn-wrap .line-bottom.mob {
  display: none;
}
.section-design-coop .btn-wrap .line-bottom path {
  stroke-dasharray: 699;
  stroke-dashoffset: 699;
}
.section-design-coop .btn-wrap .line-bottom,
.section-design-coop .btn-wrap .line-top {
  pointer-events: none;
}
.section-design-coop .btn-wrap .first-btn {
  align-self: flex-start;
  top: -17px;
}
.section-design-coop .btn-wrap .second-btn {
  align-self: flex-end;
  margin-top: -25px;
  padding: 42px;
  right: 140px;
  top: -47px;
}
@media (max-width: 1219px) {
  .section-design-coop .btn-wrap .line-top {
    width: 335px;
  }
  .section-design-coop .btn-wrap .line-bottom {
    right: 150%;
    width: 450px;
  }
}
@media (max-width: 1158px) {
  .section-design-coop .btn-wrap .line-top {
    left: 100%;
    width: 284px;
  }
  .section-design-coop .btn-wrap .line-bottom {
    right: 100%;
  }
}
@media (max-width: 1024px) {
  .section-design-coop {
    padding: 40px 0 60px;
  }
  .section-design-coop .section-title {
    font-size: 46px;
    line-height: 59px;
    margin-bottom: 97px;
  }
  .section-design-coop .btn-wrap .text {
    font-size: 20px;
    line-height: 26px;
    max-width: 343px;
  }
  .section-design-coop .btn-wrap .btn-circle {
    font-size: 17px;
    height: 150px;
    line-height: 112.2%;
    width: 150px;
  }
  .section-design-coop .btn-wrap .first-btn {
    top: -7px;
  }
  .section-design-coop .btn-wrap .second-btn {
    margin-top: 0;
    right: 66px;
    top: -34px;
  }
}
@media (max-width: 820px) {
  .section-design-coop .btn-wrap .line-top {
    left: 65%;
    top: -93px;
    width: 234px;
  }
  .section-design-coop .btn-wrap .line-top path {
    stroke-width: 3;
  }
  .section-design-coop .btn-wrap .line-bottom {
    bottom: -29px;
    width: 367px;
  }
  .section-design-coop .btn-wrap .line-bottom path {
    stroke-width: 3;
  }
}
@media (max-width: 740px) {
  .section-design-coop .btn-wrap .line-top {
    top: -119px;
  }
  .section-design-coop .btn-wrap .line-top.mob {
    display: block;
  }
  .section-design-coop .btn-wrap .line-top.desk {
    display: none;
  }
  .section-design-coop .btn-wrap .line-top path {
    stroke-width: 1.5;
  }
  .section-design-coop .btn-wrap .line-bottom {
    bottom: -57px;
    right: 80%;
  }
  .section-design-coop .btn-wrap .line-bottom.mob {
    display: block;
  }
  .section-design-coop .btn-wrap .line-bottom.desk {
    display: none;
  }
  .section-design-coop .btn-wrap .line-bottom path {
    stroke-width: 1.5;
  }
}
@media (max-width: 670px) {
  .section-design-coop .btn-wrap .line-bottom {
    max-width: 350px;
  }
}
@media (max-width: 575.9px) {
  .section-design-coop {
    padding: 20px 0 60px;
  }
  .section-design-coop .section-title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 64px;
  }
  .section-design-coop .btn-wrap .text {
    font-size: 16px;
    line-height: 21px;
    max-width: 187px;
  }
  .section-design-coop .btn-wrap .btn-circle {
    font-size: 14px;
    height: 100px;
    line-height: 112.2%;
    width: 100px;
  }
  .section-design-coop .btn-wrap .first-btn {
    top: -61px;
  }
  .section-design-coop .btn-wrap .line-top {
    left: 31%;
    top: -83px;
    width: 193px;
  }
  .section-design-coop .btn-wrap .second-btn {
    padding: 5px;
    right: 0;
    top: -60px;
  }
  .section-design-coop .btn-wrap .line-bottom {
    right: 51%;
  }
}
@media (max-width: 450px) {
  .section-design-coop .btn-wrap .line-bottom {
    max-width: 280px;
  }
}
@media (max-width: 338px) {
  .section-design-coop .btn-wrap .btn-circle {
    height: 80px;
    width: 80px;
  }
}
.swal2-popup.swal2-toast {
  background: #fff;
  box-shadow:
    0 0 1px rgba(0, 0, 0, 0.075),
    0 1px 2px rgba(0, 0, 0, 0.075),
    1px 2px 4px rgba(0, 0, 0, 0.075),
    1px 3px 8px rgba(0, 0, 0, 0.075),
    2px 4px 16px rgba(0, 0, 0, 0.075);
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: min-content auto min-content;
  overflow-y: hidden;
  padding: 1em;
  pointer-events: all;
}
.swal2-popup.swal2-toast > * {
  grid-column: 2;
}
.swal2-popup.swal2-toast .swal2-title {
  font-size: 1em;
  margin: 0.5em 1em;
  padding: 0;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-loading {
  justify-content: center;
}
.swal2-popup.swal2-toast .swal2-input {
  font-size: 1em;
  height: 2em;
  margin: 0.5em;
}
.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-footer {
  font-size: 0.8em;
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
}
.swal2-popup.swal2-toast .swal2-close {
  align-self: center;
  font-size: 2em;
  grid-column: 3/3;
  grid-row: 1/99;
  height: 0.8em;
  margin: 0;
  width: 0.8em;
}
.swal2-popup.swal2-toast .swal2-html-container {
  font-size: 1em;
  margin: 0.5em 1em;
  overflow: initial;
  padding: 0;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0;
}
.swal2-popup.swal2-toast .swal2-loader {
  align-self: center;
  grid-column: 1;
  grid-row: 1/99;
  height: 2em;
  margin: 0.25em;
  width: 2em;
}
.swal2-popup.swal2-toast .swal2-icon {
  align-self: center;
  grid-column: 1;
  grid-row: 1/99;
  height: 2em;
  margin: 0 0.5em 0 0;
  min-width: 2em;
  width: 2em;
}
.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  align-items: center;
  display: flex;
  font-size: 1.8em;
  font-weight: 700;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  height: 2em;
  width: 2em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  top: 0.875em;
  width: 1.375em;
}
.swal2-popup.swal2-toast
  .swal2-icon.swal2-error
  [class^="swal2-x-mark-line"][class$="left"] {
  left: 0.3125em;
}
.swal2-popup.swal2-toast
  .swal2-icon.swal2-error
  [class^="swal2-x-mark-line"][class$="right"] {
  right: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-actions {
  height: auto;
  justify-content: flex-start;
  margin: 0.5em 0 0;
  padding: 0 0.5em;
}
.swal2-popup.swal2-toast .swal2-styled {
  font-size: 1em;
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
}
.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}
.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-circular-line"] {
  border-radius: 50%;
  height: 3em;
  position: absolute;
  transform: rotate(45deg);
  width: 1.6em;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-circular-line"][class$="left"] {
  border-radius: 4em 0 0 4em;
  left: -0.5em;
  top: -0.8em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-circular-line"][class$="right"] {
  border-radius: 0 4em 4em 0;
  left: 0.9375em;
  top: -0.25em;
  transform-origin: 0 1.5em;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  height: 2em;
  width: 2em;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  height: 2.6875em;
  left: 0.4375em;
  top: 0;
  width: 0.4375em;
}
.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-line"] {
  height: 0.3125em;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-line"][class$="tip"] {
  left: 0.1875em;
  top: 1.125em;
  width: 0.75em;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-line"][class$="long"] {
  right: 0.1875em;
  top: 0.9375em;
  width: 1.375em;
}
.swal2-popup.swal2-toast
  .swal2-success.swal2-icon-show
  .swal2-success-line-tip {
  animation: swal2-toast-animate-success-line-tip 0.75s;
}
.swal2-popup.swal2-toast
  .swal2-success.swal2-icon-show
  .swal2-success-line-long {
  animation: swal2-toast-animate-success-line-long 0.75s;
}
.swal2-popup.swal2-toast.swal2-show {
  animation: swal2-toast-show 0.5s;
}
.swal2-popup.swal2-toast.swal2-hide {
  animation: swal2-toast-hide 0.1s forwards;
}
.swal2-container {
  -webkit-overflow-scrolling: touch;
  bottom: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
  grid-template-rows:
    minmax(min-content, auto) minmax(min-content, auto)
    minmax(min-content, auto);
  height: 100%;
  left: 0;
  overflow-x: hidden;
  padding: 0.625em;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.1s;
  z-index: 1060;
}
.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}
.swal2-container.swal2-backdrop-hide {
  background: transparent !important;
}
.swal2-container.swal2-bottom-start,
.swal2-container.swal2-center-start,
.swal2-container.swal2-top-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}
.swal2-container.swal2-bottom,
.swal2-container.swal2-center,
.swal2-container.swal2-top {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.swal2-container.swal2-bottom-end,
.swal2-container.swal2-center-end,
.swal2-container.swal2-top-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}
.swal2-container.swal2-top-start > .swal2-popup {
  align-self: start;
}
.swal2-container.swal2-top > .swal2-popup {
  align-self: start;
  grid-column: 2;
  justify-self: center;
}
.swal2-container.swal2-top-end > .swal2-popup,
.swal2-container.swal2-top-right > .swal2-popup {
  align-self: start;
  grid-column: 3;
  justify-self: end;
}
.swal2-container.swal2-center-left > .swal2-popup,
.swal2-container.swal2-center-start > .swal2-popup {
  align-self: center;
  grid-row: 2;
}
.swal2-container.swal2-center > .swal2-popup {
  align-self: center;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
}
.swal2-container.swal2-center-end > .swal2-popup,
.swal2-container.swal2-center-right > .swal2-popup {
  align-self: center;
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
}
.swal2-container.swal2-bottom-left > .swal2-popup,
.swal2-container.swal2-bottom-start > .swal2-popup {
  align-self: end;
  grid-column: 1;
  grid-row: 3;
}
.swal2-container.swal2-bottom > .swal2-popup {
  align-self: end;
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
}
.swal2-container.swal2-bottom-end > .swal2-popup,
.swal2-container.swal2-bottom-right > .swal2-popup {
  align-self: end;
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
}
.swal2-container.swal2-grow-fullscreen > .swal2-popup,
.swal2-container.swal2-grow-row > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}
.swal2-container.swal2-grow-column > .swal2-popup,
.swal2-container.swal2-grow-fullscreen > .swal2-popup {
  align-self: stretch;
  grid-row: 1/4;
}
.swal2-container.swal2-no-transition {
  transition: none !important;
}
.swal2-popup {
  background: #fff;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  color: #545454;
  display: none;
  font-family: inherit;
  font-size: 1rem;
  grid-template-columns: minmax(0, 100%);
  max-width: 100%;
  padding: 0 0 1.25em;
  position: relative;
  width: 32em;
}
.swal2-popup:focus {
  outline: none;
}
.swal2-popup.swal2-loading {
  overflow-y: hidden;
}
.swal2-title {
  word-wrap: break-word;
  color: inherit;
  font-size: 1.875em;
  font-weight: 600;
  margin: 0;
  max-width: 100%;
  padding: 0.8em 1em 0;
  position: relative;
  text-align: center;
  text-transform: none;
}
.swal2-actions {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.25em auto 0;
  padding: 0;
  width: auto;
  z-index: 1;
}
.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}
.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
.swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.swal2-loader {
  align-items: center;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-color: #2778c4 transparent;
  border-radius: 100%;
  border-style: solid;
  border-width: 0.25em;
  display: none;
  height: 2.2em;
  justify-content: center;
  margin: 0 1.875em;
  width: 2.2em;
}
.swal2-styled {
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
  margin: 0.3125em;
  padding: 0.625em 1.1em;
  transition: box-shadow 0.1s;
}
.swal2-styled:not([disabled]) {
  cursor: pointer;
}
.swal2-styled.swal2-confirm {
  background: initial;
  background-color: #7066e0;
  border: 0;
  border-radius: 0.25em;
  color: #fff;
  font-size: 1em;
}
.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
}
.swal2-styled.swal2-deny {
  background: initial;
  background-color: #dc3741;
  border: 0;
  border-radius: 0.25em;
  color: #fff;
  font-size: 1em;
}
.swal2-styled.swal2-deny:focus {
  box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
}
.swal2-styled.swal2-cancel {
  background: initial;
  background-color: #6e7881;
  border: 0;
  border-radius: 0.25em;
  color: #fff;
  font-size: 1em;
}
.swal2-styled.swal2-cancel:focus {
  box-shadow: 0 0 0 3px hsla(208, 8%, 47%, 0.5);
}
.swal2-styled.swal2-default-outline:focus {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}
.swal2-styled:focus {
  outline: none;
}
.swal2-styled::-moz-focus-inner {
  border: 0;
}
.swal2-footer {
  border-top: 1px solid #eee;
  color: inherit;
  font-size: 1em;
  justify-content: center;
  margin: 1em 0 0;
  padding: 1em 1em 0;
}
.swal2-timer-progress-bar-container {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  bottom: 0;
  grid-column: auto !important;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
}
.swal2-timer-progress-bar {
  background: rgba(0, 0, 0, 0.2);
  height: 0.25em;
  width: 100%;
}
.swal2-image {
  margin: 2em auto 1em;
  max-width: 100%;
}
.swal2-close {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 5px;
  color: #ccc;
  cursor: pointer;
  font-family: serif;
  font-family: monospace;
  font-size: 2.5em;
  height: 1.2em;
  justify-content: center;
  justify-self: end;
  margin-bottom: -1.2em;
  margin-right: 0;
  margin-top: 0;
  overflow: hidden;
  padding: 0;
  transition:
    color 0.1s,
    box-shadow 0.1s;
  width: 1.2em;
  z-index: 2;
}
.swal2-close:hover {
  background: transparent;
  color: #f27474;
  transform: none;
}
.swal2-close:focus {
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
  outline: none;
}
.swal2-close::-moz-focus-inner {
  border: 0;
}
.swal2-html-container {
  word-wrap: break-word;
  color: inherit;
  font-size: 1.125em;
  font-weight: 400;
  justify-content: center;
  line-height: normal;
  margin: 1em 1.6em 0.3em;
  overflow: auto;
  padding: 0;
  text-align: center;
  word-break: break-word;
  z-index: 1;
}
.swal2-checkbox,
.swal2-file,
.swal2-input,
.swal2-radio,
.swal2-select,
.swal2-textarea {
  margin: 1em 2em 3px;
}
.swal2-file,
.swal2-input,
.swal2-textarea {
  background: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.06),
    0 0 0 3px transparent;
  box-sizing: border-box;
  color: inherit;
  font-size: 1.125em;
  transition:
    border-color 0.1s,
    box-shadow 0.1s;
  width: auto;
}
.swal2-file.swal2-inputerror,
.swal2-input.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}
.swal2-file:focus,
.swal2-input:focus,
.swal2-textarea:focus {
  border: 1px solid #b4dbed;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.06),
    0 0 0 3px rgba(100, 150, 200, 0.5);
  outline: none;
}
.swal2-file::placeholder,
.swal2-input::placeholder,
.swal2-textarea::placeholder {
  color: #ccc;
}
.swal2-range {
  background: #fff;
  margin: 1em 2em 3px;
}
.swal2-range input {
  width: 80%;
}
.swal2-range output {
  color: inherit;
  font-weight: 600;
  text-align: center;
  width: 20%;
}
.swal2-range input,
.swal2-range output {
  font-size: 1.125em;
  height: 2.625em;
  line-height: 2.625em;
  padding: 0;
}
.swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}
.swal2-file {
  background: transparent;
  font-size: 1.125em;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}
.swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}
.swal2-select {
  background: transparent;
  color: inherit;
  font-size: 1.125em;
  max-width: 100%;
  min-width: 50%;
  padding: 0.375em 0.625em;
}
.swal2-checkbox,
.swal2-radio {
  align-items: center;
  background: #fff;
  color: inherit;
  justify-content: center;
}
.swal2-checkbox label,
.swal2-radio label {
  font-size: 1.125em;
  margin: 0 0.6em;
}
.swal2-checkbox input,
.swal2-radio input {
  flex-shrink: 0;
  margin: 0 0.4em;
}
.swal2-input-label {
  display: flex;
  justify-content: center;
  margin: 1em auto 0;
}
.swal2-validation-message {
  align-items: center;
  background: #f0f0f0;
  color: #666;
  font-size: 1em;
  font-weight: 300;
  justify-content: center;
  margin: 1em 0 0;
  overflow: hidden;
  padding: 0.625em;
}
.swal2-validation-message:before {
  background-color: #f27474;
  border-radius: 50%;
  color: #fff;
  content: "!";
  display: inline-block;
  font-weight: 600;
  height: 1.5em;
  line-height: 1.5em;
  margin: 0 0.625em;
  min-width: 1.5em;
  text-align: center;
  width: 1.5em;
}
.swal2-icon {
  border: 0.25em solid #000;
  border-radius: 50%;
  box-sizing: content-box;
  cursor: default;
  font-family: inherit;
  height: 5em;
  justify-content: center;
  line-height: 5em;
  margin: 2.5em auto 0.6em;
  position: relative;
  user-select: none;
  width: 5em;
}
.swal2-icon .swal2-icon-content {
  align-items: center;
  display: flex;
  font-size: 3.75em;
}
.swal2-icon.swal2-error {
  border-color: #f27474;
  color: #f27474;
}
.swal2-icon.swal2-error .swal2-x-mark {
  flex-grow: 1;
  position: relative;
}
.swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  background-color: #f27474;
  border-radius: 0.125em;
  display: block;
  height: 0.3125em;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
}
.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="left"] {
  left: 1.0625em;
  transform: rotate(45deg);
}
.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="right"] {
  right: 1em;
  transform: rotate(-45deg);
}
.swal2-icon.swal2-error.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
  animation: swal2-animate-error-x-mark 0.5s;
}
.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}
.swal2-icon.swal2-warning.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
.swal2-icon.swal2-warning.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark 0.5s;
}
.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}
.swal2-icon.swal2-info.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
.swal2-icon.swal2-info.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-i-mark 0.8s;
}
.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}
.swal2-icon.swal2-question.swal2-icon-show {
  animation: swal2-animate-error-icon 0.5s;
}
.swal2-icon.swal2-question.swal2-icon-show .swal2-icon-content {
  animation: swal2-animate-question-mark 0.8s;
}
.swal2-icon.swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}
.swal2-icon.swal2-success [class^="swal2-success-circular-line"] {
  border-radius: 50%;
  height: 7.5em;
  position: absolute;
  transform: rotate(45deg);
  width: 3.75em;
}
.swal2-icon.swal2-success
  [class^="swal2-success-circular-line"][class$="left"] {
  border-radius: 7.5em 0 0 7.5em;
  left: -2.0635em;
  top: -0.4375em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
}
.swal2-icon.swal2-success
  [class^="swal2-success-circular-line"][class$="right"] {
  border-radius: 0 7.5em 7.5em 0;
  left: 1.875em;
  top: -0.6875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
}
.swal2-icon.swal2-success .swal2-success-ring {
  border: 0.25em solid hsla(98, 55%, 69%, 0.3);
  border-radius: 50%;
  box-sizing: content-box;
  height: 100%;
  left: -0.25em;
  position: absolute;
  top: -0.25em;
  width: 100%;
  z-index: 2;
}
.swal2-icon.swal2-success .swal2-success-fix {
  height: 5.625em;
  left: 1.625em;
  position: absolute;
  top: 0.5em;
  transform: rotate(-45deg);
  width: 0.4375em;
  z-index: 1;
}
.swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: #a5dc86;
  border-radius: 0.125em;
  display: block;
  height: 0.3125em;
  position: absolute;
  z-index: 2;
}
.swal2-icon.swal2-success [class^="swal2-success-line"][class$="tip"] {
  left: 0.8125em;
  top: 2.875em;
  transform: rotate(45deg);
  width: 1.5625em;
}
.swal2-icon.swal2-success [class^="swal2-success-line"][class$="long"] {
  right: 0.5em;
  top: 2.375em;
  transform: rotate(-45deg);
  width: 2.9375em;
}
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
  animation: swal2-animate-success-line-tip 0.75s;
}
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
  animation: swal2-animate-success-line-long 0.75s;
}
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}
.swal2-progress-steps {
  align-items: center;
  background: transparent;
  flex-wrap: wrap;
  font-weight: 600;
  margin: 1.25em auto;
  max-width: 100%;
  padding: 0;
}
.swal2-progress-steps li {
  display: inline-block;
  position: relative;
}
.swal2-progress-steps .swal2-progress-step {
  background: #2778c4;
  border-radius: 2em;
  color: #fff;
  flex-shrink: 0;
  height: 2em;
  line-height: 2em;
  text-align: center;
  width: 2em;
  z-index: 20;
}
.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}
.swal2-progress-steps
  .swal2-progress-step.swal2-active-progress-step
  ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}
.swal2-progress-steps
  .swal2-progress-step.swal2-active-progress-step
  ~ .swal2-progress-step-line {
  background: #add8e6;
}
.swal2-progress-steps .swal2-progress-step-line {
  background: #2778c4;
  flex-shrink: 0;
  height: 0.4em;
  margin: 0 -1px;
  width: 2.5em;
  z-index: 10;
}
[class^="swal2"] {
  -webkit-tap-highlight-color: transparent;
}
.swal2-show {
  animation: swal2-show 0.3s;
}
.swal2-hide {
  animation: swal2-hide 0.15s forwards;
}
.swal2-noanimation {
  transition: none;
}
.swal2-scrollbar-measure {
  height: 50px;
  overflow: scroll;
  position: absolute;
  top: -9999px;
  width: 50px;
}
.swal2-rtl .swal2-close {
  margin-left: 0;
  margin-right: 0;
}
.swal2-rtl .swal2-timer-progress-bar {
  left: auto;
  right: 0;
}
@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotate(2deg);
  }
  33% {
    transform: translateY(0) rotate(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotate(2deg);
  }
  to {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes swal2-toast-hide {
  to {
    opacity: 0;
    transform: rotate(1deg);
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    left: 0.0625em;
    top: 0.5625em;
    width: 0;
  }
  54% {
    left: 0.125em;
    top: 0.125em;
    width: 0;
  }
  70% {
    left: -0.25em;
    top: 0.625em;
    width: 1.625em;
  }
  84% {
    left: 0.75em;
    top: 1.0625em;
    width: 0.5em;
  }
  to {
    left: 0.1875em;
    top: 1.125em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    right: 1.375em;
    top: 1.625em;
    width: 0;
  }
  65% {
    right: 0.9375em;
    top: 1.25em;
    width: 0;
  }
  84% {
    right: 0;
    top: 0.9375em;
    width: 1.125em;
  }
  to {
    right: 0.1875em;
    top: 0.9375em;
    width: 1.375em;
  }
}
@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}
@keyframes swal2-hide {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    left: 0.0625em;
    top: 1.1875em;
    width: 0;
  }
  54% {
    left: 0.125em;
    top: 1.0625em;
    width: 0;
  }
  70% {
    left: -0.375em;
    top: 2.1875em;
    width: 3.125em;
  }
  84% {
    left: 1.3125em;
    top: 3em;
    width: 1.0625em;
  }
  to {
    left: 0.8125em;
    top: 2.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    right: 2.875em;
    top: 3.375em;
    width: 0;
  }
  65% {
    right: 2.875em;
    top: 3.375em;
    width: 0;
  }
  84% {
    right: 0;
    top: 2.1875em;
    width: 3.4375em;
  }
  to {
    right: 0.5em;
    top: 2.375em;
    width: 2.9375em;
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  to {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    opacity: 0;
    transform: scale(0.4);
  }
  50% {
    margin-top: 1.625em;
    opacity: 0;
    transform: scale(0.4);
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  to {
    margin-top: 0;
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    opacity: 0;
    transform: rotateX(100deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-1turn);
  }
  to {
    transform: rotateY(0);
  }
}
@keyframes swal2-animate-i-mark {
  0% {
    opacity: 0;
    transform: rotate(45deg);
  }
  25% {
    opacity: 0.4;
    transform: rotate(-25deg);
  }
  50% {
    opacity: 0.8;
    transform: rotate(15deg);
  }
  75% {
    opacity: 1;
    transform: rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}
body.swal2-height-auto {
  height: auto !important;
}
body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}
body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}
body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)
    > [aria-hidden="true"] {
    display: none;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)
    .swal2-container {
    position: static !important;
  }
}
body.swal2-toast-shown .swal2-container {
  background-color: transparent;
  box-sizing: border-box;
  max-width: 100%;
  pointer-events: none;
  width: 360px;
}
body.swal2-toast-shown .swal2-container.swal2-top {
  bottom: auto;
  left: 50%;
  right: auto;
  top: 0;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
  bottom: auto;
  left: auto;
  right: 0;
  top: 0;
}
body.swal2-toast-shown .swal2-container.swal2-top-left,
body.swal2-toast-shown .swal2-container.swal2-top-start {
  bottom: auto;
  left: 0;
  right: auto;
  top: 0;
}
body.swal2-toast-shown .swal2-container.swal2-center-left,
body.swal2-toast-shown .swal2-container.swal2-center-start {
  bottom: auto;
  left: 0;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-center {
  bottom: auto;
  left: 50%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}
body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
  bottom: auto;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-left,
body.swal2-toast-shown .swal2-container.swal2-bottom-start {
  bottom: 0;
  left: 0;
  right: auto;
  top: auto;
}
body.swal2-toast-shown .swal2-container.swal2-bottom {
  bottom: 0;
  left: 50%;
  right: auto;
  top: auto;
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  bottom: 0;
  left: auto;
  right: 0;
  top: auto;
}
@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
  z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-css-mode > .swiper-wrapper {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none !important;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: 50%;
  display: inline-block;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
}
button.swiper-pagination-bullet {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    transform 0.2s,
    top 0.2s;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    transform 0.2s,
    left 0.2s;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    transform 0.2s,
    right 0.2s;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 4px;
  left: 0;
  top: 0;
  width: 100%;
}
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: 4px;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}
.swiper-scrollbar {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: 3px;
  height: 5px;
  left: 1%;
  position: absolute;
  width: 98%;
  z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  height: 98%;
  position: absolute;
  right: 3px;
  top: 1%;
  width: 5px;
  z-index: 50;
}
.swiper-scrollbar-drag {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
