@charset "utf-8";

body {
  font-family: sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
}

img {
  width: 100%;
  margin-bottom: 1rem;
}

video {
  width: 100%;
  margin-bottom: 1rem;
}

.article {
  padding: 1rem 4%;
}

h1 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1rem 0;
  border-left: 4px solid #ff7a1d;
  color: #ff7a1d;
  padding-left: 0.5rem;
  line-height: 1.6;
}

h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}


p {
  margin-bottom: 1rem;
}

.marker {
  background: yellow;
  font-weight: bold;
}

.small {
  font-size: 0.8rem;
  font-weight: normal;
}

.note {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.voice {
  border: 1px solid grey;
  padding: 1rem 1rem 0;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}

.voice p {
  font-weight: bold;
}

.voice .name {
  text-align: right;
  margin-bottom: 1rem;
}

.enq .enq-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  color: #707070;
}

.enq .enq-bg {
  background: #fff0e6;
  padding: 4%;
}

.enq .enq-text {
  font-size: 1.1rem;
  color: #707070;
  background: #fff;
  padding: 1rem;
  border-radius: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.enq .question {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}

.enq .question .number {
  width: 3rem;
  margin-right: 0.5rem;
}

.enq .question .number img {
  margin-bottom: 0;
}

.enq .question .text {
  color: #707070;
  font-weight: bold;
  line-height: 1.6;
  width: calc(100% - 3rem - 0.5rem);
}

.enq .answer {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.enq .answer li {
  margin-bottom: 1rem;
}

.enq .answer li input {
  display: none;
}

.enq .answer li label {
  display: block;
  border-radius: 1rem;
  padding: 1rem;
  width: 100%;
  background: #c1c1c1;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.3);
}

.enq .answer li input:checked+label {
  background: #ffd175;
}


.thanks {
  background: #ff7a1d;
  text-align: center;
  color: white;
  font-size: 1.7rem;
  line-height: 1.4;
  padding: 0.5rem 0;
  font-weight: 900;
}

.cta_bg {
  background: #fff0e6;
  padding-bottom: 10%;
}

.box {
  width: 92%;
  margin: auto;
  background: #fff;
  padding: 2rem 0 1rem;
  text-align: center;
  box-shadow: 0.5rem 0.5rem 0.5rem 0 rgba(255, 127, 0, 0.3);
}

.blue {
  color: #080b7d;
  font-weight: bold;
  font-size: 1.4rem;
}

.blue .large {
  font-size: 2rem;
}

.blue .large:first-child {
  margin-left: -1rem;
}

.blue .large:last-child {
  margin-right: -1rem;
}

.price {
  width: 84%;
  margin: 0.5rem auto;
}

.offer {
  font-size: 1.4rem;
  color: #ff7a1d;
  font-weight: 900;
}

.arrow {
  width: 84%;
  margin: 1rem auto 0;
}

.cta {
  margin-top: 1.5rem;
  display: block;
  animation-name: slideBtn;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes slideBtn {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0);
  }
}

@media screen and (min-width: 769px) {
  body {
    width: 650px;
    margin: auto;
  }

  a:hover {
    opacity: 0.8;
  }

  .image .text {
    font-size: 1.7rem;
  }

  .enq .question {
    align-items: center;
  }
}