.get-checklist-section {
  background: var(--blue);
}
.get-checklist-section__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 90px 0;
}
@media (max-width: 1024px) {
  .get-checklist-section__content {
    flex-direction: column;
    gap: 32px;
  }
}
.get-checklist-section__left {
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .get-checklist-section__left {
    max-width: 100%;
    max-height: 280px;
  }
}
.get-checklist-section__left > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.get-checklist-section__right {
  display: flex;
  flex-flow: column;
  gap: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  .get-checklist-section__right {
    text-align: center;
  }
}
.get-checklist-section__right-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  line-height: 1.2 !important;
}
.get-checklist-section__right-desc {
  color: var(--white) !important;
  font-size: 1.1rem !important;
  font-family: "Montserrat" !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}
.get-checklist-section__right-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat" !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  color: var(--blue) !important;
  background: var(--white) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 24px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}
.get-checklist-section__right-btn:hover {
  background: var(--gray-200) !important;
  color: var(--black) !important;
  transform: translateY(-2px) !important;
}
@media (max-width: 1024px) {
  .get-checklist-section__right-btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */