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

html, body {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: "mundial", sans-serif;
  background: #F3F1EE;
}

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

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

.myBtn {
  display: flex;
  padding: 18px;
  justify-content: center;
  align-items: center;
  min-width: 450px;
  max-width: 450px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(255, 206, 98, 0.44);
  background: linear-gradient(123deg, #F9E47F -2.53%, #D1A440 179.2%);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
  color: #392E2A;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.27px;
  text-decoration: none;
  transition: 0.2s;
}
.myBtn:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  .myBtn {
    font-size: 18px;
    gap: 8px;
    min-width: unset;
    max-width: 342px;
    padding: 16px;
    align-self: stretch;
  }
}

.btn2 {
  border-radius: 8px;
  border: 1px solid rgba(255, 206, 98, 0.44);
  background: linear-gradient(95deg, #E1B85B 3.88%, #9D7A2C 92.4%);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
}

.btnDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btnDiv .boxDiv {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 30px 30px 0px 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.168627451);
  border-right: 1px solid rgba(0, 0, 0, 0.168627451);
  border-left: 1px solid rgba(0, 0, 0, 0.168627451);
}
.btnDiv .boxDiv p {
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.24px;
}
@media (max-width: 600px) {
  .btnDiv .boxDiv {
    padding: 12px;
    border-radius: 16px 16px 0 0;
  }
  .btnDiv .boxDiv p {
    font-size: 14px;
  }
}

.connectDiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.connectDiv svg:first-child {
  margin-right: -2px;
}
@media (max-width: 600px) {
  .connectDiv svg:last-child {
    margin-left: -2px;
  }
}

.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;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}
.hero .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 0 0 0 8%;
}
.hero .mainDiv .titleDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.hero .mainDiv .titleDiv .dateDiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .mainDiv .titleDiv .dateDiv > div {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #8C784B;
  border-right: 1px solid #8C784B;
  border-bottom: 1px solid #8C784B;
  background: rgba(0, 0, 0, 0.23);
}
.hero .mainDiv .titleDiv .dateDiv > div:last-child {
  border-right: unset;
}
.hero .mainDiv .titleDiv .dateDiv > div p {
  color: #FCFCFC;
  font-size: 13px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
.hero .mainDiv h1 {
  color: #FFF4DF;
  font-size: 52px;
  font-weight: 700;
  line-height: 99%;
  max-width: 635px;
}
.hero .mainDiv h1 span {
  color: #E3CB6A;
}
.hero .mainDiv .desc {
  color: #FCFCFC;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 600px;
}
.hero .mainDiv .btnDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .mainDiv .btnDiv .boxDiv {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 9px 30px 0px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}
.hero .mainDiv .btnDiv .boxDiv p {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.24px;
}
@media (max-width: 1538px) {
  .hero .mainDiv .desc {
    font-size: 18px;
    max-width: 615px;
  }
}
@media (max-width: 1281px) {
  .hero .mainDiv {
    gap: 20px;
    padding: 4% 0 4% 6%;
  }
  .hero .mainDiv h1 {
    font-size: 45px;
    max-width: 550px;
  }
  .hero .mainDiv .desc {
    font-size: 16px;
    max-width: 550px;
  }
}
@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;
    justify-content: center;
    min-height: unset;
  }
  .hero .mainDiv {
    padding: 50% 20px 24px;
    align-items: center;
    gap: 13px;
  }
  .hero .mainDiv .titleDiv {
    align-items: center;
  }
  .hero .mainDiv .titleDiv .dateDiv > div {
    padding: 6px 8px;
    gap: 6px;
  }
  .hero .mainDiv .titleDiv .dateDiv > div p {
    font-size: 12px;
  }
  .hero .mainDiv h1 {
    font-size: 28px;
    line-height: 99%;
    font-weight: 700;
    max-width: 342px;
    text-align: center;
  }
  .hero .mainDiv .desc {
    font-size: 16px;
    text-align: center;
    max-width: 342px;
  }
  .hero .mainDiv .btnDiv .boxDiv {
    border-radius: 16px 16px 0 0;
    padding: 12px;
  }
  .hero .mainDiv .btnDiv .boxDiv p {
    font-size: 14px;
  }
}

.second {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  gap: 24px;
  position: relative;
}
.second .faixa {
  position: absolute;
  top: 0;
  left: 90px;
}
.second h2 {
  color: #202020;
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  max-width: 700px;
}
.second h2 span {
  color: #C3A127;
}
.second > p {
  color: #202020;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 700px;
}
.second .dataFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.second .dataFlex .dataDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.second .dataFlex .dataDiv p {
  color: #202020;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 292px;
  text-align: left;
}
.second .dataFlex .mid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.second .dataFlex .mid p {
  color: #202020;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 384px;
}
.second .chatFlex {
  display: flex;
  padding: 24px 0px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.second .chatFlex .chatDiv {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.second .chatFlex .chatDiv .chatBubble {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 100px;
}
.second .chatFlex .chatDiv .chatBubble span {
  display: flex;
  padding: 16px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px 12px 12px 0px;
  background: #FFF;
  box-shadow: 0px 30px 30px 0px rgba(0, 0, 0, 0.07);
}
.second .chatFlex .chatDiv .chatBubble span p {
  color: #53473B;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  max-width: 411px;
}
.second .chatFlex .chatDiv .chatBubble svg {
  margin-top: -1px;
}
.second .chatFlex .chatDiv .answer {
  align-items: flex-end;
  padding-right: unset;
  padding-left: 100px;
}
.second .chatFlex .chatDiv .answer span {
  border-radius: 12px 12px 0px 12px;
}
.second .titleDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 42px 0;
}
.second .titleDiv .dateDiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.second .titleDiv .dateDiv > div {
  display: flex;
  padding: 17px 27px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #8C784B;
  border-right: 1px solid #8C784B;
  border-bottom: 1px solid #8C784B;
}
.second .titleDiv .dateDiv > div:last-child {
  border-right: unset;
}
.second .titleDiv .dateDiv > div p {
  color: #5D5D5D;
  font-size: 19px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .second {
    padding: 24px 20px;
    gap: 16px;
  }
  .second .faixa {
    left: 11px;
  }
  .second h2 {
    font-size: 26px;
    max-width: 342px;
  }
  .second p {
    font-size: 17px;
    max-width: 342px;
  }
  .second .dataFlex {
    gap: 16px;
  }
  .second .dataFlex .dataDiv {
    flex-direction: column;
  }
  .second .dataFlex .dataDiv img {
    width: 342px;
  }
  .second .dataFlex .dataDiv p {
    font-size: 18px;
    max-width: 342px;
    text-align: center;
  }
  .second .dataFlex .bot {
    flex-direction: column-reverse;
  }
  .second .chatFlex {
    padding: unset;
  }
  .second .chatFlex .chatDiv .chatBubble {
    padding-right: unset;
  }
  .second .chatFlex .chatDiv .chatBubble span p {
    font-size: 18px;
    max-width: 253px;
  }
  .second .chatFlex .chatDiv .answer {
    padding-left: unset;
  }
  .second .titleDiv {
    padding: 27px 0;
    gap: 16px;
  }
  .second .titleDiv .dateDiv > div {
    padding: 6px 8px;
    gap: 6px;
  }
  .second .titleDiv .dateDiv > div p {
    font-size: 12px;
  }
}

.para {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 0;
}
.para .titleDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.para .titleDiv strong {
  color: #202020;
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  max-width: 770px;
}
.para .titleDiv strong span {
  color: #C3A127;
}
.para .paraFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.para .paraFlex .paraRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.para .paraFlex .paraRow .paraDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: #FCFCFC;
}
.para .paraFlex .paraRow .paraDiv .iconDiv {
  display: flex;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: conic-gradient(from 90deg at 2.86% 3.57%, #FFF7DB 0deg, #C3A127 360deg);
}
.para .paraFlex .paraRow .paraDiv p {
  color: #202020;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  max-width: 444px;
}
@media (max-width: 600px) {
  .para {
    padding: 24px;
    gap: 24px;
  }
  .para .titleDiv {
    gap: 20px;
  }
  .para .titleDiv strong {
    font-size: 26px;
    max-width: 342px;
  }
  .para .paraFlex .paraRow {
    flex-direction: column;
  }
  .para .paraFlex .paraRow .paraDiv p {
    font-size: 17px;
    max-width: 294px;
  }
}

.step {
  background: url(assets/booksbg.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;
  padding: 100px 0;
}
.step .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(104, 104, 104, 0.25) 0%, rgba(199, 199, 199, 0) 100%);
  backdrop-filter: blur(41px);
}
.step .mainDiv strong {
  color: #FFF4DF;
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  line-height: 120%;
  max-width: 652px;
}
.step .mainDiv strong span {
  color: #E3CB6A;
}
.step .mainDiv > p {
  color: #FCFCFC;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  max-width: 652px;
}
.step .mainDiv .btnDiv .boxDiv {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.step .mainDiv .btnDiv .boxDiv p {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 600px) {
  .step {
    background: url(assets/booksbgmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    padding: 180px 24px 40px;
  }
  .step .mainDiv {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(199, 199, 199, 0) 100%);
    backdrop-filter: blur(41px);
    gap: 16px;
  }
  .step .mainDiv img {
    width: 294px;
  }
  .step .mainDiv > strong {
    font-size: 26px;
    max-width: 294px;
  }
  .step .mainDiv > p {
    font-size: 18px;
    max-width: 294px;
  }
}

.quem {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 80px 0;
}
.quem .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.quem .textDiv strong {
  color: #202020;
  font-size: 46px;
  font-weight: 700;
  line-height: 99%;
  max-width: 580px;
}
.quem .textDiv > p {
  color: #202020;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  max-width: 580px;
}
@media (max-width: 600px) {
  .quem {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px;
  }
  .quem .textDiv strong {
    font-size: 26px;
    max-width: 342px;
  }
  .quem .textDiv > p {
    font-size: 17px;
    max-width: 342px;
  }
}

footer {
  display: flex;
  padding: 32px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-top: 1px solid #E8E8E8;
}
footer .lastDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
footer .lastDiv strong {
  color: #9E9B98;
  text-align: center;
  font-family: "minion-3", sans-serif;
  font-size: 46px;
  font-style: italic;
  font-weight: 400;
  line-height: 110%;
  max-width: 800px;
}
footer .lastDiv span {
  color: #66625C;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "minion-3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
}
footer > strong {
  color: #66625C;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 99%;
  letter-spacing: 0.315px;
}
footer > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer > div a, footer > div p {
  color: #66625C;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 99%;
  letter-spacing: 0.315px;
  text-decoration: none;
  transition: 0.2s;
}
footer > div a:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  footer {
    padding: 24px 32px;
    gap: 16px;
  }
  footer .lastDiv {
    margin-bottom: unset;
  }
  footer .lastDiv strong {
    font-size: 26px;
    max-width: 326px;
  }
  footer strong {
    text-align: center;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(17px);
}

.modal-content {
  background: #F3F1EE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  gap: 32px;
  position: relative;
  width: 500px;
  margin: 3% auto;
  padding: 40px;
}
.modal-content .titleDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.modal-content .titleDiv .dateDiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content .titleDiv .dateDiv > div {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #8C784B;
  border-right: 1px solid #8C784B;
  border-bottom: 1px solid #8C784B;
}
.modal-content .titleDiv .dateDiv > div:last-child {
  border-right: unset;
}
.modal-content .titleDiv .dateDiv > div p {
  color: #5D5D5D;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
.modal-content p {
  color: #202020;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 140%;
  max-width: 420px;
}
.modal-content #_form_26_ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: unset;
  padding: unset;
  width: 100%;
}
.modal-content #_form_26_ ._form-content {
  width: 100%;
}
.modal-content #_form_26_ ._form-content ._field-wrapper {
  margin-bottom: 8px;
}
.modal-content #_form_26_ #fullname, .modal-content #_form_26_ #email {
  display: flex;
  width: 100%;
  padding: 12px 16px;
  align-items: flex-start;
  border-radius: 8px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.9);
  color: #3F3F3F;
  font-family: "mundial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.modal-content #_form_26_ #fullname::placeholder, .modal-content #_form_26_ #email::placeholder {
  color: #3F3F3F;
}
.modal-content #_form_26_ ._button-wrapper {
  display: flex;
}
.modal-content #_form_26_ #_form_26_submit {
  display: flex;
  padding: 18px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(255, 206, 98, 0.44);
  background: linear-gradient(123deg, #F9E47F -2.53%, #D1A440 179.2%);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
  width: 100%;
  color: #392E2A;
  text-align: center;
  font-family: "mundial", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.27px;
  text-decoration: none;
  transition: 0.2s;
}
.modal-content #_form_26_ #_form_26_submit:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  .modal-content #_form_26_ #_form_26_submit {
    font-size: 18px;
    gap: 8px;
    min-width: unset;
    max-width: 342px;
    padding: 16px;
    align-self: stretch;
  }
}
@media (max-width: 600px) {
  .modal-content {
    width: 342px;
    padding: 24px;
    height: unset;
    gap: 15px;
    margin: 6% auto;
  }
  .modal-content .titleDiv {
    align-items: center;
  }
  .modal-content .titleDiv .dateDiv > div {
    padding: 6px 8px;
    gap: 6px;
  }
  .modal-content .titleDiv .dateDiv > div p {
    font-size: 10px;
  }
  .modal-content p {
    font-size: 14px;
    max-width: 294px;
  }
  .modal-content #_form_26_ #fullname, .modal-content #_form_26_ #email {
    padding: 12px 16px;
  }
}

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

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

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

#_form_26_ * {
  outline: 0;
}

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

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

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

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

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

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

#_form_26_ input[type=text], #_form_26_ input[type=tel], #_form_26_ input[type=date], #_form_26_ textarea {
  padding: 6px;
  height: auto;
  border: #979797 1px solid;
  border-radius: 4px;
  color: #000000 !important;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#_form_26_ textarea {
  resize: none;
}

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

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

#_form_26_ ._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(#D1A440, #D1A440), conic-gradient(#D1A440, #FFFFFF);
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: 1200ms ease 0s infinite normal none running _spin;
}

#_form_26_ ._submit.processing::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #D1A440 !important;
  border: 0 !important;
  border-radius: 63px;
  color: #FFFFFF !important;
  padding: 10px !important;
}

@keyframes _spin {
  0% {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(450deg);
  }
}
#_form_26_ ._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_26_ ._close-icon:before {
  position: relative;
}

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

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

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

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

#_form_26_ ._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_26_ .form-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

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

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

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

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

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

#_form_26_ ._form_element input[type=text], #_form_26_ ._form_element input[type=date], #_form_26_ ._form_element select, #_form_26_ ._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_26_ ._field-wrapper {
  position: relative;
}

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

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

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

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

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

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

#_form_26_ ._full_width {
  width: 100%;
}

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

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

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

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

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

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

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

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

#_form_26_ ._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_26_ ._error-inner._form_error {
  margin-bottom: 5px;
  text-align: left;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 320px) and (max-width: 667px) {
  ::-webkit-scrollbar {
    display: none;
  }
  #_form_26_ {
    margin: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  #_form_26_ * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1em;
  }
  #_form_26_ ._form-content {
    margin: 0;
    width: 100%;
  }
  #_form_26_ ._form-inner {
    display: block;
    min-width: 100%;
  }
  #_form_26_ ._form-title, #_form_26_ ._inline-style {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
  }
  #_form_26_ ._form-title {
    font-size: 1.2em;
  }
  #_form_26_ ._form_element {
    margin: 0 0 10px;
    padding: 0;
    width: 100%;
  }
  #_form_26_ ._form-element, #_form_26_ ._inline-style, #_form_26_ input[type=text], #_form_26_ label, #_form_26_ p, #_form_26_ textarea:not(.g-recaptcha-response) {
    float: none;
    display: block;
    width: 100%;
  }
  #_form_26_ ._row._checkbox-radio label {
    display: inline;
  }
  #_form_26_ ._row, #_form_26_ p, #_form_26_ label {
    margin-bottom: 0.7em;
    width: 100%;
  }
  #_form_26_ ._row input[type=checkbox], #_form_26_ ._row input[type=radio] {
    margin: 0 !important;
    vertical-align: middle !important;
  }
  #_form_26_ ._row input[type=checkbox] + span label {
    display: inline;
  }
  #_form_26_ ._row span label {
    margin: 0 !important;
    width: initial !important;
    vertical-align: middle !important;
  }
  #_form_26_ ._form-image {
    max-width: 100%;
    height: auto !important;
  }
  #_form_26_ input[type=text] {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 1.3em;
    -webkit-appearance: none;
  }
  #_form_26_ input[type=radio], #_form_26_ 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_26_ button[type=submit] {
    padding: 20px;
    font-size: 1.5em;
  }
  #_form_26_ ._inline-style {
    margin: 20px 0 0 !important;
  }
}
#_form_26_._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_26_._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_26_:before, #_form_26_:after {
  content: " ";
  display: table;
}

#_form_26_:after {
  clear: both;
}

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

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

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

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

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

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

#_form_26_ ._form-pc-confirmation {
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 18px;
}

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

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

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

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

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

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

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

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

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

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field fieldset {
  margin: 0;
  margin-bottom: 1.1428571429em;
  border: none;
  padding: 0;
}

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field fieldset:last-child {
  margin-bottom: 0;
}

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field legend {
  margin-bottom: 1.1428571429em;
}

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 0.8571428571em;
}

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field label:last-child {
  margin-bottom: 0;
}

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field input {
  margin: 0;
  margin-right: 8px;
}

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field ._form-checkbox-option-label {
  line-height: 1;
  display: block;
  font-weight: 700;
}

#_form_26_._inline-form ._form-content ._form-list-subscriptions-field ._form-checkbox-option-description {
  margin: 0;
  margin-top: 0.3333333333em;
  font-size: 0.8571428571em;
}

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