.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 60px 0px 120px;
  align-items: center;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.title {
  color: #131313;
  font-size: 32px;
  line-height: 150%;
  font-weight: 400;
  letter-spacing: 0.15px;
  margin: 0px;
}

.paragraph-1 {
  color: #131313;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.15px;
  margin: 60px 0px;
}

.expriments {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.experiment {
  display: flex;
  gap: 16px;
}

.experiment-image {
  max-width: 180px;
  height: auto;
}

.experiment-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.experiment-title {
  color: #131313;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.15px;
}

.experiment-description {
  color: #131313;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.15px;
}

.experiment-info {
  color: #131313;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.15px;
}

.experiment-status {
  display: inline-flex;
  color: #131313;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.15px;
  padding: 4px 8px;
  background: rgba(19, 19, 19, 0.1);
}

.blue-text {
  color: #007ebb;
}

.orange-text {
  color: #dd9938;
}

.green-text {
  color: #2cb251;
}

.green-background {
  background: rgba(44, 178, 81, 0.1);
}

@media (max-width: 768px) {
  .main-content {
    margin: 30px 0px 60px;
  }

  .title {
    padding: 0px 20px;
  }

  .paragraph-1 {
    margin: 30px 0px;
    padding: 0px 20px;
  }

  .expriments {
    padding: 0px 20px;
  }
}

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

  .experiment-image {
    padding: 0px 20px;
  }

  .experiment-content {
    padding: 0px 20px;
  }

  .expriments {
    padding: 0px;
  }
}
