:root {
  --body-background: #05010d;
  --text-color: rgba(255, 255, 255, .75);
}

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

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--body-background);
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: var(--text-color);
  overflow-x: hidden;
}

section {
  padding: 75px 0;
}

.section {
  padding: 100px 0;
}
.section-title {
  margin: 0 0 50px;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.section-subtitle {
  max-width: 540px;
  margin: -35px auto 100px;
  font-size: 24px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

h1 {
  margin: 0;
  font-size: 54px;
}

p {
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: rgba(255, 99, 99, 0.75);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #ff6363;
}

.subtitle {
  max-width: 540px;
  margin: 0;
  font-size: 24px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  font-family: "Nunito", sans-serif;
}
.faq-item {
  padding: 32px 0;
}
.faq-item h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.faq-item p {
  margin: 10px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}
.faq-item + .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
  grid-gap: 16px;
}
.grid-item {
  min-width: 255px;
  padding: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.grid-item h4 {
  margin: 0 0 10px;
}
.grid-item p {
  margin: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.button {
  padding: 7px 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button.primary {
  background: rgba(245, 111, 94, 0.5);
}
.button.primary:hover {
  background: rgba(245, 111, 94, 0.75);
}
.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}
.button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.button.solid {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.75);
  color: #000;
}
.button.solid:hover {
  background: rgb(255, 255, 255);
}
.button.size-m {
  padding: 10px 20px;
  font-size: 18px;
}
.button.full-width {
  width: 100%;
}

.top-image {
  width: 1400px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.top-image img {
  width: 100%;
  display: block;
}

.cursore-uq {
  width: 6px;
  height: 6px;
  top: -2px;
  left: -2px;
  border-radius: 100%;
  background-color: #f56f5e;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  -webkit-animation: cursor_opacity 2s;
  animation: cursor_opacity 2s;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: transform 0.15s ease;
  transition: transform 0.15s ease;
}
.cursore-uq:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background-color: #f56f5e;
  opacity: 0.2;
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cursore-uq svg {
  position: relative;
  left: -14px;
  top: -16px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  opacity: 1;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  overflow: hidden;
  vertical-align: middle;
}
.cursore-uq .radial-progress-cover {
  stroke: #f56f5e;
}
.cursore-uq.hover {
  opacity: 0.5 !important;
}
.cursore-uq.hover:after {
  opacity: 1;
  width: 36px;
  height: 36px;
}

@-webkit-keyframes cursor_opacity {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes cursor_opacity {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header {
  max-width: 720px;
  margin: 150px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.vertical-bar {
  width: 100px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100px;
  display: flex;
  flex-direction: column;
}
.vertical-bar .item {
  flex: 1;
  display: flex;
  align-items: center;
}

.prices-container {
  max-width: 1900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(298px, 1fr));
  grid-gap: 16px;
}
.prices .package {
  padding: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.prices .package-title {
  margin: 0 0 10px;
}
.prices .package-price {
  font-size: 36px;
}
.prices .package-benefits {
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.prices .package-item {
  display: flex;
  gap: 12px;
  color: var(--text-color);
}
.prices .package-icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  opacity: 0.25;
}

.timeline {
  overflow-x: scroll;
}
.timeline-container {
  display: grid;
  width: 910px;
  height: 120px;
  grid-template-columns: repeat(8, minmax(1px, 1fr)) 2px;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
}
.timeline .line {
  width: 2px;
  height: 32px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline .line.active {
  height: 80px;
  background: #ff6363;
}
.timeline .line.active .timeline-icon {
  opacity: 1;
}
.timeline .line.active .description {
  visibility: visible;
  opacity: 1;
}
.timeline .line:before {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -40px;
  left: -10px;
  content: "";
}
.timeline .year {
  position: absolute;
  bottom: calc(100% + 10px);
  font-size: 12px;
  transform: translateX(-50%);
  opacity: 0.4;
}
.timeline-icon {
  position: absolute;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.3;
}
.timeline .description {
  width: 240px;
  position: absolute;
  top: calc(100% + 40px);
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline .description h4 {
  margin: 0;
  font-weight: 500;
}
.timeline .description p {
  margin: 10px 0 0;
  line-height: 1.4;
  font-weight: 300;
}
.timeline-spacer {
  height: 16px;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 9px, hsla(0, 0%, 100%, 0.2) 0, hsla(0, 0%, 100%, 0.2) 10px);
}
.timeline .milestone {
  position: relative;
}