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

html,
body {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  background: #f2f5fc;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

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

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

.myBtn,
.btn {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: unset;
  border-top: 1px solid #83faa3;
  background: linear-gradient(180deg, #58dd7c 0%, #14c042 100%);
  box-shadow: 0px 14px 26px 0px rgba(36, 199, 80, 0.27);
  cursor: pointer;
  gap: 10px;
  min-width: 450px;
  max-width: 450px;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.19);
  color: #ffffff;
  text-align: center;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 133%;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.2s;
}
.myBtn:hover,
.btn:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  .myBtn,
  .btn {
    width: 100%;
    min-width: unset;
    padding: 16px;
    font-size: 17px;
  }
}

#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;
  padding: 40px 0 80px 8%;
  min-height: 100vh;
}
#hero .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
#hero .mainDiv h1 {
  color: #202020;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 58px;
  font-weight: 700;
  line-height: normal;
  max-width: 510px;
}
#hero .mainDiv .desc {
  color: #202020;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 150%;
  max-width: 510px;
}
#hero .mainDiv .btnDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
#hero .mainDiv .btnDiv p {
  color: #202020;
  font-size: var(--Tamanhos-caption, 16px);
  font-weight: 700;
  line-height: 140%;
  max-width: 370px;
}
#hero .mainDiv .btnDiv .myBtn {
  max-width: 470px;
  min-width: 470px;
}
@media (width > 1921px) {
  #hero {
    padding: 40px 0 80px 15%;
  }
}
@media (max-width: 600px) {
  #hero {
    background: url(assets/herobgmob2.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: bottom;
    align-items: center;
    min-height: unset;
    flex-direction: column;
    padding: 40px 24px 375px;
    gap: 16px;
    min-height: unset;
  }
  #hero .mainDiv {
    gap: 16px;
    align-items: center;
  }
  #hero .mainDiv .logo {
    width: 167px;
  }
  #hero .mainDiv h1 {
    text-align: center;
    font-size: 31px;
    max-width: 342px;
  }
  #hero .mainDiv .desc {
    font-size: 18px;
    max-width: 342px;
    text-align: center;
  }
  #hero .mainDiv .btnDiv {
    align-items: center;
    gap: 8px;
  }
  #hero .mainDiv .btnDiv p {
    text-align: center;
    font-size: 14px;
    max-width: 342px;
  }
  #hero .mainDiv .btnDiv .myBtn {
    max-width: 342px;
    min-width: 342px;
  }
}

.thl {
  background: url(assets/thl1bg.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: flex-start;
  justify-content: center;
  padding: 120px 0;
  margin-top: -2px;
}
.thl .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.thl .textDiv .titleDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
.thl .textDiv .titleDiv h2 {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-h2, 50px);
  font-weight: 700;
  line-height: 120%;
  max-width: 436px;
}
.thl .textDiv .titleDiv strong {
  color: var(--Neutra-12, #eee);
  font-size: 28px;
  font-weight: 300;
  line-height: 120%;
  max-width: 530px;
}
.thl .textDiv .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.thl .textDiv .list > p {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  max-width: 574px;
}
.thl .textDiv .list > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.thl .textDiv .list > div p {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  max-width: 452px;
}
.thl .textDiv .botDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 44px;
  border-radius: var(--border_radius-border-radius_lg, 24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(240, 240, 240, 0.09);
  position: relative;
}
.thl .textDiv .botDiv p {
  color: #eee;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  max-width: 488px;
}
.thl .textDiv .botDiv .ast {
  position: absolute;
  top: -6px;
  left: -17px;
}
@media (max-width: 1537px) {
  .thl .thlImg {
    width: 44vw;
  }
}
@media (max-width: 600px) {
  .thl {
    background: url(assets/thlbgmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 24px;
  }
  .thl .thlImg {
    width: 100%;
  }
  .thl .textDiv {
    gap: 24px;
  }
  .thl .textDiv .titleDiv h2 {
    font-size: 32px;
    max-width: 250px;
  }
  .thl .textDiv .titleDiv strong {
    font-size: 18px;
  }
  .thl .textDiv .line {
    width: 100%;
  }
  .thl .textDiv .list {
    gap: 24px;
  }
  .thl .textDiv .list p {
    font-size: 18px;
  }
  .thl .textDiv .list > div p {
    font-size: 18px;
  }
  .thl .textDiv .botDiv {
    padding: 32px;
  }
  .thl .textDiv .botDiv p {
    font-size: 17px;
  }
}

.depo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 40px;
  gap: 24px;
}
.depo h2 {
  color: var(--Neutra-12, #202020);
  text-align: center;
  font-feature-settings: "liga" off;
  font-size: var(--Tamanhos-h3, 36px);
  font-weight: 700;
  line-height: 120%;
  max-width: 600px;
}
.depo .boxFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 90%;
  width: 100%;
}
.depo .boxFlex .swiper-button-next,
.depo .boxFlex .swiper-button-prev {
  --swiper-navigation-size: 25px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 5px;
  --swiper-navigation-color: #eee;
  background: rgba(91, 31, 255, 0.295);
  padding: 23px 20px;
  transition: 0.2s;
}
.depo .boxFlex .swiper-button-next:hover,
.depo .boxFlex .swiper-button-prev:hover {
  filter: brightness(80%);
}
.depo .boxFlex .swiper-button-prev {
  top: 50%;
  left: 0px;
  right: auto;
  border-radius: 0px 40px 40px 0px;
}
.depo .boxFlex .swiper-button-next {
  top: 50%;
  right: 0px;
  left: auto;
  border-radius: 40px 0 0 40px;
}
.depo .boxFlex .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  user-select: none;
}
.depo .boxFlex .box .bubble {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 24px;
  background: #fff;
  position: relative;
  gap: 16px;
  user-select: none;
}
.depo .boxFlex .box .bubble > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.depo .boxFlex .box .bubble > div strong {
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.depo .boxFlex .box .bubble > p {
  color: #202020;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
@media (width > 1920px) {
  .depo .boxFlex {
    max-width: 1920px;
  }
}
@media (max-width: 600px) {
  .depo {
    padding: 24px 15px 16px;
  }
  .depo h2 {
    font-size: 22px;
    max-width: 342px;
  }
  .depo .boxFlex {
    max-width: 100%;
  }
  .depo .boxFlex .swiper-button-prev {
    left: 0px;
    right: auto;
  }
  .depo .boxFlex .swiper-button-next {
    right: 0px;
    left: auto;
  }
  .depo .boxFlex .box {
    max-width: unset;
  }
  .depo .boxFlex .box .video {
    width: 250px;
  }
  .depo .boxFlex .box .bubble {
    width: 100%;
    gap: 7px;
    padding: 16px;
  }
  .depo .boxFlex .box .bubble > div strong {
    font-size: 14px;
  }
  .depo .boxFlex .box .bubble p {
    font-size: 15px;
    max-width: unset;
  }
}

.third {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 0;
}
.third .aboveDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.third .aboveDiv .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.third .aboveDiv .textDiv h2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: var(--Neutra-12, #202020);
  font-size: var(--Tamanhos-h2, 50px);
  font-weight: 700;
  line-height: 120%;
}
.third .aboveDiv .textDiv h2 span {
  font-feature-settings: "salt";
}
.third .aboveDiv .textDiv p {
  color: var(--Neutra-12, #202020);
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  max-width: 625px;
}
.third .belowDiv {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.third .belowDiv img {
  border-radius: 24px;
  box-shadow: 0px 4px 21px 0px rgba(0, 0, 0, 0.11);
}
.third .belowDiv .sec {
  margin-top: 40px;
}
@media (max-width: 1280px) {
  .third .belowDiv img {
    width: 40vw;
  }
}
@media (max-width: 600px) {
  .third {
    padding: 0 20px 40px;
    gap: 24px;
  }
  .third .aboveDiv {
    flex-direction: column;
    gap: 16px;
  }
  .third .aboveDiv img {
    width: 342px;
  }
  .third .aboveDiv .textDiv {
    gap: 14px;
  }
  .third .aboveDiv .textDiv h2 {
    display: block;
    font-size: 32px;
  }
  .third .aboveDiv .textDiv p {
    font-size: 18px;
  }
  .third .belowDiv {
    flex-direction: column;
    align-items: center;
  }
  .third .belowDiv img {
    width: unset;
  }
}

.live {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  background: linear-gradient(180deg, #330086 -23.67%, #000 100%), var(--Secundria-2, #131232);
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.live .bg {
  position: absolute;
  top: -20px;
}
.live .aboveDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 30px 0;
}
.live .aboveDiv .bigText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.live .aboveDiv .bigText h2 {
  text-align: center;
  font-size: 75px;
  font-weight: 700;
  line-height: 120%;
  max-width: 509px;
  background: linear-gradient(295deg, #a5abff 8.13%, #fff 95.57%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.live .aboveDiv .bigText p {
  color: var(--Neutra-12, #eee);
  font-family: "permanent-marker-pro", sans-serif;
  font-size: var(--Tamanhos-h4, 24px);
  font-weight: 400;
  line-height: 120%;
}
.live .aboveDiv .bigText p span {
  color: #ff0037;
}
.live .aboveDiv .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 600px;
}
.live .aboveDiv .textDiv strong {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-h1, 46px);
  font-weight: 700;
  line-height: normal;
}
.live .aboveDiv .textDiv p {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  position: relative;
}
.live .aboveDiv .textDiv p span {
  position: absolute;
  left: -25px;
  bottom: -3px;
  color: #5729ff;
  font-family: "permanent-marker-pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
.live .trFlex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.live .trFlex .trRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.live .trFlex .trRow .tWrap {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 24px;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 435px;
}
.live .trFlex .trRow .tWrap span {
  display: flex;
  padding: 8px 12px 4px 12px;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(105deg, #14052d -4.34%, #330086 88.18%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: var(--Tamanhos-caption, 16px);
  font-weight: 700;
  line-height: 120%;
}
.live .depoFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.live .depoFlex > div {
  display: flex;
  padding: var(--space-space_lg, 24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 256px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(240, 240, 240, 0.09);
}
@media (max-width: 1280px) {
  .live .trFlex .trRow > img {
    width: 16vw;
  }
}
@media (max-width: 600px) {
  .live {
    padding: 40px 24px;
  }
  .live .bg {
    display: none;
  }
  .live .aboveDiv {
    flex-direction: column;
    padding: unset;
    gap: 24px;
  }
  .live .aboveDiv .bigText {
    gap: 8px;
    align-items: flex-start;
    align-self: flex-start;
  }
  .live .aboveDiv .bigText h2 {
    font-size: 38px;
    max-width: 278px;
    text-align: left;
  }
  .live .aboveDiv .bigText p {
    font-size: 22px;
  }
  .live .aboveDiv .textDiv {
    gap: 20px;
    max-width: 342px;
  }
  .live .aboveDiv .textDiv strong {
    font-size: 28px;
  }
  .live .aboveDiv .textDiv p {
    font-size: 18px;
  }
  .live .aboveDiv .textDiv p span {
    left: 212px;
    color: #ff0037;
  }
  .live .tFlex {
    max-width: 100%;
  }
  .live .tFlex .swiper-button-prev {
    left: 0px;
    right: auto;
  }
  .live .tFlex .swiper-button-next {
    right: 0px;
    left: auto;
  }
  .live .tFlex .swiper .swiper-wrapper .swiper-slide img {
    width: 150px;
  }
  .live .trFlex {
    align-items: center;
    gap: 16px;
  }
  .live .trFlex .trRow {
    display: flex;
    gap: 16px;
  }
  .live .trFlex .trRow img {
    width: 162px;
  }
  .live .trFlex .trRow .tWrap {
    padding: unset;
    max-width: 342px;
    gap: 8px;
  }
  .live .trFlex .trRow .tWrap span {
    font-size: 14px;
  }
  .live .tWrap {
    gap: 8px;
  }
  .live .tWrap span {
    font-size: 14px;
  }
  .live .depoFlex {
    flex-direction: column;
    gap: 16px;
  }
  .live .depoFlex > div {
    padding: unset;
    height: unset;
    border-radius: 16px;
  }
  .live .depoFlex > div img {
    width: 342px;
  }
}

.thl {
  background: url(assets/thlbg.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: 120px 0;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin-top: -3px;
}
.thl .bg {
  position: absolute;
  top: -20px;
}
.thl .aboveDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 30px 0;
}
.thl .aboveDiv .bigText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thl .aboveDiv .bigText h2 {
  text-align: center;
  color: var(--Neutra-12, #eee);
  font-size: 109px;
  font-weight: 300;
  line-height: 90%;
}
.thl .aboveDiv .bigText h2 b {
  font-weight: 700;
}
.thl .aboveDiv .bigText h2 span {
  vertical-align: super;
  margin-bottom: 10px;
  font-size: 24px;
}
.thl .aboveDiv .bigText p {
  color: var(--Neutra-12, #eee);
  text-align: center;
  font-size: 44px;
  font-weight: 500;
  line-height: 100%;
}
.thl .aboveDiv .bigText > span {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5019607843);
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
.thl .aboveDiv .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 600px;
}
.thl .aboveDiv .textDiv strong {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-h1, 36px);
  font-weight: 700;
  line-height: 120%;
}
.thl .aboveDiv .textDiv p {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  position: relative;
}
.thl .aboveDiv .textDiv p span {
  position: absolute;
  left: -25px;
  bottom: -3px;
  color: #5729ff;
  font-family: "permanent-marker-pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
.thl .tFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.thl .tFlex .tRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.thl .depoFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.thl .depoFlex > div {
  display: flex;
  padding: var(--space-space_lg, 24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 403px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(240, 240, 240, 0.09);
}
@media (max-width: 1280px) {
  .thl .tFlex .tRow > img {
    width: 27vw;
  }
}
@media (max-width: 600px) {
  .thl {
    background: url(assets/thlbgmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    padding: 64px 24px 40px;
  }
  .thl .bg {
    display: none;
  }
  .thl .aboveDiv {
    flex-direction: column;
    padding: unset;
    gap: 40px;
  }
  .thl .aboveDiv .bigText {
    gap: 8px;
  }
  .thl .aboveDiv .bigText h2 {
    font-size: 71px;
  }
  .thl .aboveDiv .bigText p {
    font-size: 31px;
  }
  .thl .aboveDiv .textDiv {
    gap: 16px;
    max-width: 342px;
  }
  .thl .aboveDiv .textDiv strong {
    font-size: 23px;
    text-align: center;
  }
  .thl .aboveDiv .textDiv p {
    font-size: 17px;
    text-align: center;
  }
  .thl .tFlex .tRow {
    flex-direction: column;
  }
  .thl .tFlex .tRow img {
    width: unset;
  }
  .thl .depoFlex {
    flex-direction: column;
    gap: 16px;
  }
  .thl .depoFlex > div {
    padding: unset;
    height: unset;
    border-radius: 16px;
  }
  .thl .depoFlex > div img {
    width: 342px;
  }
}

.com {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  background: linear-gradient(180deg, #721ef9 -23.67%, #000 100%), #ffd400;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.com .bg {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 0;
}
.com .aboveDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 80px 0;
  z-index: 1;
}
.com .aboveDiv .bigText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.com .aboveDiv .bigText .logo {
  position: absolute;
  right: 28px;
  bottom: -40px;
}
.com .aboveDiv .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 600px;
}
.com .aboveDiv .textDiv strong {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-h1, 36px);
  font-weight: 700;
  line-height: 120%;
}
.com .aboveDiv .textDiv p {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  position: relative;
}
.com .aboveDiv .textDiv p span {
  position: absolute;
  left: -25px;
  bottom: -3px;
  color: #5729ff;
  font-family: "permanent-marker-pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}
.com .depoFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.com .depoFlex > div {
  display: flex;
  padding: var(--space-space_lg, 24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 381px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(240, 240, 240, 0.09);
}
@media (max-width: 600px) {
  .com {
    margin-top: -2px;
    padding: 64px 24px 40px;
  }
  .com .bg {
    display: none;
  }
  .com .aboveDiv {
    flex-direction: column;
    padding: unset;
    gap: 40px;
  }
  .com .aboveDiv .bigText {
    gap: 8px;
  }
  .com .aboveDiv .bigText .big1 {
    width: 224px;
  }
  .com .aboveDiv .bigText .big2 {
    width: 274px;
  }
  .com .aboveDiv .bigText .big3 {
    width: 85px;
    align-self: flex-end;
  }
  .com .aboveDiv .textDiv {
    gap: 16px;
    max-width: 342px;
    align-items: center;
  }
  .com .aboveDiv .textDiv strong {
    font-size: 24px;
    text-align: center;
  }
  .com .aboveDiv .textDiv p {
    font-size: 17px;
    text-align: center;
  }
  .com .depoFlex {
    flex-direction: column;
    gap: 16px;
  }
  .com .depoFlex > div {
    padding: unset;
    height: unset;
    border-radius: 16px;
  }
  .com .depoFlex > div img {
    width: 342px;
  }
}

.formula {
  background: url(assets/wonderbg.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: 120px 0;
  position: relative;
  margin-top: -2px;
}
.formula .postIt {
  position: absolute;
  bottom: 0;
  right: 0;
}
.formula .mainDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.formula .mainDiv strong {
  color: var(--Neutra-12, #202020);
  text-align: center;
  font-family: "permanent-marker-pro", sans-serif;
  font-size: 69px;
  font-weight: 400;
  line-height: 120%;
}
.formula .mainDiv strong span {
  color: #14c042;
}
@media (max-width: 600px) {
  .formula {
    background: url(assets/wonderbgmob.webp) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top;
    padding: 120px 35px;
  }
  .formula .mainDiv strong {
    font-size: 42px;
  }
  .formula .mainDiv svg {
    margin-top: -10px;
  }
  .formula .postIt {
    width: 167px;
  }
}

.for {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 120px 0 80px;
  background: #000;
}
.for .aboveDiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.for .aboveDiv img {
  z-index: 1;
}
.for .aboveDiv strong {
  color: #eee;
  text-align: left;
  font-size: 93px;
  font-weight: 700;
  line-height: 100%;
  margin-left: -20px;
}
.for .aboveDiv strong span {
  font-feature-settings: "salt";
  color: #591fff;
}
.for .iconFlex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.for .iconFlex .iconDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.for .iconFlex .iconDiv .imgDiv {
  display: flex;
  padding: var(--space-space_xxl, 40px);
  justify-content: center;
  align-items: center;
  border-radius: var(--border_radius-border-radius_lg, 24px);
  background: var(--Secundria-8, #591fff);
}
.for .iconFlex .iconDiv .textDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.for .iconFlex .iconDiv .textDiv strong {
  color: var(--Neutra-12, #eee);
  text-align: center;
  font-size: var(--Tamanhos-h4, 24px);
  font-weight: 700;
  line-height: 120%;
}
.for .iconFlex .iconDiv .textDiv p {
  color: var(--Neutra-12, #eee);
  text-align: center;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
  max-width: 296px;
}
@media (max-width: 600px) {
  .for {
    padding: 56px 24px 40px;
  }
  .for .aboveDiv {
    flex-direction: column;
  }
  .for .aboveDiv strong {
    margin-left: unset;
    font-size: 50px;
    text-align: center;
  }
  .for .iconFlex {
    flex-direction: column;
    align-items: center;
  }
  .for .iconFlex .iconDiv {
    gap: 16px;
  }
  .for .iconFlex .iconDiv .imgDiv {
    padding: 32px;
  }
  .for .iconFlex .iconDiv .textDiv strong {
    font-size: 22px;
  }
  .for .iconFlex .iconDiv .textDiv p {
    font-size: 18px;
    max-width: 342px;
  }
}

.expert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 80px 0 120px;
  background: #000;
}
.expert .textDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 553px;
}
.expert .textDiv strong {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-h1, 46px);
  font-weight: 700;
  line-height: 120%;
}
.expert .textDiv p {
  color: var(--Neutra-12, #eee);
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 600px) {
  .expert {
    flex-direction: column;
    padding: 24px 16px 40px;
    gap: 24px;
  }
  .expert .textDiv strong {
    font-size: 29px;
  }
  .expert .textDiv p {
    font-size: 17px;
  }
}

.offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0 120px;
  background: #000;
  gap: 80px;
}
.offer .mainDiv {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 24px;
}
.offer .mainDiv .leftDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(125deg, #ff0004 -11.21%, #ff008c 100.12%), #4404cf;
  padding: 80px;
  height: 1096px;
  border-radius: 24px 0 0 24px;
}
.offer .mainDiv .leftDiv h2 {
  color: var(--solid-12, #fff);
  text-align: center;
  font-size: var(--Tamanhos-h2, 50px);
  font-weight: 700;
  line-height: 120%;
  max-width: 480px;
}
.offer .mainDiv .leftDiv strong {
  color: var(--solid-12, #fff);
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  max-width: 480px;
}
.offer .mainDiv .leftDiv strong span {
  font-feature-settings: "salt";
}
.offer .mainDiv .leftDiv strong b {
  font-feature-settings: "ss02";
}
.offer .mainDiv .leftDiv > span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 36px 12px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font-size: 59.488px;
  font-weight: 700;
  line-height: 100%;
}
.offer .mainDiv .rightDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 0 24px 24px 0;
  background: #fff;
  padding: 80px 66px;
  height: 1096px;
}
.offer .mainDiv .rightDiv .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.offer .mainDiv .rightDiv .list > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.offer .mainDiv .rightDiv .list > div p {
  color: var(--Neutra-12, #202020);
  font-size: var(--Tamanhos-h5, 22px);
  font-weight: 700;
  line-height: 120%;
  max-width: 460px;
}
.offer .mainDiv .rightDiv .list > div p:last-of-type {
  font-size: 21px;
}
.offer .mainDiv .rightDiv .list > div .bonus {
  color: #ffae00;
}
.offer .mainDiv .rightDiv .priceDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.offer .mainDiv .rightDiv .priceDiv .por {
  color: #202020;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
}
.offer .mainDiv .rightDiv .priceDiv .de {
  color: var(--principal-9-principal, #ff0037);
  text-align: center;
  font-size: var(--Tamanhos-h4, 24px);
  font-weight: 700;
  line-height: 100%;
}
.offer .mainDiv .rightDiv .priceDiv .de span {
  text-decoration-line: line-through;
}
.offer .mainDiv .rightDiv .priceDiv .ou {
  margin-top: -20px;
  color: #202020;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
}
.offer .mainDiv .rightDiv .priceDiv .ou span {
  color: #838383;
}
.offer .mainDiv .rightDiv .priceDiv > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.offer .mainDiv .rightDiv .priceDiv > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.offer .mainDiv .rightDiv .priceDiv > div > div p {
  color: var(--solid-1, #111);
  text-align: right;
  font-variant-numeric: ordinal;
  font-feature-settings: "dlig" on;
  font-size: 26.541px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  max-width: 120px;
}
.offer .mainDiv .rightDiv .priceDiv > div > div strong {
  color: var(--solid-1, #111);
  font-variant-numeric: ordinal;
  font-feature-settings: "dlig" on;
  font-size: 40.583px;
  font-weight: 700;
  line-height: 100%;
}
.offer .mainDiv .rightDiv .priceDiv > div > div strong span {
  color: #7b7b7b;
}
.offer .mainDiv .rightDiv .priceDiv > div > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--solid-1, #111);
  text-align: center;
  font-variant-numeric: ordinal;
  font-feature-settings: "dlig" on;
  font-size: 117.643px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.176px;
}
.offer .mainDiv .rightDiv .priceDiv > div > strong span {
  font-size: 43px;
  line-height: 100%;
  letter-spacing: unset;
  padding-bottom: 20px;
}
.offer .mainDiv .rightDiv .off {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  background-color: #ff0004;
  border-radius: 8px;
}
.offer .garantia {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #3a3a3a;
  background: #111;
}
.offer .garantia .seven {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.offer .garantia .seven strong {
  background: -webkit-linear-gradient(#ff0004, #ff008c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--Tamanhos-h4, 24px);
  font-weight: 700;
  line-height: 120%;
  max-width: 208px;
}
.offer .garantia .btnDiv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.offer .garantia .btnDiv p {
  color: var(--Neutra-11, #b3b3b3);
  font-size: var(--Tamanhos-caption, 16px);
  font-weight: 500;
  line-height: 140%;
  max-width: 756px;
}
@media (max-width: 600px) {
  .offer {
    padding: 40px 24px;
    gap: 40px;
  }
  .offer .mainDiv {
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
  }
  .offer .mainDiv .leftDiv {
    padding: 24px 16px;
    height: unset;
    border-radius: 16px 16px 0 0;
    width: 100%;
  }
  .offer .mainDiv .leftDiv h2 {
    font-size: 30px;
    max-width: 310px;
  }
  .offer .mainDiv .leftDiv strong {
    font-size: 30px;
    max-width: 310px;
  }
  .offer .mainDiv .leftDiv > span {
    font-size: 50px;
    padding: 18px 30px 10px;
  }
  .offer .mainDiv .rightDiv {
    padding: 40px 15px 24px;
    border-radius: 0 0 16px 16px;
    height: unset;
    width: 100%;
  }
  .offer .mainDiv .rightDiv .mockup {
    width: 295px;
  }
  .offer .mainDiv .rightDiv .list > div p {
    font-size: 18px;
    max-width: 259px;
  }
  .offer .mainDiv .rightDiv .list > div p:last-of-type {
    font-size: 18px;
  }
  .offer .mainDiv .rightDiv .priceDiv .de {
    font-size: 20px;
  }
  .offer .mainDiv .rightDiv .priceDiv .ou {
    font-size: 21px;
  }
  .offer .mainDiv .rightDiv .priceDiv > div {
    gap: 12px;
  }
  .offer .mainDiv .rightDiv .priceDiv > div > div p {
    font-size: 20px;
  }
  .offer .mainDiv .rightDiv .priceDiv > div > div strong {
    font-size: 31px;
  }
  .offer .mainDiv .rightDiv .priceDiv > div strong {
    font-size: 88px;
  }
  .offer .mainDiv .rightDiv .priceDiv > div strong span {
    font-size: 34px;
  }
  .offer .garantia {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  .offer .garantia .seven {
    flex-direction: column;
    gap: 12px;
  }
  .offer .garantia .seven strong {
    font-size: 22px;
    text-align: center;
    max-width: 190px;
  }
  .offer .garantia .btnDiv {
    align-items: center;
  }
  .offer .garantia .btnDiv p {
    font-size: 14px;
    text-align: center;
    max-width: 310px;
  }
}

#faq {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: #000;
}
#faq strong {
  color: var(--Neutra-12, #eee);
  text-align: center;
  font-size: var(--Tamanhos-h2, 50px);
  font-weight: 700;
  line-height: 120%;
  max-width: 800px;
}
#faq .asks {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}
#faq .asks .ask {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
}
#faq .asks .ask.active .answer {
  padding: 20px;
  height: auto;
}
#faq .asks .ask .answer {
  padding: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  height: 0;
  padding: 0 2.4rem;
  transition: all 0.5s ease;
}
#faq .asks .ask .answer a {
  color: #b3b3b3;
  transition: 0.2s;
  font-weight: 500;
  word-wrap: break-word;
}
#faq .asks .ask .answer a:hover {
  filter: brightness(70%);
}
#faq .asks .ask .title-wrapper {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #313131;
}
#faq .asks .ask .title-wrapper p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
#faq .asks .ask:first-child {
  border-top: 1px solid #313131;
}
#faq .btnDiv p {
  color: #82827c;
}
@media (max-width: 600px) {
  #faq {
    padding: 24px;
  }
  #faq strong {
    font-size: 26px;
    max-width: 342px;
  }
  #faq .asks .ask .title-wrapper p {
    font-size: 18px;
    max-width: 308px;
  }
  #faq .btnDiv > div p {
    font-size: 12px;
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 16px;
  gap: 40px;
  background: #000;
}
footer strong {
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.163px;
}
footer .below {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
footer .below a,
footer .below p {
  color: var(--Neutra-11, #b3b3b3);
  text-align: center;
  font-size: var(--Tamanhos-body, 20px);
  font-weight: 300;
  line-height: 140%;
  text-decoration: none;
  transition: 0.2s;
}
footer .below a:hover {
  filter: brightness(80%);
}
@media (max-width: 600px) {
  footer {
    flex-direction: column;
    padding: 32px 16px;
    gap: 18px;
  }
  footer strong {
    font-size: 18px;
  }
  footer .below {
    flex-direction: column;
    gap: 10px;
  }
  footer .below a {
    font-size: 18px;
  }
}

.whatsapp-btn {
  z-index: 999;
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  transition: 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
  }
}

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

.modal-content {
  border-radius: 24px;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  width: 600px;
  margin: 5% auto;
  padding: 40px;
}
.modal-content .botText {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #eee;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}
.modal-content .botText svg {
  margin-bottom: 3px;
}
.modal-content > p {
  color: var(--Neutra-12, #eee);
  text-align: center;
  font-size: var(--Tamanhos-overline, 18px);
  font-weight: 700;
  line-height: 140%;
  max-width: 360px;
}
.modal-content #_form_4_ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: unset;
  padding: unset;
  width: 100%;
}
.modal-content #_form_4_ ._form-content {
  width: 100%;
}
.modal-content #_form_4_ ._form-content ._field-wrapper {
  margin-bottom: 8px;
}
.modal-content #_form_4_ ::placeholder {
  color: #6e6e6e;
}
.modal-content #_form_4_ ::-webkit-input-placeholder {
  color: #6e6e6e;
}
.modal-content #_form_4_ #fullname,
.modal-content #_form_4_ #email,
.modal-content #_form_4_ #phone {
  display: flex;
  width: 100%;
  padding: 19px 16px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--Neutra-5, #313131);
  background: #fff;
  color: #6e6e6e;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.modal-content #_form_4_ ._button-wrapper {
  display: flex;
}
.modal-content #_form_4_ #_form_4_submit {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border-top: 1px solid #83faa3;
  background: linear-gradient(180deg, #58dd7c 0%, #14c042 100%);
  box-shadow: 0px 14px 26px 0px rgba(36, 199, 80, 0.27);
  border: unset;
  width: 100%;
  cursor: pointer;
  gap: 10px;
  color: #ffffff;
  text-align: center;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 100%;
  text-transform: uppercase;
  transition: 0.2s;
}
.modal-content #_form_4_ #_form_4_submit:hover {
  filter: brightness(80%);
}
.modal-content #_form_4_ #_form_4_submit .crown {
  margin-bottom: 8px;
}
@media (max-width: 1281px) {
  .modal-content {
    gap: 12px;
    padding: 24px 40px;
    margin: 2% auto;
  }
  .modal-content .logoDiv strong {
    font-size: 18px;
  }
  .modal-content .logoDiv strong span {
    font-size: 19px;
  }
  .modal-content .dateDiv p {
    font-size: 24px;
  }
  .modal-content .dateDiv span {
    font-size: 18px;
  }
  .modal-content p {
    font-size: 12px;
    max-width: 370px;
  }
}
@media (max-width: 600px) {
  .modal-content {
    width: 342px;
    padding: 24px 16px;
    border-radius: 16px;
    height: unset;
    gap: 15px;
  }
  .modal-content .botText {
    font-size: 14px;
    gap: 6px;
  }
  .modal-content .logo {
    width: 200px;
  }
  .modal-content p {
    font-size: 15px;
    max-width: 303px;
  }
  .modal-content span {
    font-size: 15px;
    max-width: 303px;
  }
  .modal-content #_form_4_ #fullname,
  .modal-content #_form_4_ #email,
  .modal-content #_form_4_ #phone {
    padding: 12px 16px;
  }
  .modal-content #_form_4_ #_form_4_submit {
    font-size: 16px;
    padding: 16px;
  }
}

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

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

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

#_form_4_ * {
  outline: 0;
}

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

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

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

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

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

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

#_form_4_ textarea {
  resize: none;
}

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

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

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

#_form_4_ ._submit.processing::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #14c042 !important;
  border: 0 !important;
  border-radius: 8px;
  color: #ffffff !important;
  padding: 10px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#_form_4_ ._full_width {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#_form_4_:after {
  clear: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#_form_4_ .phone-error {
  color: #e40e49;
}

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

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

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

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

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

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

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

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

#_form_4_._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 */
