html,
body,
ul,
ol,
button,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
}

* {
  box-sizing: border-box;
}

div {
  display: flex;
}

h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
}

h2 {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
}

h3 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 400;
}

p {
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}

a {
  transition: all 0.2s ease-in-out;
}

button {
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: "Effra", "Roboto", sans-serif;
}
button:active {
  transform: scale(1.05);
  transition: 0.1s;
}

.btn-green {
  background-color: #a8ff35;
  color: #000000;
}

.btn-black {
  background-color: #000000;
  color: #ffffff;
}

.section {
  width: 100%;
  padding: 80px 18px;
  flex-direction: column;
  align-items: center;
}

.disable-scrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.disable-scrollbar::-webkit-scrollbar {
  background: transparent; /* Chrome/Safari/Webkit */
  width: 0px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-green:hover {
    background-color: #87d322;
  }
  .btn-black:hover {
    background-color: #2b2b2b;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 64px;
    line-height: 64px;
  }
  h2 {
    font-size: 72px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 18px;
    line-height: 27px;
  }
  button {
    font-size: 18px;
    line-height: 25.2px;
    padding: 16px 32px;
  }
  .section {
    padding: 140px;
  }
  .section > * {
    max-width: 1160px;
  }
}
.navbar {
  width: 100%;
  min-width: 375px;
  position: absolute;
}

.navbar.full-height {
  height: 100%;
}

.navbar-top {
  width: 100%;
  height: 88px;
  padding: 0 calc(18px + env(safe-area-inset-right)) 0 calc(18px + env(safe-area-inset-left));
  justify-content: space-between;
  align-items: center;
  position: absolute;
}

.navbar-top-active {
  background-color: #000000;
}

.navbar-logo {
  height: 40px;
  align-items: center;
  display: flex;
}
.navbar-logo:active {
  transform: scale(1.1);
  transition: 0.1s;
}

.navbar-dropdown-btn.hamburger-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-right: 5px;
  cursor: pointer;
  height: 22px;
  width: 22px;
}
.navbar-dropdown-btn.hamburger-icon svg {
  transition: transform 400ms ease-in-out 20ms;
}
.navbar-dropdown-btn.hamburger-icon.hamburger-transform svg.hamburger-icon-top {
  transform: translateY(4px) rotate(45deg);
}
.navbar-dropdown-btn.hamburger-icon.hamburger-transform svg.hamburger-icon-bottom {
  transform: translateY(-4px) rotate(-45deg);
}

.navbar-dropdown-menu {
  width: 100%;
  height: calc(100% - 88px);
  background: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  position: absolute;
  top: 88px;
  z-index: 5;
  display: none;
  animation: navbar-animation 400ms;
}

.navbar-dropdown-menu-active {
  display: flex;
}

.navbar-links {
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 8px;
  background-color: #000000;
}

.navbar-links a {
  color: #ffffff;
  padding: 20px;
  border-radius: 40px;
}
.navbar-links a:active {
  color: #adadad;
  transform: scale(1.1);
  transition: 0.1s;
}

.navbar-btns {
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
  gap: 28px;
  background-color: #000000;
}

.navbar-btns button.navbar-btn {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  padding: 12px 32px;
  color: #ffffff;
}
.navbar-btns button.navbar-btn:active {
  box-shadow: 0 0 2px #ffffff inset;
}
.navbar-btns button.navbar-btn.white {
  background-color: #ffffff;
  color: #000000;
}

@keyframes navbar-animation {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: fine) {
  .navbar-links a:hover {
    color: #adadad;
  }
  .navbar-btns button.navbar-btn:hover {
    box-shadow: 0 0 2px #ffffff inset;
  }
  .navbar-btns button.navbar-btn:hover.white {
    background-color: #adadad;
  }
}
@media screen and (min-width: 490px) {
  .navbar-top {
    padding: 0 10%;
  }
  .navbar-dropdown-btn.hamburger-icon {
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .navbar {
    max-width: 1316px;
  }
  .navbar.full-height {
    height: unset;
  }
  .navbar-top {
    height: 99px;
    padding: 0 18px;
  }
  .navbar-top-active {
    background-color: transparent;
  }
  .navbar-logo {
    z-index: 6;
    animation: navbar-animation 400ms;
  }
  .navbar-logo .navbar-logo-findtrend {
    display: block;
    padding: 7px 0 0 10.32px;
  }
  .navbar-logo:active {
    transform: translate(2px, 1px);
  }
  .navbar-dropdown-btn {
    visibility: hidden;
  }
  .navbar-dropdown-menu {
    width: 100%;
    height: 99px;
    background: none;
    flex-direction: row;
    top: 0;
    display: flex;
    justify-content: flex-end;
  }
  .navbar-links {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 0;
    background: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25%;
    right: 25%;
    width: 50%;
  }
  .navbar-links a {
    padding: 10px;
  }
  .navbar-btns {
    flex-direction: row;
    padding-bottom: 0;
    padding-right: 18px;
    justify-content: flex-end;
    gap: 4px;
    background-color: transparent;
  }
  .navbar-btns button.navbar-btn {
    padding: 10px 28px;
  }
}
@media screen and (min-width: 1200px) {
  .navbar-links {
    gap: 20px;
  }
  .navbar-btns {
    gap: 8px;
  }
  .navbar-btns button.navbar-btn {
    padding: 12px 32px;
  }
}
.main {
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.section-1 {
  background: url("../../assets/images/bg-hero-mobile.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 144px 0 330px;
}

.section-1-h2 {
  color: #ffffff;
  line-height: 40.32px;
}

.section-1-paragraphs {
  margin-top: 16px;
  flex-direction: column;
  align-items: center;
  padding: 0 13%;
}
.section-1-paragraphs p {
  color: #8b8b8b;
  font-family: "Roboto", sans-serif;
}
.section-1-paragraphs p span {
  white-space: nowrap;
}

.section-1-btn {
  margin-top: 32px;
}

.section-1-tabs {
  width: 100%;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 60px;
}

.section-1-tab {
  position: absolute;
  justify-content: center;
}

.section-1-tab img {
  width: 299px;
}

.section-1-tab.twitter {
  transform: rotate(-4deg);
  top: 0;
  z-index: 4;
}

.section-1-tab.pinterest {
  transform: rotate(2deg);
  top: 70px;
  z-index: 3;
}

.section-1-tab.facebook {
  transform: rotate(-2deg);
  top: 130px;
  z-index: 2;
}

.section-1-tab.dribble {
  transform: rotate(4deg);
  top: 200px;
  z-index: 1;
}

@media screen and (min-width: 490px) {
  .section-1-tab img {
    width: 380px;
  }
}
@media screen and (min-width: 600px) {
  .section-1 {
    background: url("../../assets/images/bg-hero-website.png") repeat center center fixed;
    background-size: 101%;
  }
}
@media screen and (min-width: 992px) {
  .section-1 {
    padding: 198px 0 365px;
  }
  .section-1-h2 {
    line-height: 80.64px;
  }
  .section-1-paragraphs {
    margin-top: 24px;
  }
  .section-1-btn {
    margin-top: 40px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .section-1-tabs {
    margin-top: 0;
    max-width: 1440px;
  }
  .section-1-tab.twitter {
    top: 100px;
    left: calc(20% - 190px);
  }
  .section-1-tab.pinterest {
    top: 150px;
    left: calc(40% - 190px);
  }
  .section-1-tab.facebook {
    top: 100px;
    left: calc(60% - 190px);
  }
  .section-1-tab.dribble {
    top: 150px;
    left: calc(80% - 190px);
  }
}
.section-2 {
  background-color: #a8ff35;
  gap: 80px;
}

.section-2-h2 {
  color: #000000;
  font-weight: 700;
  line-height: 40.32px;
  margin: 0 -5px;
}

.section-2-tab {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 14px;
  position: relative;
}
.section-2-tab img.tab-png {
  width: 299px;
  margin: 24px;
}
.section-2-tab img.section-2-tab-arrow-png {
  position: absolute;
  width: 99px;
}
.section-2-tab img.section-2-tab-arrow-png.arrow-1 {
  right: 0;
  top: -48px;
}
.section-2-tab img.section-2-tab-arrow-png.arrow-2 {
  left: 0;
  bottom: -50px;
}

.section-2-paragraphs {
  flex-direction: column;
  align-items: center;
}
.section-2-paragraphs p {
  color: #000000;
}

@media screen and (min-width: 600px) {
  .section-2-tab img.tab-png {
    width: 341px;
    margin: 30px;
  }
  .section-2-tab img.section-2-tab-arrow-png {
    width: 120px;
  }
}
@media screen and (min-width: 992px) {
  .section-2 {
    gap: 60px;
  }
  .section-2-h2 {
    line-height: 85.54px;
  }
  .section-2-tab {
    border-radius: 16px;
  }
  .section-2-tab img.tab-png {
    margin: 60px 80px;
  }
}
.section-3 {
  background-color: #ffffff;
  z-index: -1;
}

.section-3-h2 {
  color: #000000;
  line-height: 42.77px;
  text-align: left;
}
.section-3-h2 .no-break {
  white-space: nowrap;
}
.section-3-h2.grey,
.section-3-h2 .grey {
  color: #adadad;
}

@media screen and (min-width: 430px) {
  .section-3-h2 {
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .section-3-h2 {
    line-height: 76.03px;
    width: 100%;
    font-weight: 700;
    font-size: 64px;
  }
}
@media screen and (min-width: 1440px) {
  .section-3-h2 {
    max-width: 1160px;
  }
}
.section-4 {
  background-color: #ffffff;
  box-shadow: 0 -30px 50px 50px #ffffff;
}

.section-4-h2 {
  color: #000000;
  line-height: 42.77px;
  margin-bottom: 32px;
  width: 100%;
}
.section-4-h2 span {
  white-space: nowrap;
}

.section-4-table {
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 14px;
  position: relative;
  right: -7.5px;
  width: calc(100% + 15px);
}
.section-4-table .table-wrapper {
  background-color: #f5f5f5;
  border-radius: 8px;
  flex-basis: calc(50% - 15px);
  aspect-ratio: 2.25/1;
  justify-content: center;
  align-items: center;
}
.section-4-table .table-wrapper img {
  transform: scale(0.3);
  position: absolute;
}

@media screen and (min-width: 430px) {
  .section-4-h2 {
    width: 80%;
  }
  .section-4-table {
    width: calc(80% + 15px);
  }
}
@media screen and (min-width: 768px) {
  .section-4-table .table-wrapper {
    flex-basis: calc(25% - 15px);
  }
}
@media screen and (min-width: 992px) {
  .section-4-h2 {
    width: 100%;
    font-size: 64px;
    line-height: 76.03px;
    margin-bottom: 80px;
  }
  .section-4-table {
    width: calc(100% + 15px);
  }
}
@media screen and (min-width: 1200px) {
  .section-4-table {
    column-gap: 32px;
    row-gap: 32px;
    right: -16px;
    width: calc(100% + 32px);
  }
  .section-4-table .table-wrapper {
    flex-basis: calc(25% - 32px);
  }
  .section-4-table .table-wrapper img {
    transform: scale(0.4);
  }
}
@media screen and (min-width: 1440px) {
  .section-4-table .table-wrapper img {
    transform: scale(0.5);
  }
}
.section-5 {
  background-color: #fafafa;
}

.section-5-h2 {
  color: #000000;
  line-height: 42.77px;
  width: 100%;
}
.section-5-h2 span {
  white-space: nowrap;
}

.section-5-platforms-icons {
  column-gap: 16px;
  overflow-x: auto;
  padding: 10px;
  width: calc(100% + 20px);
  margin-top: 22px;
  margin-bottom: 7px;
}
.section-5-platforms-icons .icon-wrapper {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1px 2px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.section-5-platforms-icons .icon-wrapper img {
  transform: scale(0.5);
}
.section-5-platforms-icons .icon-wrapper.highlighted {
  background-color: #a8ff35;
}
.section-5-platforms-icons .icon-wrapper:active {
  transform: scale(1.1);
  transition: 0.2s;
}

.section-5-tweets {
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
}
.section-5-tweets img {
  width: 100%;
  max-width: 800px;
}

.section-5-button {
  margin-top: 32px;
}

@media (hover: hover) and (pointer: fine) {
  .section-5-platforms-icons .icon-wrapper:hover {
    transform: translateY(-3px);
  }
  .section-5-platforms-icons .icon-wrapper:hover:active {
    transform: matrix(1.1, 0, 0, 1.1, 0, -3);
  }
}
@media screen and (min-width: 430px) {
  .section-5-h2,
  .section-5-tweets {
    width: 80%;
  }
  .section-5-platforms-icons {
    width: calc(80% + 20px);
  }
}
@media screen and (min-width: 816px) {
  .section-5-platforms-icons {
    justify-content: center;
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 992px) {
  .section-5-h2 {
    font-size: 64px;
    line-height: 76.03px;
    width: 100%;
  }
  .section-5-platforms-icons {
    width: calc(100% + 20px);
    margin-top: 70px;
    margin-bottom: 67px;
  }
  .section-5-platforms-icons .icon-wrapper {
    padding: 7px;
  }
  .section-5-platforms-icons .icon-wrapper img {
    transform: scale(0.7);
  }
  .section-5-tweets {
    width: 100%;
    gap: 43px;
  }
  .section-5-button {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .section-5-platforms-icons {
    column-gap: 24px;
  }
  .section-5-platforms-icons .icon-wrapper {
    padding: 16px;
  }
  .section-5-platforms-icons .icon-wrapper img {
    transform: scale(0.9);
  }
}
@media screen and (min-width: 1440px) {
  .section-5-platforms-icons {
    max-width: unset;
  }
  .section-5-platforms-icons .icon-wrapper {
    padding: 32px;
  }
  .section-5-platforms-icons .icon-wrapper img {
    transform: scale(1);
  }
}
.section-6 {
  background-color: #000000;
}

.section-6-h2 {
  color: #ffffff;
  line-height: 42.77px;
  margin-bottom: 32px;
}

.section-6-toggle-btn.toggle-wrapper {
  position: relative;
}
.section-6-toggle-btn.toggle-wrapper input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.section-6-toggle-btn.toggle-wrapper input:checked + .toggle-button:before {
  color: #adadad;
}
.section-6-toggle-btn.toggle-wrapper input:checked + .toggle-button:after {
  color: #ffffff;
}
.section-6-toggle-btn.toggle-wrapper input:checked + .toggle-button .knob:after {
  transform: translateX(60px);
}
.section-6-toggle-btn.toggle-wrapper .toggle-button {
  width: 104px;
  height: 44px;
  border-radius: 99px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 21.78px;
  font-weight: 500;
  color: #ffffff;
  background: #ffffff;
  display: flex;
  cursor: pointer;
  position: relative;
}
.section-6-toggle-btn.toggle-wrapper .toggle-button:before, .section-6-toggle-btn.toggle-wrapper .toggle-button:after {
  position: absolute;
  top: 11px;
  transition: color 100ms;
}
.section-6-toggle-btn.toggle-wrapper .toggle-button:before {
  content: "Monthly";
  right: 126px;
}
.section-6-toggle-btn.toggle-wrapper .toggle-button:after {
  content: "Yearly";
  left: 126px;
  color: #adadad;
}
.section-6-toggle-btn.toggle-wrapper .toggle-button .knob {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  border-radius: inherit;
}
.section-6-toggle-btn.toggle-wrapper .toggle-button .knob:after {
  content: "";
  position: absolute;
  height: 28px;
  width: 28px;
  background: #a8ff35;
  border-radius: inherit;
  left: 8px;
  top: 8px;
  transition: transform 200ms cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.section-6-toggle-btn.toggle-wrapper img.arrow-png {
  position: absolute;
  transform: scale(0.5);
  top: 8px;
  right: -95px;
}

.section-6-deal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  row-gap: 24px;
  width: 100%;
}
.section-6-deal-container .section-6-card {
  background: #fafafa;
  padding: 30px 30px 24px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: all 300ms ease-out;
}
.section-6-deal-container .section-6-card .card-sub-title {
  padding: 14px 0 24px;
  border-bottom: 1px solid #adadad;
}
.section-6-deal-container .section-6-card .card-price {
  margin-top: 32px;
}
.section-6-deal-container .section-6-card .card-price span {
  font-size: 18px;
  line-height: 18px;
}
.section-6-deal-container .section-6-card ul.card-benefit-list {
  padding-bottom: 29px;
  min-height: 317px;
  list-style: url("../../assets/images/tick-mark.svg");
  padding-left: 21px;
}
.section-6-deal-container .section-6-card ul.card-benefit-list li {
  margin-top: 30px;
  padding-left: 13px;
}
.section-6-deal-container .section-6-card button.card-button {
  font-size: 18px;
  line-height: 25.2px;
  padding: 14px;
}
.section-6-deal-container .card-green {
  background: #a8ff35;
}

@media screen and (min-width: 430px) {
  .section-6-deal-container {
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .section-6-h2 {
    line-height: 76.03px;
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 40px;
  }
  .section-6-toggle-btn.toggle-wrapper input:checked + .toggle-button .knob:after {
    transform: translateX(52px);
  }
  .section-6-toggle-btn.toggle-wrapper .toggle-button {
    height: 52px;
    font-size: 24px;
    line-height: 29.05px;
  }
  .section-6-toggle-btn.toggle-wrapper .toggle-button:before {
    right: 126px;
  }
  .section-6-toggle-btn.toggle-wrapper .toggle-button:after {
    left: 126px;
  }
  .section-6-toggle-btn.toggle-wrapper .toggle-button .knob:after {
    height: 36px;
    width: 36px;
  }
  .section-6-toggle-btn.toggle-wrapper img.arrow-png {
    transform: scale(0.8);
    right: -220px;
  }
}
@media screen and (min-width: 1200px) {
  .section-6-deal-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
  }
  .section-6-deal-container .section-6-card {
    border-radius: 16px;
    flex-basis: calc(50% - 10px);
  }
  .section-6-deal-container .section-6-card .card-sub-title {
    padding: 8px 0 32px;
  }
  .section-6-deal-container .section-6-card ul.card-benefit-list {
    padding-bottom: 43px;
    min-height: 331px;
    padding-left: 24px;
  }
  .section-6-deal-container .section-6-card button.card-button {
    padding: 16px;
  }
}
@media screen and (min-width: 1360px) {
  .section-6-deal-container .section-6-card {
    flex-basis: calc(33.33% - 13.3333333333px);
  }
}
@media screen and (min-width: 1440px) {
  .section-6-toggle-btn.toggle-wrapper img.arrow-png {
    display: none;
  }
  .section-6-deal-container {
    gap: 40px;
    margin-top: 40px;
  }
  .section-6-deal-container .section-6-card {
    padding: 32px 32px 24px;
    flex-basis: calc(33.33% - 26.6666666667px);
  }
}
.section-7 {
  background: #a8ff35;
  padding: 80px 0;
}
.section-7 h2 {
  line-height: 40.32px;
}
.section-7 h2.highlighted {
  color: #87d322;
}
.section-7 button {
  margin-top: 32px;
}

@media screen and (min-width: 992px) {
  .section-7 {
    padding: 140px;
  }
  .section-7 h2 {
    line-height: 80.67px;
  }
  .section-7 button {
    margin-top: 40px;
    padding: 16px 52.5px;
  }
}
.footer {
  background: #fafafa;
  gap: 40px;
}
.footer .footer-container {
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.footer .footer-container .footer-logo {
  height: 40px;
}
.footer .footer-container .footer-logo:active {
  transform: scale(1.1);
  transition: 0.1s;
}
.footer .footer-container .footer-links {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: -10px 0;
}
.footer .footer-container .footer-links a {
  color: #000000;
  padding: 10px;
  border-radius: 40px;
}
.footer .footer-container .footer-links a:active {
  color: #adadad;
  transform: scale(1.1);
  transition: 0.1s;
}
.footer .copyrights {
  font-size: 14px;
  color: #8b8b8b;
}

@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover {
    color: #adadad;
  }
}
@media screen and (min-width: 992px) {
  .footer {
    padding: unset;
    gap: 0;
  }
  .footer .footer-container {
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 29px 28px 31px 18px;
    max-width: 1316px;
  }
  .footer .footer-container .footer-logo:active {
    transform: scale(1.05);
  }
  .footer .footer-container .footer-links {
    flex-direction: row;
    justify-content: space-between;
    margin: unset;
  }
  .footer .footer-container .footer-links a:active {
    transform: scale(1.05);
  }
  .footer .copyrights {
    padding: 5px 0;
    background: #000000;
    width: 100%;
    justify-content: center;
    max-width: unset;
  }
}
html {
  background: #000000;
}

html,
body {
  min-height: 100%;
  position: relative;
  overflow-x: clip;
}

body {
  width: 100vw;
  min-width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  font-family: "Effra", "Roboto", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  color: #000000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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