body {
  background-color: #F6F5FD;
  width: 100%;
  height: 100%;
  position: relative;
}

.root {
  width: 100%;
  height: 100vh;
  position: relative;
}

.root_inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 20px;
}

.flex {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.description p,
.description span {
  line-height: 1.8;
}

.description p span {
  color: #6C63FF;
  font-weight: 700;
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .text-sec {
    width: 100%;
  }

  .image-sec {
    width: 100%;
  }
}