@charset "UTF-8";
/*
0-350px: small phone
350-600px : phone
600-900px: tablet portarit
900-1070px: mini desktop
1070-1200px: tablet landscape
1200-1520px: small-desktop
[1200-1800px]: main style 
1800px + : big desktop

$breakpoint argument choices
-phone-small
-phone
-tab-port
-mini-desktop
-tab-land
-small-desktop
-big-desktop

1em =16px
*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(15%);
  }
  90% {
    transform: translateY(-0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  direction: rtl;
  overflow-x: hidden;
  cursor: default;
}

*:not(html) {
  overflow: hidden;
}

html {
  position: relative;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 21px;
  min-height: 0vw;
  background: #2CD4C3;
  background: #43daca;
}
html::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 120em) {
  html {
    font-size: 1.1111111vw;
  }
}
@media only screen and (max-width: 64em) {
  html {
    font-size: 2.1111vw;
  }
}

body {
  /* set the box size in all elements to border-box thanks to *{} */
  box-sizing: border-box;
  max-width: 1920px;
  margin-inline: auto;
}
::selection {
  background-color: #34bbf7;
  color: #ffffff;
}

@font-face {
  font-family: "simpler";
  src: url("../assets/fonts/simpler-regular-webfont.ttf");
  font-display: swap;
}
@font-face {
  font-family: "simpler-bold";
  src: url("../assets/fonts/simpler-bold-webfont.ttf");
  font-display: swap;
}
@font-face {
  font-family: "simpler-bolder";
  src: url("../assets/fonts/simpler-bolder-webfont.ttf");
  font-display: swap;
}
body {
  font-family: "simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

h1 {
  font-size: 2.7rem;
}

h2 {
  font-size: 1.45rem;
}

h3 {
  font-size: 2.91rem;
  line-height: 1;
  letter-spacing: 0.03rem;
}
@media only screen and (max-width: 64em) {
  h3 {
    font-size: 3.8rem;
    letter-spacing: 0.03rem;
  }
}

p strong {
  font-family: "simpler", sans-serif;
}

p {
  font-size: 1.15rem;
}
p a {
  color: #777;
  text-decoration-color: #000;
  text-decoration-thickness: 3px;
}

.white-text {
  color: white;
}

.show-on-scroll {
  opacity: 0;
  transition: all 0.8s;
  will-change: opacity;
}

.is-visible {
  opacity: 1;
}

.u-hidden {
  display: none !important;
}

.u-mobile {
  display: none;
}
@media only screen and (max-width: 64em) {
  .u-mobile {
    display: block;
  }
}

.u-desktop {
  display: block;
}
@media only screen and (max-width: 64em) {
  .u-desktop {
    display: none;
  }
}

.float {
  position: absolute;
}

.text-white {
  color: #ffffff;
}
.text-primary {
  color: #2CD4C3;
}

.top-section {
  background-color: #2CD4C3;
}
@media only screen and (max-width: 64em) {
  .top-section {
    padding-top: 0.5rem;
  }
}
.top-section-text {
  text-align: center;
  color: #ffffff;
  margin-block-start: 2.8rem;
}
@media only screen and (max-width: 64em) {
  .top-section-text h1 {
    display: block;
    font-size: 2.9rem;
  }
}
.top-section-text .h1 {
  font-family: "simpler-bolder", sans-serif;
  line-height: 1;
}
.top-section-text .h1 span {
  display: block;
  font-size: 2.7rem;
}
@media only screen and (max-width: 64em) {
  .top-section-text .h1 span {
    display: block;
    font-size: 2.9rem;
  }
}
.top-section-text span.PF-text {
  font-size: 5.3rem;
  -webkit-text-stroke: 2px #FFFFFF;
  text-shadow: 0px 4.42295px 10.4677px #006962, 0px 4.42295px 6.63443px #006962;
}
@media only screen and (max-width: 64em) {
  .top-section-text span.PF-text {
    font-size: 5.8rem;
    -webkit-text-stroke: 1.065px #FFFFFF;
    text-shadow: 0px 2px 4.73333px #006962, 0px 2px 3px #006962;
  }
}

.yellow-container {
  background-color: #ffd800;
  max-width: 82%;
  margin: 0 auto;
  position: relative;
  border-radius: 15px 15px 0 0;
  width: 54.18rem;
  border: 4px solid #ffffff;
  border-bottom: 0;
  color: black;
  font-family: "simpler-bolder", sans-serif;
  overflow: visible;
  margin-block-start: 2.8rem;
  padding-block-start: 2.8rem;
  padding-block-end: 1rem;
  padding-inline: 2rem;
}
@media only screen and (max-width: 64em) {
  .yellow-container {
    width: 33.7rem;
    padding-block-start: 1.4rem;
    padding-inline: 0.91rem;
    padding-block-end: 7rem;
    margin-block-start: 3.8rem;
  }
}
.yellow-container p {
  font-size: 4.2rem;
  line-height: 1;
}
@media only screen and (max-width: 64em) {
  .yellow-container p {
    font-size: 3rem;
  }
}
.yellow-container .desk-title {
  font-size: 4.2rem;
}
@media only screen and (max-width: 64em) {
  .yellow-container .desk-title {
    font-size: 3.2rem;
  }
}
.yellow-container .bold-amount {
  font-family: "simpler-bolder";
  font-size: 7.5rem;
}
@media only screen and (max-width: 64em) {
  .yellow-container .bold-amount {
    font-size: 5.5rem;
  }
}
.yellow-container .refer-small {
  font-size: 18px;
  padding-top: 40px;
  text-align: right;
  font-family: "simpler", sans-serif;
}
@media only screen and (max-width: 64em) {
  .yellow-container .refer-small {
    font-size: 1.2rem;
    padding-top: 2rem;
    text-align: center;
  }
}
.yellow-container .avatar-static {
  position: absolute;
  right: -8.88rem;
  bottom: -1.1rem;
  width: 9.85rem;
  z-index: 2;
  pointer-events: none;
}
@media only screen and (max-width: 64em) {
  .yellow-container .avatar-static {
    right: -7.88rem;
    bottom: 5rem;
    width: 8.5rem;
  }
}
.yellow-container .avatar-ilan {
  position: absolute;
  left: -11.3rem;
  bottom: 0px;
  width: 13.86rem;
  z-index: 2;
  pointer-events: none;
}
@media only screen and (max-width: 64em) {
  .yellow-container .avatar-ilan {
    left: -9.9rem;
    bottom: 6rem;
    width: 11.86rem;
  }
}

.bg {
  position: relative;
  width: 100vw;
}
.bg img {
  object-fit: contain;
  width: 100%;
}

.form-section {
  text-align: center;
}
.form-section .header-main-body {
  font-family: "simpler-bold";
  font-style: normal;
  font-weight: 900;
  font-size: 3rem;
  line-height: 3.4rem;
  color: #FFFFFF;
  padding-bottom: 1rem;
  padding-block-start: 3.4rem;
}
@media only screen and (max-width: 64em) {
  .form-section .header-main-body {
    font-size: 2.8rem;
  }
}
.form-section .checkBuild {
  font-family: "simpler-bold";
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  color: #FFFFFF;
}
.form-section .cta {
  font-family: "simpler-bold";
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  color: #FFFFFF;
}
@media only screen and (max-width: 64em) {
  .form-section .cta {
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }
}
.form-section .cta a:link,
.form-section .cta a:visited {
  color: white;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 64em) {
  .form-section .cta a:link,
  .form-section .cta a:visited {
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }
}
.form-section .cta a:hover,
.form-section .cta a:active,
.form-section .cta a:focus {
  color: white;
}
.form-section .cta .underline {
  text-decoration-line: underline;
}
.form-section .checker-div {
  color: #fff;
  position: relative;
  display: flex;
  width: 79%;
  margin: 0 auto;
}
.form-section .star {
  padding-inline-end: 0.6rem;
  font-size: 1.5em;
}
.form-section label.check-box-point-label {
  padding-top: 1em;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 0.95em;
}
.form-section span.pad-text {
  display: block;
  padding: 0 1.3em 0 0;
}
.form-section a.privacy {
  color: white;
}
.form#top {
  display: flex;
  margin: 0 auto;
  width: 24.4%;
  gap: 0.8em;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  flex-direction: column;
  padding: 2.3rem 1.8rem;
  margin: 7% 0 0 4%;
  border: none;
  border-radius: 45px;
  background-color: white;
  box-shadow: 0 5px 10px 5px hsla(0, 0%, 81.6%, 0.4705882353);
}
@media only screen and (max-width: 64em) {
  .form#top {
    width: 84%;
    padding: 1rem 5% 0rem 5%;
    margin: 111% 8% 0 8%;
  }
}
.form#top > .partner-logo {
  width: 4.5em;
  margin: 0 auto 0.3em;
}
@media only screen and (max-width: 64em) {
  .form#top > .partner-logo {
    width: 10em;
  }
}
.form#top h1 {
  color: #000;
  font-family: "simpler", sans-serif;
  text-align: center;
  font-size: 1.05em;
  line-height: 1;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding: 0;
}
@media only screen and (max-width: 64em) {
  .form#top h1 {
    font-size: 3rem;
    text-align: center;
    margin-block-start: 2rem;
  }
}
.form#top .text {
  font-family: "simpler", sans-serif;
  color: #000;
  font-size: 1.1rem;
  line-height: 1;
}
@media only screen and (max-width: 64em) {
  .form#top .text {
    font-size: 2rem;
    line-height: 100%;
    text-align: center;
  }
}
.form#top .cts {
  font-size: 0.8rem;
  font-family: "simpler", sans-serif;
  color: #000;
  line-height: 1;
  margin-block-start: -1rem;
}
@media only screen and (max-width: 64em) {
  .form#top .cts {
    font-size: 1.8rem;
    line-height: 100%;
    text-align: center;
  }
}
.form#top .cts a {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.form#top .form-terms {
  font-family: "simpler", sans-serif;
  color: #000;
  font-size: 0.4em;
  padding-inline-end: 2rem;
  line-height: 1;
  text-align: right;
}
@media only screen and (max-width: 64em) {
  .form#top .form-terms {
    font-size: 0.8em;
    line-height: 1;
  }
}
.form#top .form-terms a {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}
.form#top .input-container {
  position: relative;
  overflow: visible;
}
.form#top input, .form#top #input_10 {
  font-family: "simpler", sans-serif;
  color: #000;
  width: 100%;
  font-size: 0.8em;
  box-sizing: border-box;
  padding: 1% 1% 1% 3%;
  background: transparent;
  border: none;
  border-bottom: 1px solid;
  border-bottom: 1px solid #000;
  font-family: "simpler", sans-serif;
  border: 2px #2CD4C3 solid;
  border-radius: 1.2em;
  color: black;
  padding: 0.5em 1em;
  font-size: 1.1rem;
  width: 93%;
}
@media only screen and (max-width: 37.5em) {
  .form#top input, .form#top #input_10 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 64em) {
  .form#top input, .form#top #input_10 {
    font-size: 2rem;
    width: 100%;
    width: 100%;
    padding: 0.5em 1em;
  }
}
.form#top input:focus, .form#top #input_10:focus {
  outline: none;
  border-color: #197377;
  border-color: #000;
}
.form#top input::placeholder, .form#top #input_10::placeholder {
  color: #ffffff;
}
.form#top input select, .form#top #input_10 select {
  color: black;
}
.form#top input option,
.form#top input .select-options, .form#top #input_10 option,
.form#top #input_10 .select-options {
  color: black;
  background: #2CD4C3;
}
.form#top input option.is-selected,
.form#top input .select-options.is-selected, .form#top #input_10 option.is-selected,
.form#top #input_10 .select-options.is-selected {
  color: #2cd5c4;
  background: white;
}
.form#top input.error, .form#top #input_10.error {
  border: 2px solid #be1111;
}
.form#top #input_10 {
  background: url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
  background-position: calc(0% + 0.75rem) center !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.form#top label {
  position: absolute;
  top: 50%;
  right: 9.5%;
  transform: translate(0, -50%);
  font-size: 1rem;
  transition: all 0.3s;
}
@media only screen and (max-width: 64em) {
  .form#top label {
    font-size: 2rem;
    right: 6.5%;
    transform: translate(0, -50%);
  }
}
.form#top .focused-label {
  position: absolute;
  top: -15%;
  right: 7.5%;
  transform: translate(0, -50%);
  font-size: 1rem;
  font-size: 0.6em;
  color: grey;
}
@media only screen and (max-width: 64em) {
  .form#top .focused-label {
    font-size: 1em;
    line-height: 1;
    overflow: hidden;
    top: 2%;
    right: 5.5%;
    background: white;
    padding-inline: 1rem;
  }
}
.form#top .form__bottom {
  display: flex;
  justify-content: space-between;
  margin-block-end: 0.5rem;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 64em) {
  .form#top .form__bottom {
    flex-direction: column-reverse;
    margin-block-start: 1.5rem;
    width: 52%;
    margin: auto;
    margin-block-end: 3rem;
  }
}
.form#top .form__bottom .form-submit {
  display: flex;
  width: 100%;
  position: relative;
  float: left;
  text-align: center;
  padding: 0.5% 1%;
  margin-left: inherit;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 5rem;
  background: black;
  font-family: "simpler-bolder", sans-serif;
  border: 4px solid #000000;
  justify-content: center;
  width: 54%;
  cursor: pointer;
}
@media only screen and (max-width: 64em) {
  .form#top .form__bottom .form-submit {
    width: 100%;
    margin-block-end: 2.5rem;
    padding: 0;
    margin: auto;
  }
}
.form#top .form__bottom .form-submit input {
  color: white;
  transition: all 0.3s;
}
.form#top .form__bottom .form-submit::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0%;
  top: 0;
  z-index: -1;
  background: white;
  background-color: #ffd800;
  z-index: 1;
  transition: all 0.3s;
  cursor: pointer;
}
.form#top .form__bottom .form-submit:hover::after, .form#top .form__bottom .form-submit:focus::after {
  width: 100%;
}
.form#top .form__bottom .form-submit:hover input, .form#top .form__bottom .form-submit:focus input {
  color: black;
}
.form#top .form__bottom .form-submit input[type=submit] {
  position: relative;
  text-align: center;
  font-size: 1.2rem;
  background-color: transparent;
  font-family: "simpler-bolder", sans-serif;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  z-index: 2;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 64em) {
  .form#top .form__bottom .form-submit input[type=submit] {
    font-size: 2rem;
  }
}
.form#top .form__bottom .form-submit input[type=submit]:disabled, .form#top .form__bottom .form-submit input[type=submit].disabled {
  background-color: #777;
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}
.form .divhidden {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 50%;
  background: #2cd5c4;
  width: 85%;
  padding: 6rem 2rem;
  transform: translate(-50%, 90%);
  z-index: 99999;
  color: #000;
  margin-top: 0;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
  border-radius: 2rem;
  line-height: 1.1;
}
@media only screen and (max-width: 64em) {
  .form .divhidden {
    width: 90%;
    bottom: 3%;
    right: 50%;
    height: fit-content;
    padding-block: 9.5rem 8.5rem;
    border-radius: 4rem;
    transform: translate(50%, 0);
  }
}
@media only screen and (max-width: 64em) {
  .form .divhidden p {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
  }
}
.form .divhidden a {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1.1;
}
@media only screen and (max-width: 64em) {
  .form .divhidden a {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}
.form-message {
  position: absolute;
  right: 0;
  opacity: 0;
  width: 100%;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  text-align: center;
  transition: all 0.3s;
}
@media only screen and (max-width: 64em) {
  .form-message {
    font-size: 3.9rem;
    width: 100%;
    margin-block-start: 2rem;
    margin-block-end: 2rem;
  }
}
.form-message.error {
  opacity: 1;
  border: 2px solid #be1111;
  background: #ffffff;
  text-align: center;
  border-radius: 20px;
  padding: 1rem;
  margin-top: 1rem;
  line-height: initial;
  font-size: 1rem;
  color: #be1111;
  width: 90%;
  right: 50%;
  top: 13%;
  transform: translateX(50%);
}
@media only screen and (max-width: 64em) {
  .form-message.error {
    width: 90%;
    top: 18%;
    right: 50%;
    font-size: 2.5rem;
    padding-block: 4rem;
    padding-block: 2rem;
  }
}
.form-message:empty {
  display: none;
}

#stripForm {
  display: block;
  position: relative;
  bottom: 0;
  transform: translateX(50%);
  right: 50%;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  color: #000000;
  font-size: 1em;
  line-height: 100%;
  text-align: center;
  padding: 0.5rem 0 0.5rem 0;
  background: #2cd5c4;
  text-decoration: none;
  font-size: 1.8rem;
  font-family: "simpler-bolder", sans-serif;
  cursor: pointer;
}
@media only screen and (max-width: 64em) {
  #stripForm {
    width: 100%;
    padding: 2rem 0 2rem 0;
    position: fixed;
    border-top: 3px solid white;
  }
}
#stripForm-container {
  display: block;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 64em) {
  #stripForm-container {
    display: none;
  }
}

.phone-cta {
  display: none;
  z-index: 9999;
}
@media only screen and (max-width: 64em) {
  .phone-cta {
    display: block!important;
    position: fixed;
    bottom: 0;
    right: 0;
    width: fit-content;
    padding: 1rem 2rem;
    font-size: 2rem;
    background-color: #000;
  }
  .phone-cta a {
    color: white;
    text-decoration: none;
    cursor: pointer;
  }
  .phone-cta a span {
    margin-inline-start: 2.8rem;
  }
  .phone-cta a i {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }
}

.ktanut {
  position: absolute;
  bottom: 1.8rem;
  background: #a9ede6;
  padding: 0.95rem 3.5rem;
}
@media only screen and (max-width: 64em) {
  .ktanut {
    bottom: 4.8rem;
    position: relative;
    margin-block-start: 9rem;
    background: none;
    padding: 0;
  }
}
.ktanut p {
  font-size: 0.6em;
  line-height: 1;
  text-align: right;
  color: #000;
}
@media only screen and (max-width: 64em) {
  .ktanut p {
    font-size: 1.4rem;
    line-height: 1.1;
    font-size: 1.4rem;
    line-height: 1.1;
    margin-inline-end: 4%;
    margin-inline-start: 4%;
  }
}
.ktanut p > a {
  color: #000;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.ktanut__target {
  margin-block-start: 1rem;
  font-size: 0.6em;
}
@media only screen and (max-width: 64em) {
  .ktanut__target {
    font-size: 1em;
  }
}

.mishpatiWrap {
  width: 100%;
  line-height: 100%;
  padding: 1% 0 4rem 0;
  background: #ffffff;
  display: inline-block;
  box-sizing: border-box;
  border: 0px solid green;
}
@media only screen and (max-width: 64em) {
  .mishpatiWrap {
    padding-block-end: 10rem;
  }
}

.mishpatiWrap .conditions {
  width: 63%;
  color: #000000;
  margin: 0 auto;
  box-sizing: border-box;
  border: 0px solid green;
}
@media only screen and (max-width: 64em) {
  .mishpatiWrap .conditions {
    width: 85%;
  }
}

.mishpatiWrap .conditions .mishTite {
  font-size: 1.3rem;
  font-family: simpler-bolder;
  text-align: right;
  line-height: 100%;
  margin: 2% auto 0 auto;
  border: 0px solid green;
}
@media only screen and (max-width: 64em) {
  .mishpatiWrap .conditions .mishTite {
    font-size: 2.2rem;
    padding-block-start: 3rem;
    padding-block-end: 1rem;
  }
}

.mishpatiWrap .conditions ul.mishpatiot li:before {
  content: "■";
  color: #2dd5c4;
  position: absolute;
  top: -0.05em;
  right: 0;
  font-size: 1.2rem;
  border: 0px solid green;
  overflow: hidden;
}
@media only screen and (max-width: 64em) {
  .mishpatiWrap .conditions ul.mishpatiot li:before {
    top: 0;
    font-size: 2rem;
    line-height: 100%;
    overflow: hidden;
  }
}

.mishpatiWrap .conditions ul.mishpatiot {
  margin: 1% 0 0 0;
  list-style-type: none;
  border: 0px solid green;
}

.mishpatiWrap .conditions ul.mishpatiot li {
  color: #000000;
  position: relative;
  text-align: right;
  font-size: 0.8rem;
  padding: 0 2% 0 2%;
  margin: 0 0 0.5% 0;
  line-height: 115%;
  border: 0px solid blue;
}
@media only screen and (max-width: 64em) {
  .mishpatiWrap .conditions ul.mishpatiot li {
    font-size: 1.7rem;
    padding: 0 2rem 0 1rem;
  }
}

.mishpatiWrap .conditions ul.mishpatiot li a {
  color: #2cd5c4;
  text-decoration: none;
  transition: 0.3s all;
}

.mishpatiWrap .conditions ul.mishpatiot li a:hover {
  color: #000000;
}

/*# sourceMappingURL=index.css.map */
