﻿
/* colors/styles/_fonts.scss */
@font-face {
  font-family: 'MaisonNeue-Light';
  src: url('../fonts/MaisonNeue-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  src: url('https://static.accelerator.net/fonts/Nunito-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Louize';
  src: url('./../../fonts/Louize/Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir-Book.woff2') format('woff2');
}

/* colors/styles/_main-visual.scss */
.main-visual {
  display: flex;
  overflow: clip;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 25px);
  position: relative;
  font-family: 'Nunito';
  text-align: center;
  border-radius: 25px 25px 0 0;
}
.main-visual::before {
  width: 100%;
  height: 90%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: '';
  border-radius: 25px 25px 0 0;
  background: linear-gradient(0deg, #fff 0%, #ffa173 120%);
  animation: cycle-hue 5s ease infinite alternate;
}
.main-visual__circle {
  overflow: clip;
  width: 43vw;
  height: 43vw;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  box-shadow: inset 8px 4px 72px #ff9d66, inset -24px -24px 49px #ff3f62, inset 36px 36px 128px #f38b9e;
  transform: translate(-50%, -50%);
  animation: cycle-circle 5s ease infinite alternate;
}
.main-visual__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  z-index: 50;
  top: 50px;
  padding: 0 50px;
  transition: transform 0.4s ease-in-out, padding 0.4s ease-in-out;
}
.main-visual__top.is-sticky {
  position: fixed;
  padding: 0 30px;
  transform: translateY(-20px);
}
.main-visual__logo {
  position: relative;
  z-index: 5;
  left: -11px;
}
.main-visual__title {
  position: relative;
  z-index: 5;
  margin: 0;
  font: 400 148px / 1 'Louize';
  letter-spacing: -.06em;
  mix-blend-mode: luminosity;
}
.main-visual__title span {
  display: block;
  font: 400 28px 'Nunito';
  letter-spacing: 0;
  color: #923848;
}
.main-visual__arrow {
  width: 38px;
  height: 21px;
  position: absolute;
  z-index: 6;
  top: 72vh;
  left: 50%;
  background: url('../images/arrow-down-dots.svg') center center / cover no-repeat;
  translate: -50% 0;
  transform-origin: top;
  animation: blink 3s ease infinite;
}
@media (max-width: 1366px) {
  .main-visual {
    height: 40vh;
    padding: 15px;
    border-radius: 15px 15px 0 0;
  }
  .main-visual::before {
    border-radius: 15px 15px 0 0;
  }
  .main-visual__top {
    top: 10px;
    padding: 0 10px;
  }
  .main-visual__top.is-sticky {
    padding: 0 10px;
    transform: none;
  }
  .main-visual__logo {
    width: 120px;
    left: 0;
  }
  .main-visual__title {
    font-size: 65px;
  }
  .main-visual__title span {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .main-visual__title .pc-only {
    display: none;
  }
  .main-visual__arrow {
    width: 28px;
    height: 15px;
    top: 70%;
  }
}
@media (max-width: 576px) {
  .main-visual {
    height: 70vh;
  }
  .main-visual__circle {
    width: 110vw;
    height: 110vw;
  }
}

/* colors/styles/_grid.scss */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 1170px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  counter-reset: colors;
}
.grid li.is-fade-in {
  opacity: 1;
}
.grid li.is-hundred .color-block__number {
  right: -10px;
  font-size: 180px;
}
.grid li.is-hundred.is-hundred-spaced .color-block__number {
  right: 0;
}
.grid li:hover .color-block::after {
  opacity: 0.7;
}
.grid li:hover .color-block.color-block--quadruple .color-block__orb {
  box-shadow: inset 21px 2px 70.0749px var(--number-color);
}
.grid li:hover .color-block.color-block--quadruple .color-block__orb:before {
  animation: pulsate-quadruple 3.2s ease 0.1s infinite;
}
.grid li:hover .color-block.color-block--quadruple .color-block__orb:after {
  animation: pulsate-quadruple2 3.2s ease 0.1s infinite;
}
.grid li:hover .color-block {
  height: 505px;
  transform: translateY(-15px);
}
.grid li:hover .color-block__orb::before {
  animation: pulsate 3.2s ease 0.1s infinite;
}
.grid li:hover .color-block__orb::after {
  animation: pulsate2 3.2s ease 0.1s infinite;
}
.grid li:hover .color-block__orb {
  box-shadow: inset 21px 2px 70.0749px var(--accent-color);
  transform: scale(0.93);
  filter: blur(10px);
}
.grid li:hover .palette {
  height: 20px;
}
.grid li:hover .color-block__hex {
  opacity: 0;
}
.grid li:hover .color-block__copy {
  opacity: 1;
}
.grid li {
  width: 31.5%;
  margin-bottom: 60px;
  counter-increment: colors;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.7s ease-in-out;
}
@media (max-width: 1220px) {
  .grid {
    width: 100%;
  }
  .grid li.is-hundred .color-block__number {
    right: -5px;
    font-size: 85px;
  }
  .grid li.is-hundred.is-hundred-spaced .color-block__number {
    right: -5px;
  }
  .grid li:hover .color-block::after {
    opacity: 0;
  }
  .grid li:hover .color-block {
    height: 240px;
    transform: none;
  }
  .grid li:hover .color-block__top {
    opacity: 0.2;
  }
  .grid li:hover .palette span {
    opacity: 1;
    transition: opacity 0.4s ease-in-out 0.4s;
  }
  .grid li:hover .palette {
    height: 110px;
  }
  .grid li {
    width: 49%;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .grid li {
    width: 48%;
  }
}

/* colors/styles/_color-block.scss */
.color-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  height: 510px;
  position: relative;
  padding: 30px;
  color: var(--accent-color);
  border-radius: 5px;
  background-color: var(--primary-color);
  transition: transform 0.25s ease, height 0.25s ease;
}
.color-block::after {
  content: '';
  width: 75%;
  height: 25px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(85% 85% at 50% 50%, #626f85 0%, rgb(109 122 142 / 90%) 0.01%, transparent 83%);
  transition: opacity 0.25s ease;
  transform: translateX(-50%);
  filter: blur(12px);
}
.color-block.color-block--triple .color-block__number {
  color: var(--number-color);
}
.color-block.color-block--triple .color-block__palette .tooltip {
  left: 0;
}
.color-block.color-block--quadruple .color-block__number {
  color: var(--number-color-4);
}
.color-block.color-block--quadruple .color-block__palette .tooltip {
  left: 0;
}
.color-block.color-block--quadruple .color-block__palette .palette:nth-child(3) {
  right: 25%;
}
.color-block.color-block--quadruple .color-block__palette .palette:last-child {
  right: 0;
}
.color-block.color-block--quadruple .color-block__orb {
  box-shadow: inset 21px 2px 70.0749px var(--number-color-4);
}
.color-block.color-block--triple .color-block__number {
  color: var(--number-color);
}
.color-block.color-block--triple .color-block__palette .tooltip {
  left: 0;
}
.color-block.color-block--pulsate .color-block__orb {
  display: block;
}
.color-block.color-block--pulsate .color-block__number {
  visibility: hidden;
}
.color-block__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.color-block__top i {
  display: inline-block;
  width: 21px;
  height: 13px;
  background-color: var(--accent-color);
  -webkit-mask: url('../images/numero.svg') center / cover no-repeat;
  mask: url('../images/numero.svg') center / cover no-repeat;
}
.color-block__name {
  font: 500 14px 'Avenir';
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.color-block__orb {
  display: none;
  width: 290px;
  height: 290px;
  position: relative;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: inset 21px 2px 70.0749px var(--number-color);
  transition: transform ease-in-out 0.4s, box-shadow ease-in-out 0.4s, filter ease-in-out 0.4s;
}
.color-block__orb::before,
.color-block__orb::after {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  padding: 0;
  content: '';
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent-color);
}
.color-block__orb::after {
  scale: 1.045;
}
.color-block__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  width: calc(100% - 60px);
  position: absolute;
  bottom: 0;
  left: 30px;
  padding-top: 0;
}
.color-block__hex {
  font-family: 'Avenir';
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: opacity 0.4s ease-in-out;
}
.color-block__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: absolute;
  bottom: 50px;
  left: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: #fff;
  transition: opacity 0.4s ease-in-out;
}
.color-block__copy:hover .tooltip {
  opacity: 1;
  transform: translateY(-10px);
}
.color-block__copy::before,
.color-block__copy::after {
  width: 18px;
  height: 1px;
  position: absolute;
  content: '';
  background-color: #000;
}
.color-block__copy::after {
  transform: translate(0px, -50%) rotate(90deg);
}
.color-block__copy.is-saved::before {
  width: 0;
  top: 60%;
  left: 36%;
  transition: none;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: bottom-check 0.15s ease 0.2s forwards;
}
.color-block__copy.is-saved::after {
  width: 0;
  left: 58%;
  transition: none;
  transform: translate(-50%, -50%) rotate(-45deg);
  animation: top-check 0.25s ease 0.2s forwards;
}
.color-block__copy.hidden {
  pointer-events: none;
  opacity: 0;
}
.color-block__number {
  position: relative;
  right: 10px;
  margin: 0 0 0 auto;
  font: 400 200px / 1.2 'Louize';
  text-align: center;
  letter-spacing: -.1em;
  color: var(--accent-color);
}
.color-block__number::before {
  content: counter(colors);
}
.color-block__palette {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  margin: 0 -30px;
  transition: transform 0.4s ease-in-out;
}
@media (max-width: 1220px) {
  .color-block {
    height: 240px;
    padding: 12px;
  }
  .color-block.color-block--triple .color-block__palette .tooltip {
    left: -10px;
  }
  .color-block__top {
    transition: opacity 0.4s ease-in-out;
  }
  .color-block__top i {
    width: 10px;
    height: 6px;
    position: absolute;
    bottom: 25px;
  }
  .color-block__palette {
    margin: 0 -12px;
  }
  .color-block__name {
    font-size: 8px;
  }
  .color-block__hex {
    display: none;
  }
  .color-block__number {
    right: 0;
    font-size: 85px;
  }
  .color-block__orb {
    width: 20vw;
    height: 20vw;
  }
  .color-block__copy {
    bottom: 120%;
    left: -20px;
  }
  .color-block__copy .tooltip {
    display: none;
  }
}
@media (max-width: 576px) {
  .color-block__orb {
    width: 35vw;
    height: 35vw;
  }
}

/* colors/styles/_palette.scss */
.palette {
  width: calc(100% / var(--color-count));
  height: 8px;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  transition: height 0.25s ease;
}
.palette .tooltip {
  -webkit-user-select: none;
  user-select: none;
  top: -25px;
}
.palette span {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font: 500 9px 'Avenir';
  transform: translate(-50%, -50%) rotate(90deg);
}
.palette:first-child span {
  color: var(--accent-color);
}
.palette:first-child {
  border-bottom-left-radius: 5px;
}
.palette:nth-child(2) span {
  color: var(--primary-color);
}
.palette:nth-child(3) span {
  color: var(--accent-color);
}
.palette:last-child {
  border-bottom-right-radius: 5px;
}
.palette:hover .tooltip {
  opacity: 1;
  transform: translateY(-8px);
}
.palette:hover {
  height: 30px !important;
  transition-delay: 0s !important;
}
.palette:first-child {
  left: 0;
  transition-delay: 0.1s;
}
.palette:nth-child(2) {
  left: calc(100% / var(--color-count));
  transition-delay: 0.2s;
}
.palette:nth-child(3) {
  right: 0;
  transition-delay: 0.3s;
}
.palette:nth-child(4) {
  transition-delay: 0.4s;
}
@media (max-width: 1220px) {
  .palette {
    height: 4px;
  }
  .palette:hover {
    height: 110px !important;
  }
  .palette .tooltip {
    width: 85px;
    left: 3px;
    font-size: 11px;
  }
  .palette span {
    display: block;
    opacity: 0;
  }
}

/* colors/styles/_tooltip.scss */
.tooltip {
  width: 111px;
  position: absolute;
  z-index: 1;
  top: -23px;
  left: 30px;
  padding: 4px 0;
  font: 400 13px 'Helvetica Neue', 'Arial';
  text-align: center;
  pointer-events: none;
  opacity: 0;
  color: #000;
  border-radius: 4px;
  background: #fff;
  box-shadow: 11px 11px 22px rgb(0 0 0 / 10%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.tooltip.tooltip--save {
  left: -40px;
}
.tooltip::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: -1;
  bottom: -7px;
  left: 48%;
  border-radius: 4px;
  background: #fff;
  transform: rotate(45deg) translateX(-50%);
}

/* colors/styles/_animations.scss */
@keyframes bottom-check {
  0% {
    width: 0px;
  }
  100% {
    width: 6px;
  }
}
@keyframes top-check {
  0% {
    width: 0px;
  }
  50% {
    width: 0px;
  }
  100% {
    width: 14px;
  }
}
@keyframes cycle-hue {
  0% {
    filter: hue-rotate(0deg);
  }
  70% {
    filter: hue-rotate(-40deg);
  }
  100% {
    filter: hue-rotate(-180deg);
  }
}
@keyframes cycle-circle {
  0% {
    transform: translate(-50%, -50%);
    rotate: 0deg;
    filter: blur(0) hue-rotate(0);
  }
  70% {
    filter: blur(15px) hue-rotate(-40deg);
  }
  100% {
    transform: rotate(360deg) translate(-50%, -50%);
    filter: blur(5px) hue-rotate(-180deg);
  }
}
@keyframes pulsate {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.6;
    box-shadow: 0 0 0 2px var(--accent-color), 0 0 15px 15px var(--accent-color), 0 0 0 15px var(--accent-color);
  }
  100% {
    opacity: 0;
    box-shadow: 0 0 0 2px var(--accent-color), 0 0 15px 15px var(--accent-color), 0 0 0 15px var(--accent-color);
  }
}
@keyframes pulsate2 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.25;
    box-shadow: 0 0 0 2px var(--accent-color), 0 0 15px 15px var(--accent-color), 0 0 0 15px var(--accent-color);
  }
  100% {
    opacity: 0;
    box-shadow: 0 0 0 2px var(--accent-color), 0 0 15px 15px var(--accent-color), 0 0 0 15px var(--accent-color);
    scale: 1.12;
  }
}
@keyframes pulsate-quadruple {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.6;
    box-shadow: 0 0 0 2px var(--number-color), 0 0 15px 15px var(--number-color), 0 0 0 15px var(--number-color);
  }
  100% {
    opacity: 0;
    box-shadow: 0 0 0 2px var(--number-color), 0 0 15px 15px var(--number-color), 0 0 0 15px var(--number-color);
  }
}
@keyframes pulsate-quadruple2 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.25;
    box-shadow: 0 0 0 2px var(--number-color), 0 0 15px 15px var(--number-color), 0 0 0 15px var(--number-color);
  }
  100% {
    opacity: 0;
    box-shadow: 0 0 0 2px var(--number-color), 0 0 15px 15px var(--number-color), 0 0 0 15px var(--number-color);
    scale: 1.12;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(15px);
  }
}

/* colors/styles/_banner.scss */
.banner {
  display: flex;
  overflow: clip;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1170px;
  margin: 0 auto 60px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.banner.banner--primary .banner__button {
  box-shadow: 8px 8px 42px #a89ad2;
}
.banner.banner--primary {
  color: #2c204d;
  background-image: url('../images/banner-bg-1.jpg');
}
.banner.banner--secondary .banner__button {
  box-shadow: 8px 8px 42px #ff757c;
}
.banner.banner--secondary .banner__right img {
  box-sizing: border-box;
  width: 82%;
  padding-left: 80px;
}
.banner.banner--secondary .banner__right {
  width: 50%;
  margin-top: 20px;
  order: 1;
}
.banner.banner--secondary .banner__left {
  width: 50%;
  padding-right: 125px;
  padding-left: 0;
  order: 2;
}
.banner.banner--secondary {
  padding-top: 20px;
  color: #fff;
  background-image: url('../images/banner-bg-2.jpg');
}
.banner__left {
  box-sizing: border-box;
  width: 46%;
  padding: 100px 0 0 80px;
}
.banner__heading {
  margin: 0;
  font: 400 64px / 64px 'Louize';
  letter-spacing: -.06em;
}
.banner__description {
  padding-right: 70px;
  font: 400 20px / 30px 'Nunito';
}
.banner__right {
  width: 54%;
}
.banner__right img {
  width: 100%;
}
@media (max-width: 1366px) {
  .banner {
    width: 100%;
    margin-bottom: 15px;
  }
  .banner.banner--secondary .banner__left {
    width: 100%;
    padding: 10px 20px 20px 20px;
  }
  .banner.banner--secondary .banner__right img {
    width: 100%;
    padding-right: 20px;
    padding-left: 0;
  }
  .banner.banner--secondary .banner__right {
    width: 57%;
    margin: 0 auto;
  }
  .banner.banner--secondary {
    padding: 30px 0;
  }
  .banner__left {
    width: 100%;
    padding: 50px 20px 20px 20px;
    text-align: center;
  }
  .banner__left .banner__heading {
    font-size: 42px;
    line-height: 42px;
  }
  .banner__left .banner__description {
    padding-right: 0;
  }
  .banner__left .banner__button {
    margin: 0 auto;
  }
  .banner__right {
    width: 100%;
  }
}

/* colors/styles/_button.scss */
.button {
  display: block;
  width: 270px;
  position: relative;
  z-index: 5;
  padding: 16px 0 14px;
  font: 400 16px / 21px 'MaisonNeue-Light';
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  border-radius: 50px;
  background-color: #fff;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
.button:hover {
  color: #fff;
  background-color: #ff5924;
}
.button.button--main-visual {
  width: 195px;
  box-shadow: 8px 8px 42px #ffa8ab;
}
.button.button--banner1 {
  margin-top: 30px;
  box-shadow: 8px 8px 42px #a89ad2;
}
.button.button--banner2 {
  margin-top: 30px;
  box-shadow: 8px 8px 42px #ff757c;
}
.button.button--footer {
  margin: 0 auto 80px;
  box-shadow: 6px 6px 42px #fbad1f;
}
@media (max-width: 1220px) {
  .button {
    transition: none;
  }
  .button.button--main-visual {
    width: 135px;
    padding: 10px 0 8px;
    font-size: 10px;
  }
  .button.button--banner1,
.button.button--banner2 {
    margin: 0 auto;
  }
  .button.button--footer {
    margin-bottom: 40px;
  }
}
body {
  margin: 25px;
}
.wrap {
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.wrap.is-shown {
  opacity: 1;
}
.main__description {
  width: 896px;
  position: relative;
  z-index: 5;
  margin: 2vw auto 5vw;
  font: 400 41px / 1.3 'MaisonNeue-Light';
  text-align: center;
  letter-spacing: -.05em;
}
.main__description span {
  display: inline-block;
  width: 34px;
  height: 34px;
  position: relative;
  top: 3px;
  line-height: 0.95;
  border-radius: 50%;
  background-color: #ff5924;
}
.main__description a:hover {
  opacity: 0.7;
}
.main__description a {
  display: inline-block;
  margin-top: 20px;
  transition: opacity 0.2s ease-in-out;
}
footer {
  overflow: hidden;
  overflow: clip;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  margin-top: 120px;
  padding: 100px 70px 0;
  text-align: center;
  opacity: 0;
  border-radius: 25px;
  background-image: url('../images/footer-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: opacity 1s ease-in-out;
}
footer.is-fade-in {
  opacity: 1;
}
footer::after {
  content: '';
  width: 100%;
  height: 144px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(255 204 115 / 0%) 0%, #ffcc73 100%);
}
footer p {
  margin: 0.7em 0 1em;
  font: 400 64px / 1.2 'Louize';
  text-align: center;
  letter-spacing: -.06em;
}
footer img:first-child {
  width: 57px;
  height: 89px;
}
footer img:last-child {
  width: 90%;
  filter: drop-shadow(0px -26px 100px rgb(238 32 24 / 35%));
}
.back-to-top {
  position: fixed;
  z-index: 99;
  right: 15px;
  bottom: 25px;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 30;
}
.back-to-top.is-shown {
  pointer-events: auto;
  opacity: 1;
}
.back-to-top:hover img {
  scale: 1.1;
}
.back-to-top img {
  width: 74%;
  transition: scale 0.4s ease-in-out;
}
@media (max-width: 1220px) {
  body {
    margin: 5px;
  }
  .main__description {
    box-sizing: border-box;
    width: 80%;
    margin-bottom: 12vw;
    padding: 0 20px;
    font-size: 22px;
  }
  .main__description .pc-only {
    display: none;
  }
  .main__description span {
    width: 18px;
    height: 18px;
    line-height: 0.9;
  }
  .main__description a img {
    scale: 0.8;
  }
  footer {
    margin-top: 30px;
    padding: 50px 35px 0;
  }
  footer img:first-child {
    width: 45px;
    height: 72px;
  }
  footer img:last-child {
    width: 100%;
  }
  footer p {
    margin-bottom: 0.7em;
    font-size: 44px;
  }
  .back-to-top {
    right: -25px;
    bottom: 10px;
  }
  .back-to-top img {
    width: 60%;
  }
}
@media (max-width: 576px) {
  .main__description {
    width: 100%;
  }
}