@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Khula:wght@300;400;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karma:wght@500;700&display=swap');
/* ОСНОВНЫЕ СТИЛИ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Khula';
  color: #000;
  scroll-behavior: smooth;
}

.overflow {
  overflow: hidden;
}

.transparent {
  background-color: transparent !important;
}

.opacity {
  opacity: 0;
}

.screen_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.container {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  padding-top: 30px;
}

.languages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
}

.language_select {
  font-family: 'Karma';
  cursor: text;
  font-size: 13px;
  padding-inline: 5px;
  line-height: 1.2;
  cursor: pointer;
  color: #000;
  padding-top: 22px;
  border-radius: 4px;
  border: 1px solid black;
}
.language_select:first-child {
  background-image: url('../images/languages/en.png');
  background-size: 100% 20px;
  background-repeat: no-repeat;
}
.language_select:nth-child(2n) {
  background-image: url('../images/languages/gr.png');
  background-size: 100% 20px;
  background-repeat: no-repeat;
}
.language_select:nth-child(3n) {
  background-image: url('../images/languages/es.png');
  background-size: 100% 20px;
  background-repeat: no-repeat;
}
.language_select.active {
  color: red;
  border: 1px solid red;
}

.top_text {
  font-size: 20px;
  font-family: 'Karma';
  cursor: text;
  font-weight: 700;
}

.main_title {
  font-weight: 700;
  font-family: 'Karma';
  cursor: text;
  font-size: 40px;
  margin-top: 10px;
}

.mini-dog {
  max-width: 200px;
  margin: 0 auto;
}

.main_img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}
.main_img.mini {
  max-width: 177px;
}
.main_img.artist {
  max-height: 300px;
  -o-object-position: 50% 0;
  object-position: 50% 0;
}
.main_img.menu_img {
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  max-height: 228px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  height: 100%;
}
.main_img.menu_img.big {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 0%;
  object-position: 0% 0%;
}
.main_img.menu_img.costaki {
  max-width: 120px;
}
.main_img.menu_img.full {
  max-width: none;
  max-height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.video {
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.42);
}
.video.light-shadow {
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
}

.play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 0.2s;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  background-color: transparent;
  border: 0;
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.play_button.invisible {
  visibility: hidden;
  opacity: 0;
}
.play_button.move {
  animation: moveButton 1s ease-in-out infinite;
}
@keyframes moveButton {
  0% {
    margin-left: 0rem;
  }
  20% {
    margin-left: 0.5rem;
  }
  40% {
    margin-left: -0.5rem;
  }
  60% {
    margin-left: 0.5rem;
  }
  80% {
    margin-left: -0.5rem;
  }
  100% {
    margin-left: 0;
  }
}
.play_icon {
  background-color: transparent;
}

.z-5 {
  position: relative;
  z-index: 5;
}

.scroll_text {
  max-width: 300px;
  width: 100%;
  cursor: text;
  margin-top: 20px;
  transition: 0.2s ease-in-out;
  height: 100%;
  max-height: none;
  text-align: left;
  position: relative;
}
.scroll_text p {
  font-family: 'Khula';
  cursor: text;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  z-index: 2;
}
.scroll_text img {
  margin: 30px auto;
  max-width: 320px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.42);
}
.scroll_text img.play_icon {
  margin: 0;
  border-radius: 100px;
}
.scroll_text ul li {
  list-style: disc;
}
.scroll_text.hidden {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
  transition: 0.2s ease-in-out;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.scroll_text.hidden::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.81) 34.38%,
    rgba(255, 255, 255, 0.38) 158.18%
  );
  height: 60px;
  width: 100%;
}
.scroll_text.not-hidden::before {
  background: transparent;
}

.scroll_button_wrapper {
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.scroll_button {
  padding: 4px 25px;
  background-color: #fff;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Karma';
  cursor: text;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 50px;
  color: #000;
}

.mb-20 {
  margin-bottom: 20px;
}

.vertical_buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  gap: 20px;
  margin-top: 50px;
}
.vertical_buttons.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 90%;
}

.full_button {
  padding: 10px;
  font-family: 'Karma';
  cursor: text;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  border-radius: 10px;
  width: 100%;
  font-size: 20px;
  background-color: #fff;
  transition: background-color 0.2s;
  color: #000;
  text-decoration: none;
}

.error-animation {
  animation: shake 0.3s linear;
}

.error {
  background-color: rgb(217, 55, 55);
}
@keyframes shake {
  0% {
    background-color: rgb(217, 55, 55);
    margin-left: 0rem;
  }
  20% {
    margin-left: 1rem;
  }
  40% {
    margin-left: -1rem;
  }
  60% {
    margin-left: 1rem;
  }
  80% {
    margin-left: -1rem;
  }
  100% {
    margin-left: 0;
  }
}
.title {
  font-family: 'Karma';
  cursor: text;
  font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  font-size: 24px;
  max-width: 360px;
  border-radius: 10px;
  color: #000;
  text-decoration: none;
  width: 100%;
}
.title h2 {
  font-size: 36px;
}
.title.mini {
  font-size: 18px;
}

.follow_me_img {
  margin-top: 40px;
  max-width: 330px;
  width: 100%;
  transform: scaleX(-100%);
}

.img_with_dog {
  position: relative;
  max-width: 400px;
  width: 100%;
  z-index: 1;
  margin-top: 30px;
}

.image_with_dog {
  border-radius: 10px;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.42);
}

.dog_from_image {
  position: absolute;
  bottom: 20%;
  right: 0;
  z-index: 1;
  max-width: 130px;
  transform: translate(0, 50%);
}

.mt-150 {
  margin-top: 150px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-150 {
  padding-top: 150px;
}

.mt-20 {
  margin-top: 20px;
}

.buttons_wrapper {
  max-width: 500px;
  margin: 0 auto;
  padding: 15px 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.buttons_wrapper.game_buttons {
  background-color: transparent;
}
.buttons_wrapper.fixed_buttons {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}

.modal {
  height: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  opacity: 0;
  visibility: hidden;
}
.modal.open {
  overflow: visible;
  display: flex;
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal_inner {
  background-color: #fff;
  max-width: 300px;
  width: 100%;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  border-radius: 16px;
}

.modal_text {
  font-family: 'Karma';
  cursor: text;
}

.button_bottom {
  padding: 4px 25px;
  padding-top: 7px;
  border-radius: 50px;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  font-family: 'Karma';
  cursor: text;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #fff;
  -webkit-tap-highlight-color: transparent;
  transition: 0.1s;
  color: #000;
}
.button_bottom:active {
  background-color: #e6e6e6;
}

.menu_description {
  padding: 10px 20px;
  font-family: 'Karma';
  cursor: text;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  background-color: #f3f3f3;
  border-radius: 10px;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.42);
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.menu_title {
  font-family: 'Karma';
  cursor: text;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  font-size: 36px;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  margin-top: 33px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  justify-items: center;
  max-width: 400px;
  width: 100%;
  gap: 20px;
  margin-top: 50px;
}

.card {
  padding: 10px;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.42);
  border-radius: 10px;
  max-width: 170px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.card_image_wrapper {
  border-radius: 10px;
  max-width: 150px;
  width: 100%;
  max-height: 150px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.42);
  -o-object-fit: cover;
  object-fit: cover;
}

.card_img {
  -o-object-fit: cover;
  transform: scale(1.1);
  object-fit: cover;
}

.card_title {
  margin-top: 15px;
  font-family: 'Karma';
  cursor: text;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.card_author {
  color: #949393;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Khula';
  cursor: text;
  text-transform: capitalize;
}

.mah100vh {
  max-height: 100vh;
  height: 100vh;
}

.start_button_wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dog_bottom {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%);
  z-index: 0;
}
@media (max-height: 850px) {
  .dog_bottom {
    top: 6%;
  }
}
@media (max-height: 700px) {
  .dog_bottom {
    top: -10%;
  }
}

.start_button {
  position: relative;
  z-index: 3;
  font-family: 'Karma';
  cursor: text;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  font-weight: 500;
  font-size: 40px;
  text-align: center;
  padding: 20px;
  max-width: 270px;
  background-color: #fff;
  width: 100%;
  margin-top: 230px;
  border-radius: 20px;
}
@media (max-height: 850px) {
  .start_button {
    margin-top: 130px;
  }
}
@media (max-height: 700px) {
  .start_button {
    margin-top: 50px;
  }
}

.back_button {
  background-color: #fff;
  box-shadow: 0px 4px 25px 0px rgba(72, 72, 72, 0.25);
  padding: 15px 8px;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_with_game {
  position: relative;
  max-width: 200px;
  width: 100%;
  margin-bottom: 10px;
}
.img_with_game .menu_img {
  max-height: 120px;
}
.img_with_game.full {
  max-width: 350px;
}

.relative {
  position: relative;
}

.red-border {
  outline: 0.2rem solid red;
}

.maw-300 {
  max-width: 300px;
}

.game_link {
  position: absolute;
  top: -35px;
  right: -35px;
  z-index: 2;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.game_img {
  max-width: 100px;
  width: 100%;
}

.paint_title {
  font-family: 'Karma';
  cursor: text;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
  text-align: center;
}

.paint_author {
  color: #b1b1b1;
  font-family: 'Khula';
  cursor: text;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
}

.audio {
  max-width: 400px;
  width: 100%;
  margin-top: 10px;
}

.god_on_button_image {
  position: relative;
}

.dog_on_button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translate(0, -80%);
  max-width: 170px;
}

.swiper {
  width: 100%;
  min-height: 300px;
}

.my_button_prev {
  background-color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 520px;
  left: 0;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  z-index: 20;
}
.my_button_prev.lower {
  top: 560px;
}
.my_button_prev.low {
  top: auto;
  position: fixed;
  left: 20px;
  bottom: 200px !important;
}

.swiper-wrapper.mb-100 {
  margin-bottom: 200px !important;
}

.my_button_next {
  background-color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 520px;
  right: 0;
  background-image: url('../images/arrow.svg');
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
  cursor: pointer;
  z-index: 20;
}
.my_button_next.lower {
  top: 560px;
}
.my_button_next.low {
  top: auto;
  position: fixed;
  right: 20px;
  bottom: 200px !important;
}

.swiper-pagination {
  top: 540px !important;
  bottom: auto !important;
}
.swiper-pagination span {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #000;
  opacity: 1;
}
.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #000;
}
.swiper-pagination.lower {
  top: 580px !important;
}

.swiper_image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 100px;
  max-height: 380px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  top: 0;
}
.swiper_image.full {
  width: 100%;
}
.swiper_image.auto {
  width: auto;
}
.swiper_image.lower {
  margin-bottom: 150px;
}
.swiper_image.big {
  max-height: 250px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}

.swiper_card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swiper_card.full-h {
  min-height: 80vh;
}
.swiper_card .paint_title {
  position: absolute;
  bottom: 0;
}
.dog_right {
  max-width: 464px;
  width: 100%;
  transform: translate(50%, 0);
}

.kostaki-right {
  max-width: 464px;
  width: 100%;
}

.string {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.title_small_text {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.finger_animate {
  max-width: 50px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: fingerSwipe 7s ease-in-out infinite;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.finger_animate_touch {
  max-width: 50px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: fingerTouch 3s ease-in-out infinite;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.finger_animate_touch.center {
  left: 50%;
}
@keyframes fingerSwipe {
  0% {
    transform: translateX(0) translateY(0);
  }
  10% {
    transform: translateX(10%) translateY(5%);
  }
  20% {
    transform: translateX(20%) translateY(-10%);
  }
  30% {
    transform: translateX(0) translateY(-20%);
  }
  40% {
    transform: translateX(-15%) translateY(15%);
  }
  50% {
    transform: translateX(20%) translateY(5%);
  }
  60% {
    transform: translateX(-10%) translateY(-30%);
  }
  70% {
    transform: translateX(30%) translateY(-5%);
  }
  80% {
    transform: translateX(-20%) translateY(10%);
  }
  90% {
    transform: translateX(40%) translateY(20%);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes fingerTouch {
  0% {
    transform: scale(100%);
  }
  40% {
    transform: scale(100%);
  }
  50% {
    transform: scale(130%);
  }
  60% {
    transform: scale(80%);
  }
  100% {
    transform: scale(100%);
  }
}
.bravo-title {
  font-size: 16px !important;
  font-weight: 700;
}

.big_title {
  font-family: 'Karma';
  cursor: text;
  font-weight: 500;
  color: #000;
  font-size: 30px;
  margin-top: 10px;
  text-align: center;
}
.big_title.white {
  color: #fff;
}

.text-left {
  text-align: left;
}

.horizontal-revert {
  transform: scaleX(-1);
}

.result_image {
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.42);
  padding: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
}

.result_img {
  border-radius: 10px;
}

.center {
  -o-object-position: 50% 50% !important;
  object-position: 50% 50% !important;
}

.bg-zoom {
  background-image: url('../images/zoom.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.full-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.bg-city {
  background-image: url('../images/dynamic_city_time.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.mt-400 {
  margin-top: 400px;
}

.center-top {
  -o-object-position: 50% 35% !important;
  object-position: 50% 35% !important;
  height: 140px !important;
  max-height: 140px !important;
}

.center-top150 {
  -o-object-position: 50% 35% !important;
  object-position: 50% 35% !important;
  height: 150px !important;
  max-height: 150px !important;
}

.maw-300 {
  max-width: 300px;
}

button[data-vote='no'] {
  background-color: rgb(217, 129, 129);
}

button[data-vote='yes'] {
  background-color: rgb(136, 219, 145);
}

a[data-vote='yes'] {
  background-color: rgb(136, 219, 145);
}

.two_artists {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
  max-width: 300px;
  margin: 0 auto;
}

.two_artists_artist {
  max-width: 120px;
  width: 100%;
}

.swiper_artist_image {
  width: 100%;
  max-width: 120px;
  height: 100%;
  max-height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper_artists {
  max-width: 120px;
  min-height: 0;
  margin: 0;
}

.skobka {
  transform: rotate(90deg) translate(0, 10%);
  font-size: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  line-height: 1;
  margin-top: -30px;
}
.skobka p {
  text-align: center;
}

.ask_art {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  min-width: 100px;
  min-height: 100px;
  border: 3px solid black;
  border-radius: 6px;
  font-size: 60px;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  overflow: hidden;
}
.ask_art img {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.ask-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.dog_right_abs {
  position: absolute;
  right: -320px;
  top: -150px;
  z-index: 1;
  max-width: 400px;
}

.mini_airplane {
  max-width: 200px;
  align-self: flex-start;
  margin: 0;
}

.column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.virus_1 {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  max-width: 70px;
  transform: translate(0, -50%);
}

.dust_1 {
  position: absolute;
  max-width: 180px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  animation: dustSpray 1s ease-in-out infinite;
}
@keyframes dustSpray {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(100px, -50%);
  }
}
.double_images {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.walking_dog {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translate(-50%, 0);
  animation: walking-dog 8s linear infinite;
}
@keyframes walking-dog {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(-200%, 0);
  }
} /*# sourceMappingURL=style.min.css.map */
