/* General styles */
body {
  background-color: rgba(15, 15, 15, 1);
  color: #ffffff;
  font-family: sans-serif;
  margin: 0;
}

.content {
  padding: 0 104px;
}

.section {
  margin-top: 135px;
}

.section:first-child {
  margin-top: 0;
}

/* Section 1 */
.section1 {
  position: relative;
}

.section1 .banner {
  width: 100%;
}

.section1 .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
}

.section1 .logo {
  width: 194px;
  height: 40px;
  margin-top: 24px;
}

.section1 h1 {
  font-size: 58px;
  font-weight: 800;
  margin-top: auto;
  margin-bottom: 30px;
}

.section1 p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  width: 50%;
  margin-bottom: 30px;
  line-height: 30px;
}

.section1 button {
  width: 210px;
  height: 60px;
  background-color: rgba(232, 14, 29, 1);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}

.section1 .happy-users {
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-bottom: 50px;
}

.section1 .avatars img {
  width: 44px;
  height: 44px;
  margin-left: -16px;
}

.section1 .avatars img:first-child {
  margin-left: 0;
}

.section1 .happy-users .text {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.section1 .happy-users .count {
  font-size: 30px;
  font-weight: 600;
}

.section1 .happy-users .label {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* Section 2 */
.section2 h2 {
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 74px;
}

.section2 p {
  font-size: 18px;
  font-weight: 400;
  color: #999999;
  text-align: center;
  max-width: 800px;
  margin: 16px auto 0;
  line-height: 28px;
}

.section2 .full-width-image {
  width: 100%;
  margin-top: 40px;
}

/* Section 3 */
.section3 h2 {
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 70px;
  line-height: 74px;
}

.section3 .features {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.section3 .feature-item {
  flex: 1;
  border: 1px solid #4d4d4d;
  background: #242424;
  border-radius: 30px;
  padding: 52px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.section3 .feature-item img {
  width: 82px;
  height: 60px;
}

.section3 .feature-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 30px 0 20px;
}

.section3 .feature-item p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #999999;
}

/* Section 4 */
.section4 .relative-wrapper {
  position: relative;
}

.section4 .full-width-image {
  width: 100%;
  display: block;
}

.section4 .content {
  position: absolute;
  top: 30%;
  /* transform: translateY(-50%); */
  left: 0;
  right: 0;
}

.section4 h2 {
  font-size: 54px;
  font-weight: 700;
  margin-top: 0;
}

.section4 p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 50%;
  margin-top: 20px;
  line-height: 30px;
}

.section4 .overlay-icon {
  position: absolute;
  width: 180px;
  bottom: -30px;
  left: 104px;
}

/* Section 5 */
.section5 h2 {
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 74px;
  margin-bottom: 70px;
}

.slider {
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.slide-track {
  display: flex;
}

.slide {
  width: 394px;
  flex-shrink: 0;
  margin-right: 24px;
}

.card {
  background: #242424;
  border-radius: 20px;
  padding: 24px;
  aspect-ratio: 394 / 230;
}

.card-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card-top img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin-right: 16px;
}

.user-info h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
}

.rating img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  vertical-align: middle;
}

.card p {
  font-size: 14px;
  color: #999999;
  line-height: 28px;
}

.section5 .slide:nth-child(1) .card,
.section5 .slide:nth-child(5) .card {
  opacity: 0.4;
}

.section5 .slide:nth-child(2) .card,
.section5 .slide:nth-child(4) .card {
  opacity: 0.7;
}

/* Section 6 */
.section6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section6 .main-icon {
  width: 100px;
}

.section6 .main-name {
  width: 269px;
  margin-top: 21px;
}

/* Footer */
footer {
  height: 100px;
  border-top: 1px solid #333333;
  margin-top: 135px;
}

footer .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-left img {
  width: 32px;
  margin-right: 10px;
}

.footer-right p {
  font-size: 14px;
  color: #999999;
}

.footer-left span {
  font-size: 16px;
  color: #b3b3b3;
}

#get-start-link {
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
}
