@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  padding: 0 40px;
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 60px;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
  background-color: #000;
  flex-wrap: wrap;
}
.navbar__menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-100%);
  pointer-events: none;
}
.navbar__menu:target {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.navbar-left .logo {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.navbar-left .logo:hover {
  transform: scale(1.1);
}

/* Бургер базовий */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 2px; /* Зменшення товщини палок */
  width: 100%;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
  margin-bottom: 5px; /* Додаємо відступ між палками */
}

.burger span:last-child {
  margin-bottom: 0; /* Прибираємо відступ у останньої палки */
}

/* Анімація при активному бургері */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.crypto-bg-image-menu {
  display: block;
  position: absolute;
  width: 500px;
  height: 500px;
  background-image: url("../images/main.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 50px;
  right: -170px;
  z-index: 0;
  pointer-events: none;
}

.navbar-right {
  display: flex;
  gap: 20px;
}

.navbar-right a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
}

.navbar-right a:hover {
  transform: scale(1.1);
}

.navbar-right .highlight {
  border: 2px solid #57FFC1;
  border-radius: 20px;
  background-color: #57FFC1;
  color: black;
}

.menu {
  overflow: auto;
  padding: 20px 20px 156px 20px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #000000;
  z-index: 999;
}
.menu__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu__nav__logo {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.menu__nav__close {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.menu__nav__close span {
  position: absolute;
  width: 30px;
  height: 2px;
  background: white;
}
.menu__nav__close span:first-child {
  transform: rotate(45deg);
}
.menu__nav__close span:last-child {
  transform: rotate(-45deg);
}
.menu__content {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu__content a {
  font-size: 18px;
  width: 226px;
  height: 50px;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  align-items: center;
  transition: all 0.3s ease;
  display: flex;
  box-sizing: border-box;
}
.menu__content__highlight {
  margin-top: 300px;
  border: 2px solid #57FFC1;
  border-radius: 30px;
  color: black !important;
  background-color: #57FFC1;
}

/* Адаптив для мобільних */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 20px 0 20px;
  }
  .burger {
    display: block;
  }
  .navbar-right {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    align-items: center;
  }
  .navbar-right.show {
    display: flex;
  }
  .navbar-right a {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
  }
  .navbar-right .highlight {
    width: auto;
    display: inline-block;
    padding: 8px 16px;
  }
}
.crypto-block {
  position: relative;
  padding: 130px 0;
  color: white;
  background: #000;
}

.text-content {
  position: relative;
  z-index: 2;
}

.text-content h2 {
  max-width: 700px;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-content h2 .highlight {
  color: #57FFC1;
  font-style: italic;
}

.text-content p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

.cta-wrapper {
  display: flex;
  align-items: center;
}

.cta-btn {
  background: white;
  color: black;
  padding: 12px 20px;
  border-radius: 40px;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-icon {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon img {
  width: 30px;
  height: 22px;
}

.crypto-bg-image {
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  right: -40px;
  bottom: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  z-index: 1;
  pointer-events: none;
  background-image: url("../images/main.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.bottom-strip img {
  width: 100%;
  height: auto;
}

.exchange-text {
  font-size: 16px;
  line-height: 1.5;
  padding-inline: 16px;
  margin: 16px 0 24px;
}

/* Десктоп — 2 рядки */
.desktop-only {
  display: inline;
}

.desktop-wrap {
  display: inline;
}

.mobile-only {
  display: none;
}

p .highlight {
  color: #57FFC1 !important;
}

/* Приховати додаткову кнопку на десктопі */
.mobile-only {
  display: none;
}

.bottom-full-image {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: 0;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .crypto-block {
    padding: 0px 0px;
  }
  .container {
    padding-inline: 0px;
  }
  .text-content {
    padding-left: 20px;
  }
  .text-content h2 .line {
    display: block; /* на мобілці — кожне слово в стовпчик */
  }
  .crypto-bg-image {
    display: none;
  }
  .text-content {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 30px; /* додаємо простір над заголовком для фото */
  }
  .crypto-bg-image-mobile {
    display: block;
    position: absolute;
    width: 500px;
    height: 500px;
    background-image: url("../images/main.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 50px;
    right: -170px;
    z-index: 0;
    pointer-events: none;
  }
  .text-content h2 {
    font-size: 35px;
    line-height: 1.3;
    text-align: left;
    position: relative; /* щоб бути вище за фон */
    z-index: 2;
    margin-bottom: 350px;
  }
  .exchange-text {
    font-size: 16px;
    line-height: 1.5;
    padding-inline: 16px; /* горизонтальні відступи, щоб текст не притискався до країв */
    margin: 16px 0 24px; /* відступи зверху і знизу */
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline-block;
  }
  .desktop-wrap {
    display: block; /* новий рядок */
  }
  .cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    margin-left: 16px;
  }
  .cta-wrapper > div {
    display: flex;
    gap: 0 !important;
    height: 40px;
  }
  .cta-btn {
    flex-grow: 1;
    padding: 0;
    width: 280px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .cta-btn2 {
    flex-grow: 1;
    width: 280px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .cta-icon img {
    width: 24px;
    height: 24px;
  }
  .bottom-full-image {
    margin-top: 60px;
  }
}
.services-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.services-grid {
  display: grid;
  grid-template-columns: 485px 815px;
  gap: 24px;
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  align-items: start;
  justify-content: center;
}

.card {
  background-color: #111;
  border-radius: 24px;
  color: white;
  padding: 24px;
  font-weight: bold;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.card:hover {
  color: #0A0B0A;
  background-color: #E8FFF6;
}
.card:hover .circle {
  background-color: #0A0B0A;
}
.card:hover .card-title {
  color: #0A0B0A;
}

/* Перший стовпець */
.card-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 382px;
  border: 1px solid #fff;
}

.card-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 289px;
  border: 1px solid #fff;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Другий стовпець */
.right-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card-2 {
  display: flex;
  flex-direction: column;
  padding: 24px;
  height: 311px;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid #fff;
}

.card-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag.white-bg {
  background-color: white;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1;
}

.tag.white-bg span:first-child {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px; /* або 16px для трохи більших символів */
  background-color: transparent;
  line-height: 1;
}

.white-text {
  color: white;
}

.gray-text {
  color: #898989 !important;
}

.tag-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.bottom-right {
  display: flex;
  gap: 24px;
}

.card-4,
.card-5 {
  border: 1px solid #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-4 {
  width: 324px;
  height: 360px;
  border: 1px solid #fff;
}

.card-5 {
  width: 467px;
  height: 360px;
  border: 1px solid #fff;
  position: relative;
  background-image: url("../images/Noodle.svg"); /* якщо хочеш елемент як на макеті */
  background-repeat: no-repeat;
  background-position: right bottom;
  /* background-size: 150px auto; */
  border: 1px solid #fff;
}

.card-content {
  margin-top: 24px;
  font-size: 32px; /* або більше, якщо треба */
  line-height: 1.4;
}

/* inside */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: normal;
  font-size: 22px;
  color: #888;
}

.circle {
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
  color: inherit;
}

.card-subtitle {
  font-style: italic;
  color: #aaa;
}

.card-tags {
  margin: 8px 0;
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 14px;
  border: 1px solid #555;
  border-radius: 20px;
  padding: 4px 10px;
  background: #111;
  color: #898989;
}

.card-tags-with-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.card-5 .image-bottom-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  background: url("../images/spiral.png") no-repeat bottom right;
  background-size: contain;
  pointer-events: none;
}

.card-5 {
  position: relative;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  margin: 100px auto 40px;
  padding: 0 24px;
  box-sizing: border-box;
}

.title-left {
  font-size: 68px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.title-left .highlight {
  color: #57FFC1;
}

.title-right {
  display: flex;
  align-items: flex-start;
  font-size: 24px;
  color: white;
  gap: 8px;
  font-style: italic;
  line-height: 1.2;
}

.title-right .brackets {
  font-size: 36px;
  color: #898989;
  font-style: normal;
  line-height: 1;
}

.title-right .right-text {
  display: flex;
  flex-direction: column;
}

.title-right .main-line {
  white-space: nowrap;
}

.title-right .subline {
  align-self: flex-end;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin: 60px auto 40px;
  }
  .title-left {
    font-size: 40px;
  }
  .title-right {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    font-size: 18px;
    width: 100%;
    max-width: 320px;
    position: relative;
    font-style: italic;
    line-height: 1.2;
  }
  .title-right .brackets {
    font-size: 35px;
    color: #898989;
    font-style: normal;
    line-height: 0.5;
  }
  .title-right .right-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }
  .title-right .main-line {
    white-space: nowrap;
    text-align: left;
  }
  .title-right .subline {
    margin-top: 8px;
    text-align: right;
  }
}
.services-slider-mobile {
  display: none;
}

.services-slider-mobile {
  display: none;
  padding: 24px 48px;
  position: relative;
}

.swiper-slide {
  width: 332px !important;
  height: 278px !important;
  flex-shrink: 0;
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
  color: white;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swiper-slide-active {
  color: #0A0B0A;
  background-color: #E8FFF6;
}
.swiper-slide-active .circle {
  background-color: #0A0B0A;
}
.swiper-slide-active .card-title {
  color: #0A0B0A;
}

.swiper-slide:nth-child(5) {
  background-image: url(../images/springle.svg);
  background-size: cover;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #ccc;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #000;
}

.swiper-button-next {
  right: 8px;
}

.swiper-button-prev {
  left: 8px;
}

@media (max-width: 768px) {
  .services-grid {
    display: none;
  }
  .services-slider-mobile {
    display: block;
  }
  .swiper-slide {
    width: 352px !important;
    height: 278px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-title-1 {
    margin-top: 130px;
    font-size: 26px;
  }
  .mobile-title-2 {
    font-size: 19px;
  }
  .card-tags-mobile {
    margin-top: 95px;
  }
  .mobile-title-3 {
    margin-top: 130px;
    font-size: 24px;
  }
  .mobile-title-4 {
    margin-top: 130px;
    font-size: 24px;
  }
  .mobile-title-5 {
    font-size: 24px;
  }
}
@media (max-width: 390px) {
  .swiper-slide {
    width: 350px !important;
    height: 278px !important;
  }
}
.benefits-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: 130px;
}

.benefits-section h2 {
  font-size: 48px;
  font-weight: bold;
}

.benefits-section h2 span {
  color: #57FFC1;
  font-style: italic;
}

.features-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.features-row.centered {
  justify-content: center;
}

.feature-box {
  width: 427px;
  height: 144px;
  background-color: #111;
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}
.feature-box:hover {
  color: #0A0B0A;
  background-color: #E8FFF6;
  transition: all 0.2s ease-in-out;
}
.feature-box:hover .info-text {
  color: #0A0B0A;
}
.feature-box:hover .icon-wrapper {
  width: 88px;
  height: 88px;
  background: #0A0B0A;
  background-color: #57FFC1;
  border: 2px solid #57FFC1;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-box:hover .icon-wrapper img {
  margin-left: 0;
}

.feature-box img {
  width: 48px;
  height: 48px;
  margin-left: 22px;
}

.another-text {
  color: #000;
}

.info-text {
  font-size: 24px;
  margin-left: 30px;
  color: #D9D9D9;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 20px;
    margin-top: 80px;
  }
  .benefits-section h2 {
    font-size: 43px;
  }
  .features-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-box {
    width: 340px;
    height: 124px;
    margin-bottom: 20px;
    padding: 15px;
  }
  .feature-box img {
    width: 50px;
    height: 50px;
  }
  .info-text {
    font-size: 18px;
    margin-left: 20px;
  }
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
}
.cta-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
}

.cta-text {
  color: white;
  max-width: 600px;
}
.cta-text h2 {
  font-size: 64px;
  font-weight: 800;
}
.cta-text h2 span {
  color: #6dfcc3;
  font-style: italic;
}
.cta-text .highlighted-text {
  font-size: 28px;
  font-weight: 600;
  margin-top: 32px;
}
.cta-text .highlighted-text .green {
  color: #6dfcc3;
}
.cta-text .button-group {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.cta-text .admin-button {
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 600;
  background: white;
  color: black;
  border: none;
  border-radius: 100px;
  cursor: pointer;
}
.cta-text .tg-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-text .tg-icon img {
  width: 30px;
  height: 26px;
}
.cta-text .subtext {
  color: #888;
  font-size: 24px;
  margin-top: 64px;
}
.cta-text .arrow-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 28px;
  text-decoration: none;
  color: #888;
}

.cta-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -40px;
  margin-left: 30px;
}

.big-telegram {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

.bot-button-group {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(99%);
  display: flex;
  align-items: center;
}

.bot-link {
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #121212;
  border: 1px solid #898989;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
}

.bot-icon {
  width: 50px;
  height: 50px;
  background-color: #121212;
  border: 1px solid #898989;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-icon img {
  width: 30px;
  height: 26px;
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    align-items: center;
  }
  .cta-text {
    max-width: 100%;
  }
  .cta-text h2 {
    font-size: 43px;
  }
  .cta-text .highlighted-text {
    font-size: 20px;
    margin-top: 24px;
  }
  .cta-text .tg-icon {
    width: 50px;
    height: 50px;
  }
  .cta-text .tg-icon img {
    width: 30px;
    height: 26px;
  }
  .cta-text .admin-button {
    font-size: 16px;
    padding: 14px 20px;
  }
  .cta-text .subtext {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: -10px;
  }
  .cta-text .arrow-link {
    font-size: 24px;
  }
  .cta-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0 0;
  }
  .big-telegram {
    max-width: 300px;
    width: 100%;
    height: auto;
  }
  .bot-button-group {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
  }
  .bot-link {
    font-size: 16px;
    padding: 8px 12px;
  }
  .bot-icon {
    width: 35px;
    height: 35px;
  }
  .bot-icon img {
    width: 20px;
    height: 20px;
  }
  .cta-section {
    padding: 60px 16px;
  }
}
/* 6 */
.footer {
  padding: 60px 0px;
  color: white;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo h2 {
  font-size: 32px;
  color: #6dfcc3;
  letter-spacing: 1px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 40px;
  font-size: 18px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6dfcc3;
}

.footer-address {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .footer-logo h2 {
    font-size: 24px;
  }
  .footer-links {
    flex-direction: row;
    text-align: start;
    flex-wrap: wrap;
    font-size: 16px;
  }
  .footer-address {
    font-size: 16px;
    line-height: 1.4;
    max-width: 280px;
    text-align: start;
  }
  .footer {
    padding: 40px 16px;
  }
}
.email-adress {
  font-size: 16px;
  line-height: 1.4;
  max-width: 280px;
  text-align: start;
  text-decoration: none;
  color: #fff;
  text-align: start;
}

/*# sourceMappingURL=style.css.map */
