.header {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 36px;
  font-weight: bold;
  z-index: 3;
}
.header .main-section {
  gap: 20px;
}
.header .main-section a {
  color: black !important;
}
.header .logos-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5%;
}
.header .logos-wrapper img {
  width: 75%;
}
@media (max-width: 768px) {
  .header {
    -webkit-transform: unset;
            transform: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: unset;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header .menu-burger-logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 40px;
    margin-top: 20px;
  }
  .header .logos-img {
    margin: 30px auto 0;
    width: 70%;
  }
}

.header_menu_mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 100;
}
.header_menu_mobile .close-menu-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}
.header_menu_mobile .close-icon {
  color: #D59D50;
  font-size: 24px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header_menu_mobile .main-section {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #D59D50;
}
.header_menu_mobile .main-section a {
  color: #D59D50;
  padding: 10px 30px;
  width: 65%;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
}

.modal-dialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: auto;
  background: url("../images/bg_desktop.png") no-repeat center center;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .modal-dialog {
    background: url("../images/bg_mobile.png") center center;
    background-color: #ffffff;
  }
}
.modal-dialog .modal-content {
  background: unset;
  max-height: 90%;
  border: none;
}
.modal-dialog .modal-content .modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .modal-dialog .modal-content .modal-container .modal-image img {
    width: 30vw;
  }
}
.modal-dialog .modal-content .modal-container .modal-header {
  border: none;
  text-align: center;
  margin: 0px 80px;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-header {
    margin: 0;
  }
}
.modal-dialog .modal-content .modal-container .modal-header .modal-header-title {
  color: #D59D50;
  font-size: 70px;
  font-weight: 800;
  margin: auto;
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-header .modal-header-title {
    font-size: 28px;
  }
}
.modal-dialog .modal-content .modal-container .modal-footer {
  border: none;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-container .modal-footer .button-wrapper {
  margin: 0.25rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-footer .button-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 18vh;
  }
}
.modal-dialog .modal-content .modal-container .modal-footer .button-wrapper a {
  font-size: 20px;
  font-weight: 400;
  color: black;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 72px;
  padding: 7px 21px;
  width: 17vw;
  margin: 0 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  text-align: center;
}
.modal-dialog .modal-content .modal-container .modal-footer .button-wrapper a:hover {
  background-color: #D59D50;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-footer .button-wrapper a {
    margin: 10px 0;
    width: 93vw;
    font-size: 26px;
    font-weight: 800;
  }
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-footer {
    margin-bottom: unset;
  }
}
.modal-dialog .modal-content .modal-container .modal-image-footer {
  position: fixed;
  bottom: 4rem;
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-image-footer {
    position: relative;
    width: 98%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-self: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 0;
  }
}
.modal-dialog .modal-content .modal-container .modal-header-subtitle {
  color: black;
  font-size: 33px;
  padding-top: 20px;
  padding-bottom: 35px;
  text-align: center;
}
@media (max-width: 768px) {
  .modal-dialog .modal-content .modal-container .modal-header-subtitle {
    font-size: 20px;
    padding: 0 4rem;
  }
}

.shikma-main-content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .shikma-main-content {
    overflow: hidden;
  }
}
.shikma-main-content .background-image {
  width: 100vw;
  position: relative;
  z-index: 2;
}
.shikma-main-content .logo {
  position: absolute;
  left: 50%;
  top: 12%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  width: 12vw;
}
@media (max-width: 1600px) {
  .shikma-main-content .logo {
    top: 9%;
  }
}
@media (max-width: 768px) {
  .shikma-main-content .logo {
    top: 5%;
    width: 39vw;
  }
}
.shikma-main-content .eagle {
  position: absolute;
  left: 2%;
  top: 4%;
  z-index: 3;
}
@media (max-width: 768px) {
  .shikma-main-content .eagle {
    left: 7%;
    top: 1.5%;
  }
}
.shikma-main-content .leaf {
  position: absolute;
  right: 10%;
  top: 18%;
  z-index: 3;
}
@media (max-width: 768px) {
  .shikma-main-content .leaf {
    top: 4.5%;
  }
}
.shikma-main-content .circle {
  position: absolute;
  left: 5%;
  top: 12%;
  z-index: 3;
}
@media (max-width: 768px) {
  .shikma-main-content .circle {
    left: 11%;
    top: 3%;
  }
}
.shikma-main-content .text {
  position: absolute;
  left: 50%;
  top: 23%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 27px;
  z-index: 3;
}
@media (max-width: 1600px) {
  .shikma-main-content .text {
    top: 19%;
  }
}
@media (max-width: 768px) {
  .shikma-main-content .text {
    top: 9%;
    -webkit-transform: none;
            transform: none;
    left: auto;
  }
}
.shikma-main-content .text p {
  font-size: 40px;
}
@media (max-width: 1600px) {
  .shikma-main-content .text p {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .shikma-main-content .text p {
    font-size: 1rem;
    margin: 0;
  }
}
.shikma-main-content .text h2 {
  font-size: 80px;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .shikma-main-content .text h2 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .shikma-main-content .text h2 {
    font-size: 2rem;
    padding: 0 4rem;
  }
}
.shikma-main-content .inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  position: relative;
  text-align: center;
  margin-top: -4rem;
  background: url("../images/bg_desktop.png") no-repeat center top;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content {
    background: url("../images/bg_mobile_form.png") no-repeat center top;
    background-size: cover;
  }
}
.shikma-main-content .inner-content .shikma-form-section {
  position: relative;
  width: 41%;
  z-index: 1;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section {
    width: 72%;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-checkbox {
  text-align: right;
}
.shikma-main-content .inner-content .shikma-form-section .form-checkbox a {
  color: black;
  text-decoration: underline;
}
.shikma-main-content .inner-content .shikma-form-section .form-checkbox .checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 21px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-checkbox .checkbox-container {
    font-size: 18px;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-checkbox .checkbox-container.is-invalid {
  color: red;
}
.shikma-main-content .inner-content .shikma-form-section .form-checkbox .checkbox-container.is-invalid a {
  color: red;
}
.shikma-main-content .inner-content .shikma-form-section .form-checkbox .custom-control-input {
  z-index: 2;
  margin-left: 0.2em;
  margin-bottom: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  opacity: 1;
  width: 20px;
  height: 20px;
  border: 2px solid #F58544;
  background: unset;
  border-radius: 50%;
}
.shikma-main-content .inner-content .shikma-form-section .form-checkbox .custom-control-input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  border-radius: 50%;
  height: 100%;
  width: 10px;
  height: 10px;
  background: #F58544;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-header {
  text-align: center;
  padding-bottom: 15px;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-header h4 {
  font-weight: 700;
  font-size: 44px;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-header h4 {
    font-size: 22px;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control {
  border-radius: 24px;
  background: unset;
  color: black;
  border: 2px solid black;
  padding: 1.375rem 1rem;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control {
    font-size: 15px;
    line-height: 100%;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control.is-invalid {
  border: 1px solid red;
  padding: 0.375rem 0.75rem !important;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control::-webkit-input-placeholder {
  color: black;
  font-size: 1em;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control::-moz-placeholder {
  color: black;
  font-size: 1em;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control:-ms-input-placeholder {
  color: black;
  font-size: 1em;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control::-ms-input-placeholder {
  color: black;
  font-size: 1em;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .form-control::placeholder {
  color: black;
  font-size: 1em;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .invalid-feedback {
  text-align: right;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .whyme-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 44px;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .whyme-wrapper {
    font-size: 22px;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .whyme-wrapper .subtitle {
  line-height: 110%;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .whyme-wrapper .subtitle .black {
  margin: 0;
  font-weight: 700;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .whyme-wrapper .subtitle .orange {
  color: #F58544;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 800;
  margin: 0;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .custom-input-container {
  border: 2px solid #111;
  border-radius: 24px;
  padding: 15px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 1rem;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .input-label {
  font-size: 24px;
  color: #000;
  margin-bottom: 16px;
  display: block;
  text-align: right;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .input-label {
    font-size: 15px;
    padding: 0rem 0 0 7rem;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .custom-textarea {
  width: 100%;
  height: 140px;
  padding: 16px;
  border: 1.5px solid #111;
  border-radius: 16px;
  background-color: #fdfdfd;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .submit-btn {
  background: #F58544;
  color: black;
  border-radius: 72px;
  margin: auto;
  font-weight: bold;
  font-size: 1.8em;
  width: 13vw;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: unset;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .submit-btn {
    width: 50vw;
    margin: 2rem 0px;
    justify-self: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .sendingMessage {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-right: 5%;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control {
  font-size: 24px;
  padding: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control {
    margin-right: unset;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control-input {
  display: none;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control-label {
  position: relative;
  padding-right: 35px;
  cursor: pointer;
  color: black;
  padding-top: 4px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control-label {
    font-size: 16px;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control-label::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid black;
  border-radius: 6px;
  background: transparent;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control-label::before {
    width: 22px;
    height: 22px;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control-input:checked ~ .custom-control-label::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 45%;
  width: 6px;
  height: 12px;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .gender-container .custom-control-input:checked ~ .custom-control-label::before {
  background-color: transparent !important;
  border-color: black !important;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .shikma-selection-wrapper {
  position: relative;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .form-wrapper .shikma-selection-wrapper .shikma-labels-text {
    text-align: right;
    padding: 0rem 0 0 5rem;
  }
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .options-dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: white;
  border: 1px solid black;
  text-align: right;
  border-radius: 10px;
  font-size: 20px;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .options-dropdown-container .products-container {
  margin-bottom: 0px;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .options-dropdown-container .products-container .custom-control-label {
  font-family: "Open Sans";
  font-size: 1rem;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .options-dropdown-container.show {
  display: block !important;
}
.shikma-main-content .inner-content .shikma-form-section .form-wrapper .fa-rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.shikma-main-content .inner-content .shikma-form-section .bg1 {
  position: absolute;
  top: -49%;
  left: -35rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .bg1 {
    display: none;
  }
}
.shikma-main-content .inner-content .shikma-form-section .bg2 {
  position: absolute;
  top: 25%;
  left: 37rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .shikma-form-section .bg2 {
    top: -6%;
    right: -4rem;
    left: auto;
  }
}
.shikma-main-content .inner-content .footer {
  font-weight: bold;
  font-size: 20px;
  margin-top: 2rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .footer {
    margin-top: 0;
  }
}
.shikma-main-content .inner-content .footer .according-to-policy {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .footer .according-to-policy {
    font-size: 15px;
    font-weight: bold;
    margin: 1.5rem 0;
    justify-self: center;
  }
}
.shikma-main-content .inner-content .footer .alcohol-warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .footer .alcohol-warning {
    margin: 1rem 0;
  }
}
@media (max-width: 768px) {
  .shikma-main-content .inner-content .form-background-image {
    width: 100vw;
  }
}

.thanks-wrapper {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  margin: auto;
  background: url("../images/bg_desktop.png") no-repeat center center;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .thanks-wrapper {
    background: url("../images/bg_mobile.png") center center;
    background-color: #ffffff;
  }
}
.thanks-wrapper .logo {
  margin-top: 12rem;
  width: 9vw;
}
@media (max-width: 768px) {
  .thanks-wrapper .logo {
    margin-top: 3rem;
    width: 100%;
  }
}
.thanks-wrapper .gold_text {
  font-size: 70px;
  font-weight: 800;
  color: #D59D50;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .thanks-wrapper .gold_text {
    font-size: 28px;
    padding: 0rem 4rem;
  }
}
.thanks-wrapper p {
  font-size: 45px;
  font-weight: 700;
  color: #000;
  line-height: 114%;
  margin: 1.5rem 0;
}
@media (max-width: 768px) {
  .thanks-wrapper p {
    font-size: 20px;
  }
}
.thanks-wrapper .button-wrapper {
  margin: 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .thanks-wrapper .button-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1rem auto;
  }
}
.thanks-wrapper .button-wrapper a {
  font-size: 28px;
  font-weight: 700;
  color: black;
  background-color: #D59D50;
  border-radius: 72px;
  padding: 7px 21px;
  width: 35vw;
  margin: 0 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  text-align: center;
}
.thanks-wrapper .button-wrapper a:hover {
  text-decoration: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .thanks-wrapper .button-wrapper a {
    margin: 10px 0;
    width: 93vw;
    font-size: 26px;
    font-weight: 700;
  }
}

body:has(.thanks-wrapper) .header {
  display: none !important;
}