
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: Montserrat;
  font-size: 16px;
}
body .wrapper {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}

a {
  cursor: pointer;
}

section {
  margin-bottom: 150px;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 80px;
  }
}
@media (max-width: 480px) {
  section {
    margin-bottom: 60px;
  }
}
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

header {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 100px;
  position: relative;
  background: white;
  z-index: 100;
  transition: all 0.4s ease;
}
header a {
  color: #000;
  transition: color 0.3s ease;
}
header nav {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .menu {
  display: flex;
  align-items: center;
  gap: 35px;
}
header nav .menu-item {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 5px 0;
}
header nav .menu-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #CA9DFD;
  transition: width 0.3s ease;
}
header nav .menu-item:hover::after {
  width: 100%;
}
header nav .menu-item a {
  display: inline-block;
  transition: transform 0.3s ease;
}
header nav .menu-item a:hover {
  transform: translateY(-3px);
}
header nav .header-btn {
  padding: 10px 25px;
  border: 2px solid #000;
  border-radius: 35px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
header nav .header-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(112, 87, 219, 0.2), transparent);
  transition: all 0.6s ease;
}
header nav .header-btn:hover {
  background-color: #CA9DFD;
  border: 1px solid #CA9DFD;
  color: white;
  box-shadow: 0 5px 15px rgba(112, 87, 219, 0.2);
  transform: translateY(-2px);
}
header nav .header-btn:hover::before {
  left: 100%;
}
header nav .header-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .menu-item a {
    font-size: 16px;
  }
  .menu-item a:hover {
    transform: none;
  }
  header nav .header-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  header {
    margin-bottom: 60px;
  }
  header nav .menu {
    display: none;
  }
  header nav .menu-item::after {
    display: none;
  }
}
.banner {
  margin-bottom: 100px;
  overflow: hidden;
  position: relative;
}
.banner a {
  color: #000;
}
.banner-box {
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
}
.banner-box_title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.banner-box_title span {
  color: #BDC94D;
  position: relative;
}
.banner-box_title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(189, 201, 77, 0.3);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.banner-box_title:hover span::after {
  transform: scaleX(1);
}
.banner-box_info {
  font-size: 20px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  line-height: 130%;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.6s;
}
.banner-box .banner-btn__container {
  display: flex;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.9s;
}
.banner-box .banner-btn__container .banner-btn {
  padding: 15px 40px;
  border-radius: 35px;
  background: #EE9C60;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid black;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.banner-box .banner-btn__container .banner-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.7s ease;
}
.banner-box .banner-btn__container .banner-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.banner-box .banner-btn__container .banner-btn:hover::before {
  left: 100%;
}
.banner-box .banner-btn__container .banner-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.banner-box .banner-btn__container .more-btn {
  padding: 15px 35px;
  border-radius: 35px;
  background: #BDC94D;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid black;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.banner-box .banner-btn__container .more-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background: #b5c23b;
}
.banner-box .banner-btn__container .more-btn:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.banner-img__container {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease forwards 0.6s;
}
.banner-img__container model-viewer {
  width: 600px;
  height: 600px;
  position: relative;
  left: 110px;
}
.banner-img__container .poster {
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}
.banner-img__container .poster:hover {
  transform: scale(1.03) rotate(1deg);
}
.banner-img__container::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(189, 201, 77, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  animation: pulse 6s infinite alternate;
}

.banner__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}
@media (max-width: 1024px) {
  .banner .wrapper .banner__row {
    display: block;
  }
  .banner .wrapper .banner__row .banner-box {
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards 0.3s;
  }
  .banner .wrapper .banner__row .banner-box_title {
    text-align: center;
  }
  .banner .wrapper .banner__row .banner-box_title span::after {
    bottom: 2px;
    height: 6px;
  }
  .banner .wrapper .banner__row .banner-box_info {
    text-align: center;
    animation: fadeInUp 1s ease forwards 0.6s;
  }
  .banner .wrapper .banner__row .banner-box .banner-btn__container {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease forwards 0.9s;
  }
  .banner-img__container {
    display: none;
  }
  .banner-img__container img {
    display: none;
  }
}
@media (max-width: 820px) {
  .banner .wrapper .banner__row {
    display: block;
  }
  .banner .wrapper .banner__row .banner-box {
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards 0.3s;
  }
  .banner .wrapper .banner__row .banner-box_title {
    text-align: center;
  }
  .banner .wrapper .banner__row .banner-box_title span::after {
    bottom: 2px;
    height: 6px;
  }
  .banner .wrapper .banner__row .banner-box_info {
    text-align: center;
    animation: fadeInUp 1s ease forwards 0.6s;
  }
  .banner .wrapper .banner__row .banner-box .banner-btn__container {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease forwards 0.9s;
  }
  .banner-img__container {
    display: none;
  }
  .banner-img__container img {
    display: none;
  }
}
@media (max-width: 768px) {
  .banner .wrapper .banner__row {
    display: block;
  }
  .banner .wrapper .banner__row .banner-box {
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards 0.3s;
  }
  .banner .wrapper .banner__row .banner-box_title {
    text-align: center;
  }
  .banner .wrapper .banner__row .banner-box_title span::after {
    bottom: 2px;
    height: 6px;
  }
  .banner .wrapper .banner__row .banner-box_info {
    text-align: center;
    animation: fadeInUp 1s ease forwards 0.6s;
  }
  .banner .wrapper .banner__row .banner-box .banner-btn__container {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease forwards 0.9s;
  }
  .banner-img__container {
    display: none;
  }
  .banner-img__container img {
    display: none;
  }
}
@media (max-width: 480px) {
  .banner .wrapper .banner__row {
    display: block;
  }
  .banner .wrapper .banner__row .banner-box_title {
    font-size: 45px;
    margin-bottom: 40px;
  }
  .banner .wrapper .banner__row .banner-box_info {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .banner .wrapper .banner__row .banner-box .banner-btn__container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .banner .wrapper .banner__row .banner-box .banner-btn__container .banner-btn,
  .banner .wrapper .banner__row .banner-box .banner-btn__container .more-btn {
    padding: 10px 20px;
    font-size: 18px;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}
.about__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.2s;
}
.about__line {
  height: 5px;
  width: 160px;
  background-color: #CA9DFD;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.4s;
}
.about__line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shine 2.5s infinite;
}
.about__columns {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__list:not(:last-child) {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.about__list:last-child {
  display: flex;
  gap: 30px;
}
.about__list li {
  border: 1px solid #5C5C5C;
  border-radius: 30px;
  font-size: 18px;
  padding: 15px 30px;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.about__list li:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards 0.6s;
}
.about__list li:nth-child(2) {
  animation: fadeInUp 0.6s ease forwards 0.7s;
}
.about__list li:nth-child(3) {
  animation: fadeInUp 0.6s ease forwards 0.8s;
}
.about__list li:nth-child(4) {
  animation: fadeInUp 0.6s ease forwards 0.9s;
}
.about__list li:nth-child(5) {
  animation: fadeInUp 0.6s ease forwards 1s;
}
.about__list li:nth-child(6) {
  animation: fadeInUp 0.6s ease forwards 1.1s;
}
.about__list li:nth-child(7) {
  animation: fadeInUp 0.6s ease forwards 1.2s;
}
.about__list li:nth-child(8) {
  animation: fadeInUp 0.6s ease forwards 1.3s;
}
.about__list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.about__list li:hover .about__icon {
  animation: iconPulse 0.6s ease;
}
.about__list .about__icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes iconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .about__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 820px) {
  .about__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .about__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about__list li {
    align-items: center;
    flex: 1 1 calc(50% - 30px);
    min-width: 200px;
    text-align: center;
    justify-content: center;
    animation-delay: 0.3s !important;
  }
}
@media (max-width: 480px) {
  .about__title {
    font-size: 28px;
  }
  .about__title::after {
    bottom: -10px;
  }
  .about__line {
    margin-bottom: 60px;
    width: 120px;
  }
  .about__list li {
    flex: 1 1 100%;
    padding: 12px 20px;
  }
}
.format {
  background: #f9fafb;
  margin-bottom: 150px;
  padding: 60px 0px;
}

.formar__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 60px;
}
.formar__title span {
  font-weight: 600;
  color: #CA9DFD;
}

.format__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.format__card {
  max-width: 600px;
  border: 1px solid #000;
  border-radius: 30px;
}

.format__card__img {
  overflow: hidden;
  border-radius: 30px 30px 0px 0px;
}
.format__card__img img {
  transition: transform 1200ms ease;
}
.format__card__img img:hover {
  transform: scale(1.2);
}

.format__card__desc {
  padding: 30px;
}

.format__card__tablet {
  font-size: 16px;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 0px 6px 25px;
  max-width: 100px;
  margin-bottom: 25px;
}
.format__card__tablet--on {
  color: #FF97CA;
  background-color: rgba(255, 151, 202, 0.4);
}
.format__card__tablet--of {
  color: #CA9DFD;
  background-color: rgba(202, 157, 253, 0.4);
}

.format__card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.format__card__text {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}

.format {
  background: #f9fafb;
  margin-bottom: 150px;
  padding: 60px 0px;
}
@media (max-width: 1024px) {
  .format {
    margin-bottom: 100px;
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .format {
    margin-bottom: 80px;
    padding: 40px 0;
  }
}

.format__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 60px;
}
.format__title span {
  font-weight: 600;
  color: #CA9DFD;
}
@media (max-width: 1024px) {
  .format__title {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .format__title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
  }
}

.format__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .format__cards {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .format__cards {
    gap: 30px;
  }
}

.format__card {
  max-width: 600px;
  border: 1px solid #000;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .format__card {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .format__card {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .format__card__img {
    border-radius: 20px 20px 0px 0px;
  }
}
.format__card__img img {
  border-radius: 30px 30px 0px 0px;
  width: 100%;
}
@media (max-width: 768px) {
  .format__card__img img {
    border-radius: 20px 20px 0px 0px;
  }
}

.format__card__desc {
  padding: 30px;
}
@media (max-width: 768px) {
  .format__card__desc {
    padding: 20px;
  }
}

.format__card__tablet {
  font-size: 16px;
  font-weight: 700;
  border-radius: 20px;
  padding: 6px 0px 6px 25px;
  max-width: 100px;
  margin-bottom: 25px;
}
.format__card__tablet--on {
  color: #FF97CA;
  background-color: rgba(255, 151, 202, 0.4);
}
.format__card__tablet--of {
  color: #CA9DFD;
  background-color: rgba(202, 157, 253, 0.4);
}
@media (max-width: 768px) {
  .format__card__tablet {
    font-size: 14px;
    padding: 5px 0 5px 20px;
    margin-bottom: 20px;
  }
}

.format__card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .format__card__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.format__card__text {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
  .format__card__text {
    font-size: 14px;
  }
}

.heroes .wrapper .heroes__guide {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-left: 250px;
  padding: 15px 20px;
  border: 1px solid black;
  border-radius: 50px;
  background-color: #BDC94D;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  transform: rotate(-4.73deg);
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s ease;
}
.heroes .wrapper .heroes__guide:hover {
  transform: rotate(-4.73deg) scale(1.05);
  background-color: #b5c23b;
}
.heroes .wrapper .heroes__cards {
  display: flex;
  justify-content: space-between;
}
.heroes .wrapper .heroes__cards .heroes__card {
  position: relative;
  width: 310px;
  min-height: 310px;
  border: 1px solid black;
  border-radius: 50px;
}
.heroes .wrapper .heroes__cards .heroes__card .heroes__card__tablet {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 13px 25px;
  border: 1px solid black;
  border-radius: 30px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
.heroes .wrapper .heroes__cards .heroes__card .heroes__card__tablet--skills {
  font-size: 18px;
  font-weight: 600;
  top: 25px;
  left: 25px;
  position: absolute;
}
.heroes .wrapper .heroes__cards .heroes__card .sticker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 1300ms ease;
}
.heroes .wrapper .heroes__cards .heroes__card .sticker--skils {
  bottom: -9px;
  transform: translateX(-50%) rotate(5deg);
}
.heroes .wrapper .heroes__cards .heroes__card .sticker--new {
  top: 60%;
  transform: translate(-50%, -50%) rotate(-15deg);
}
.heroes .wrapper .heroes__cards .heroes__card .sticker--new:hover {
  transform: translate(-50%, -50%) rotate(-15deg) scale(1.1);
}
.heroes .wrapper .heroes__cards .heroes__card .sticker:not(.sticker--skils, .sticker--new) {
  top: 60%;
  transform: translate(-50%, -50%);
}
.heroes .wrapper .heroes__cards .heroes__card .sticker:not(.sticker--skils, .sticker--new):hover {
  transform: scale(1.1) translate(-50%, -50%);
}
.heroes .wrapper .heroes__cards .heroes__card--pink {
  background-color: #FF97CA;
  transform: rotate(15deg);
}
.heroes .wrapper .heroes__cards .heroes__card--purple {
  background-color: #CA9DFD;
  transform: rotate(-5deg);
}
.heroes .wrapper .heroes__cards .heroes__card--green {
  background-color: #BDC94D;
  transform: rotate(10deg);
}
.heroes .wrapper .heroes__cards .heroes__card--orange {
  background-color: #EE9C60;
  transform: rotate(-10deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-4.73deg);
  }
  50% {
    transform: translateY(-8px) rotate(-4.73deg);
  }
}
@media (max-width: 1024px) {
  .heroes .wrapper .heroes__group .heroes__guide {
    transform: rotate(0deg);
  }
  .heroes .wrapper .heroes__group .heroes__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .heroes .wrapper .heroes__group .heroes__cards .heroes__card {
    transform: rotate(0);
  }
}
@media (max-width: 820px) {
  .heroes .wrapper .heroes__group .heroes__guide {
    transform: rotate(0deg);
  }
  .heroes .wrapper .heroes__group .heroes__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .heroes .wrapper .heroes__group .heroes__cards .heroes__card {
    transform: rotate(0);
  }
}
@media (max-width: 768px) {
  .heroes {
    display: none;
  }
  .heroes .wrapper .heroes__guide {
    transform: rotate(0);
    margin-left: 0;
    padding: 10px 20px;
    animation: float-mobile 3s ease-in-out infinite;
  }
  .heroes .wrapper .heroes__guide:hover {
    transform: rotate(0) scale(1.05);
  }
  .heroes .wrapper .heroes__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .heroes .wrapper .heroes__cards .heroes__card {
    transform: rotate(0) !important;
  }
}
@keyframes float-mobile {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.reviews__heading {
  display: grid;
  text-align: center;
  gap: 30px;
  margin-bottom: 80px;
}
.reviews__heading__title {
  font-size: 36px;
  font-weight: 700;
}
.reviews__heading__text {
  font-size: 16px;
  color: #1e1e1e;
}
.reviews__heading__line {
  height: 5px;
  width: 160px;
  background-color: #FF97CA;
  margin: 0 auto;
}

.reviews__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews__card {
  max-width: 400px;
  max-height: 314px;
  padding: 50px 30px;
  border-radius: 30px;
  border: 1px solid #000;
}
.reviews__card--purple {
  background-color: rgba(202, 157, 253, 0.1);
}
.reviews__card--pink {
  background-color: rgba(255, 151, 202, 0.1);
}
.reviews__card--green {
  background-color: rgba(189, 201, 77, 0.1);
}

.reviews__card__text {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 30px;
}

.reviews__card__user {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.reviews__card__user__avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
}
.reviews__card__user__avatar--purple {
  background-color: #CA9DFD;
}
.reviews__card__user__avatar--pink {
  background-color: #FF97CA;
}
.reviews__card__user__avatar--green {
  background-color: #BDC94D;
}

.reviews__card__user__desc {
  display: grid;
  gap: 5px;
}

.reviews__card__user__name {
  font-size: 16px;
  font-weight: 700;
}

.reviews__card__rating {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .reviews {
    padding: 0 15px;
  }
}

.reviews__heading {
  display: grid;
  text-align: center;
  gap: 30px;
  margin-bottom: 80px;
}
.reviews__heading__title {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .reviews__heading__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .reviews__heading__title {
    font-size: 28px;
  }
}
.reviews__heading__text {
  font-size: 16px;
  color: #1e1e1e;
}
@media (max-width: 768px) {
  .reviews__heading__text {
    font-size: 14px;
    padding: 0 20px;
  }
}
.reviews__heading__line {
  height: 5px;
  width: 160px;
  background-color: #FF97CA;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .reviews__heading__line {
    width: 120px;
  }
}
@media (max-width: 1024px) {
  .reviews__heading {
    gap: 25px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .reviews__heading {
    gap: 20px;
    margin-bottom: 40px;
  }
}

.reviews__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .reviews__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .reviews__cards {
    flex-direction: column;
    gap: 20px;
  }
}

.reviews__card {
  max-width: 400px;
  max-height: 314px;
  padding: 50px 30px;
  border-radius: 30px;
  border: 1px solid #000;
}
.reviews__card--purple {
  background-color: rgba(202, 157, 253, 0.1);
}
.reviews__card--pink {
  background-color: rgba(255, 151, 202, 0.1);
}
.reviews__card--green {
  background-color: rgba(189, 201, 77, 0.1);
}
@media (max-width: 1024px) {
  .reviews__card {
    max-width: 48%;
    padding: 40px 25px;
  }
}
@media (max-width: 768px) {
  .reviews__card {
    max-width: 100%;
    width: 100%;
    padding: 30px 20px;
    border-radius: 20px;
    max-height: none;
  }
}

.reviews__card__text {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .reviews__card__text {
    font-size: 15px;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .reviews__card__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.reviews__card__user {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .reviews__card__user {
    gap: 20px;
    margin-bottom: 15px;
  }
}

.reviews__card__user__avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
}
.reviews__card__user__avatar--purple {
  background-color: #CA9DFD;
}
.reviews__card__user__avatar--pink {
  background-color: #FF97CA;
}
.reviews__card__user__avatar--green {
  background-color: #BDC94D;
}
@media (max-width: 768px) {
  .reviews__card__user__avatar {
    height: 45px;
    width: 45px;
  }
}

.reviews__card__user__desc {
  display: grid;
  gap: 5px;
}

.reviews__card__user__name {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reviews__card__user__name {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .reviews__card__user__course {
    font-size: 14px;
  }
}

.reviews__card__rating {
  display: flex;
  align-items: center;
}

.feedback {
  background-color: #f9fafb;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.feedback__heading {
  display: grid;
  text-align: center;
  gap: 30px;
  padding: 80px 0px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
.feedback__heading__title {
  font-size: 36px;
  font-weight: 700;
  position: relative;
}
.feedback__heading__text {
  font-size: 16px;
  color: #1e1e1e;
  transition: all 0.3s ease;
}
.feedback__heading__line {
  height: 5px;
  width: 160px;
  background-color: #EE9C60;
  margin: 0 auto;
  transform-origin: left;
  transition: transform 0.5s ease;
}
.feedback__forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  padding-bottom: 80px;
  position: relative;
}
.feedback__info__wrapper {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}
.feedback__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  height: 100%;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #5c5c5c;
  border-radius: 30px;
  transform: translateX(-50px);
  opacity: 0;
  animation: slideInRight 0.8s ease 0.3s forwards;
  transition: all 0.3s ease;
}
.feedback__form:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px) scale(1.01);
}
.feedback__form__name p, .feedback__form__email p, .feedback__form__phone p, .feedback__form__courses p {
  font-size: 18px;
  font-weight: 500;
  color: #5c5c5c;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.feedback__form__name input, .feedback__form__email input, .feedback__form__phone input, .feedback__form__courses input {
  border: 1px solid rgba(92, 92, 92, 0.4588235294);
  border-radius: 20px;
  padding: 20px 20px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  outline: 0;
}
.feedback__form__name input:focus, .feedback__form__email input:focus, .feedback__form__phone input:focus, .feedback__form__courses input:focus {
  border: 1px solid #EE9C60;
  box-shadow: 0 0 0 3px rgba(238, 156, 96, 0.2);
  transform: scale(1.01);
}
.feedback__form__name input:hover, .feedback__form__email input:hover, .feedback__form__phone input:hover, .feedback__form__courses input:hover {
  border-color: #EE9C60;
}
.feedback__form__name .custom-select, .feedback__form__email .custom-select, .feedback__form__phone .custom-select, .feedback__form__courses .custom-select {
  position: relative;
  border: 1px solid rgba(92, 92, 92, 0.4588235294);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  outline: 0;
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}
.feedback__form__name .custom-select .selected-option, .feedback__form__email .custom-select .selected-option, .feedback__form__phone .custom-select .selected-option, .feedback__form__courses .custom-select .selected-option {
  color: #5c5c5c;
}
.feedback__form__name .custom-select .dropdown-options, .feedback__form__email .custom-select .dropdown-options, .feedback__form__phone .custom-select .dropdown-options, .feedback__form__courses .custom-select .dropdown-options {
  background-color: green;
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(92, 92, 92, 0.4588235294);
  border-radius: 20px;
  background: white;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10001;
}
.feedback__form__name .custom-select .dropdown-options li, .feedback__form__email .custom-select .dropdown-options li, .feedback__form__phone .custom-select .dropdown-options li, .feedback__form__courses .custom-select .dropdown-options li {
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.feedback__form__name .custom-select .dropdown-options li:hover, .feedback__form__email .custom-select .dropdown-options li:hover, .feedback__form__phone .custom-select .dropdown-options li:hover, .feedback__form__courses .custom-select .dropdown-options li:hover {
  background-color: rgba(238, 156, 96, 0.1);
  color: #EE9C60;
}
.feedback__form__name .custom-select.active .dropdown-options, .feedback__form__email .custom-select.active .dropdown-options, .feedback__form__phone .custom-select.active .dropdown-options, .feedback__form__courses .custom-select.active .dropdown-options {
  display: block;
}
.feedback__form__btn {
  background-color: #EE9C60;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  padding: 20px 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}
.feedback__form__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.feedback__form__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(238, 156, 96, 0.4);
}
.feedback__form__btn:hover::before {
  left: 100%;
}
.feedback__form__btn:active {
  transform: translateY(1px);
}
.feedback__info {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #5c5c5c;
  border-radius: 30px;
  transform: translateX(50px);
  opacity: 0;
  animation: slideInLeft 0.8s ease 0.3s forwards;
  transition: all 0.3s ease;
}
.feedback__info:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px) scale(1.01);
}
.feedback__info__title {
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.feedback__info__item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.feedback__info__item:last-child {
  margin-bottom: 0;
}
.feedback__info__item:hover {
  transform: translateX(5px);
}
.feedback__info__item:hover .feedback__info__item__title {
  color: #EE9C60;
}
.feedback__info__item__desc {
  display: grid;
  gap: 10px;
  cursor: pointer;
}
.feedback__info__item__title {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.feedback__info__item__text {
  font-size: 16px;
  color: #5c5c5c;
  transition: all 0.3s ease;
}
.feedback__info__item__text a {
  color: #5c5c5c;
}
.feedback__socials {
  margin-top: 0;
  align-self: end;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #5c5c5c;
  border-radius: 30px;
  transition: all 0.5s ease;
}
.feedback__socials:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feedback__socials__title {
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.feedback__socials__links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.feedback__socials__links a {
  transition: all 0.3s ease;
}
.feedback__socials__links a:hover {
  transform: translateY(-5px) scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .feedback__info__wrapper {
    box-sizing: border-box;
  }	  
  .feedback__forms {
    grid-template-columns: 1fr;
  }
  .feedback__forms .feedback__form,
  .feedback__forms .feedback__info {
    animation: fadeInUp 0.8s ease forwards;
    transform: none;
  }
  .feedback__forms .feedback__form {
    position: relative;
    z-index: 1000;
    margin-bottom: -40px;
  }
  .feedback__forms .feedback__info {
    position: relative;
    z-index: 10;
    margin-bottom: -100px;
    padding: 20px;
  }
  .feedback__socials {
    grid-column: 1;
    margin-top: 80px;
  }
  .feedback__heading__title {
    font-size: 26px;
  }
  .feedback__heading__text {
    font-size: 16px;
  }
}
@media (max-width: 476px) {
  .feedback .wrapper .feedback__info__wrapper .feedback__info__items .feedback__info__item__desc {
    border: solid white;
    max-width: 200px;
  }
  .feedback .wrapper .feedback__info__wrapper .feedback__info__items .feedback__info__item__icon {
    border: solid white;
    width: 55px;
    height: 55px;
  }
  .feedback .wrapper .feedback__info__wrapper .feedback__info__items .feedback__info__item__icon img {
    width: 55px;
    height: 55px;
  }
}
footer {
  background-color: #111827;
  color: #ecf0f1;
  padding: 40px 0 20px;
  position: relative;
  z-index: 100;
}
footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .footer-container .footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding: 0 15px;
}
footer .footer-container .footer-column__first img {
  margin-bottom: 27px;
}
footer .footer-container .footer-column__first p {
  margin-bottom: 40px;
  font-size: 14px;
  color: #9CA3A3;
}
footer .footer-container .footer-column__first .footer__socialnetworks {
  display: flex;
  gap: 20px;
}
footer .footer-container .footer-column h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
footer .footer-container .footer-column .footer-links {
  list-style: none;
  padding: 0;
}
footer .footer-container .footer-column .footer-links li {
  margin-bottom: 10px;
}
footer .footer-container .footer-column .footer-links a {
  color: #9CA3A3;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}
footer .footer-container .footer-column .footer-links a:hover {
  color: #ffffff;
}
footer .footer-container .footer-column address p {
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #9CA3A3;
  font-size: 14px;
}
footer .footer-container .footer-column address a {
  color: #9CA3A3;
  text-decoration: none;
}
footer .footer-container .footer-column address a:hover {
  color: #ffffff;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  margin-top: 30px;
  font-size: 14px;
}
footer .footer-bottom p {
  margin: 5px 0;
  color: #9CA3A3;
}

@media (max-width: 1300px) {
    footer .footer-column:nth-child(4) h3 a {
        color: white;
    }
}	

@media (max-width: 480px) {
  footer .footer-container .footer-column:nth-child(2),
  footer .footer-container .footer-column:nth-child(3) {
    display: none;
  }
}
.courses .wrapper .courses__heading {
  margin-bottom: 120px;
  text-align: center;
}
.courses .wrapper .courses__heading__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}
.courses .wrapper .courses__heading__text {
  font-size: 16px;
  color: #1e1e1e;
  margin-bottom: 30px;
}
.courses .wrapper .courses__heading__line {
  height: 5px;
  width: 160px;
  background-color: #CA9DFD;
  margin: 0 auto;
}
.courses .wrapper .courses__group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.courses .wrapper .courses__group .courses__card {
  width: 400px;
  border: 1px solid black;
  border-radius: 30px;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.courses .wrapper .courses__group .courses__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.courses .wrapper .courses__group .courses__card__img {
  border-bottom: 1px solid black;
  border-radius: 30px 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 194px;
}
.courses .wrapper .courses__group .courses__card__desc {
  padding: 20px;
}
.courses .wrapper .courses__group .courses__card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.courses .wrapper .courses__group .courses__card__text {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 50px;
}
.courses .wrapper .courses__group .courses__card__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.courses .wrapper .courses__group .courses__card__level {
  display: inline-block;
  padding: 6px 12px;
  background-color: #e2e8f0;
  color: #2d3748;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.courses .wrapper .courses__group .courses__card__btn {
  color: #CA9DFD;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .feedback__forms {
    display: flex;
    flex-wrap: wrap;
  }
  .feedback__forms .feedback__form {
    width: 100%;
  }
  .feedback__forms .feedback__info__wrapper {
    width: 100%;
    gap: 80px;
  }
  .courses__group .courses__card {
    margin: 0 auto;
  }
}
@media (max-width: 820px) {
  .feedback__forms {
    display: flex;
    flex-wrap: wrap;
  }
  .feedback__forms .feedback__form {
    width: 100%;
  }
  .feedback__forms .feedback__info__wrapper {
    width: 100%;
    gap: 80px;
  }
  .courses__group .courses__card {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .courses .wrapper .courses__heading {
    margin-bottom: 60px;
  }
  .courses__group .courses__card {
    margin: 0 auto;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  padding: 0;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: translateY(0);
}

/* Стили карточки курса */
.courses__modal {
  display: flex;
  flex-direction: column;
  padding: 0px 25px 25px 25px;
}

.modal__header {
  padding: 10px 10px 0;
  display: flex;
  justify-content: flex-end;
}

.courses__modal__img {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.courses__modal__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses__modal__desc {
  padding: 0 10px;
}

.courses__modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
  line-height: 1.3;
}

.courses__modal__text {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7725490196);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}

.courses__modal__level {
  display: inline-block;
  padding: 6px 12px;
  background-color: #e2e8f0;
  color: #2d3748;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Анимация появления */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal__content {
  animation: modalFadeIn 0.3s ease forwards;
}

.modal__close {
  width: 32px;
  height: 32px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal__close:hover {
  background-color: #e0e0e0;
  transform: rotate(90deg);
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #555;
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .modal__header {
    padding: 0px 0px 0;
  }
  .modal__content {
    width: 95%;
    padding: 20px 15px;
  }
  .courses__modal__img {
    height: 150px;
  }
  .courses__modal__title {
    font-size: 20px;
  }
  .courses__modal__text {
    font-size: 14px;
  }
  .modal__close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}/*# sourceMappingURL=main.css.map */
