@charset "UTF-8";
/* Base */
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comfortaa", cursive;
}

html,
body {
  background-color: var(--white);
  font-family: "Comfortaa", cursive;
  font-size: 28px;
  font-weight: 700;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--text-green);
  overflow-x: hidden;
  line-height: 150%;
  -webkit-text-stroke: 1px currentColor;
}
@media screen and (max-width: 768px) {
  html,
  body {
    -webkit-text-stroke: 0.5px currentColor;
  }
}

p {
  line-height: 150%;
  letter-spacing: 5%;
}
@media screen and (max-width: 1024px) {
  p {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  p {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  p {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: var(--text-green);
}

ul {
  list-style: none;
}

section {
  padding: 5% 15%;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 5% 10%;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 5% 10%;
  }
}

h1 {
  color: var(--text-blue);
  margin-bottom: 50px;
  width: 100%;
  font-weight: bold;
  -webkit-text-stroke: 2px currentColor;
  letter-spacing: 10%;
  line-height: 120%;
  font-size: 66px;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    -webkit-text-stroke: 1px currentColor;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
}

.section-title {
  font-size: 48px;
  color: var(--text-blue);
  margin-bottom: 50px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }
}

.btn-green {
  position: relative;
  background: var(--green);
  color: var(--white);
  border-radius: 25px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  padding: 16px 30px;
  display: inline-block;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 80px;
}
.btn-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: 10px;
  margin-left: 10px;
  background-image: url("../../public/base/glare.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
  z-index: 1;
}
.btn-green:hover {
  background: var(--yellow);
  scale: 1.1;
}
@media screen and (max-width: 768px) {
  .btn-green {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
    font-size: 20px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 480px) {
  .btn-green {
    width: 70%;
    font-size: 18px;
    padding: 5px 10px;
  }
}

.btn-yellow {
  position: relative;
  -webkit-text-stroke: 1px currentColor;
  background: var(--yellow);
  color: var(--white);
  border-radius: 25px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  padding: 16px 30px;
  display: inline-block;
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 80px;
}
.btn-yellow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: 10px;
  margin-left: 10px;
  background-image: url("../../public/base/glare.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
  z-index: 1;
}
.btn-yellow:hover {
  background: var(--dark-purple);
  scale: 1.1;
}
@media screen and (max-width: 768px) {
  .btn-yellow {
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
    font-size: 20px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 480px) {
  .btn-yellow {
    width: 70%;
    font-size: 18px;
    padding: 5px 10px;
  }
}

.yellow {
  color: var(--yellow);
}

.red {
  color: var(--red);
}

.green {
  color: var(--green);
}

.pink {
  color: var(--pink);
}

.purple {
  color: var(--dark-purple);
}

.blue {
  color: var(--text-blue);
}

.header-main header {
  background: var(--background);
}

:root {
  --green: #22C55E;
  --light-green: #DDFAE8;
  --text-green: #1A9849;
  --text-blue: #3D87FF;
  --blue: #70CEFF;
  --light-blue: #D7F1FF;
  --yellow: #FFBD4D;
  --dark-purple: #8B5CF6;
  --light-purple: #c7b4f1;
  --light-blue: #D7F1FF;
  --light-yellow: #FFEFD3;
  --light-red: #FFE5E5;
  --white: #fff;
  --background: #f7fcff;
  --red: #E9593E;
  --pink: #FFADAD;
  --text-gray: #4C4C4C;
}

.header {
  padding: 20px 170px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
}
.header__logo img {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}
.header__logo img:hover {
  transform: scale(1.1);
}
.header .nav {
  display: flex;
  padding: 0px 70px;
}
.header .menu {
  display: flex;
  list-style: none;
  gap: 8vw;
}
.header .menu__item a {
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}
.header .menu__item a:hover {
  transform: scale(1.2);
}
.header .burger {
  display: none;
  position: relative;
  z-index: 1000;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}
.header .burger span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: var(--text-green);
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--text-green);
  transition: all 0.3s ease;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  bottom: 0;
}
.header .burger.active span {
  transform: scale(0);
}
.header .burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.header .burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 10px 100px;
  }
  .header .burger {
    display: flex;
  }
  .header .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow-y: auto;
    padding: 50px 40px;
    background-color: var(--white);
    animation: burgerMenu 0.4s;
    text-align: center;
    justify-content: center;
    gap: 150px;
  }
  .header .nav.open {
    display: flex !important;
  }
  .header .menu {
    flex-direction: column;
  }
  @keyframes burgerMenu {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px 50px;
  }
  .header__logo img {
    max-width: 180px;
  }
}
@media screen and (max-width: 468px) {
  .header {
    padding: 10px 50px;
  }
  .header__logo img {
    max-width: 150px;
  }
}

footer {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 60px 0px;
  font-size: 24px;
  text-align: center;
  z-index: 1000;
}
footer p {
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  footer {
    font-size: 18px;
  }
}
@media screen and (max-width: 468px) {
  footer {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  footer {
    font-size: 14px;
  }
}

.soon__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  gap: 50px;
}
.soon__content {
  width: 100%;
}
.soon__content h1 {
  width: 100%;
}
.soon__content-btn {
  width: 70%;
}
.soon .btn-yellow {
  margin-top: 30px;
}
.soon__image {
  display: flex;
  align-items: center;
  width: 80%;
}
.soon__image img {
  margin: auto 0;
  position: absolute;
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .soon__wrapper {
    flex-direction: column;
  }
  .soon__content {
    margin: 0 auto;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .soon__image {
    justify-content: center;
  }
  .soon__image img {
    position: sticky;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .soon .btn-green {
    margin-top: 50px;
    max-width: none;
    width: 90%;
  }
  .soon .btn-yellow {
    max-width: none;
    width: 90%;
  }
}

section.soon {
  padding: 5% 11%;
}

.error__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  gap: 50px;
}
.error__content {
  width: 100%;
}
.error__content h1 {
  width: 100%;
}
.error__content-btn {
  width: 70%;
}
.error__content p {
  width: 90%;
}
.error .btn-yellow {
  margin-top: 30px;
}
.error__image {
  display: flex;
  align-items: center;
  width: 90%;
}
.error__image img {
  margin: auto 0;
  position: absolute;
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .error__wrapper {
    flex-direction: column;
  }
  .error__content {
    margin: 0 auto;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .error__image {
    justify-content: center;
  }
  .error__image img {
    position: sticky;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .error .btn-green {
    margin-top: 50px;
    max-width: none;
    width: 90%;
  }
  .error .btn-yellow {
    max-width: none;
    width: 90%;
  }
}

section.error {
  padding: 8% 11%;
}

.letter {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  display: flex;
}
.letter-title {
  margin: 0 auto;
}
.letter-text span {
  font-size: 40px;
}
.letter-btn {
  display: flex;
  gap: 5%;
}
.letter-image {
  width: 100%;
}
.letter-image img {
  width: 60%;
}
.letter-yellow {
  color: var(--yellow);
}
.letter-blue {
  color: var(--text-blue);
}
.letter .btn-green,
.letter .btn-yellow {
  margin: 20px auto;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .letter-image img {
    width: 90%;
  }
  .letter-text span {
    font-size: 32px;
  }
}
@media screen and (max-width: 980px) {
  .letter-btn {
    flex-direction: column;
  }
  .letter .btn-green,
  .letter .btn-yellow {
    width: 90%;
  }
  .letter .btn-yellow {
    order: 1;
  }
  .letter .btn-green {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .letter {
    gap: 30px;
  }
  .letter .btn-green,
  .letter .btn-yellow {
    max-width: none;
  }
  .letter-text span {
    font-size: 26px;
  }
}

section.letter {
  padding-top: 2%;
}

.end {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  -webkit-text-stroke: 1px currentColor;
  display: flex;
}
.end-title {
  margin: 0 auto;
}
.end-text span {
  font-size: 40px;
}
.end-btn {
  display: flex;
  gap: 5%;
}
.end .btn-green,
.end .btn-yellow {
  margin: 20px auto;
  width: 30%;
}
.end-image {
  width: 100%;
}
.end-image img {
  width: 40%;
}
@media screen and (max-width: 1200px) {
  .end .btn-green,
  .end .btn-yellow {
    width: 70%;
  }
  .end-image img {
    width: 60%;
  }
}
@media screen and (max-width: 980px) {
  .end-btn {
    flex-direction: column;
  }
  .end .btn-green,
  .end .btn-yellow {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .end {
    gap: 30px;
  }
  .end .btn-green,
  .end .btn-yellow {
    max-width: none;
  }
  .end-text span {
    font-size: 26px;
  }
}
@media screen and (max-width: 576px) {
  .end-image img {
    width: 75%;
  }
}

#confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.rewards h2 {
  color: var(--text-green);
  line-height: 150%;
}
.rewards .action {
  display: none;
  position: relative;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.rewards .action h2 {
  width: 80%;
  text-align: center;
  margin: 0 auto 50px auto;
}
.rewards .action__wrapper {
  width: 100%;
  padding: 90px 0px;
}
.rewards .action__picture {
  position: absolute;
  width: 100%;
}
.rewards .action__picture-img {
  bottom: 0;
  width: auto;
  height: auto;
  transition: transform 0.2s;
  margin-top: 50px;
}
.rewards .action__picture-img:nth-child(1) {
  left: -10px;
  top: 50px;
  right: auto;
  transform: rotate(50deg);
}
.rewards .action__picture-img:nth-child(2) {
  top: 30px;
  right: -10px;
  left: auto;
  transform: rotate(-70deg) scaleX(-1);
}
.rewards .action .btn-yellow {
  margin: 50px auto;
  z-index: 100;
}
.rewards__wrapper {
  display: block;
  position: relative;
}
.rewards__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
.rewards__item img {
  transition: all 0.3s ease;
  width: 90%;
}
.rewards__item img:hover {
  scale: 1.2;
}
.rewards__image {
  display: flex;
  justify-content: left;
  margin-top: 100px;
}
.rewards__image img {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .rewards .action {
    width: 100%;
  }
}
@media screen and (max-width: 890px) {
  .rewards .action__wrapper {
    padding: 50px 0px;
  }
  .rewards .action .btn-yellow {
    margin: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .rewards .action {
    padding: 0;
  }
  .rewards .action__picture img {
    max-height: 150px;
  }
  .rewards__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .rewards__item img {
    width: 100%;
  }
  .rewards__image img {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .rewards .action h2 {
    margin: 0 auto 20px auto;
  }
  .rewards .action__picture img {
    max-height: 120px;
  }
  .rewards .action .btn-yellow {
    width: 80%;
  }
  .rewards__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .rewards__image img {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .rewards .action .btn-yellow {
    width: 70%;
  }
  .rewards .action__picture-img:nth-child(2) {
    top: 0px;
  }
  .rewards .action__picture-img:nth-child(1) {
    top: 0px;
  }
  .rewards .action .btn-yellow {
    top: 20px;
  }
  .rewards__image img {
    width: 90%;
  }
}

/* Blocks */
.welcome {
  padding: 50px 60px 0px 60px;
  background-color: var(--background);
}
.welcome__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 0;
}
.welcome__content {
  position: relative;
  width: 60%;
  padding-left: 10%;
  z-index: 2;
  margin-top: 50px;
}
.welcome__content p {
  width: 90%;
}
.welcome__content h1 {
  width: 100%;
}
.welcome__picture {
  position: relative;
  width: 40%;
  margin-left: auto;
  margin-bottom: auto;
  z-index: 1;
  top: 10vw;
}
.welcome__picture img {
  width: 100%;
  height: auto;
  display: block;
}
.welcome__picture .letter-group {
  position: absolute;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
}
.welcome__picture .letter-group.swapping {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.welcome__picture .letter-group .letter {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
  cursor: none;
}
.welcome__picture .letter-group .light {
  position: absolute;
  width: 300%;
  height: 300%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  animation: blink 4s ease infinite;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: none;
}
.welcome__picture .letter-group--a {
  top: 10%;
  left: -30px;
  cursor: none;
}
.welcome__picture .letter-group--b {
  top: -15%;
  left: 35%;
}
.welcome__picture .letter-group--c {
  right: 50px;
  top: -20%;
  cursor: none;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.welcome .btn-green {
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .welcome {
    padding: 40px 40px 0px 40px;
  }
  .welcome__content {
    padding-left: 5%;
    margin-top: 30px;
  }
  .welcome__picture {
    width: 45%;
    top: 8vw;
  }
  .welcome__picture .letter-group {
    width: 70px;
    height: 70px;
  }
  .welcome__picture .letter-group .light {
    width: 280%;
    height: 280%;
  }
  .welcome__picture .letter-group .letter {
    width: 70%;
  }
  .welcome__picture .letter-group--a {
    left: -20px;
  }
  .welcome__picture .letter-group--a .letter--a {
    width: 90%;
  }
  .welcome__picture .letter-group--b {
    left: 30%;
  }
  .welcome__picture .letter-group--c {
    right: 30px;
  }
}
@media screen and (max-width: 920px) {
  .welcome {
    padding: 30px 20px 0px 20px;
  }
  .welcome__wrapper {
    flex-direction: column; /* Ставим в колонку */
    align-items: center;
    gap: 30px;
  }
  .welcome__content {
    width: 100%;
    padding-left: 0;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 80px;
  }
  .welcome__content h1 {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .welcome__content p {
    width: 70%;
    line-height: 150%;
    margin: 0px auto;
    margin-bottom: 50px;
  }
  .welcome__picture {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    top: 0; /* Убираем смещение */
  }
  .welcome__picture .letter-group {
    width: 60px;
    height: 60px;
  }
  .welcome__picture .letter-group .light {
    width: 250%;
    height: 250%;
  }
  .welcome__picture .letter-group .letter {
    width: 100%;
  }
  .welcome__picture .letter-group--a {
    top: 5%;
    left: -15px;
  }
  .welcome__picture .letter-group--b {
    top: -10%;
    left: 30%;
  }
  .welcome__picture .letter-group--c {
    right: 20px;
    top: -12%;
  }
  .welcome .btn-green {
    margin-top: 0px;
  }
}
@media screen and (max-width: 480px) {
  .welcome {
    padding: 20px 15px 0px 15px;
  }
  .welcome__content {
    width: 100%;
  }
  .welcome__content h1 {
    line-height: normal;
    width: 100%;
  }
  .welcome__content p {
    width: 90%;
  }
  .welcome__picture {
    width: 85%;
  }
  .welcome__picture .letter-group {
    width: 50px;
    height: 50px;
  }
  .welcome__picture .letter-group .light {
    width: 250%;
    height: 250%;
  }
  .welcome__picture .letter-group--a {
    left: -10px;
  }
  .welcome__picture .letter-group--b {
    left: 35%;
  }
  .welcome__picture .letter-group--c {
    right: 10px;
  }
}
@media screen and (max-width: 375px) {
  .welcome__picture .letter-group .letter {
    width: 60%;
  }
  .welcome__wrapper {
    gap: 0px;
  }
}
.work__cards {
  display: flex;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 50px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.work__card {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 60px 10px 40px 10px;
  width: 400px;
  border-radius: 30px;
  box-sizing: border-box;
  flex: none;
  scroll-snap-align: start;
}
.work__card-image img {
  width: clamp(80px, 15vw, 150px);
  height: auto;
  margin: 0 auto;
}
.work__card-title {
  font-size: 32px;
  margin: 20px auto;
  width: 80%;
}
.work__card-text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.work__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin-top: 20px;
  margin-left: 20px;
  background-image: url("../../public/base/glare.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
  z-index: 1;
}
.work .blue {
  background: var(--blue);
}
.work .green {
  background: var(--green);
}
.work .purple {
  background: var(--light-purple);
}
.work .orange {
  background: var(--yellow);
}
@media (max-width: 1200px) {
  .work__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 30px;
  }
}
@media (max-width: 1024px) {
  .work__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }
  .work__card {
    padding: 50px 8px 30px 8px;
    width: 50%;
  }
  .work__card-title {
    font-size: 28px;
    width: 100%;
  }
  .work__card-text {
    padding-bottom: 25px;
    align-items: baseline;
    width: auto;
  }
  .work__card::before {
    width: 35px;
    height: 35px;
    margin-top: 15px;
    margin-left: 15px;
  }
}
@media (max-width: 768px) {
  .work__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }
  .work__card {
    padding: 45px 6px 25px 6px;
  }
  .work__card-image img {
    width: clamp(70px, 12vw, 120px);
  }
  .work__card-title {
    font-size: 24px;
    line-height: normal;
  }
  .work__card-text {
    font-size: 18px;
    padding: 0px 10px 20px 10px;
  }
  .work__card::before {
    width: 30px;
    height: 30px;
    margin-top: 12px;
    margin-left: 12px;
  }
}
@media (max-width: 576px) {
  .work__cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
  .work__card {
    padding: 40px 5px 20px 5px;
    width: 60%;
    margin: 0 auto;
  }
  .work__card-image img {
    width: clamp(60px, 30vw, 100px);
  }
  .work__card-title {
    font-size: 22px;
    margin: 12px auto;
  }
  .work__card-text {
    padding-bottom: 15px;
  }
  .work__card::before {
    width: 25px;
    height: 25px;
    margin-top: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 480px) {
  .work__card {
    width: 80%;
  }
}
@media (max-width: 375px) {
  .work__card {
    width: 100%;
  }
  .work__card-title {
    font-size: 20px;
  }
}

.about {
  background: var(--background);
  padding: 30px 0;
  width: 100%;
}
.about__picture {
  scale: 1.1;
}
.about__wrapper {
  position: relative;
  align-items: flex-end;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 6vw;
  text-align: center;
}
.about__content {
  background: var(--white);
  border: 5px solid var(--blue);
  border-radius: 30px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  width: 40%;
  min-height: 60vh;
}
@media (max-width: 1200px) {
  .about__wrapper {
    gap: 4vw;
    padding: 0 30px;
  }
  .about__content {
    width: 45%;
    min-height: 50vh;
    padding: 25px 35px;
  }
  .about__content .about__text {
    line-height: 1.5;
  }
  .about__picture {
    scale: 1;
  }
  .about__picture img {
    max-width: 450px;
  }
}
@media (max-width: 992px) {
  .about__wrapper {
    gap: 30px;
    align-items: center;
    flex-direction: column-reverse;
  }
  .about__content {
    width: 80%;
    min-height: auto;
    padding: 30px;
  }
  .about__content .about__text {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
  .about__picture {
    margin-top: 20px;
  }
  .about__picture img {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
  .about__wrapper {
    gap: 20px;
  }
  .about__content {
    width: 90%;
    padding: 25px 20px;
    gap: 25px;
  }
  .about__content .about__text {
    font-size: 18px;
  }
  .about__picture img {
    max-width: 350px;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 30px 0;
  }
  .about__wrapper {
    gap: 15px;
  }
  .about__content {
    width: 95%;
    padding: 20px 15px;
    gap: 20px;
  }
  .about__picture img {
    max-width: 280px;
  }
}
@media (max-width: 375px) {
  .about__content {
    padding: 15px 12px;
  }
  .about__picture img {
    max-width: 240px;
  }
}

.action__wrapper {
  background: #97d8ff;
  background: linear-gradient(90deg, rgb(151, 216, 255) 0%, rgb(102, 160, 255) 100%);
  padding: 90px 50px 0px 50px;
  border-radius: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  color: var(--white);
  margin: 0 auto;
}
.action__wrapper h2 {
  color: var(--white);
  line-height: 150%;
}
.action__wrapper .btn-yellow {
  width: 50%;
  margin: 80px auto;
}
.action__picture {
  position: relative;
  flex: 1;
  min-height: 200px;
}
.action__picture img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1200px) {
  .action__wrapper {
    width: 85%;
    padding: 80px 40px 0px 40px;
  }
  .action__picture img {
    max-height: 280px;
  }
}
@media (max-width: 992px) {
  .action__wrapper {
    width: 90%;
    padding: 70px 30px 0px 30px;
    min-height: 450px;
  }
  .action__wrapper .btn-yellow {
    margin: 50px auto;
  }
  .action__picture img {
    max-height: 250px;
  }
}
@media (max-width: 768px) {
  .action {
    padding: 30px 15px;
  }
  .action .section-title {
    margin-bottom: 25px;
  }
  .action__wrapper {
    width: 95%;
    padding: 60px 25px 0px 25px;
    min-height: 400px;
  }
  .action__wrapper .btn-yellow {
    margin: 40px auto;
  }
  .action__text {
    font-size: 18px;
  }
  .action__picture {
    min-height: 180px;
  }
  .action__picture img {
    max-height: 200px;
  }
}
@media (max-width: 576px) {
  .action {
    padding: 20px 10px;
  }
  .action__wrapper {
    width: 100%;
    padding: 50px 20px 0px 20px;
    border-radius: 20px;
    min-height: 350px;
  }
  .action__wrapper h2 {
    font-size: 28px;
  }
  .action__wrapper .btn-yellow {
    margin: 30px auto;
  }
  .action__picture {
    min-height: 150px;
    margin-top: 20px;
  }
  .action__picture img {
    max-height: 150px;
  }
}
@media (max-width: 375px) {
  .action__wrapper {
    padding: 40px 15px 0px 15px;
    min-height: 300px;
  }
  .action__wrapper h2 {
    font-size: 24px;
  }
  .action__wrapper .btn-yellow {
    margin: 25px auto;
    min-width: 200px;
  }
  .action__picture {
    min-height: 120px;
  }
  .action__picture img {
    max-height: 120px;
  }
}

.alphabet .sounds__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 80px auto;
  gap: 50px;
}
.alphabet .sounds__card {
  border: 5px solid var(--yellow);
  border-radius: 20px;
  padding: 30px 15px;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alphabet .sounds .purple {
  border-color: var(--dark-purple);
}
.alphabet .sounds .blue {
  border-color: var(--text-blue);
}
.alphabet__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto;
  text-align: center;
  gap: 40px;
}
.alphabet__letter {
  position: relative;
  padding: 30px;
  color: var(--white);
  background: var(--blue);
  border-radius: 20px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 13px 0px rgba(34, 60, 80, 0.2);
  font-size: 52px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
  -webkit-text-stroke: 1px currentColor;
}
.alphabet__letter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  margin-top: 10px;
  margin-left: 10px;
  background-image: url("../../public/base/glare.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
  z-index: 2;
}
.alphabet__letter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../../public/base/paw.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.alphabet__letter:hover::after {
  opacity: 1;
}
.alphabet__letter:hover {
  transform: scale(1.1);
}
.alphabet__letter--yellow {
  background: var(--yellow);
}
.alphabet__letter--purple {
  background: var(--dark-purple);
}
@media (max-width: 1200px) {
  .alphabet__wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  .alphabet__letter p {
    margin: 0 auto;
    font-size: 52px;
  }
  .alphabet .sounds__cards {
    gap: 0px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .alphabet .sounds__card {
    width: 230px;
    height: 230px;
    font-size: 20px;
    padding: 10px;
    margin: 20px;
    flex: none;
    scroll-snap-align: start;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .alphabet__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .alphabet__letter p {
    font-size: 46px;
  }
  .alphabet .sounds__cards {
    margin: 40px auto;
  }
  .alphabet .sounds__card {
    width: 210px;
    height: 210px;
    padding: 25px 15px;
  }
  .alphabet .sounds__card img {
    width: 80px;
  }
}
@media (max-width: 576px) {
  .alphabet__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .alphabet__letter {
    margin: 0px auto;
  }
  .alphabet__letter::before {
    width: 20px;
    height: 20px;
  }
  .alphabet .sounds__card {
    width: 210px;
    height: 210px;
  }
}

/* Letters */
.drag-a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 200px;
}
.drag-a__items {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin: 50px auto;
  gap: 20px;
}
.drag-a__items .word-container {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drag-a__items .word-container img {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}
.drag-a #letter-A {
  position: absolute;
  bottom: 50px;
  transform: none;
  padding: 30px;
  color: var(--white);
  background: var(--yellow);
  border-radius: 20px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 13px 0px rgba(34, 60, 80, 0.2);
  font-size: 52px;
  cursor: pointer;
  overflow: hidden;
  z-index: 100;
  transition: transform 0.3s ease;
  -webkit-text-stroke: 1px currentColor;
  transition: none;
}
.drag-a #letter-A::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  margin-top: 10px;
  margin-left: 10px;
  background-image: url("../../public/base/glare.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
  z-index: 2;
}
.drag-a__hint {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: var(--text-green);
  margin: 0;
  white-space: nowrap;
  z-index: 90;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.drag-a .btn-yellow {
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .drag-a #letter-A {
    width: 120px;
    height: 120px;
  }
  .drag-a #letter-A::before {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .drag-a__items {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    margin: 30px auto;
  }
  .drag-a .word-container {
    flex: none;
    scroll-snap-align: start;
    text-align: center;
    width: 50%;
  }
  .drag-a #letter-A {
    font-size: 40px;
    width: 100px;
    height: 100px;
  }
  .drag-a h1 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .drag-a .word-container {
    width: 70%;
  }
}

section.letter-btn {
  padding-top: 1%;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 980px) {
  section.letter-btn .btn-yellow {
    order: 1;
  }
  section.letter-btn .btn-green {
    order: 2;
  }
}

.letter-btn a {
  margin: 20px auto;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .letter-btn a {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .letter-btn a {
    max-width: none;
  }
}

.click-a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 200px;
}
.click-a__desc {
  color: var(--text-blue);
  margin: 30px 0px 50px 0;
}
.click-a__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-items: center;
  align-items: center;
}
.click-a__images img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  padding: 20px;
}
.click-a__images img:nth-child(even) {
  width: 80%;
}
.click-a__images img:hover {
  scale: 1.2;
}
.click-a .click-a__images img.correct-click {
  border: 5px solid var(--green);
  border-radius: 20px;
  box-shadow: 0 0 20px var(--green);
  opacity: 0.9;
  animation: correct 0.5s ease;
}
.click-a .click-a__images img.wrong-click {
  border: 5px solid red;
  border-radius: 20px;
  box-shadow: 0 0 20px red;
  opacity: 0.9;
  animation: shake 0.4s ease;
}
@keyframes correct {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-15px);
  }
  75% {
    transform: translateX(15px);
  }
}
@media screen and (max-width: 1200px) {
  .click-a__images {
    gap: 20px;
  }
  .click-a__images img {
    padding: 5px;
  }
  .click-a__images:nth-child(even) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .click-a__images {
    grid-template-columns: repeat(2, 1fr);
  }
  .click-a h1 {
    margin-bottom: 30px;
  }
}

section.click-a {
  padding-bottom: 20px;
}

.drag-b {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}
.drag-b__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px;
  gap: 20px;
}
.drag-b__items img {
  width: 80%;
  height: auto;
  transition: all 0.3s ease;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.drag-b__items img:hover {
  scale: 1.1;
}
.drag-b__items img.correct {
  box-shadow: 0 0 25px 5px var(--green);
}
.drag-b__items img.done {
  box-shadow: 0 0 20px 3px var(--green);
  opacity: 0.9;
}
.drag-b__items img.wrong {
  animation: wrong 0.5s ease;
  box-shadow: 0 0 25px 5px red;
}
.drag-b__butterfly {
  margin-top: 20px;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.drag-b__butterfly img {
  width: 200px;
  height: auto;
  transition: all 0.2s ease;
  cursor: grab;
  animation: butterfly 2s ease infinite;
}
.drag-b__butterfly img.dragging {
  position: absolute;
  cursor: grabbing;
  z-index: 1000;
  transition: none;
}
@media screen and (max-width: 1200px) {
  .drag-b__butterfly {
    margin-top: 0px;
    height: 150px;
  }
  .drag-b__butterfly img {
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .drag-b__items {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0px;
    padding: 50px;
  }
  .drag-b__items img {
    flex: none;
    scroll-snap-align: start;
    width: 40%;
    text-align: center;
  }
  .drag-b h1 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  .drag-b__items img {
    width: 55%;
  }
  .drag-b__butterfly {
    margin-top: 0px;
    height: 130px;
  }
  .drag-b__butterfly img {
    width: 120px;
    height: auto;
  }
}

@keyframes wrong {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-12px);
  }
  40% {
    transform: translateX(12px);
  }
  60% {
    transform: translateX(-8px);
  }
  80% {
    transform: translateX(8px);
  }
}
@keyframes butterfly {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
section.drag-b {
  padding-bottom: 1%;
}

.click-b {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding-bottom: 200px;
}
.click-b__counter {
  color: var(--text-blue);
  font-size: 20px;
  margin: 30px 0px;
  margin-left: 20px;
}
.click-b__counter span {
  color: var(--yellow);
}
.click-b__items {
  margin: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  -webkit-text-stroke: 2px currentColor;
}
.click-b__word {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 24px 50px;
  border: 5px dashed var(--text-blue);
  border-radius: 10px;
  font-size: 50px;
  background-color: var(--light-blue);
  color: var(--text-blue);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.click-b__word:hover {
  scale: 1.1;
}
.click-b__word span {
  font-size: 60px;
}
.click-b__word.shifted {
  left: 100px;
}
.click-b__word--yellow {
  color: var(--yellow);
  background: var(--light-yellow);
  border: 5px dashed var(--yellow);
}
.click-b__word--purple {
  color: var(--dark-purple);
  background: #ccbaf3;
  border: 5px dashed var(--dark-purple);
}
.click-b__word.correct {
  color: var(--text-green);
  background: var(--light-green);
  border: 5px dashed var(--text-green);
  animation: correct 0.5s ease;
}
.click-b__word.wrong {
  color: red;
  background: rgb(248, 176, 176);
  border: 5px dashed red;
  animation: wrong 0.5s ease;
}
@keyframes wrong {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-12px);
  }
  40% {
    transform: translateX(12px);
  }
  60% {
    transform: translateX(-8px);
  }
  80% {
    transform: translateX(8px);
  }
}
@keyframes correct {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@media screen and (max-width: 1200px) {
  .click-b__items {
    gap: 50px;
  }
  .click-b__word {
    font-size: 40px;
  }
  .click-b__word span {
    font-size: 50px;
  }
  .click-b__word.shifted {
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .click-b__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .click-b__items {
    margin: 30px;
  }
  .click-b h1 {
    margin-bottom: 30px;
  }
  .click-b__word {
    font-size: 36px;
    padding: 14px 25px;
    gap: 5px;
  }
  .click-b__word span {
    font-size: 42px;
  }
}
@media screen and (max-width: 576px) {
  .click-b__items {
    gap: 30px;
    margin: 20px;
  }
}
@media screen and (max-width: 480px) {
  .click-b__items {
    display: flex;
    flex-direction: column;
  }
  .click-b__word {
    font-size: 40px;
    padding: 18px 30px;
    gap: 10px;
  }
  .click-b__word span {
    font-size: 46px;
  }
}

section.click-b {
  padding-bottom: 20px;
}

.quiz__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.quiz__content {
  width: 60%;
}
.quiz__content h1 {
  color: var(--text-green);
}
.quiz__text {
  margin-bottom: 30px;
}
.quiz__items .wrong {
  color: red;
  background: rgb(248, 176, 176);
  border: 5px dashed red;
  animation: wrong 0.5s ease;
}
.quiz__items .correct {
  color: var(--text-green);
  background: var(--light-green);
  border: 5px dashed var(--text-green);
  animation: correct 0.5s ease;
}
.quiz__item {
  color: var(--text-blue);
  font-size: 46px;
  background: var(--light-blue);
  width: 80%;
  text-align: center;
  padding: 15px 0px;
  border: 5px dashed var(--text-blue);
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.quiz__item:hover {
  scale: 1.1;
}
.quiz__image {
  display: flex;
  align-items: center;
  width: 90%;
}
.quiz__image img {
  margin: auto 0;
  position: absolute;
  width: 55%;
  margin-left: 30px;
}
@keyframes wrong {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-12px);
  }
  40% {
    transform: translateX(12px);
  }
  60% {
    transform: translateX(-8px);
  }
  80% {
    transform: translateX(8px);
  }
}
@keyframes correct {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@media screen and (max-width: 980px) {
  .quiz__container {
    flex-direction: column;
    text-align: center;
  }
  .quiz__items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .quiz__image {
    justify-content: center;
    width: 100%;
  }
  .quiz__image img {
    position: static;
    width: 70%;
  }
  .quiz__content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .quiz__content h1 {
    margin-bottom: 30px;
  }
  .quiz__item {
    font-size: 40px;
  }
  .quiz__text span {
    border-bottom: 2px solid var(--text-blue);
  }
}
@media screen and (max-width: 576px) {
  .quiz__image img {
    width: 100%;
  }
  .quiz__item {
    width: 90%;
    padding: 10px 0px;
  }
}
@media screen and (max-width: 480px) {
  .quiz__item {
    font-size: 26px;
    border: 3px dashed var(--text-blue);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  .quiz h1 {
    font-size: 26px;
  }
  .quiz__item {
    font-size: 22px;
  }
}

.click-d {
  text-align: center;
}
.click-d h1 {
  width: 100%;
}
.click-d__items {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin: 50px auto;
  width: 90%;
}
.click-d__items img {
  transition: all 0.3s ease;
  padding: 10px;
}
.click-d__items img:hover {
  scale: 1.1;
}
.click-d__items img.correct {
  box-shadow: 0 0 25px 5px var(--green);
  border-radius: 15px;
  animation: correct 0.5s ease;
}
.click-d__items img.wrong {
  animation: wrong 0.5s ease;
  box-shadow: 0 0 25px 5px red;
  border-radius: 15px;
}
@keyframes wrong {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-12px);
  }
  50% {
    transform: translateX(12px);
  }
  75% {
    transform: translateX(-6px);
  }
}
@keyframes correct {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@media screen and (max-width: 1200px) {
  .click-d__items {
    gap: 30px;
    width: 100%;
  }
  .click-d__items img {
    width: 30%;
    height: 30%;
  }
}
@media screen and (max-width: 768px) {
  .click-d h1 {
    margin-bottom: 30px;
  }
  .click-d__items {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 50px;
    margin: 30px 0px;
  }
  .click-d__items img {
    flex: none;
    scroll-snap-align: start;
    text-align: center;
    width: 40%;
    height: 40%;
  }
}
@media screen and (max-width: 576px) {
  .click-d__items img {
    width: 50%;
    height: 50%;
  }
}
@media screen and (max-width: 480px) {
  .click-d__items {
    margin: 20px 0px;
  }
}
@media screen and (max-width: 375px) {
  .click-d__items img {
    width: 70%;
    height: 70%;
  }
}

section.click-d {
  padding-bottom: 1%;
}

.words-d {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
}
.words-d__rows {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 50px 0px;
}
.words-d__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.words-d__item {
  display: flex;
  flex-direction: column;
  color: var(--text-blue);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 20px 40px;
  border: 5px dashed var(--text-blue);
  border-radius: 10px;
}
.words-d__item .icon {
  font-size: 90px;
}
.words-d__item:hover {
  scale: 1.1;
}
.words-d__item.correct {
  color: var(--text-green);
  background: var(--light-green);
  border: 5px dashed var(--text-green);
  animation: correct 0.5s ease;
}
.words-d__item.wrong {
  color: red;
  background: rgb(248, 176, 176);
  border: 5px dashed red;
  animation: wrong 0.5s ease;
}
@keyframes wrong {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-12px);
  }
  40% {
    transform: translateX(12px);
  }
  60% {
    transform: translateX(-8px);
  }
  80% {
    transform: translateX(8px);
  }
}
@keyframes correct {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@media screen and (max-width: 1200px) {
  .words-d__item .icon {
    font-size: 70px;
  }
}
@media screen and (max-width: 768px) {
  .words-d h1 {
    margin-bottom: 30px;
  }
  .words-d__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .words-d__item p {
    font-size: 16px;
  }
  .words-d__item .icon {
    font-size: 60px;
  }
}
@media screen and (max-width: 480px) {
  .words-d__row {
    gap: 25px;
  }
  .words-d__item {
    padding: 15px 30px;
  }
}

section.words-d {
  padding-bottom: 20px;
}

.click-e {
  text-align: center;
}
.click-e h1 {
  text-align: center;
  margin: 50px auto;
}
.click-e__container {
  border: 6px dashed var(--text-green);
  border-radius: 30px;
  padding: 20px;
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}
.click-e__container .flying-letter {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  -webkit-text-stroke: 2px currentColor;
  color: var(--text-gray);
  cursor: pointer;
  animation: fly 8s infinite alternate;
  transition: all 0.3 ease;
}
.click-e__container .flying-letter:hover {
  scale: 1.2;
  border: 2px dashed var(--text-gray);
}
.click-e__container .flying-letter--green {
  background: var(--light-green);
}
.click-e__container .flying-letter--yellow {
  background: var(--light-yellow);
}
.click-e__container .flying-letter--purple {
  background: var(--light-purple);
}
.click-e__container .flying-letter:nth-child(1) {
  animation: fly1 6s infinite alternate;
  left: 2%;
}
.click-e__container .flying-letter:nth-child(2) {
  animation: fly2 5s infinite alternate;
  left: 10%;
}
.click-e__container .flying-letter:nth-child(3) {
  animation: fly3 3s infinite alternate;
  left: 17%;
}
.click-e__container .flying-letter:nth-child(4) {
  animation: fly4 7s infinite alternate;
  left: 25%;
}
.click-e__container .flying-letter:nth-child(5) {
  animation: fly5 3s infinite alternate;
  left: 32%;
}
.click-e__container .flying-letter:nth-child(6) {
  animation: fly6 4s infinite alternate;
  left: 40%;
}
.click-e__container .flying-letter:nth-child(7) {
  animation: fly7 7s infinite alternate;
  left: 47%;
}
.click-e__container .flying-letter:nth-child(8) {
  animation: fly8 5s infinite alternate;
  left: 55%;
}
.click-e__container .flying-letter:nth-child(9) {
  animation: fly9 5s infinite alternate;
  left: 62%;
}
.click-e__container .flying-letter:nth-child(10) {
  animation: fly10 7s infinite alternate;
  left: 74%;
}
.click-e__container .flying-letter:nth-child(11) {
  animation: fly11 7s infinite alternate;
  left: 80%;
}
.click-e__container .flying-letter:nth-child(12) {
  animation: fly12 5s infinite alternate;
  left: 90%;
}
.click-e__container .flying-letter.wrong {
  box-shadow: 0 0 25px 5px red;
  scale: 1.3;
  border: none;
}
.click-e__container .flying-letter.correct {
  box-shadow: 0 0 25px 5px var(--green);
  scale: 1.3;
  border: none;
}
@keyframes fly1 {
  0% {
    top: 20%;
    transform: rotate(0deg);
  }
  100% {
    top: 80%;
    transform: rotate(360deg);
  }
}
@keyframes fly2 {
  0% {
    top: 3%;
    transform: rotate(0deg);
  }
  50% {
    top: 70%;
    transform: rotate(120deg);
  }
  100% {
    top: 30%;
    transform: rotate(360deg);
  }
}
@keyframes fly3 {
  0% {
    top: 50%;
    transform: rotate(0deg);
  }
  100% {
    top: 10%;
    transform: rotate(360deg);
  }
}
@keyframes fly4 {
  0% {
    top: 0%;
    transform: rotate(0deg);
  }
  33% {
    top: 40%;
    transform: rotate(120deg);
  }
  66% {
    top: 20%;
    transform: rotate(240deg);
  }
  100% {
    top: 80%;
    transform: rotate(360deg);
  }
}
@keyframes fly5 {
  0% {
    top: 30%;
    transform: rotate(0deg);
  }
  100% {
    top: 73%;
    transform: rotate(240deg);
  }
}
@keyframes fly6 {
  0% {
    top: 25%;
    transform: rotate(0deg);
  }
  50% {
    top: 75%;
    transform: rotate(120deg);
  }
  100% {
    top: 35%;
    transform: rotate(360deg);
  }
}
@keyframes fly7 {
  0% {
    top: 45%;
    transform: rotate(0deg);
  }
  50% {
    top: 75%;
    transform: rotate(120deg);
  }
  100% {
    top: 15%;
    transform: rotate(360deg);
  }
}
@keyframes fly8 {
  0% {
    top: 5%;
    transform: rotate(0deg);
  }
  100% {
    top: 90%;
    transform: rotate(240deg);
  }
}
@keyframes fly9 {
  0% {
    top: 4%;
    transform: rotate(0deg);
  }
  50% {
    top: 55%;
    transform: rotate(120deg);
  }
  100% {
    top: 15%;
    transform: rotate(360deg);
  }
}
@keyframes fly10 {
  0% {
    top: 55%;
    transform: rotate(0deg);
  }
  50% {
    top: 4%;
    transform: rotate(120deg);
  }
  100% {
    top: 95%;
    transform: rotate(360deg);
  }
}
@keyframes fly11 {
  0% {
    top: 25%;
    transform: rotate(0deg);
  }
  50% {
    top: 60%;
    transform: rotate(120deg);
  }
  100% {
    top: 5%;
    transform: rotate(360deg);
  }
}
@keyframes fly12 {
  0% {
    top: 5%;
    transform: rotate(0deg);
  }
  100% {
    top: 55%;
    transform: rotate(240deg);
  }
}
@media screen and (max-width: 1200px) {
  .click-e .flying-letter {
    width: 65px;
    height: 65px;
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .click-e__container {
    height: 55vh;
  }
  .click-e .flying-letter {
    width: 55px;
    height: 55px;
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .click-e__container {
    height: 50vh;
  }
  .click-e .flying-letter:nth-child(4),
  .click-e .flying-letter:nth-child(7),
  .click-e .flying-letter:nth-child(11) {
    display: none;
  }
  .click-e .flying-letter {
    width: 60px;
    height: 60px;
  }
  .click-e .flying-letter:nth-child(5) {
    left: 28%;
  }
  .click-e .flying-letter:nth-child(8) {
    left: 50%;
  }
  .click-e .flying-letter:nth-child(1) {
    left: 0%;
  }
}
@media screen and (max-width: 768px) {
  .click-e .flying-letter {
    width: 55px;
    height: 55px;
    font-size: 32px;
  }
}
@media screen and (max-width: 375px) {
  .click-e .flying-letter {
    width: 45px;
    height: 45px;
    font-size: 28px;
  }
}

.doors-e {
  text-align: center;
}
.doors-e h1 {
  margin: 50px auto;
}
.doors-e__items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.doors-e__item {
  position: relative;
  transition: all 0.3s ease;
}
.doors-e__item:hover {
  scale: 1.1;
}
.doors-e__image {
  width: 90%;
}
.doors-e__icon {
  font-size: 130px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 20px;
  border-radius: 50%;
  display: none;
  transform: translate(-50%, -50%);
}
.doors-e__icon.correct {
  display: block;
  box-shadow: 0 0 25px 5px var(--green);
  animation: right 1.2s ease-in-out infinite;
}
.doors-e__icon.wrong {
  display: block;
  animation: mistaken 0.5s ease;
  box-shadow: 0 0 25px 5px red;
}
@keyframes right {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(-8deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(8deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes mistaken {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }
  25% {
    transform: translate(-50%, -50%) translateX(-12px);
  }
  50% {
    transform: translate(-50%, -50%) translateX(12px);
  }
  75% {
    transform: translate(-50%, -50%) translateX(-6px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(0);
  }
}
@media screen and (max-width: 1300px) {
  .doors-e__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .doors-e__item__image {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .doors-e h1 {
    margin-bottom: 30px;
  }
  .doors-e__items {
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .doors-e__items {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=main.css.map */