:root {
  --bs-border-color: #fae8d2;
}

@font-face {
    font-family: 'SourceSerif4-Bold';
    src: url('../fonts/SourceSerif4-Bold.woff2') format('woff2'),
         url('../fonts/SourceSerif4-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Regular.woff2') format('woff2'),
        url('../fonts/SourceSans3-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Light.woff2') format('woff2'),
        url('../fonts/SourceSans3-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background-color: #3d275c;
  color: #fae8d2;
  margin: 0;
  width: 100%;
  min-height: fit-content;
}
.bg-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
h1,
h2 {
  font-family: "source-serif-4", serif;
}
h1 {
  letter-spacing: 9.5px;
  font-weight: 800;
  font-size: 5em;
}
h2 {
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 1.5em;
}
.mt-100 {
  margin-top: 140px;
  margin-bottom: 40px;
}
.mb-2 {
  margin-bottom: 1rem;
}
.text-center {
  text-align: center;
}
.main {
  min-height: 100vh;
  padding: 20px;
  max-width: 360px;
  margin: 0 auto;
}
.flex-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.claim {
  margin-top: 80px;
}
.main h1 {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 20px;
  flex-direction: row;
  font-size: 4.6em;
  letter-spacing: 2px;
  line-height: 1em;
}
.main h1 small {
  margin-bottom: 4px;
}
.form-hidden {
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
  -webkit-transition: opacity 1.5s ease-in-out;
  -moz-transition: opacity 1.5s ease-in-out;
  -ms-transition: opacity 1.5s ease-in-out;
  -o-transition: opacity 1.5s ease-in-out;
  @starting-style {
    opacity: 0;
  }
}
.form-hidden.d-none {
  opacity: 0;
}
.main p {
  color: #b6b6b6;
}
.no-button {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
  cursor: pointer;
}
.no-button p {
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 2px;
  transition: opacity 200ms ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-button:hover p {
  opacity: 0.8;
  animation: bounce 1s infinite;
  -webkit-animation: bounce 1s infinite;
}
#compass {
  max-width: 100%;
}
.form-resp {
  width: 50vw;
  max-width: 700px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.btn {
  display: inline-block;
  background: transparent;
  color: inherit;
  font: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  transition: all 200ms ease-in;
  cursor: pointer;
}
.btn--primary {
  background: transparent;
  color: #fae8d2;
  border: 1px solid #fae8d2;
  border-radius: 2px;
  padding: 12px 36px;
}
.btn--primary:hover {
  background: #fae8d2;
  color: #111;
}
.btn--primary:active {
  background: #7f8ff4;
  box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
.btn--inside {
  margin-left: -96px;
}
.modal-header {
  border-bottom: none;
}
.m1 {
  margin-top: 1px;
}

.form__field {
  width: 100%;
  max-width: 100%;
  background: transparent;
  color: #fae8d2;
  font: inherit;
  border: 0;
  outline: 0;
  padding: 5px;
  text-align: left;
  border-bottom: 1px solid #fae8d2;
}
.form__field.auto {
  width: auto;
  flex: 1;
}
.form__field::placeholder {
  color: #fae8d2;
  font-weight: 100;
}
input[type="text"],
input[type="email"] {
  letter-spacing: 1px;
}
input[type="radio"],
input[type="checkbox"] {
  /* filter: grayscale(1);
  -webkit-filter: grayscale(1); */
  vertical-align: sub;
}
input[type="radio"] {
  height: 16px;
  width: 16px;
}

input[type="checkbox"] {
  vertical-align: middle;
}
.linke label {
  color: #fae8d2; ;
}
small.opt {
  font-size: 0.7em;
  font-weight: 200;
  letter-spacing: 0.5px;
}
label span {
  color: #aaa;
}

.option {
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 2;
}
.check {
  display: flex;
}
.option label,
.privacy-checkbox label {
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 0.8em;
}
#privacy {
  color: #b5b5b5;
  text-decoration: none;
}

.alert {
  font-size: 1em;
  color: #b5b5b5;
}
.form-check-input[type=radio] {
    border-radius: 50%;
    background: transparent;
    margin-top: -2px;
    margin-right: 5px !important;
    border-color: #fae8d2;
}
.form-check-input:checked[type=radio] {
  background-color: #fae8d2;
}
.form-check-input[type=checkbox] {
    border-radius: 0;
    background-color: transparent;
    margin-top: 2px;
    border-color: #fae8d2;
}
.form-check-input:checked[type=checkbox] {
  background-color: #3d275c;
}
.form-check-input:focus {
    box-shadow: none;
}
/* .form-check-input:active {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
} */
@keyframes bounce {
  50% {
    scale: 0.9;
  }
  100% {
    scale: 1;
  }
}
@media screen and (max-width: 1290px) {
  .form__field {
    max-width: 100%;
  }
  .form-resp {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
@media screen and (max-width: 910px) {
  .main h1 {
    flex-direction: column;
    font-size: 3em;
    align-items: center;
    gap: 10px;
  }
  .bg-fixed {
    background-image: url(../img/bg_resp.png);
    background-position: center right;
  }
}
@media screen and (max-width: 768px) {
  
  .form-hidden {
    padding-inline: 15px;
  }
  .no-button p {
    font-size: 1em;
  }
  #compass {
    width: 110px;
  }
}

@media screen and (max-width: 480px) {
  
  .no-button p {
    font-size: .9em;
  }
  .main h1 {
    font-size: 2.5em;
  }

}
