html {
  font-size: 20px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
}

.container {
  max-width: 1300px;
}

.h1,
.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #313131;
}

.h1 {
  font-size: 40px;
}

.section-title {
  font-size: 32px;
}

.subtitle {
  font-size: 24px;
  font-weight: 600;
}

.white {
  color: #fff;
  background-color: #17223a;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background-color: #006cb5;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  border-radius: 10px;
  border: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-main:hover {
  background-color: #0d4471;
  color: #fff;
}

.btn-main:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-main--sm {
  padding: 8px 20px;
  font-size: 16px;
}

.btn-main--lg {
  padding: 10px 36px;
  font-size: 24px;
}

.btn-main--full {
  width: 100%;
  display: block;
}

@media (max-width: 1000px) {
  body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  .h1 {
    font-size: 25px;
  }
  .section-title {
    font-size: 20px;
  }
  .subtitle {
    font-size: 20px;
    font-weight: 600;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.news-subscribe {
  background-image: url("/static/landing/img/banner1.png");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  margin-top: 40px;
}
.news-subscribe form {
  display: flex;
  gap: 20px;
}
.news-subscribe form input,
.news-subscribe form button {
  flex: 1;
  height: 50px;
  border-radius: 10px;
}
.news-subscribe form input {
  padding: 0 14px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.news-subscribe form button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.news-detail-section {
  padding: 50px 0;
  background: #fff;
}
.news-detail-section .news-detail-content {
  position: relative;
}
.news-detail-section .news-detail-text p {
  margin-bottom: 1.2rem;
}
.news-detail-section .news-detail-text ul {
  padding-left: 20px;
  margin-bottom: 1.2rem;
}
.news-detail-section .news-detail-text ul li {
  list-style: disc;
  margin-bottom: 6px;
}
.news-detail-section .news-detail-image {
  float: right;
  width: 550px;
  margin-left: 25px;
  margin-bottom: 20px;
}
.news-detail-section .news-detail-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .news-detail-section .news-detail-image {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}/*# sourceMappingURL=detail.css.map */