body {
  box-sizing: border-box;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}
img {
  width: 100%;
  height: 100%;
}
:root {
  --primary-main: #106657;
  --secondary-main: #525252;
  --text-base: 16px;
}

.container {
  width: calc(100% - 400px);
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}
.desktop {
  display: block;
}
.mobile {
  display: none;
}
.text-secondary-main {
  color: var(--secondary-main) !important;
}
.text-primary-main {
  color: var(--primary-main) !important;
}
@media (max-width: 1224px) {
  .container {
    width: calc(100% - 96px);
  }
}

@media (max-width: 1023px) {
  .container {
    width: calc(100% - 48px);
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 16px);
  }
}
@media (max-width: 425px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.text-center {
  text-align: center;
}
.items-center {
  align-items: center;
}
.bg-center {
  background-position: center;
}
.bg-cover {
  background-size: cover;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}
.index-header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-position: center;
  position: sticky;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 999;
  background-color: white;
}
.index-header_bg {
  background-image: url('/assets/images/header.svg');
}
.index-header__logo {
  width: 200px;
  height: 84px;
}
.index-footer {
  background-color: var(--primary-main);
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: var(--text-base);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-footer_bg {
  background-image: url('/assets/images/bg-footer-landingpage.svg');
}
.title-one {
  display: flex;
  width: 100%;
}
.title-one::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(155, 205, 196, 0.5);
}
.title-one__text {
  background-color: white;
  z-index: 1;
  padding-left: 8px;
  padding-right: 8px;
}
.title-one__name {
  padding-left: 8px;
  padding-right: 8px;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--primary-main);
}
/* banner section */
.banner-section__block {
  width: 100%;
  padding-bottom: 35%;
  background-image: url('/assets/banner-landingpage.jpg');
}
.banner-x3 {
  background-image: url('/assets/images/banner-x3.jpg');
}
.banner-section__image {
  width: 100%;
  height: 100%;
}
/* condition-section */
.condition-section {
  padding-top: 36px;
  padding-bottom: 36px;
}
.condition-content {
  margin-top: 32px;
  padding: 0 40px;
}
.condition-main__content {
  width: 60%;
  line-height: 32px;
}
.condition-main__image {
  margin-left: 40px;
}
.condition__content-mini {
  list-style-type: none;
  padding-inline-start: 0;
}
@media (max-width: 768px) {
  .condition-main {
    flex-direction: column;
  }
  .title-one__name {
    font-size: 20px;
    width: 160px;
    text-align: center;
  }
  .condition-main__content {
    width: 100%;
    padding-inline-start: 16px;
  }
  .condition-main__image {
    display: flex;
    justify-content: center;
  }
  .condition-main__image img {
    width: 320px;
    height: 240px;
  }
}
@media (max-width: 425px) {
  .banner-section__block {
    width: 100%;
    padding-bottom: 33%;
    background-image: url('/assets/banner-landingpage.jpg');
  }
  .banner-x3 {
    padding-bottom: 80%;
    background-image: url('/assets/images/banner-x3-mobile.jpg');
  }
  .condition-main__content {
    width: 98%;
    font-size: 14px;
  }
  .index-header__logo {
    width: 123px;
    height: 40px;
  }
}
/* steps section */
.steps-section {
  padding: 50px 0px;
  background: linear-gradient(
    251.98deg,
    rgba(16, 102, 87, 0.09) 34.86%,
    rgba(16, 102, 87, 0.09) 34.86%,
    rgba(255, 113, 13, 0.09) 114.78%
  );
}
.title-two__text::before,
.title-two__text::after {
  content: '';
  width: calc(50% - 200px);
  height: 1px;
  position: absolute;
  top: 50%;
  background-color: rgba(155, 205, 196, 0.5);
}
.title-two__text::before {
  left: 0;
}
.title-two__text::after {
  right: 0;
}
.steps-main {
  margin-top: 40px;
  padding: 0 24px;
  justify-content: space-between;
}
.step__title {
  height: 56px;
  font-size: 18px;
}
.step__content {
  margin-top: 16px;
  width: 320px;
  height: 240px;
}
.w-8 {
  width: 32px;
}
.step__title_count {
  /* display: block; */
  background-color: var(--primary-main);
  font-size: 18px;
  color: white;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  font-weight: 600;
}
.flex-1 {
  flex: 1;
}
.step-one,
.step-two {
  width: 48%;
}

.btn {
  padding: 20px 40px;
  border-radius: 5px;
  color: white;
  background-color: var(--primary-main);
  text-decoration: unset;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
}
.btn-redirect {
  margin-top: 54px;
}
@media (max-width: 768px) {
  .title-two__text::before,
  .title-two__text::after {
    width: calc(50% - 150px);
  }
  .steps-main {
    flex-direction: column;
  }
  .step-one,
  .step-two {
    width: 100%;
  }
  .step__content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .step__content img {
    width: 320px;
    height: 240px;
  }
  .step-two {
    margin-top: 24px;
  }
}
@media (max-width: 425px) {
  .steps-main {
    padding: 0;
  }
  .title-two__text::before,
  .title-two__text::after {
    width: calc(50% - 120px);
  }
  .steps-section .title-one__name {
    width: 140px;
  }
  .step__title_count,
  .step__title {
    font-size: 16px;
  }
}
/* question-section */
.question-section {
  padding: 50px 0;
}
.question-main {
  margin-top: 40px;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
}
ul.question-content {
  list-style-type: none;
  width: 47%;
  padding-inline-start: 0;
}
ul.question-content li {
  font-size: 18px;
  line-height: 32px;
  color: var(--secondary-main);
  font-style: italic;
  font-weight: 300;
}
ul.question-content li b {
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 768px) {
  .question-main {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 0;
  }
  ul.question-content {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .question-main {
    padding: 0;
  }
  ul.question-content {
    margin-block-start: 0px;
    margin-block-end: 0px;
  }
  ul.question-content li {
    font-size: 14px;
  }
}
