/*================== IMPORTS =================*/

@import url('../fonts/stylesheet.css');

/*================== VARIABLES =================*/

:root {
  --clr-theme-accent: rgba(255, 118, 0, 1);

  --clr-theme-text: rgb(0, 0, 0);
  --clr-theme-copy: rgba(0, 0, 0, 1);
  --clr-theme-white-500: rgba(244, 244, 244, 1);
  --clr-theme-white: rgba(255, 255, 255, 1);
  --clr-theme-dark: rgba(41, 41, 41, 1);

  --clr-theme-border: rgba(231, 231, 231, 1);

  --ff-body: "Ubuntu", sans-serif;

  --fs-xxl: 54px; /* 62px */
  --fs-xl: 50px;
  --fs-lg: 42px; /* 42px */
  --fs-md: 28px;
  --fs-body: 20px;
  --fs-sm: 16px;

  --section-gap: 120px;

  --transition: all 0.4s ease-in-out;
}

/*================== BROWSER RESET =================*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

a:focus,
a:hover {
  outline: none;
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

body {
  font-family: var(--ff-body);
  text-rendering: optimizeSpeed;
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-theme-copy)
}

p {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-primary);
  margin-bottom: 0;
  font-weight: 500;
}

img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
}
/*================== COMPONENTS =================*/

/**
 * Headings
 */

h1  {
  font-size: var(--fs-xxl);
  font-weight: 700;
}
h2  {
  font-size: var(--fs-xl);
}
h3  {
  font-size: var(--fs-lg);
}
h4  {
  font-size: var(--fs-md);
}
h5  {
  font-size: var(--fs-body);
}
h6 {
  font-size: var(--fs-sm);
}

.highlight {
  color: var(--clr-theme-accent);
}
.ntm__heading h2 {
  font-size: var(--fs-xxl);
  font-weight: 700;
}
.text-justify {
  text-align: justify;
}

/**
 * Swiper 
 */

[class^="swiper-button-"]::after {
  content: "";
  display: none;
}

[class^="swiper-button-"] {
  position: absolute;
  background-color: transparent;
  font-size: 18px;
  z-index: 2;
  top: unset;
  left: 0;
  bottom: 15px;
  width: 90px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-radius: 50px;
  color: var(--clr-white);
  border: 2px solid var(--clr-white);
  transition: all 0.3s ease-in-out;
  z-index: 4;
}
[class^="swiper-button-"]:hover {
  background-color: var(--clr-white);
  color: var(--clr-black);
  transition: all 0.3s ease-in-out;
}
[class^="swiper-button-next"] {
  left: 100px;
} 
.swiper-button-next, .swiper-button-prev {
  width: 35px;
  height: 35px;
  color: #fff;
  background-color: var(--clr-purple);
  border-radius: 50%;
}
.swiper-wrapper {
  padding-bottom: 15px;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: 0px;
}

/**
 * Form
 */
 .ntm__form {
  border: 5px solid rgb(0, 0, 0, 1);
  padding: 49px 83px;
  border-radius: 24px;
}
.form-control {
  background-color: var(--clr-theme-accent);
  color: rgb(255, 180, 115);
  min-height: 65px;
  border-radius: 14px;
  padding: 0px 28px;
  font-size: 24px;
}
.form-control:focus {
  background-color: var(--clr-theme-accent);
  color: var(--clr-theme-white);
  box-shadow: unset;
  border-color: transparent;
}
.form-group {
  margin-bottom: 24px;
}
.form-control::placeholder {
  color: rgb(255, 180, 115);
}
.form-label {
  font-size: 29.4px;
  font-weight: 700;
  color: var(--clr-theme-accent);
  padding-left: 28px;
  margin-bottom: 3px;
}

textarea.form-control {
  min-height: 160px;
  resize: none;
}
.form-button {
  border-radius: 14px;
  height: 122.4px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.form-button .ntm__btn {
  width: 100%;
  background-color: rgba(0, 0, 0, 1);
  color: var(--clr-theme-white);
  min-height: 65px;
  padding: 0px 28px 0 0px;
  font-size: 26.6px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
}
.form-button .icon {
  position: absolute;
  background-color: var(--clr-theme-accent);
  color: var(--clr-theme-white);
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  right: 50px;
  top: 71px;
  pointer-events: none;
}
.form-alert {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-style: italic;
  margin: -8px 0 0;
  padding-left: 28px;
}
/*================== KEYFRAMES =================*/

.kenburns-bottom {
	-webkit-animation: kenburns-bottom 5s ease-out reverse both;
	        animation: kenburns-bottom 5s ease-out reverse both;
}
@-webkit-keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
            transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
            transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
            transform-origin: 50% 84%;
  }
  100% {
    -webkit-transform: scale(1.25) translateY(15px);
            transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes cursor-blink {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: 0; 
  }
}
@keyframes shake-vertical {
  0%, 100% { 
    transform: translateY(0); 
  }
  25% { 
    transform: translateY(-8px); 
  }
  50% { 
    transform: translateY(8px); 
  }
  75% { 
    transform: translateY(-4px); 
  }
}
@keyframes cursor-blink {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: 0; 
  }
}

/* HEADER */
.ntm__header .navbar-brand {
  display: block;
  margin: 0;
  padding: 0;
}
.ntm__header .navbar-brand img {
  height: 140px;
  width: 100%;
}
/* HEADER */
/* HERO */
.ntm__hero {
  padding: 20px 0 90px;
  position: relative;
}
.ntm__hero::after {
  content: '';
  position: absolute;
  background-image: url('../images/Hammer.png');
  width: 200px;
  height: 206px;
  right: 0;
  top: -76px;
  background-size: cover;
  background-position: left;
  z-index: 4;
}
.ntm__hero .ntm__heading h1 {
  line-height: 1.2em;
}
.ntm__hero-copy {
  border-top: 6px dotted var(--clr-theme-copy);
  border-bottom: 6px dotted var(--clr-theme-copy);
  width: fit-content;
  margin: 23px auto 0;
  padding: 9px 12px;
}
.ntm__hero-copy p {
  font-size: 24px;
}
.ntm__hero-copy p .highlight {
  color: var(--clr-theme-accent);
  font-weight: 500;
}
.ntm__hero-content .ntm__media img {
  margin: 0 auto;
}
.ntm__hero-content .ntm__media {
  margin-top: 60px;
}
.ntm__hero-content .ntm__media img {
  height: 524px;
}
.ntm__hero .ntm__heading .highlight {
  display: block;
}
/* HERO */
/* REWARD */
.ntm__reward {
  padding: 80px 0 80px;
}
.ntm__reward .icon {
  display: inline-flex;
  width: 54px;
}
.ntm__reward .ntm__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 22px;
}
.ntm__reward .ntm__heading h3 .highlight {
  font-weight: 700;
}
.ntm__reward-box p {
  font-size: 24px;
  color: #fff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.ntm__reward-box p strong {
  display: block;
}
.ntm__reward-box {
  background: linear-gradient(135deg, #C0A676 0%, #B29869 50%, #836B3F 100%);
  border-radius: 12px;
  padding: 13px 32px;
  margin: 0 auto;
}
/* REWARD */
/* ELIGIBLE */
.ntm__eligible {
  padding: 80px 0 100px;
}
.ntm__eligible-wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}
.ntm__eligible-box {
  background-color: var(--clr-theme-accent);
  border-radius: 25px;
  padding: 32px 20px 20px;
  text-align: center;
  flex: 1 0 auto;
  width: 30%;
}
.ntm__eligible-box .icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
}
.ntm__eligible-box:nth-child(3) {
  background-color: var(--clr-theme-copy);
}
.ntm__eligible-box p {
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-theme-white);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 8px;
}
.ntm__eligible-box p em {
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
}

/* GIFT */
.ntm__gift {
  padding: 100px 0 49px;
}
.ntm__gift-wrap {
  max-width: 100%;
  margin: 40px auto 0;
}
/* .ntm__gift-right {
  margin-left: -30px;
} */
.ntm__gift-left .ntm__img img {
  height: 570px;
  margin-left: auto;
}
.ntm__gift-list li {
  position: relative;
  padding-left: 80px;
}
.ntm__gift-list li + li {
  margin-top: 65px;
}
.ntm__gift-list li .marker::before {
  position: absolute;
  content: '';
  width: 17px;
  height: 17px;
  background-color: transparent;
  border-radius: 50px;
  left: 42px;
  top: 24px;
  border: 4px solid #000;
}
.ntm__gift-list li .marker::after {
  content: "";
  position: absolute;
  width: 36px;
  border: 3px dashed #000;
  left: 0;
  top: 30px;
}
.ntm__gift-list li:not(:last-child)::before {
  position: absolute;
  content: '';
  height: calc(100% + 30%);
  border-left: 5px dashed #000;
  left: 0px;
  top: 42px;
}
.ntm__gift-list li h5 {
  font-weight: 700;
  font-size: 29.4px;
  color: var(--clr-theme-accent);
  margin-bottom: 12px;
}
.ntm__gift-list li p {
  font-size: 24px;
}

/* TERMS & CONDITIONS */
.ntm__tnc-box {
  background-color: var(--clr-theme-accent);
  border-radius: 30px;
  padding: 41px 60px 21px;
  color: var(--clr-theme-white);
  margin: 15px 0 0;
}
.ntm__content.ntm__tnc-box ul {
  font-size: 24px;
  line-height: 30px;
  column-count: 2;
  list-style: disc;
  column-gap: 52px;
}
.ntm__content.ntm__tnc-box ul li {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 32px;
}
.ntm__content.ntm__tnc-box ul li br{
  display: none;
}
.ntm__content.ntm__tnc-box ul li::before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  background-color: var(--clr-theme-white);
  border-radius: 50px;
  left: 0;
  top: 12px;
}
/* CONTACT */
.ntm__contact {
  padding: 39px 0 39px;
}
.ntm__contact .ntm__form {
  margin-top: 25px;
}
.ntm__contact .ntm__content p {
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  font-style: italic;
}
.ntm__contact .ntm__heading {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.ntm__contact .ntm__heading .icon {
  width: 65px;
  height: 65px;
}
.ntm__tnc {
  padding: 49px 0 49px;
}

/* DISCLOSURE */
.ntm__diclosure-modal .btn-close {
  background-color: var(--clr-theme-white);
  opacity: 1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -12px;
  top: -12px;
}
.ntm__diclosure-modal .modal-dialog {
  --bs-modal-width: 1280px;
}
.ntm__diclosure-modal .modal-content {
  background-color: var(--clr-theme-accent);
  padding: 38px 32px;
  border-radius: 32px;
}
.ntm__diclosure-modal .modal-body {
  padding: 0;
}
.ntm__diclosure-top {
  text-align: center;
  margin-bottom: 40px;
}
.ntm__contact .ntm__diclosure-modal ul {
  list-style: unset;
  color: var(--clr-theme-white);
  margin-left: 18px;
}
.ntm__diclosure-left ul {
  padding: 16px 0;
}
.ntm__diclosure-modal ul li + li {
  margin-top: 13px;
}
.ntm__contact .ntm__diclosure-modal p {
  font-weight: 400;
  font-style: normal;
  color: var(--clr-theme-white);
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.45px;
}
.ntm__contact .ntm__diclosure-modal p a {
  color: var(--clr-theme-white);
  text-decoration: underline;
}
.ntm__contact .ntm__diclosure-modal h5 {
  color: var(--clr-theme-white);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.ntm__diclosure-right .ntm__content + .ntm__content {
  margin-top: 24px;
}
#acknowledgeSubmit {
  width: fit-content;
  background-color: rgba(0, 0, 0, 1);
  color: var(--clr-theme-white);
  min-height: 65px;
  font-size: 24.6px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  display: flex;
  position: relative;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  margin: 38px auto -60px;
  text-decoration: unset;
}
#acknowledgeSubmit .icon {
  background-color: var(--clr-theme-accent);
  color: var(--clr-theme-white);
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 24px;
}
.ntm__form .wpcf7 form .wpcf7-response-output {
  margin: 24px 28px 0;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 16px;
}
.ntm__form .wpcf7 form.invalid .wpcf7-response-output {
  background-color: #FFB900;
}
.ntm__form .wpcf7 form.sent .wpcf7-response-output {
  background-color: #0E8D19;
  color: var(--clr-theme-white);
}
.ntm__form .form-control{
  border:1px solid transparent var(--clr-theme-accent);
}
.ntm__form span.wpcf7-not-valid-tip {
  font-size: 20px;
  font-weight: 500;
  margin-left: 28px;
  margin-top: 10px;
}