*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Exo 2", sans-serif;
}

body {
  font-size: 16px;
}

.container {
  max-width: 1218px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 20;
}

.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: bold;
  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: 1218px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  padding: 0 20px;
}

.hero-section {
  width: 100%;
  height: 700px;
  background-image: url("./images/hero-background.jpg?v=1");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 20px;
  padding-top: 80px;
  position: relative;

  @media (max-width: 1218px) {
    height: 780px;
    padding-top: 40px;
  }
}

.hero-section .center-image-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 375px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  background-image: url(./images/top-section-image.png?v=1);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 40px;
  background-origin: content-box;
  background-position: center;

  @media (max-width: 1218px) {
    display: none;
  }
}

.hero-section .center-image-container-mobile {
  width: 198px;
  height: 198px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: none;
  margin-bottom: 40px;
  position: relative;
  background-image: url(./images/top-section-image.png?v=1);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px;
  background-origin: content-box;
  background-position: center;

  @media (max-width: 1218px) {
    display: block;
  }
}

.plus-bullet {
  position: absolute;
  bottom: 0px;
  left: 10px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  background-color: #c8102e;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 1218px) {
    width: 58px;
    height: 58px;
  }
}

.plus-bullet .plus {
  font-size: 61px;
  line-height: 61px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 5px;

  @media (max-width: 1218px) {
    font-size: 32px;
  }
}

.hero-section .logo {
  width: 160px;
  height: 160px;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    margin-bottom: 20px;
  }
}

.hero-section .hero-heading {
  font-size: 54px;
  letter-spacing: 4px;
  line-height: 54px;
  color: #ffffff;
  font-weight: bold;
  max-width: 350px;
  margin-bottom: 20px;

  @media (max-width: 1218px) {
    font-size: 47px;
  }
}

.hero-section .shadow {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);

  @media (min-width: 1218px) {
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
  }

  @media (max-width: 1218px) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
  }
}

.hero-section .hero-description {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 300;
  max-width: 345px;
  margin-bottom: 40px;

  @media (max-width: 1218px) {
    margin-bottom: 20px;
    font-size: 17px;
    max-width: 300px;
  }
}

.hero-section .hero-description .bold-text {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 500;
}

.hero-section .hero-description .underline-text {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
}

.hero-section .hero-description .underline-text::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 120px;
  height: 2px;
  background-color: #c8102e;
  content: "";
}

.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: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width: 260px;
  height: 65px;
  border: 1px solid #c8102e;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
}

.outlined-btn {
  background-color: transparent;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width: 260px;
  height: 65px;
  border: 1px solid #73615b;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
}

.hero-section .bottom-text {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 300;
}

.footer-section {
  width: 100%;
  height: 900px;
  background-image: url("./images/footer-background.jpg?v=1");
  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: 168px;
  height: 168px;
  margin-bottom: 40px;
}

.footer-section .footer-heading {
  font-size: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 40px;
  max-width: 320px;

  @media (max-width: 1218px) {
    font-size: 24px;
    max-width: 180px;
  }
}

.footer-section .divider {
  width: 260px;
  height: 2px;
  background-color: #c8102e;
  margin-bottom: 60px;

  @media (max-width: 1218px) {
    margin-bottom: 20px;
  }
}

.footer-section .footer-subheadline {
  font-size: 28px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 80px;
  max-width: 250px;

  @media (max-width: 1218px) {
    font-size: 14px;
    max-width: 180px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.footer-section .outlined-btn {
  background-color: transparent;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width: 260px;
  height: 65px;
  border: 1px solid #73615b;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
  display: inline-block;

  @media (max-width: 500px) {
    width: 100%;
  }
}

.footer-section .outlined-btn:hover {
  background: #c8102e;
  border: 1px solid #c8102e;
}

.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 {
  width: 50%;
  height: 800px;
  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: 40px 20px 20px 40px;
    order: 1;
    max-width: 400px;
    margin-left: 0;
  }
}

.steps-section .heading {
  font-size: 40px;
  line-height: 40px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 60px;

  @media (max-width: 1218px) {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  @media (max-width: 800px) {
    font-size: 24px;
    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: 24px;
  line-height: 26px;
  color: #000000;
  font-weight: 300;

  @media (max-width: 1218px) {
    font-size: 18px;
    line-height: 26px;
  }

  @media (max-width: 800px) {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.steps-section .step-container .bold-text {
  font-weight: 700;
}

.steps-section .bottom-text {
  font-size: 30px;
  color: #000000;
  font-weight: bold;
  margin-top: 40px;

  @media (max-width: 1218px) {
    font-size: 23px;
  }

  @media (max-width: 800px) {
    font-size: 18px;
    margin-top: 0;
  }
}

.product-section {
  height: 800px;
  width: 100%;
  background-image: url("./images/product-background.jpg?v=1");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;

  @media (max-width: 800px) {
    height: 600px;
  }
}

.product-section .content {
  max-width: 650px;
  height: 100%;
  margin-left: auto;
  padding: 40px 140px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (max-width: 1940px) {
    padding: 40px 60px 40px 40px;
    max-width: 480px;
    justify-content: flex-start;
  }

  @media (max-width: 1218px) {
    padding: 80px 60px 40px 40px;
  }

  @media (max-width: 800px) {
    padding: 60px 20px 40px 20px;
    max-width: 350px;
  }
}

.product-section .content .heading {
  font-size: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    font-size: 34px;
    margin-bottom: 40px;
  }

  @media (max-width: 800px) {
    font-size: 24px;
  }
}

.product-section .content .description {
  font-size: 24px;
  line-height: 40px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 80px;

  @media (max-width: 1218px) {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 24px;
  }

  @media (max-width: 800px) {
    font-size: 14px;
  }
}

.product-section .content .outlined-btn {
  background-color: transparent;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width: 260px;
  height: 65px;
  border: 1px solid #73615b;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 20px 30px;

  @media (max-width: 800px) {
    font-size: 13px;
    padding: 10px;
    height: 45px;
    width: 200px;
  }
}

.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;

  @media (max-width: 600px) {
    flex-direction: column;
  }
}

.buttons-section a {
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 400px) {
    width: 100%;
  }
}

.slider-section {
  position: relative;
  height: 800px;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (max-width: 1218px) {
    height: 600px;
  }
}

.slider-section .heading {
  font-size: 40px;
  line-height: 40px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 20;

  @media (max-width: 1218px) {
    font-size: 30px;
    margin-bottom: 40px;
  }

  @media (max-width: 800px) {
    font-size: 24px;
    max-width: 320px;
    margin: 0 auto 40px auto;
    line-height: 30px;
  }
}

.slider-section .slider-background {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 40%;
  background-image: url("./images/slider-background.jpg?v=1");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;

  @media (max-width: 1218px) {
    width: 50%;
  }
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  background: #000;
  color: white;
  overflow: hidden;
  z-index: 20;
  background: transparent;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
}

.slider {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slide {
  flex: 0 0 33.3333%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
}

.slide img {
  height: 50px;
  margin-bottom: 1rem;
}

.slider-btn {
  position: relative;
  width: 100px;
  height: 100px;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(35px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.circle-button {
  position: relative;
  width: 100px;
  height: 100px;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
}

.circle-button:hover + .glow-effect,
.slider-btn:hover .glow-effect {
  opacity: 1;
}

.arrow-icon {
  stroke: white;
  width: 48px;
  height: 48px;
}

.slider-btn:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
  border-radius: 50%;
}

@media (max-width: 1218px) {
  .slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 800px) {
  .slide {
    flex: 0 0 100%;
  }
}

@media (max-width: 800px) {
  .slider-btn {
    width: 50px;
    height: 50px;
  }

  .circle-button {
    width: 50px;
    height: 50px;
  }

  .arrow-icon {
    width: 24px;
    height: 24px;
  }

  .glow-effect {
    width: 90px;
    height: 90px;
    filter: blur(20px);
  }
}

.slide .slide-image {
  margin-bottom: 30px;
  width: 100px;
  height: 100px;
}

.slide .slide-title {
  font-size: 18px;
  line-height: 23px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.slide .slide-description {
  max-width: 200px;
  font-size: 18px;
  line-height: 23px;
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}

.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;
}
