*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  font-size: 1.6rem;
  color: #4e4e4e;
  font-family: "Open Sans", sans-serif;
}

/* helpers */
.mx-auto {
  padding-right: auto !important;
  padding-left: auto !important;
  text-align: center;
}

.mb-3 {
  margin-bottom: 3rem;
}

/* typography */
.heading-secondary {
  font-size: 3.6rem;
  font-weight: 600;
}

/* form section */

.main {
  background-color: #f2f2f2;
  width: 100%;
  z-index: 5;
  position: relative;
}
.main__container {
  padding: 3rem 5rem;
  flex: 1;
}

/* rating section */

.sect-rating__container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.sect-rating__container > h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.sect-rating__container > h3 {
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.sect-rating__container textarea {
  width: 100%;
  font: inherit;
  height: 10rem;
  padding: 1rem;
  background-color: #f6f6f6;
  border-radius: 0.6rem;
  outline: none;
  resize: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.sect-rating__container textarea:focus {
  box-shadow: 0 0 1rem #00000022;
}

/* affiliate section */

.sect-affiliate {
  background-color: #dfe2f0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  padding: 5rem;
}

.affiliate__left {
  flex: 0 1 45%;
}

.affiliate__title {
  font-size: 7.5rem;
  color: #003aea;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  line-height: 1.2;
  z-index: 100;
  user-select: none;
}

.affiliate__sub {
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #003aea;
}

.affiliate__program {
  background-color: #003aea;
  color: white;
  border-radius: 5rem;
  padding: 0 7rem;
  font-size: 6.56rem;
}

.affiliate__megaphone {
  position: absolute;
  top: -10rem;
  right: -2rem;
  width: 20rem;
  z-index: -1;
  transition: all 1s cubic-bezier(0, -0.01, 0.09, 0.98);
}

.affiliate__exclamation {
  position: absolute;
  top: 0rem;
  left: -5rem;
  width: 20rem;
  z-index: -1;
  transition: all 1s cubic-bezier(0, -0.01, 0.09, 0.98);
}

.affiliate__desc {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 10;
  font-size: 1.6rem;
  color: #101;
  text-transform: initial;
}

.affiliate__btn {
  margin-top: 3rem;
}

.affiliate__right {
  flex: 0 0 45%;
}

.affiliate__right-img {
  width: 100%;
}

/* keuntungan section */

.sect-keuntungan {
  width: 100%;
  background-color: #003aea;
  padding: 5rem;
  color: white;
  text-align: center;
}

.sect-keuntungan > h2 {
  margin-bottom: 3rem;
}

/* jasa section */

.sect-jasa {
  padding: 5rem 10rem;
  text-align: center;
  color: #101;
}

.sect-jasa > h2 {
  margin-bottom: 3rem;
}

/* faq section */

.sect-faq {
  padding: 5rem 10rem;
  display: flex;
  justify-content: space-between;
  background-color: #003aea;
}

.faq__img {
  flex: 0 0 10%;
  height: 15rem;
  margin: auto;
}

.faq__desc {
  flex: 0 0 75%;
  background-color: #ffdf2c;
  border-radius: 3rem;
  position: relative;
  color: #101;
  margin-left: 3rem;
  padding: 3rem 10rem;
  font-size: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.faq__desc:hover {
  animation: faqHover 0.3s;
}

.faq__question {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  height: 12.5rem;
}

/* enlist section */

.sect-enlist {
  display: flex;
  width: 100%;
}

.enlist__left {
  flex: 1 0 50%;
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.enlist__left > div {
  position: relative;
  display: flex;
  margin-bottom: 3rem;
}

.enlist__left > div > h2 {
  font-size: 6rem;
  color: #003aea;
  line-height: 1;
}

.enlist--red {
  color: #fa070c;
}

.enlist__right {
  color: white;
  flex: 1 0 50%;
  background-color: #003aea;
  padding: 5rem;
}

.enlist__right > div {
}

.enlist__right > div > * {
  margin-bottom: 2rem;
}

.enlist__right h3 {
  font-weight: 300;
  font-size: 2.4rem;
}

.enlist__right p {
  font-weight: 700;
}

/* card */
.cards {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}

.card {
  flex: 1;
  background-color: white;
  color: #4e4e4e;
  padding: 4rem 2.5rem;
  border-radius: 2rem;
}

.card__title {
  text-transform: uppercase;
  color: #003aea;
  margin-bottom: 1.5rem;
  font-size: 2.3rem;
}

.card__desc {
  margin-top: auto;
}

.card__img {
  width: 100%;
}

/* box */
.boxes {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.boxes > * {
  flex: 0 0 45%;
}

.box {
  width: 50%;
  padding: 1rem 3rem;
  border: 1px solid #cbcbcb;
  border-radius: 1rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.box__title {
  font-size: 1.6rem;
  color: #808080;
  font-weight: 700;
  text-transform: uppercase;
}

.box > div {
  margin: 0.75rem 0;
}

.box h4 {
  font-weight: 400;
}

/* info */
.infos {
  display: flex;
  gap: 5%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info {
  flex: 0 1 30%;
}

.info > * {
  margin-bottom: 2rem;
}

.info__img {
  width: 12rem;
}

.info__title {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* button */

.btn {
  background-color: #003aea;
  border-radius: 1.5rem;
  border: none;
  font: inherit;
  color: white;
  padding: 1rem 2rem;
  transition: 0.4s;
  cursor: pointer;
}

.btn:hover {
  background-color: rgb(20, 109, 218);
  animation: btnTransition 0.4s;
}

.btn-outline {
  border: 1px solid #fff;
  background-color: transparent;
}

/* animations */

@keyframes btnTransition {
  0% {
    transform: scale(1);
    background-color: #003aea;
  }

  30% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    background-color: rgb(20, 109, 218);
  }
}

@keyframes faqHover {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(1);
  }

  80% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

/* rating */
.rating {
  margin: 2rem;
  font-size: 3rem;
  user-select: none;
}

.rating i {
  cursor: pointer;
  color: #bbb;
}

.rating__fill {
  color: rgb(246, 224, 33) !important;
}

@media only screen and (max-width: 90em) {
  .main__container {
    padding: 3rem 3rem;
  }
}

@media only screen and (max-width: 75em) {
  .main__container {
    padding: 3rem 0;
  }
}

@media only screen and (max-width: 65em) {
  .affiliate__megaphone {
    width: 18rem;
  }

  .affiliate__exclamation {
    width: 18rem;
  }

  .sect-keuntungan {
    padding: 5rem 3rem;
  }

  /* card */
  .cards {
    display: flex;
    justify-content: space-between;
    gap: 3%;
  }

  .card {
    padding: 3rem 1.25rem;
  }

  .card__title {
    font-size: 2rem;
  }

  .sect-faq {
    padding: 5rem 6rem;
  }
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 59.375%;
  }

  .sect-enlist {
    flex-wrap: wrap;
  }

  .enlist__left {
    flex: 1 0 100%;
  }
  .enlist__right {
    flex: 1 0 100%;
  }

  .cards {
    flex-wrap: wrap;
  }

  .card {
    flex: 0 1 45%;
    padding: 3rem 1.25rem;
    margin-bottom: 3%;
  }

  .boxes > * {
    flex: 0 0 95%;
  }

  .boxes > *:not(:last-child) {
    margin-bottom: 3rem;
  }

  .sect-affiliate {
    flex-wrap: wrap;
  }

  .affiliate__left {
    flex: 0 1 100%;
  }

  .affiliate__title {
    font-size: 7rem;
  }

  .affiliate__program {
    padding: 0 7rem;
    font-size: 6rem;
  }

  .affiliate__megaphone {
    top: -10rem;
    right: 0rem;
    width: 17rem;
  }

  .affiliate__exclamation {
    top: 0rem;
    left: 0rem;
    width: 17rem;
  }

  .affiliate__right {
    flex: 0 0 100%;
  }

  .sect-jasa {
    padding: 5rem;
  }

  .info {
    flex: 0 1 45%;
  }

  .sect-faq {
    padding: 5rem 3rem;
  }

  .faq__img {
    flex: 0 0 10%;
    height: 10rem;
  }

  .faq__desc {
    padding: 3rem 5rem;
    font-size: 1.7rem;
    margin-left: 2rem;
  }

  .faq__question {
    height: 10rem;
  }
}

@media only screen and (max-width: 40em) {
  .sect-faq {
    padding: 5rem 3rem;
  }

  .faq__img {
    flex: 0 0 10%;
    height: 8rem;
  }

  .faq__desc {
    padding: 2rem 5rem;
    font-size: 1.5rem;
    margin-left: 1rem;
  }

  .faq__question {
    height: 8rem;
  }

  .sect-affiliate {
    padding: 5rem 2.5rem;
  }

  .affiliate__megaphone {
    top: -15rem;
    right: 0rem;
    width: 15rem;
  }

  .affiliate__exclamation {
    top: -5rem;
    left: 0rem;
    width: 15rem;
  }

  .affiliate__title {
    font-size: 6.5rem;
  }

  .affiliate__program {
    padding: 0 5rem;
    font-size: 5.5rem;
  }

  .sect-jasa {
    padding: 5rem 3rem;
  }
}

@media only screen and (max-width: 32em) {
  html {
    font-size: 56.25%;
  }

  .enlist__left > div > h2 {
    font-size: 4.6rem;
    color: #003aea;
    line-height: 1;
  }

  .sect-faq {
    flex-wrap: wrap;
    align-items: center;
    padding: 5rem 2rem;
  }

  .faq__img {
    flex: 0 1 50%;
    height: 20rem;
    margin-bottom: 2rem;
  }

  .faq__desc {
    padding: 2rem 5rem;
    font-size: 1.5rem;
    flex: 1;
  }

  .faq__question {
    height: 8rem;
  }

  .info {
    flex: 0 1 100%;
  }

  .cards {
    gap: 0;
  }

  .card {
    flex: 0 1 100%;
    padding: 3rem 1.25rem;
    margin-bottom: 3rem;
  }

  .sect-keuntungan {
    padding: 5rem;
  }
}

@media only screen and (max-width: 26em) {
  .sect-affiliate {
    padding: 5rem 1.5rem;
  }

  .faq__img {
    flex: 0 1 50%;
    height: 15rem;
    margin-bottom: 2rem;
  }

  .affiliate__megaphone {
    top: -17rem;
    right: 0rem;
    width: 12rem;
  }

  .affiliate__exclamation {
    top: -8rem;
    left: 0rem;
    width: 12rem;
  }

  .affiliate__title {
    font-size: 6rem;
  }

  .affiliate__program {
    padding: 0 4rem;
    font-size: 5rem;
  }

  .sect-keuntungan {
    padding: 5rem 3rem;
  }
}

.rate-hover-layer {
  color: orange;
}
.rate-select-layer {
  color: orange;
}
.rating {
  margin-bottom: 30px!important;
  width: 200px!important;
  height: 49px!important;
  font-size: 4.5rem!important;
}
a {
  text-decoration: none;
  color: black;
}
form {
  width: 100%;
  margin-bottom: 20px;
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  border:1px solid;
   -webkit-transform:translateY(-50%);
   -moz-transform:translateY(-50%);
   -ms-transform:translateY(-50%);
   -o-transform:translateY(-50%);
   transform:translateY(-50%);
}

.modal-content {
  background-color: #fefefe;
  border-radius: 1.5rem;
  margin: 15% auto;
  padding: 50px;
  border: 1px solid #888;
  width: 60%;
  max-height: 600px;
  overflow-y: scroll;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-top: -30px
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 56.25em) {
  .rating {
    width: 192px!important;
  }
  .modal-content {
    width: 60%;
  }
}
@media only screen and (max-width: 40em) {
  .rating {
    width: 188px!important;
  }
  .modal-content {
    width: 70%;
  }
}
@media only screen and (max-width: 32em) {
  .rating {
    width: 176px!important;
  }
  .modal-content {
    width: 90%;
    max-height: 500px;
  }
}
