.HOME {
  width: 100%;
  position: relative;
  padding: 0 0 80px;
}

.HOME .LEFT {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;

  position: relative;
}

@keyframes rotateAnimation {
  /* Thêm keyframes cho hiệu ứng xoay */
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.HOME .RIGHT {
  z-index: 1;
  padding-left: 100px;
}

.HOME .sectionCtn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  min-height: calc(100vh - 95px);

  align-items: center;
}

.HOME .certinia-logo {
  width: 140px;
}

.HOME #pattern {
  position: absolute;
  opacity: 0.25;
  scale: 0.8;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .HOME {
    padding: 40px 0 80px;
  }

  .HOME .sectionCtn {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .HOME .LEFT .certinia-logo {
    width: 100px;
    margin: 0 auto;
  }

  .HOME .LEFT .title,
  .HOME .LEFT .description,
  .HOME .RIGHT .small-description {
    text-align: center;
  }

  .HOME .RIGHT {
    gap: 40px;
    width: 100%;
    padding-left: 0;
  }

  .HOME .LEFT .title,
  .HOME .LEFT .description,
  .HOME .RIGHT {
    width: 80%;
    margin: auto;
  }
}
