.repeater-info-box {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.repeater-info-box .wrap {
  width: 100%;
  max-width: 960px;
  padding: 100px 20px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 40px;
}

.repeater-info-box .top-content {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.repeater-info-box .top-content .title {
  margin: 0;
  width: 100%;
  color: #020202;
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 500;
  font-style: italic;
  line-height: 64px;
  text-transform: capitalize;
}

.repeater-info-box .top-content .intro-content {
  width: 100%;
}

.repeater-info-box .top-content .intro-content,
.repeater-info-box .top-content .intro-content p {
  margin: 0;
  color: #454545;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.repeater-info-box .top-content .intro-content p + p {
  margin-top: 12px;
}

.repeater-info-box .box-items {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}

.repeater-info-box .box-item {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: -10px 20px 25px 0 rgba(117, 54, 19, 0.1);
  padding: 32px 40px;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}

.repeater-info-box .box-item-heading {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  gap: 24px;
}

.repeater-info-box .box-item-title {
  margin: 0;
  color: #020202;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: 40px;
  text-transform: capitalize;
}

.repeater-info-box .box-item-divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 2px solid #E1E1E1;
  margin: 0;
}

.repeater-info-box .box-item-image {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.repeater-info-box .box-item-image img,
.repeater-info-box .box-item-image .box-item-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.repeater-info-box .box-item.has-image {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas:
    "image heading"
    "image content";
  column-gap: 40px;
  row-gap: 20px;
  align-items: start;
}

.repeater-info-box .box-item.has-image .box-item-image {
  grid-area: image;
}

.repeater-info-box .box-item.has-image .box-item-heading {
  grid-area: heading;
}

.repeater-info-box .box-item.has-image .box-item-content {
  grid-area: content;
}

.repeater-info-box .box-item-content {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  gap: 16px;
}

.repeater-info-box .box-item-content p,
.repeater-info-box .box-item-content li {
  margin: 0;
  color: #454545;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.repeater-info-box .box-item-content p + p {
  margin-top: 0;
}

.repeater-info-box .box-item-content ul,
.repeater-info-box .box-item-content ol {
  margin: 0;
  padding-left: 24px;
}

.repeater-info-box .box-item-content ul.checked,
.repeater-info-box .box-item-content ul.checkmark {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 8px;
}

.repeater-info-box .box-item-content ul.checked li,
.repeater-info-box .box-item-content ul.checkmark li {
  position: relative;
  padding-left: 32px;
  text-align: left;
}

.repeater-info-box .box-item-content ul.checked li::before,
.repeater-info-box .box-item-content ul.checkmark li::before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='%2384BD25'/%3E%3Cpath d='M7.5 12.5L10.5 15.5L16.5 9' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.repeater-info-box .box-item-content a {
  text-decoration: underline;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.repeater-info-box .box-item-content strong {
  font-weight: 700;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

@media screen and (max-width: 1023px) {
  .repeater-info-box .wrap {
    padding: 80px 20px;
  }

  .repeater-info-box .box-items {
    gap: 12px;
  }

  .repeater-info-box .box-item {
    padding: 20px;
    gap: 20px;
  }

  .repeater-info-box .box-item-heading {
    gap: 12px;
  }

  .repeater-info-box .box-item.has-image {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
  }

  .repeater-info-box .box-item.has-image .box-item-image {
    grid-area: unset;
  }

  .repeater-info-box .box-item.has-image .box-item-heading {
    grid-area: unset;
  }

  .repeater-info-box .box-item.has-image .box-item-content {
    grid-area: unset;
  }

  .repeater-info-box .box-item-content {
    gap: 12px;
  }

  .repeater-info-box .box-item-content ul.checked,
  .repeater-info-box .box-item-content ul.checkmark {
    gap: 6px;
  }
}

@media screen and (max-width: 767px) {
  .repeater-info-box .wrap {
    padding: 40px 20px;
    gap: 32px;
  }

  .repeater-info-box .top-content .title {
    font-size: 38px;
    line-height: 46px;
  }

  .repeater-info-box .box-item-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
  }
}
