body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  box-sizing: border-box;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

.page-content {
  animation: pageFadeIn 0.6s ease-out forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-content {
    animation: none;
  }
}

a {
  color: #00b7ff;
}

.boldTxt {
  font-weight: bold;
}

input.largerCheckbox,
input[type="radio"] {
  accent-color: #d91919;
  cursor: pointer;
}

input.largerCheckbox {
  width: 30px;
  height: 30px;
}

input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid black;
}

input[type="tel"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid black;
}

input[type="email"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid black;
}

#banner {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner-wrap {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: 1.5rem;
}
.normalTxt {
  font-size: 1.1rem;
  text-align: justify;
}
.labelTxt {
  font-size: 1.1rem;
}
.radioTxt {
  font-size: 1.2rem;
}
.desktopScreen {
  display: block;
}
.mobileScreen {
  display: none;
}
.header {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1440px) {
  .header {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .normalTxt {
    font-size: 1.1rem;
    text-align: justify;
  }
  .labelTxt {
    font-size: 1.1rem;
  }
  #banner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .radioTxt {
    font-size: 1.2rem;
  }
  .desktopScreen {
    display: block;
  }
  .mobileScreen {
    display: none;
  }
}

@media screen and (max-width: 1220px) {
  body {
    padding: 2rem 1.5rem;
  }
}
/*
@media screen and (max-width: 1024px) {

  body {
    padding: 2rem 15rem;
  }
  .normalTxt {
    font-size: 1.1rem;
    text-align: justify;
  }
  .labelTxt {
    font-size: 1.1rem;
  }
  #banner {
    object-fit: cover;
  }
  .radioTxt {
    font-size: 1.2rem;
  }
  .desktopScreen {
    display: block;
  }
  .mobileScreen {
    display: none;
  }
}
*/
/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 1024px) {
  .header {
    font-size: 1.1rem;
    font-weight: bold;
  }
  body {
    padding: 1.5rem 1rem;
  }

  .normalTxt {
    font-size: 0.9rem;
    text-align: left;
  }

  .labelTxt {
    font-size: 1rem;
  }

  .radioTxt {
    font-size: 1rem;
  }

  #banner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .desktopScreen {
    display: none;
  }
  .mobileScreen {
    display: block;
  }
}

.custom-select {
  position: relative;
}

select {
  appearance: none;
  /*  safari  */
  -webkit-appearance: none;
  /*  other styles for aesthetics */
  width: 100%;
  font-size: 1.1rem;
  padding: 0.675em 6em 0.675em 1em;
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
}

.custom-select::before,
.custom-select::after {
  --size: 0.3rem;
  content: "";
  position: absolute;
  right: 1rem;
  pointer-events: none;
}

.custom-select::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 40%;
}

.custom-select::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 55%;
}

/* CSS */
.button-32 {
  background-color: #d91919;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  transition: 200ms;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-32:not(:disabled):hover,
.button-32:not(:disabled):focus {
  outline: 0;
  background: red;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2), 0 3px 8px 0 rgba(0, 0, 0, 0.15);
}

.button-32:disabled {
  filter: saturate(0.2) opacity(0.5);
  -webkit-filter: saturate(0.2) opacity(0.5);
  cursor: not-allowed;
}
