.ani {
  transition: all 1s;
}
.ani.down {
  transform: translateY(-80px);
}
.ani.up {
  transform: translateY(80px);
}
.ani.left {
  transform: translateX(80px);
}
.ani.right {
  transform: translateX(-80px);
}
.ani.opacity {
  opacity: 0;
}
.ani.off {
  position: relative;
}
.ani.off::after {
  content: "";
  display: block;
  background: var(--color-white);
  position: absolute;
  top: 0;
  bottom: 0;
  transition: all 0.8s ease;
  width: 100%;
  height: 100%;
}
.ani.off.off-left::after {
  left: 0;
}
.ani.off.off-right::after {
  right: 0;
}
.ani.on.down, .ani.on.up {
  transform: translateY(0);
}
.ani.on.left, .ani.on.right {
  transform: translateX(0);
}
.ani.on.opacity {
  opacity: 1;
}
.ani.on.off::after {
  width: 0;
}

.bg-light {
  position: relative;
}
.bg-light::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #F7F6F1;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bg-light.height::before {
  height: calc(100% + 50px);
}

.icon img {
  max-height: 100%;
}

.dot {
  display: flex;
  column-gap: 10px;
  line-height: 1.3;
}
.dot::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  background: #333;
  border-radius: 50%;
  transform: translateY(0.6em);
}

.mouse {
  width: 20px;
  height: 35px;
  border: 2px solid var(--color-white);
  border-radius: 20px;
  mix-blend-mode: exclusion;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}
.mouse span {
  display: block;
  width: 2px;
  height: 7px;
  background: var(--color-white);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseAni 2s ease-in-out infinite;
}
@keyframes mouseAni {
  0% {
    top: 5px;
  }
  50% {
    top: 19px;
  }
  100% {
    top: 5px;
  }
}

.check-circle {
  width: 45px;
  height: 45px;
  background: var(--color-main);
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.check-circle.small {
  width: 30px;
  height: 30px;
}
.check-circle.small img {
  width: 16px;
}

.magnecit-item {
  transition: all 0.4s ease;
}

.link-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
}
.link-flex p {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
}

.hover-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hover-button::before, .hover-button::after {
  content: "";
  display: block;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hover-button::before {
  width: 0;
  height: 0;
  background: var(--color-main);
  z-index: -1;
}
.hover-button::after {
  width: 100%;
  height: 100%;
}
.hover-button img {
  transition: all 0.2s ease;
}
.hover-button.gray::after {
  border: 1px solid #ddd;
}
.hover-button.gray img {
  filter: brightness(0.5);
}
.hover-button.white::after {
  border: 1px solid #fff;
}
.hover-button:hover::before {
  width: 100%;
  height: 100%;
}
.hover-button:hover::after {
  border-color: transparent;
}
.hover-button:hover img {
  filter: inherit;
}

.download-button {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.download-button::before {
  content: "";
  display: block;
  width: 0;
  background: var(--color-main);
  border-radius: 50%;
  padding: 0;
  z-index: -1;
  transition: all 0.8s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.download-button > * {
  transition: all 0.6s;
}
.download-button span {
  color: #333;
  font-size: 2rem;
  font-weight: 500;
}
.download-button:hover::before {
  width: 110%;
  padding: 55% 0;
}
.download-button:hover > * {
  filter: brightness(0) invert(1);
}

.scrollable {
  overflow-y: scroll;
}
.scrollable::-webkit-scrollbar {
  width: 3px;
}
.scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.scrollable::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.status {
  display: inline-flex;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-black);
  border-radius: 5px;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  padding: 0 10px;
}
.status.big {
  width: 90px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: 600;
}
.status.bg {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
}
.status.border {
  background: var(--color-white);
  border-color: var(--color-main);
  color: var(--color-main);
}

.move-tabs {
  width: 100%;
  height: 70px;
  padding: 5px;
  position: relative;
  margin-bottom: 40px;
}
.move-tabs::before {
  content: "";
  display: block;
  border: 1px solid #ddd;
  border-radius: 100px;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.move-tabs span {
  display: block;
  height: calc(100% - 10px);
  background: var(--color-main);
  border-radius: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.6s;
}
.move-tabs ul,
.move-tabs ul * {
  width: 100%;
  height: 100%;
}
.move-tabs ul,
.move-tabs ul li > * {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.move-tabs ul li > * {
  color: #888;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.move-tabs ul li:hover > *, .move-tabs ul li.on > * {
  color: var(--color-white);
}

.popup {
  background: var(--color-white);
  border-radius: 20px;
  display: none;
  z-index: 2;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .inner {
  width: 100%;
}
.popup .close-button {
  position: absolute;
  top: 40px;
  left: auto;
  right: 40px;
}
.popup .close-button i {
  color: var(--color-black);
  font-size: 2.6rem;
}

.popup-on {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .hover-button {
    width: 50px;
    height: 50px;
  }
  .check-circle {
    width: 35px;
    height: 35px;
  }
  .move-tabs ul li > * {
    font-size: 1.9rem;
  }
}
@media (max-width: 1024px) {
  .status.big {
    width: 70px;
    height: 30px;
    font-size: 14px;
  }
  .download-button span {
    font-size: 1.8rem;
  }
  .move-tabs {
    height: 60px;
  }
  .move-tabs ul li > * {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .link-flex {
    column-gap: 15px;
  }
  .move-tabs ul {
    justify-content: space-around;
  }
  .move-tabs ul li > * {
    font-size: 1.6rem;
  }
  .popup .close-button {
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 640px) {
  .link-flex {
    column-gap: 10px;
  }
  .link-flex p {
    font-size: 1.6rem;
  }
  .hover-button {
    width: 40px;
    height: 40px;
  }
  .hover-button img {
    width: 8px;
  }
  .move-tabs {
    height: 55px;
    margin-bottom: 30px;
  }
  .move-tabs::before {
    border-radius: 5px;
  }
  .move-tabs span {
    display: none;
  }
  .move-tabs ul li {
    width: auto;
    flex-grow: 1;
    position: relative;
  }
  .move-tabs ul li::before {
    content: "";
    display: block;
    border-radius: 5px;
    background: var(--color-main);
    opacity: 0;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .move-tabs ul li > * {
    font-size: 1.4rem;
  }
  .move-tabs ul li.on::before {
    opacity: 1;
  }
  .download-button span {
    font-size: 1.7rem;
  }
}