h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1 {
  line-height: 1;
  font-size: 56px;

  @media screen and (max-width: 1280px) {
    font-size: 28px;
  }
}

h2.title {
  font-family: "Roboto";
  font-size: 42px;
}

.container {
  margin: 0 auto;
  width: 98vw;
  max-width: var(--container-size);

  @media screen and (max-width: 1280px) {
    max-width: var(--container-size-md);
    width: 96vw;
  }
}

button:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.button {
  font-family: "Roboto";
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: var(--primary-orange);
  color: #fff;
  width: max-content;
  padding: 20px;
  font-size: 24px;
  background: linear-gradient(
    325deg,
    rgba(255, 118, 76, 1) 65%,
    rgba(255, 184, 37, 1) 100%
  );
  cursor: pointer;

  @media screen and (max-width: 1024px) {
    font-size: 22px;
    padding: 16px;
  }
}

.button_gray {
  background: var(--primary-gray);
}

.button__icons svg:last-child {
  margin-left: -20px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.checkbox-wrapper {
  position: relative;
}

.checkbox__mark {
  appearance: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid #ffcf24;
}

.checkbox__text {
  text-align: left;
  font-size: 18px;
}

.checkbox__checkmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.checkbox__mark:checked + .checkbox__checkmark {
  opacity: 1;
}
