:root {
  --thomas-global-color-primary: #2A2C6D;
  --thomas-global-color-secondary: #67C3C7;
  --thomas-global-color-text: #FFFFFF;
  --thomas-global-color-accent: #67C3C7;
  --thomas-global-typography-primary-font-family: "Montserrat, Sans-serif";
  --thomas-global-typography-primary-font-size: 50px;
  --thomas-global-typography-primary-font-weight: 900;
  --thomas-global-typography-primary-line-height: 29px;
  --thomas-global-typography-secondary-font-family: "Montserrat, Sans-serif";
  --thomas-global-typography-secondary-font-size: 40px;
  --thomas-global-typography-secondary-font-weight: 600;
  --thomas-global-typography-text-font-family: "Roboto";
  --thomas-global-typography-text-font-weight: 400;
  --thomas-global-typography-accent-font-family: "Roboto";
  --thomas-global-typography-accent-font-weight: 500;
}

.thomas-bg-primary {
  background-color: var(--thomas-global-color-primary);
}

body {
  /* font-family: var(--thomas-global-typography-text-font-family); */
  /* font-family: var(--thomas-global-typography-primary-font-family); */
}
header {
  width: 100%;
  position: fixed;
  margin-top: 0px;
  background-color: var(--thomas-global-color-primary);
}

#app_containers {
  padding-top: 100px;
  width: 100%;
  justify-content: center;
  padding-left: 4px;
  padding-right: 4px;
}
#form_title {
  /* font-family: var(--thomas-global-typography-primary-font-family); */
  font-family: Montserrat, Sans-serif;
  text-align: center;
  text-transform: uppercase;
  /* text-shadow: -1px -1px 2px var(--thomas-global-color-primary); */
  font-weight: var(--thomas-global-typography-accent-font-weight);
  font-size: var(--thomas-global-typography-primary-font-size);
}

.title_section {
  margin-top: 36px;
  margin-bottom: 24px;
  font-family: Montserrat, Sans-serif;
  text-align: center;
  text-transform: uppercase;
  /* text-shadow: -1px -1px 2px var(--thomas-global-color-primary); */
  font-weight: var(--thomas-global-typography-accent-font-weight);
  font-size: var(--thomas-global-typography-primary-font-size);
}

.question_box {
  width: 100%;
  justify-content: center;
  border: 1px solid var(--thomas-global-color-primary);
  /* background-color: #eeeded; */
  /* border-bottom: 1px solid var(--thomas-global-color-primary); */
  border-radius: 5px;
  padding: 4px;
  /* padding-bottom: 8px; */
  margin-bottom: 16px;
}
.question_title {
  font-size: 18px;
  font-weight: 400;
}
.question_box_divider {
  border-top: 1px solid var(--thomas-global-color-primary);
  padding-top: 4px;
  margin-top: 4px;
}
.radio-label {
  padding: 5px;
  /* border: 1px solid blue;
  background-color: yellow; */
  display: inline-block;
  /* color: var(--thomas-global-color-primary); */
  /* var(--thomas-global-color-secondary); */
}

.text_blue {
  color: var(--thomas-global-color-primary);
}

.radio-label:active {
  color: var(--thomas-global-color-secondary);
}

input[type='radio'] {
  display: none;
}

.radio-container label {
  display: flex;
  align-items: center;
  column-gap: 20px;
  /* background-color: #2A2C6D; */
  margin-bottom: 4px;
  border-radius: 24px;
  border: 1px solid var(--thomas-global-color-primary);
}

.custom-radio {
  border: 1px solid var(--thomas-global-color-primary);
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border-radius: 50%;
}

.custom-radio,
span {
  transition: 0.5s ease;
  color:  var(--thomas-global-color-primary);
  
}

.radio-container label:has(input:checked) {
  background-color: var(--thomas-global-color-primary);
}

input[type='radio']:checked +
.custom-radio + span {
  color: white;
  font-weight: 600;
  /* background-color: var(--thomas-global-color-primary); */

}

.custom-radio span {
  content: '';
  width: 23px;
  height: 23px;
  background: var(--thomas-global-color-primary);
  border-radius: 50%;
}

input[type='radio']:checked + .custom-radio {
  border-color: white;
  color: white;
}

input[type='radio']:checked + .custom-radio span {
  background: white;
}

.hidden {
  display: none;
}

#message_validation {
  color: red;
  padding: 4px;
  border: 1px solid red;
  border-radius: 5px;
  margin-bottom: 4px;
}

#icon_message {
  float: left;
  width: 20px;
  color: red;
  fill: red;
  margin-right: 4px;
}

/* Site */
#clearfix {
  padding-top: 80px;
}

@keyframes reveal {
  from {
      clip-path: inset(0 100% 0 0);
  }
  to {
      clip-path: inset(0 0 0 0);
  }
}

@keyframes textReveal {
  from {
      transform: translateY(100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@keyframes shine {
  from {
      transform: translateX(-100%) rotate(45deg);
  }
  to {
      transform: translateX(200%) rotate(45deg);
  }
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
  );
  transform: translateX(-100%) rotate(45deg);
}

.shine-effect:hover::before {
  animation: shine 1.5s;
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.split-reveal {
  animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal {
  animation: textReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.scroll-container {
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.content-mask {
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}