@media screen and (min-width: 1540px) {
  .container {
    max-width: 1440px;
  }
}
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, p, ul, ol, li, a {
  margin: 0;
}

* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 10px;
  border-radius: 10px;
  background-color: #E5E5E5;
}
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #D61317;
  cursor: pointer;
}
*::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E5E5E5;
}

a {
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #0a0a0a;
}

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Shantell-Sans";
  src: url("../assets/fonts/ShantellSans.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
.h1 {
  font-size: 5.2rem;
  line-height: 1.3;
}

.h2 {
  font-size: 4.4rem;
  line-height: 1.3;
}

.h3 {
  font-size: 2rem;
  line-height: 1.3;
}

.h4 {
  font-size: 1.6rem;
  line-height: 1.3;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.text--white {
  color: #fff;
}
.text--red {
  color: #D61317;
}
.text--blue {
  color: #79AEDF;
}
.text--blue-dark {
  color: #164589;
}
.text--gray-dark {
  color: #515151;
}
.text.medium {
  font-weight: 500;
}
.text.semibold {
  font-weight: 600;
}
.text.bold {
  font-weight: 700;
}
.text.extrabold {
  font-weight: 800;
}
.text.shantell-sans {
  font-family: "Shantell-Sans", sans-serif;
}
.text.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text.fz-xxxs {
  font-size: 0.8rem;
}
.text.fz-xxs {
  font-size: 1.3rem;
}
.text.fz-xs {
  font-size: 1.5rem;
}
.text.fz-s {
  font-size: 1.8rem;
}
.text.fz-md {
  font-size: 2.2rem;
}
.text.fz-lg {
  font-size: 2.5rem;
}
.text.fz-xl {
  font-size: 3.6rem;
}

.img {
  width: 100%;
  height: auto;
}
.img--xs {
  max-width: 60px;
}
.img--xss {
  max-width: 120px;
}
.img--ss {
  max-width: 160px;
}
.img--s {
  max-width: 350px;
}
.img--md {
  max-width: 450px;
}

.bttn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 6px;
  cursor: pointer;
  padding: 0.5em 1em;
  border: 2px solid #D61317;
  filter: drop-shadow(0 4px 4px rgba(125, 4, 15, 0.2));
  border-radius: 24px;
  font-size: 1em;
  color: #fff;
  background-color: #D61317;
  transition: all 0.8s ease;
}
.bttn--blue-dark {
  border: 2px solid #164589;
  filter: drop-shadow(0 4px 4px rgba(22, 69, 137, 0.2509803922));
  background-color: #164589;
}
.bttn--lg {
  font-size: 1.5rem;
  padding: 1rem;
}
.bttn--xl {
  font-size: 2.5rem;
  padding: 2rem;
}

button:hover {
  color: #fff;
  background-color: rgb(190.5793991416, 16.9206008584, 20.482832618);
  border: 2px solid rgb(190.5793991416, 16.9206008584, 20.482832618);
}
button:focus {
  color: #fff;
  background-color: rgb(190.5793991416, 16.9206008584, 20.482832618);
  border: 2px solid rgb(190.5793991416, 16.9206008584, 20.482832618);
}

a:hover {
  color: rgb(190.5793991416, 16.9206008584, 20.482832618);
}
a:focus {
  color: rgb(190.5793991416, 16.9206008584, 20.482832618);
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
}
.custom-checkbox__checkmark {
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translate(-50%, -50%);
  width: 35px;
  aspect-ratio: 1;
  background-color: transparent;
  border: 2px solid #0a0a0a;
  border-radius: 50%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1019607843));
  transition: all 0.5s ease;
}
.custom-checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
  aspect-ratio: 1;
  border: none;
  transform: translate(-50%, -50%);
  background: url("../assets/svg/answer-false.svg") center/100% 100% no-repeat;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1019607843));
}
.custom-checkbox__label {
  display: block;
  position: relative;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
  transition: all 0.5s ease;
  padding: 1rem 2rem 1rem calc(3rem + 35px);
  color: #0a0a0a;
  background-color: #D9D9D9;
  border-radius: 0.8rem;
}
.custom-checkbox__label:hover input ~ .custom-checkbox__checkmark {
  border-color: #79AEDF;
}
.custom-checkbox__label input:checked.true ~ .custom-checkbox__checkmark {
  border-color: #fff;
}
.custom-checkbox__label input:checked.true ~ .custom-checkbox__checkmark:after {
  display: flex;
  left: 60%;
  top: 40%;
  width: 110%;
  background: url("../assets/svg/answer-true.svg") center/100% 100% no-repeat;
}
.custom-checkbox__label:has(input:checked.true) {
  color: #fff;
  background-color: #28A745;
  cursor: not-allowed;
}
.custom-checkbox__label input:checked.false ~ .custom-checkbox__checkmark {
  border-color: #fff;
}
.custom-checkbox__label input:checked.false ~ .custom-checkbox__checkmark:after {
  display: flex;
  left: 46%;
  top: 52%;
  width: 130%;
  background: url("../assets/svg/answer-false.svg") center/100% 100% no-repeat;
}
.custom-checkbox__label:has(input:checked.false) {
  color: #fff;
  background-color: #F05B5E;
  cursor: not-allowed;
}

.sendBtn {
  width: 0;
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
}

.clickMe {
  animation: puls 3s linear infinite;
}
.clickMe:hover {
  transform: scale(1.1);
  color: #fff;
  background-color: #28A745;
  border: 2px solid #28A745;
}
.clickMe:focus {
  transform: scale(1.1);
  color: #fff;
  background-color: #28A745;
  border: 2px solid #28A745;
}

@keyframes puls {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  color: #164589;
}
.timer__value {
  font-size: 1.8rem;
  font-weight: bold;
}
.timer__label {
  font-size: 0.8rem;
}

@media (max-width: 1199px) {
  .timer {
    gap: 0.8rem;
  }
  .timer__value {
    font-size: 1.5rem;
  }
  .timer__label {
    font-size: 0.6rem;
  }
}
@media (max-width: 991px) {
  .custom-checkbox__checkmark {
    width: 25px;
  }
}

/*# sourceMappingURL=template.css.map */
