*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  font-size: 16px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 20;
  width: 100%;
}

.form-section {
  padding-top: 20px;
  padding-bottom: 80px;
  background-color: #ededed;

  @media (max-width: 1218px) {
    background-color: #fff;
  }
}

.form-heading {
  font-size: 40px;
  line-height: 40px;
  color: #c8102e;
  font-weight: bold;
  margin-bottom: 40px;

  @media (max-width: 1218px) {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

.form-heading.success {
  margin-top: 60px;
  text-align: center;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 80px;

  @media (max-width: 1218px) {
    flex-direction: column;
    gap: 40px;
  }
}

.form-row .form-row-heading {
  color: #000000;
  font-weight: bold;
  font-size: 24px;
  line-height: 23px;
  margin-bottom: 8px;

  @media (max-width: 1218px) {
    font-size: 20px;
  }
}

.form-row .form-row-subheading {
  color: #000000;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;

  @media (max-width: 1218px) {
    font-size: 14px;
  }
}

.form-row .form-row-content {
  flex: 1;

  @media (min-width: 1218px) {
    max-width: 820px;
    margin-left: auto;
  }
}

.form-row .form-row-content .form-label {
  color: #000000;
  font-weight: 300;
  font-size: 24px;
  line-height: 23px;
  display: block;
  margin-bottom: 12px;

  @media (max-width: 1218px) {
    font-size: 14px;
  }
}

.form-row .form-row-content .form-label .red-text {
  color: #c81230;
}

.form-row .form-row-content .form-label .help-text {
  color: #000000;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;

  @media (max-width: 1218px) {
    font-size: 14px;
  }
}

.form-row .form-row-content .form-input {
  color: #000000;
  font-weight: 300;
  font-size: 20px;
  background-color: #ffffff;
  border: 0.2px solid #e1e1e1;
  width: 100%;
  outline: none;
  padding: 8px;
  margin-bottom: 12px;

  @media (max-width: 1218px) {
    font-size: 14px;
  }
}

.form-row .form-row-content .form-select {
  color: #000000;
  font-weight: 300;
  font-size: 20px;
  background-color: #dedbdb;
  border: 0.2px solid #e1e1e1;
  width: 100%;
  outline: none;
  padding: 8px 20px;
  margin-bottom: 12px;

  @media (max-width: 1218px) {
    font-size: 14px;
  }
}

.form-row .form-row-content .checkbox-input-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}

.form-row .form-row-content .form-checkbox {
  width: 30px;
  height: 30px;
  background-color: #f6f6f6;
  border: 0.2px solid #e1e1e1;
  flex-shrink: 0;
  appearance: none;
  background-color: white;
  transition: background-color 0.2s, border-color 0.2s;
  position: relative;
}

.form-row .form-row-content .form-checkbox:checked {
  background-color: #c8102e;
  border-color: #c8102e;
}

.form-row .form-row-content .form-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 9px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-row .form-row-content .checkbox-label {
  color: #000000;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;

  @media (max-width: 1218px) {
    font-size: 14px;
  }
}

.form-row .form-row-content .checkbox-label a {
  text-decoration: underline;
  color: #c8102e;
}

.divider {
  width: 100%;
  height: 2px;
  background-color: #e7d0d4;
  margin: 20px 0;
}

.divider-text {
  font-size: 14px;
  line-height: 23px;
  color: #000000;
  font-weight: 300;
  margin-bottom: -10px;
}

.input-file-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

.input-file-wrapper .file-trigger-bullet {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #c8102e;
  position: relative;
  color: #fff;
  font-size: 26px;
  color: #ffffff;
  font-weight: bold;
}

.input-file-wrapper .file-trigger-bullet .plus {
  color: #fff;
  font-size: 26px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.input-file-wrapper .file-trigger-text {
  color: #000000;
  font-weight: 300;
  font-size: 24px;
  line-height: 23px;

  @media (max-width: 1218px) {
    font-size: 14px;
  }
}

.file-text {
  color: #000000;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 20px;
}

.file-text .red-text {
  color: #c81230;
  font-weight: bold;
}

.checkbox-help-text {
  font-size: 12px;
  color: #000000;
  font-weight: 300;
  font-style: italic;
  margin-left: 50px;
  margin-bottom: 20px;
}

.submit-btn {
  background-color: #c8102e;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: 260px;
  height: 65px;
  border: 1px solid #c8102e;
  outline: none;
  cursor: pointer;
  margin: 40px auto 0 auto;
  display: block;
}

.submit-btn:hover {
  background: transparent;
  border: 1px solid #c8102e;
  color: #c8102e;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  padding: 0 20px;
}

.hero-section {
  width: 100%;
  background-image: url("./images/hero-background.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 20px;
  padding-top: 80px;
  position: relative;

  @media (max-width: 1218px) {
    padding-top: 40px;
  }
}

.plus-bullet {
  position: absolute;
  top: 350px;
  right: 250px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 1218px) {
    width: 58px;
    height: 58px;
    top: 250px;
    right: 30%;
  }

  @media (max-width: 1000px) {
    right: 25%;
  }

  @media (max-width: 800px) {
    right: 20%;
  }
}

.plus-bullet .plus {
  font-size: 61px;
  line-height: 61px;
  color: #ffffff;
  font-weight: bold;
  user-select: none;

  @media (max-width: 1218px) {
    font-size: 32px;
  }
}

.hero-section .logo {
  width: 268px;
  height: 268px;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    margin-bottom: 60px;
    width: 180px;
    height: 180px;
  }

  @media (max-width: 800px) {
    margin-bottom: 180px;
  }
}

.hero-section .hero-heading {
  font-size: 70px;
  line-height: 65px;
  color: #ffffff;
  font-weight: bold;
  max-width: 380px;
  margin-bottom: 60px;

  @media (max-width: 1218px) {
    font-size: 50px;
    margin-bottom: 40px;
    line-height: 55px;
  }

  @media (max-width: 800px) {
    margin-top: 80px;
  }
}

.hero-section .hero-description {
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 50px;
  color: #ffffff;
  max-width: 540px;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    margin-bottom: 20px;
    font-size: 30px;
    max-width: 420px;
    line-height: 40px;
  }
}

.hero-section .buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;

  @media (max-width: 1218px) {
    display: none;
  }
}

.hero-section .buttons a:hover {
  background: #c8102e;
  border: 1px solid #c8102e;
}

.red-btn {
  background-color: #c8102e;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: 345px;
  height: 96px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;

  @media (max-width: 500px) {
    font-size: 18px;
    height: 80px;
  }
}

.outlined-btn {
  background-color: transparent;
  font-size: 24px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: 345px;
  height: 96px;
  border: 1px solid #73615b;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
  display: inline-flex;
  align-items: center;
}

.hero-section .bottom-text {
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 300;
}

.footer-section {
  width: 100%;
  height: 900px;
  background-image: url("./images/footer-background.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 20px;
  padding-top: 80px;
  position: relative;

  @media (max-width: 1218px) {
    height: 800px;
    padding-top: 40px;
  }
}

.footer-section .logo {
  width: 228px;
  height: 228px;
  margin-bottom: 60px;

  @media (max-width: 1218px) {
    width: 180px;
    height: 180px;
  }
}

.footer-section .footer-heading {
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 40px;
  max-width: 470px;

  @media (max-width: 1218px) {
    font-size: 40px;
    max-width: 380px;
  }
}

.footer-section .divider {
  width: 260px;
  height: 2px;
  background-color: #c8102e;
  margin-bottom: 40px;
}

.footer-section .footer-subheadline {
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 60px;
  max-width: 520px;

  @media (max-width: 1218px) {
    font-size: 20px;
    max-width: 400px;
    line-height: 25px;
  }
}

.footer-section .red-btn {
  background-color: #c8102e;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: 365px;
  height: 76px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;

  @media (max-width: 500px) {
    width: 100%;
  }
}

.footer-section .outlined-btn:hover {
  background: #c8102e;
  border: 1px solid #c8102e;
}

.footer-section .shadow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.error-input-text {
  color: #c8102e;
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 10px;
}

.steps-section {
  display: flex;
  flex-direction: row;
  background-color: #ededed;

  @media (max-width: 800px) {
    flex-direction: column;
  }
}

.steps-section .background-image {
  background-image: url("./images/steps-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  width: 50%;
  height: 950px;
  order: 1;
  object-fit: cover;

  @media (max-width: 800px) {
    height: 400px;
    width: 100%;
    order: 2;
  }
}

.steps-section .content {
  padding: 40px;
  order: 2;
  max-width: 640px;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (max-width: 1218px) {
    margin-left: 0;
    max-width: 460px;
  }

  @media (max-width: 800px) {
    padding: 20px 40px 20px 40px;
    order: 1;
    max-width: 400px;
    margin-left: 0;
  }
}

.steps-section .heading {
  font-size: 34px;
  line-height: 40px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 60px;

  @media (max-width: 1218px) {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  @media (max-width: 800px) {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 40px;
  }
}

.steps-section .heading .red-text {
  color: #c8102e;
}

.steps-section .step-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 28px;
  color: #000000;
  font-weight: 400;

  @media (max-width: 1218px) {
    font-size: 20px;
    line-height: 26px;
  }

  @media (max-width: 800px) {
    font-size: 16px;
  }
}

.steps-section .step-number {
  font-weight: bold;
}

.steps-section .step-container .bold-text {
  font-weight: 700;
}

.steps-section .bottom-text {
  font-size: 24px;
  color: #000000;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    font-size: 18px;
  }

  @media (max-width: 800px) {
    font-size: 18px;
    margin-top: 20px;
  }
}

.steps-section .bottom-text .bold-text {
  font-weight: 700;
}

.steps-section .red-btn {
  background-color: #c8102e;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: 365px;
  height: 76px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;

  @media (max-width: 500px) {
    width: 100%;
    font-size: 18px;
    height: 50px;
  }
}

.product-section .content .outlined-btn:hover {
  background: #c8102e;
  border: 1px solid #c8102e;
}

.navigation-section {
  background-color: #fff;
  filter: drop-shadow(5.143px 3.09px 3px rgba(0, 0, 0, 0.33));
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (max-width: 800px) {
    display: none;
  }
}

.navigation-section .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1218px;
  margin: 0 auto;

  @media (max-width: 1218px) {
    gap: 40px;
  }
}

.navigation-section .nav-container .nav-item {
  max-width: 170px;
  margin: 0 auto;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #000000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.navigation-section .nav-container .nav-item.active,
.navigation-section .nav-container .nav-item:hover {
  color: #c8102e;
}

.navigation-section .nav-container .divider {
  height: 50px;
  width: 2px;
  background-color: #5a5a5a;
}

.buttons-section {
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media (min-width: 800px) {
    display: none;
  }
}

.buttons-section .container {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}

.buttons-section a {
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 400px) {
    width: 100%;
  }
}

.features-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("./images/features-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 80px 0;
}

.features-section .heading {
  font-size: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 20;

  @media (max-width: 1218px) {
    font-size: 30px;
    margin: 0 auto 40px auto;
    max-width: 400px;
  }

  @media (max-width: 800px) {
    max-width: 400px;
    font-size: 25px;
    margin: 0 auto 40px auto;
    line-height: 30px;
  }
}

.features-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 2rem;
  background: #000;
  color: white;
  z-index: 20;
  background: transparent;
  margin-bottom: 80px;

  @media (max-width: 800px) {
    flex-direction: column;
  }
}

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

.feature-btn {
  position: relative;
  width: 100px;
  height: 100px;
}

.feature .feature-image {
  width: 120px;
  height: 120px;
}

.feature .feature-title {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.feature .feature-description {
  max-width: 320px;
  font-size: 18px;
  line-height: 23px;
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}

.features-section .bottom-text {
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    font-size: 20px;
    margin: 0 auto 80px auto;
    max-width: 400px;
  }
}

.features-section .red-btn {
  background-color: #c8102e;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: 345px;
  height: 76px;
  border: 1px solid #c8102e;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;

  @media (max-width: 500px) {
    font-size: 18px;
    width: 100%;
  }
}

.steps-section .red-btn:hover,
.features-section .red-btn:hover,
.product-section .red-btn:hover,
.footer-section .red-btn:hover {
  background: transparent;
  color: #c8102e;
  border: 1px solid #c8102e;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-image {
  visibility: hidden;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 10;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tooltip-image .large-image {
  bottom: -320px;
}

.tooltip-image .small-image {
  bottom: -20px;
}

.tooltip-wrapper:hover .tooltip-image {
  visibility: visible;
}

.product-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("./images/section-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
}

.product-section .heading {
  max-width: 480px;
  font-size: 50px;
  line-height: 55px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    font-size: 40px;
    max-width: 320px;
    line-height: 40px;
  }
}

.product-section .heading .red-text {
  color: #c8102e;
}

.product-section .description {
  max-width: 440px;
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    font-size: 25px;
    line-height: 40px;
  }
}

.product-section .red-btn {
  background-color: #c8102e;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  width: 345px;
  height: 76px;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 500px) {
    font-size: 18px;
    width: 100%;
  }
}

.promotion-rules {
  background-color: #ededed;
  padding-top: 120px;
  padding-bottom: 80px;
}

.promotion-rules .heading {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 50px;
  line-height: 40px;
  color: #000000;
  font-weight: bold;
  text-align: center;

  @media (max-width: 1218px) {
    font-size: 40px;
    margin: 0 auto 25px auto;
  }
}

.promotion-rules .subheading {
  font-size: 30px;

  line-height: 30px;
  margin: 0 auto 80px auto;
  color: #000;
  font-weight: bold;
  text-align: center;

  @media (max-width: 1218px) {
    font-size: 20px;
    max-width: 400px;
    margin: 0 auto 40px auto;
  }
}

.promotion-rules .subheading .red-text {
  color: #c8102e;
}

.promotion-rules .rules-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 120px;

  @media (max-width: 1218px) {
    grid-template-columns: 1fr;
  }
}

.promotion-rules .rule-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.promotion-rules .rule-container .step-indicator {
  width: 80px;
  height: 80px;
  font-size: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promotion-rules .rule-container .rule-description {
  max-width: 320px;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  font-weight: 300;
  text-align: center;
}

.promotion-rules .rule-container .rule-description .bold-text {
  font-weight: bold;
}

.promotion-rules .rule-container .rule-description .red-text {
  color: #c8102e;
}

.promotion-rules .buttons-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  @media (max-width: 1218px) {
    flex-direction: column;
    align-items: center;
  }
}

.promotion-rules .buttons-wrapper .outlined-btn {
  background-color: transparent;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #000;
  font-weight: bold;
  text-align: center;
  width: 345px;
  height: 96px;
  border: 1px solid #73615b;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 500px) {
    font-size: 18px;
    height: 80px;
  }
}

.promotion-products {
  padding: 120px 0;
}

.promotion-products .heading {
  font-size: 50px;
  line-height: 40px;
  color: #000000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    font-size: 40px;
  }
}

.promotion-products .products-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  @media (max-width: 1218px) {
    grid-template-columns: 1fr;
  }
}

.promotion-products .products-wrapper .product-placeholder {
  width: 100%;
  height: 520px;
  background-color: #e2e2e2;

  @media (max-width: 1218px) {
    max-width: 400px;
    margin: 0 auto;
  }
}

.promotion-products .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 20;
}
