/* GLOBAL STYLES - START */

:root {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;

  --primary-color: #da611e;
  --secondary-color: #457d54;
  --tertiary-color: #ffeb9f;

  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1030px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-block-start: 0;
  margin-block-end: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}
.row {
  flex-direction: row;
}

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

.justify-between {
  justify-content: space-between;
}
.w-100 {
  width: 100%;
}

.section-container {
  padding: 0 2.5%;
}

@media (min-width: 768px) {
  .section-container {
    padding: 0 5%;
  }
}

@media (min-width: 992px) {
  .section-container {
    padding: 0 7.5%;
  }
}

@media (min-width: 1200px) {
  .section-container {
    padding: 0 10%;
  }
}

@media (min-width: 1400px) {
  .section-container {
    padding: 0 12.5%;
  }
  .section-container > * {
    max-width: 1300px;
    margin: 0 auto;
  }
}

@media (min-width: 1800px) {
  .section-container {
    padding: 0 15%;
  }
}

.mobile-break {
  display: block;
  height: 16px;
}

@media (min-width: 992px) {
  .mobile-break {
    display: none;
  }
}
.perfect-pairs-game-container,
.perfect-pairs-complete-container {
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.visible {
  opacity: 1;
  visibility: visible;
  display: block;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

/* GLOBAL STYLES - END */

/* PERFECT PAIRS COMPLETE  */

.perfect-pairs-complete {
  position: relative;
  width: 100%;
  background: var(--secondary-color);
  overflow: hidden;
}

.perfect-pairs-complete__container {
  padding-top: 32px;
}

@media (min-width: 992px) {
  .perfect-pairs-complete {
    position: relative;
    width: 100%;
    background-image: url("svg/perfect-pairs/images/background-icons-left.svg");
    background-position: left;
    background-repeat: repeat;
    background-size: contain;
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
  }
  .perfect-pairs-complete::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -7px;
    width: 106%;
    height: 60px;
    background-image: url("svg/perfect-pairs/images/paint-bottom.svg");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .perfect-pairs-complete__container {
    padding-top: 0;
    max-width: 700px;
  }

  .perfect-pairs-complete__container:first-child {
    background: var(--secondary-color);
  }
}

/* DIVIDER  */

.perfect-pairs-complete__divider {
  display: none;
}

@media (min-width: 992px) {
  .perfect-pairs-complete__divider {
    display: block;
    min-height: 90%;
    width: 25%;
    background: var(--secondary-color);
  }
}
@media (min-width: 1200px) {
  .perfect-pairs-complete__divider {
    width: 15%;
  }
}
@media (min-width: 1400px) {
  .perfect-pairs-complete__divider {
    width: 150px;
  }
}

/* HERO BANNER  */

.perfect-pairs-complete__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 28px;
}

.perfect-pairs-complete__hero-banner {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 32px;

  background-image: url("svg/perfect-pairs/images/background-icons-left.svg");
  background-position: right;
  background-repeat: repeat;
  background-size: cover;
}

.perfect-pairs-complete__img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  align-self: center;
}

@media (min-width: 992px) {
  .perfect-pairs-complete__hero-banner {
    background: none;
    padding-top: 0;
    margin: 0 auto;
    padding-right: 0;
  }

  .perfect-pairs-complete__img {
    width: 100%;
  }
}

/* TEXT CONTENT */

.perfect-pairs-complete__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  color: white;
  padding-bottom: 40px;
}
.perfect-pairs-complete__title span {
  width: 100%;
  position: relative;

  color: var(--tertiary-color);
}
.perfect-pairs-complete__title-value {
  white-space: nowrap;
}
.perfect-pairs-complete__title-value::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  background-image: url("svg/perfect-pairs/images/title-sketch-line.svg");
  width: 140px;
  height: 9px;
}
.perfect-pairs-complete__subtitle {
  color: white;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  padding-bottom: 24px;
}
.perfect-pairs-complete__subtitle span {
  font-weight: 700;
  color: var(--tertiary-color);
}

@media (min-width: 992px) {
  .perfect-pairs-complete__content {
    padding-right: 0;
  }

  .perfect-pairs-complete__content > * {
    background: var(--secondary-color);
  }

  .perfect-pairs-complete__title {
    width: 425px;
    line-height: 50px;
    margin-left: 0;
  }
  .perfect-pairs-complete__title-value-num {
    font-size: 54px;
    line-height: 36px;
  }
}

@media (min-width: 1200px) {
  .perfect-pairs-complete__title {
    width: 500px;
  }
}

@media (min-width: 1400px) {
  .perfect-pairs-complete__title {
    width: 550px;
  }
}

/* FORM */

.perfect-pairs-complete__submit-btn {
  background: var(--primary-color);
  color: white;
  height: 50px;
  width: 100%;
  font-family: "Roboto";
  font-size: 22px;
  font-weight: 400;
  line-height: 25.78px;
  text-align: center;
  border-radius: 144px;
  margin: 24px 0;
}

.perfect-pairs-complete__form label {
  color: white;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 8px;
}

.perfect-pairs-complete__form input.wpcf7-form-control {
  border-radius: 6px;
  width: 100%;
  min-width: 100%;
}

.perfect-pairs-complete__form .custom-checkbox .wpcf7-list-item {
  margin-left: 0;
}

.perfect-pairs-complete__form
  .custom-checkbox
  .wpcf7-list-item
  input[type="checkbox"] {
  width: 1.3em;
  height: 1.3em;
  background-color: white;
  border-radius: 50%;
  vertical-align: middle;
  border: 2px solid white;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

.perfect-pairs-complete__form
  .custom-checkbox
  .wpcf7-list-item
  input[type="checkbox"]:checked {
  background-color: var(--primary-color);
}

.perfect-pairs-complete__form
  .custom-checkbox
  .wpcf7-list-item
  .wpcf7-list-item-label {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
}

.perfect-pairs-complete__form input.wpcf7-form-control.wpcf7-submit {
  background: var(--primary-color);
  width: 100%;
  height: 50px;
  border-radius: 120px;
  font-family: "Roboto";
  font-size: 22px;
  font-weight: 700;
  line-height: 25.78px;
  text-align: center;
  margin-top: 24px;
}

.perfect-pairs-complete__form p {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
  line-height: 18.2px;
  text-align: left;
  color: white;
}

.perfect-pairs-complete__form p a {
  color: white;
}

.perfect-pairs-complete__form p label {
  width: 100%;
}

.perfect-pairs-complete__form p label span {
  width: 100%;
}

.perfect-pairs-complete__form-tcs {
  color: white;
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  background: var(--secondary-color);
  padding: 8px 0;
}
.perfect-pairs-complete__form-tcs a {
  color: white;
  text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: white;
  border: var(--primary-color);
  margin-top: -16px;
  font-size: 24px;
}

@media (min-width: 992px) {
  .perfect-pairs-complete__form {
    padding-right: 0;
  }
  .perfect-pairs-complete__form form {
    background: var(--secondary-color);
    padding-top: 12px;
  }
  .perfect-pairs-complete__submit-btn {
    width: 50%;
  }
}

/* PRIZES */

.perfect-pairs-complete__prizes {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 48px;
}
.perfect-pairs-complete__prizes-title {
  color: var(--tertiary-color);
  background: var(--secondary-color);
  padding: 8px 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  text-transform: uppercase;
  position: relative;
}
.perfect-pairs-complete__prizes-title::after {
  content: "";
  background-image: url("svg/perfect-pairs/images/arrow-prizes-right.svg");
  position: absolute;
  left: 145px;
  top: -64px;
  width: 90px;
  height: 60px;
}
.perfect-pairs-complete__prizes-subtitle {
  color: white;
  font-size: 16px;
  line-height: 22.4px;
  background: var(--secondary-color);
  padding: 8px 0;
}
.perfect-pairs-complete__prizes-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.perfect-pairs-complete__prizes-img-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perfect-pairs-complete__prizes-img-container img {
  width: 100%;
  height: auto;
}
.perfect-pairs-complete__prizes-img-title {
  color: var(--tertiary-color);
  font-family: "Barlow Condensed";
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
  padding-top: 12px;
}
.perfect-pairs-complete__prizes-img-subtitle {
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 23.44px;
  text-align: center;
}

@media (min-width: 992px) {
  .perfect-pairs-complete__prizes {
    padding-left: 0;
  }
  .perfect-pairs-complete__prizes-title::before {
    content: "";
    background-image: url("svg/perfect-pairs/images/arrow-prizes-left.svg");
    background-repeat: no-repeat;
    position: absolute;
    width: 231.92px;
    height: 250px;
    left: -120px;
    top: 25px;
  }
  .perfect-pairs-complete__prizes-title {
    font-size: 54px;
    line-height: 48px;
    margin-left: 0;
    background: var(--secondary-color);
  }
  .perfect-pairs-complete__prizes-title::after {
    content: none;
  }
  .perfect-pairs-complete__prizes-subtitle {
    margin-left: 0;
  }
  .perfect-pairs-complete__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    background: var(--secondary-color);
  }

  .perfect-pairs-complete__prizes-img-container {
    background: var(--secondary-color);
  }

  .perfect-pairs-complete__prizes-img-title {
    font-size: 36px;
    line-height: 36px;
  }
  .perfect-pairs-complete__prizes-img-subtitle {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 1200px) {
  .section-container .perfect-pairs-complete__prizes-title {
    margin-left: 0;
  }
  .perfect-pairs-complete__prizes-title::before {
    left: -140px;
  }
}

/* ENERGY SAVING TIP */

.perfect-pairs-complete__tip {
  position: relative;
  width: 100%;
  background-image: url("svg/perfect-pairs/images/background-icons-left.svg");
  background-position: bottom 90%;
  background-repeat: repeat;
  background-size: 100%;
  padding-bottom: 100px;
  margin-top: 48px;
}

.perfect-pairs-complete__tip::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -7px;
  width: 106%;
  height: 60px;
  background-image: url("svg/perfect-pairs/images/paint-bottom.svg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.perfect-pairs-complete__tip--lg {
  display: none;
}
.perfect-pairs-complete__tip-container {
  background-image: url("svg/perfect-pairs/images/paint-did-you-know.svg");
  background-size: cover;
  min-height: 320px;
  padding-bottom: 32px !important;
}
.perfect-pairs-complete__tip-title {
  font-family: "Barlow Condensed";
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: left;
}

.perfect-pairs-complete__tip-subtitle {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: left;
  color: var(--tertiary-color);
}

.perfect-pairs-complete__tip-subtitle::after {
  content: "";
  background-image: url("svg/perfect-pairs/images/sketch-line-did-you-know.svg");
  position: absolute;
  bottom: -16px;
  left: 8px;
  width: 176px;
  height: 8px;
}

.perfect-pairs-complete__tip-img {
  position: relative;
  top: -30px;
  width: 150px;
  height: auto;
}

.perfect-pairs-complete__tip-text {
  padding-top: 16px;
}

.perfect-pairs-complete__tip-text,
.perfect-pairs-complete__tip-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: white;
  max-width: 90%;
}

.perfect-pairs-complete__tip-bonus-text {
  margin-top: 14px;
}

@media (min-width: 992px) {
  .perfect-pairs-complete__tip--xs {
    display: none;
  }

  .perfect-pairs-complete__tip--lg {
    display: block;
    width: auto;
  }

  .perfect-pairs-complete__tip {
    padding-bottom: 0;
    padding-left: 0;
    background: none;
  }

  .perfect-pairs-complete__tip::after {
    content: none;
  }

  .perfect-pairs-complete__tip-container {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-direction: column;
    background-image: url("img/perfect-pairs/Paint2.png");
    background-size: cover;
    background-repeat: round;
    min-height: 240px;
    width: 110%;
    position: relative;
    left: -5%;
    padding: 32px 0;
  }

  .perfect-pairs-complete__tip-img {
    padding-left: 7.5%;
    top: 0;
    width: 35%;
    height: auto;
  }

  .perfect-pairs-complete__tip-title {
    font-size: 24px;
    line-height: 24px;
  }

  .perfect-pairs-complete__tip-subtitle {
    font-size: 36px;
    line-height: 36px;
  }

  .perfect-pairs-complete__tip-bonus-text {
    margin-top: 0;
    padding-left: 7.5%;
  }

  .perfect-pairs-complete__tip-text,
  .perfect-pairs-complete__tip-text p {
    max-width: 95%;
  }
}

/* T&C's */

.perfect-pairs-complete__tcs {
  padding-top: 24px;
  padding-bottom: 48px;
  font-size: 14px;
  line-height: 18.2px;
  text-align: left;
}
.perfect-pairs-complete__tcs a {
  color: black;
}

@media (min-width: 992px) {
  .perfect-pairs-complete__tcs {
    display: none;
  }
}
