* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: sans-serif;
}
@media (max-width: 600px) {
  html, body {
    background: rgb(239, 213, 140);
  }
}

.desktop {
  display: block;
}
@media (max-width: 600px) {
  .desktop {
    display: none;
  }
}

#desktop {
  display: block;
}
@media (max-width: 600px) {
  #desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 600px) {
  .mobile {
    display: block;
  }
}

#mobile {
  display: none;
}
@media (max-width: 600px) {
  #mobile {
    display: block;
  }
}

.myBtn {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  gap: 10px;
  border-radius: 4px;
  border: unset;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #FFE18F;
  background: linear-gradient(260deg, #FFEAB0 0.95%, #D6A827 29.25%, #E6A900 66.27%, #6C3604 103.17%);
  box-shadow: 0px 0px 44px 0px rgba(214, 168, 39, 0.6);
  color: #FFF;
  text-align: center;
  leading-trim: both;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 133%;
  text-transform: uppercase;
  transition: 0.2s;
}
.myBtn:hover {
  filter: brightness(85%);
}
@media (max-width: 600px) {
  .myBtn {
    padding: 16px 24px;
  }
}

header {
  background: url(assets/headerbg.webp) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(239, 213, 140, 0.4);
  backdrop-filter: blur(7.5px);
}
header strong {
  color: #FFF;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 133%;
}
header .myBtn {
  padding: 11px;
  border-radius: 3px;
  border: 2px solid #FFE18F;
  background: linear-gradient(94deg, #D6A827 6.93%, #E6A900 86.02%);
  box-shadow: 0px 0px 41.295px 0px rgba(214, 168, 39, 0.6);
}
header .flip-clock {
  text-align: center;
  perspective: 400px;
  padding: 20px auto;
}
header .flip-clock *,
header .flip-clock *:before,
header .flip-clock *:after {
  box-sizing: border-box;
}
header .flip-clock .flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
}
header .flip-clock .flip-clock__slot {
  font-size: 1.2vw;
  color: #FBF6E9;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 133%;
  text-transform: uppercase;
}
header .flip-clock .card {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 1.2vw;
  line-height: 0.95;
}
header .flip-clock .card__top,
header .flip-clock .card__bottom,
header .flip-clock .card__back::before,
header .flip-clock .card__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: #000;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visiblity: hidden;
  transform-style: preserve-3d;
  width: 2em;
  transform: translateZ(0);
}
header .flip-clock .card__bottom {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #000;
  background: #211A14;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}
header .flip-clock .card__bottom::after {
  display: block;
  margin-top: -0.72em;
}
header .flip-clock .card__back::before,
header .flip-clock .card__bottom::after {
  content: attr(data-value);
}
header .flip-clock .card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}
header .flip-clock .card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
header .flip-clock .flip .card__back::before {
  animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  animation-fill-mode: both;
  transform-origin: center bottom;
}
header .flip-clock .flip .card__back .card__bottom {
  transform-origin: center top;
  animation-fill-mode: both;
  animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}
@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%, 99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@keyframes flipBottom {
  0%, 50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}
@media (max-width: 600px) {
  header {
    background: url(assets/headerbgmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    gap: 8px;
    border-bottom: 1px solid rgba(239, 213, 140, 0.4);
    padding: 12px 0;
  }
  header strong {
    font-size: 10px;
  }
  header .flip-clock .card {
    font-size: 6vw;
  }
  header .flip-clock .flip-clock__piece {
    margin: 0 2.5px;
  }
  header .flip-clock .flip-clock__slot {
    font-size: 10px;
  }
}

.hero {
  background: url(assets/herobg.webp) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
}
.hero .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  padding: 80px 6%;
}
.hero .mainDiv .logo {
  width: 465px;
}
.hero .mainDiv h1 {
  color: #FBF6E9;
  font-feature-settings: "salt" on;
  font-family: "mundial", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 133%;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  max-width: 696px;
}
.hero .mainDiv .desc {
  color: #FFF;
  font-family: "mundial", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 160%;
  max-width: 577px;
}
.hero .mainDiv .myBtn {
  border-radius: 4px;
}
@media (max-width: 600px) {
  .hero {
    background: url(assets/herobgmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    align-items: center;
    justify-content: center;
    min-height: unset;
  }
  .hero .mainDiv {
    align-items: center;
    padding: 220px 24px 50px;
    gap: 15px;
  }
  .hero .mainDiv .logo {
    width: 318px;
  }
  .hero .mainDiv h1 {
    font-size: 19px;
    line-height: 133%;
    max-width: 342px;
    text-align: center;
  }
  .hero .mainDiv .desc {
    font-size: 13px;
    line-height: 160%;
    max-width: 360px;
    text-align: center;
  }
  .hero .mainDiv strong {
    font-size: 12px;
  }
  .hero .mainDiv .myBtn {
    padding: 8px 32px;
    max-width: 295px;
  }
}

.second {
  background: url(assets/secondbg.webp) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 620px;
  border-bottom: 3px solid #6C4B0F;
}
.second .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 6%;
}
.second .mainDiv h2 {
  color: #FFF;
  text-align: center;
  font-feature-settings: "salt" on;
  font-family: "miller-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 133%;
  max-width: 734px;
}
@media (max-width: 600px) {
  .second {
    background: url(assets/secondbgmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    min-height: unset;
  }
  .second .mainDiv {
    padding: 83% 24px 40px;
    gap: 30px;
  }
  .second .mainDiv h2 {
    font-size: 25px;
  }
}

.third {
  background: url(assets/thirdbg.webp) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top;
  margin-top: -2px;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 27px;
}
.third .pic1 {
  margin-top: 64px;
}
.third .pic2 {
  margin-top: 167px;
}
.third .mainDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
.third .mainDiv .dateDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.third .mainDiv > span {
  color: #FFF;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 160%;
  max-width: 600px;
  letter-spacing: 0.3px;
}
.third .mainDiv p {
  color: #FFF;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  max-width: 470px;
}
.third .mainDiv p span {
  font-weight: 700;
  color: #D6A827;
}
@media (max-width: 600px) {
  .third {
    background: url(assets/thirdbmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    padding: 40px 24px;
  }
  .third .mainDiv {
    gap: 24px;
  }
  .third .mainDiv .dateDiv {
    gap: 15px;
  }
  .third .mainDiv .dateDiv .bdate, .third .mainDiv .dateDiv .bdate2 {
    width: 108px;
  }
  .third .mainDiv .dateDiv .arrows {
    width: 90px;
  }
  .third .mainDiv > span {
    font-size: 21px;
    text-align: left;
  }
  .third .mainDiv p {
    font-size: 16.5px;
  }
  .third .mainDiv .myBtn {
    max-width: 284px;
    padding: 10px 32px;
  }
}

footer {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #020202;
}
footer strong {
  color: #CACACA;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  font-family: "mundial", sans-serif;
}
footer > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
footer > div a {
  color: #6F6F6F;
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.2s;
  font-family: "mundial", sans-serif;
}
footer > div a:hover {
  filter: brightness(130%);
}
footer > div p {
  color: #6F6F6F;
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  footer {
    padding: 16px 24px 24px;
  }
  footer strong {
    font-size: 15px;
    text-align: center;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.2);
}

.modal-content {
  background: url(assets/modalbg.webp) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  position: relative;
  width: 759px;
  border-radius: 3px;
  border: 1px solid #D3A827;
  box-shadow: 0px 0px 84px 0px #CEA746;
  margin: 2% auto;
  padding: 60px 80px;
}
.modal-content .logoDiv {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  border: 0.899px solid rgba(231, 205, 130, 0.77);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3.1452701092px);
}
.modal-content .logoDiv strong {
  color: #FBF6E9;
  text-align: center;
  font-feature-settings: "salt" on;
  font-family: "grand-central", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}
.modal-content p {
  color: #F2F7FE;
  text-align: center;
  font-feature-settings: "salt" on;
  font-family: "mundial", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 133%;
}
.modal-content #_form_15_ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: unset;
  padding: unset;
  width: 100%;
}
.modal-content #_form_15_ ._form-content {
  width: 100%;
}
.modal-content #_form_15_ ._form-content ._field-wrapper {
  margin-bottom: 8px;
}
.modal-content #_form_15_ #fullname, .modal-content #_form_15_ #email {
  display: flex;
  width: 100%;
  padding: 13px;
  align-items: flex-start;
  gap: 10px;
  border: unset;
  border-radius: 8px;
  background: #F8F8F8;
  color: #4D433A;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
.modal-content #_form_15_ ._button-wrapper {
  display: flex;
}
.modal-content #_form_15_ #_form_15_submit {
  display: flex;
  padding: 19px;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  margin-top: 10px;
  border-radius: 4px;
  border: 2px solid #FFE18F;
  background: linear-gradient(260deg, #FFEAB0 0.95%, #D6A827 29.25%, #E6A900 66.27%, #6C3604 103.17%);
  box-shadow: 0px 0px 44px 0px rgba(214, 168, 39, 0.6);
  width: 100%;
  cursor: pointer;
  color: #FFF;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: 0.2s;
}
.modal-content #_form_15_ #_form_15_submit:hover {
  filter: brightness(120%);
}
@media (max-width: 600px) {
  .modal-content {
    width: 357px;
    padding: 40px 24px;
    gap: 15px;
  }
  .modal-content p {
    font-size: 13px;
  }
  .modal-content .logoDiv {
    padding: 15px;
    gap: 8px;
  }
  .modal-content #_form_15_ #_form_15_submit {
    margin-top: 5px;
    font-size: 15px;
    padding: 10px 32px;
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFFFFF;
  float: right;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .close {
    top: 10px;
    right: 10px;
  }
}

.close:hover,
.close:focus {
  color: #313131;
  text-decoration: none;
  cursor: pointer;
}

#_form_15_ {
  font-size: 14px;
  line-height: 1.6;
  font-family: arial, helvetica, sans-serif;
  margin: 0;
}

#_form_15_ * {
  outline: 0;
}

._form_hide {
  display: none;
  visibility: hidden;
}

._form_show {
  display: block;
  visibility: visible;
}

#_form_15_._form-top {
  top: 0;
}

#_form_15_._form-bottom {
  bottom: 0;
}

#_form_15_._form-left {
  left: 0;
}

#_form_15_._form-right {
  right: 0;
}

#_form_15_ textarea {
  resize: none;
}

#_form_15_ ._submit:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

#_form_15_ ._submit.processing {
  position: relative;
}

#_form_15_ ._submit.processing::before {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: double 3px transparent;
  border-radius: 50%;
  background-image: linear-gradient(#E6A900, #E6A900), conic-gradient(#E6A900, #FFFFFF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: 1200ms ease 0s infinite normal none running _spin;
}

#_form_15_ ._submit.processing::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #E6A900 !important;
  border: 0 !important;
  -moz-border-radius: 4px !important;
  -webkit-border-radius: 4px !important;
  border-radius: 4px !important;
  color: #FFFFFF !important;
  padding: 10px !important;
}

@keyframes _spin {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(450deg);
  }
}
#_form_15_ ._close-icon {
  cursor: pointer;
  background-image: url("https://d226aj4ao1t61q.cloudfront.net/esfkyjh1u_forms-close-dark.png");
  background-repeat: no-repeat;
  background-size: 14.2px 14.2px;
  position: absolute;
  display: block;
  top: 11px;
  right: 9px;
  overflow: hidden;
  width: 16.2px;
  height: 16.2px;
}

#_form_15_ ._close-icon:before {
  position: relative;
}

#_form_15_ ._form-body {
  margin-bottom: 30px;
}

#_form_15_ ._form-image-left {
  width: 150px;
  float: left;
}

#_form_15_ ._form-content-right {
  margin-left: 164px;
}

#_form_15_ ._form-branding {
  color: #fff;
  font-size: 10px;
  clear: both;
  text-align: left;
  margin-top: 30px;
  font-weight: 100;
}

#_form_15_ ._form-branding ._logo {
  display: block;
  width: 130px;
  height: 14px;
  margin-top: 6px;
  background-image: url("https://d226aj4ao1t61q.cloudfront.net/hh9ujqgv5_aclogo_li.png");
  background-size: 130px auto;
  background-repeat: no-repeat;
}

#_form_15_ .form-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#_form_15_ ._form-label, #_form_15_ ._form_element ._form-label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

#_form_15_._dark ._form-branding {
  color: #333;
}

#_form_15_._dark ._form-branding ._logo {
  background-image: url("https://d226aj4ao1t61q.cloudfront.net/jftq2c8s_aclogo_dk.png");
}

#_form_15_ ._form_element {
  position: relative;
  margin-bottom: 10px;
  font-size: 0;
  max-width: 100%;
}

#_form_15_ ._form_element * {
  font-size: 14px;
}

#_form_15_ ._form_element._clear {
  clear: both;
  width: 100%;
  float: none;
}

#_form_15_ ._form_element._clear:after {
  clear: left;
}

#_form_15_ ._form_element input[type=text], #_form_15_ ._form_element input[type=date], #_form_15_ ._form_element select, #_form_15_ ._form_element textarea:not(.g-recaptcha-response) {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
}

#_form_15_ ._field-wrapper {
  position: relative;
}

#_form_15_ ._inline-style {
  float: left;
}

#_form_15_ ._inline-style input[type=text] {
  width: 150px;
}

#_form_15_ ._inline-style:not(._clear) + ._inline-style:not(._clear) {
  margin-left: 20px;
}

#_form_15_ ._form_element img._form-image {
  max-width: 100%;
}

#_form_15_ ._form_element ._form-fieldset {
  border: 0;
  padding: 0.01em 0 0 0;
  margin: 0;
  min-width: 0;
}

#_form_15_ ._clear-element {
  clear: left;
}

#_form_15_ ._full_width {
  width: 100%;
}

#_form_15_ ._form_full_field {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

#_form_15_ input[type=text]._has_error, #_form_15_ textarea._has_error {
  border: #F37C7B 1px solid;
}

#_form_15_ input[type=checkbox]._has_error {
  outline: #F37C7B 1px solid;
}

#_form_15_ ._error {
  display: block;
  position: absolute;
  font-size: 14px;
  z-index: 10000001;
}

#_form_15_ ._error._above {
  padding-bottom: 4px;
  bottom: 39px;
  right: 0;
}

#_form_15_ ._error._below {
  padding-top: 8px;
  top: 100%;
  right: 0;
}

#_form_15_ ._error._above ._error-arrow {
  bottom: -4px;
  right: 15px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #FFDDDD;
}

#_form_15_ ._error._below ._error-arrow {
  top: 0;
  right: 15px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFDDDD;
}

#_form_15_ ._error-inner {
  padding: 12px 12px 12px 36px;
  background-color: #FFDDDD;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8ZM9 3V9H7V3H9ZM9 13V11H7V13H9Z' fill='%23CA0000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px center;
  font-size: 14px;
  font-family: arial, sans-serif;
  font-weight: 600;
  line-height: 16px;
  color: #000;
  text-align: center;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0px 1px 4px rgba(31, 33, 41, 0.298295);
}

#_form_15_ ._error-inner._form_error {
  margin-bottom: 5px;
  text-align: left;
}

#_form_15_ ._button-wrapper ._error-inner._form_error {
  position: static;
}

#_form_15_ ._error-inner._no_arrow {
  margin-bottom: 10px;
}

#_form_15_ ._error-arrow {
  position: absolute;
  width: 0;
  height: 0;
}

#_form_15_ ._error-html {
  margin-bottom: 10px;
}

.pika-single {
  z-index: 10000001 !important;
}

#_form_15_ input[type=text].datetime_date {
  width: 69%;
  display: inline;
}

#_form_15_ select.datetime_time {
  width: 29%;
  display: inline;
  height: 32px;
}

#_form_15_ input[type=date].datetime_date {
  width: 69%;
  display: inline-flex;
}

#_form_15_ input[type=time].datetime_time {
  width: 29%;
  display: inline-flex;
}

@media (min-width: 320px) and (max-width: 667px) {
  ::-webkit-scrollbar {
    display: none;
  }
  #_form_15_ {
    margin: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  #_form_15_ * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1em;
  }
  #_form_15_ ._form-content {
    margin: 0;
    width: 100%;
  }
  #_form_15_ ._form-inner {
    display: block;
    min-width: 100%;
  }
  #_form_15_ ._form-title, #_form_15_ ._inline-style {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
  #_form_15_ ._form-title {
    font-size: 1.2em;
  }
  #_form_15_ ._form-element, #_form_15_ ._inline-style, #_form_15_ input[type=text], #_form_15_ label, #_form_15_ p, #_form_15_ textarea:not(.g-recaptcha-response) {
    float: none;
    display: block;
    width: 100%;
  }
  #_form_15_ ._row._checkbox-radio label {
    display: inline;
  }
  #_form_15_ ._row, #_form_15_ p, #_form_15_ label {
    margin-bottom: 0.7em;
    width: 100%;
  }
  #_form_15_ ._row input[type=checkbox], #_form_15_ ._row input[type=radio] {
    margin: 0 !important;
    vertical-align: middle !important;
  }
  #_form_15_ ._row input[type=checkbox] + span label {
    display: inline;
  }
  #_form_15_ ._row span label {
    margin: 0 !important;
    width: initial !important;
    vertical-align: middle !important;
  }
  #_form_15_ ._form-image {
    max-width: 100%;
    height: auto !important;
  }
  #_form_15_ input[type=text] {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.3em;
    -webkit-appearance: none;
  }
  #_form_15_ input[type=radio], #_form_15_ input[type=checkbox] {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    font-size: 1em;
    margin: 0 0.3em 0 0;
    vertical-align: baseline;
  }
  #_form_15_ button[type=submit] {
    padding: 20px;
    font-size: 1.5em;
  }
  #_form_15_ ._inline-style {
    margin: 20px 0 0 !important;
  }
}
#_form_15_._inline-form ._form-title {
  font-family: "IBM Plex Sans", Helvetica, sans-serif;
  font-size: 22px;
  line-height: normal;
  font-weight: 600;
  color: #000000 !important;
  margin-bottom: 0;
}

#_form_15_._inline-form ._form-branding {
  font-family: "IBM Plex Sans", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 100;
  font-style: normal;
  text-decoration: none;
}

#_form_15_:before, #_form_15_:after {
  content: " ";
  display: table;
}

#_form_15_:after {
  clear: both;
}

#_form_15_._inline-style {
  width: auto;
  display: inline-block;
}

#_form_15_._inline-style input[type=text], #_form_15_._inline-style input[type=date] {
  padding: 10px 12px;
}

#_form_15_._inline-style button._inline-style {
  position: relative;
  top: 27px;
}

#_form_15_._inline-style p {
  margin: 0;
}

#_form_15_._inline-style ._button-wrapper {
  position: relative;
  margin: 27px 12.5px 0 20px;
}

#_form_15_ ._form-thank-you {
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 18px;
}

@media (min-width: 320px) and (max-width: 667px) {
  #_form_15_._inline-form._inline-style ._inline-style._button-wrapper {
    margin-top: 20px !important;
    margin-left: 0 !important;
  }
}
#_form_15_ .iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
}

#_form_15_ .iti input {
  width: 100%;
  height: 32px;
  border: #979797 1px solid;
  border-radius: 4px;
}

#_form_15_ .iti--separate-dial-code .iti__selected-flag {
  background-color: #FFFFFF;
  border-radius: 4px;
}

#_form_15_ .iti--separate-dial-code .iti__selected-flag:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

#_form_15_ .iti__country-list {
  border-radius: 4px;
  margin-top: 4px;
  min-width: 460px;
}

#_form_15_ .iti__country-list--dropup {
  margin-bottom: 4px;
}

#_form_15_ .phone-error-hidden {
  display: none;
}

#_form_15_ .phone-error {
  color: #E40E49;
}

#_form_15_ .phone-input-error {
  border: 1px solid #E40E49 !important;
}

/*# sourceMappingURL=style.min.css.map */
