* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0px;
    padding: 0px;
    -webkit-font-smoothing: antialiased;
    word-wrap: break-word;
    color: #010137;
    font-family: 'Open Sans Hebrew';
    font-weight: normal;
    font-size: 1rem;
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
    background: #00B3CC;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.container {
    --bs-gutter-x: 1.5rem;
    width: 100%;
    max-width: 1140px;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.d-flex {
    display: flex !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.banner img {
    width: 100%;
    display: block;
}

.relative {
    position: relative;
}

.logoRight {
    display: block;
    width: 14%;
    position: absolute;
    right: 0;
    top: 0;
}

.logoRight span {
    display: block;
}

.logoRight img {
    display: block;
    width: 100%;
}

.logoLeft {
    display: block;
    width: 15%;
    position: absolute;
    left: 0;
    top: 0;
}

.logoLeft span {
    display: block;
}

.logoLeft img {
    display: block;
    width: 100%;
}

.formArea {
    background: #00B3CC;
    padding: .8rem 0 .1rem;
}

.input-1 {
    width: 100%;
    border: none;
    height: 42px;
    padding: 0 1rem;
    border-radius: 14px;
    color: #010137;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Open Sans Hebrew';
}

.formArea h3 {
    color: #fff;
    font-size: 1.39rem;
    margin-bottom: 1rem;
}

.formArea .submitBtn {
    background: #000134;
    color: #fff;
    border: none;
    height: 42px;
    padding: 0 4rem;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'Open Sans Hebrew';
    display: inline-block;
    cursor: pointer;
}

.formArea ::-webkit-input-placeholder {
    /* Edge */
    color: #000134;
    opacity: 1;
}

.formArea :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000134;
    opacity: 1;
}

.formArea ::placeholder {
    color: #000134;
    opacity: 1;
}

.formAreaBtm {
    display: none;
}

.whatsappBtn {
    text-align: center;
    display: block;
    border-radius: 14px;
    border: #fff 1px solid;
    padding: .7rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.whatsappBtn span {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

.whatsappBtn span img {
    display: inline-block;
    width: 14px;
}
.footerLogo {
    padding: 1.5rem 0 0;
}
.footerLogo , .footerLogoBtm {
    text-align: center;
    font-size: 1rem;
    color: #010137;
}

.footerLogo img {
    max-width: 60%;
    display: inline-block;
}
.or {
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-top: 1rem;
  }
.forMobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .col {
        flex: 0 0 100%;
        width: 100%;
    }

    .col-auto {
        flex: 0 0 100%;
        width: 100%;
    }

    .formArea .submitBtn {
        display: block;
        width: 100%;
    }

    .formArea .col {
        margin-bottom: 1rem;
    }

    .formAreaBtm {
        display: block;
    }
    .forDt {
        display: none;
    }
    .forMobile {
        display: block;
    }
    .formArea h3 {
        text-align: center;
        font-size: 1.6rem;
    }
    .formArea h3 span {
        display: block;
        color: #010137;
        font-size: 1.8rem;
    }
    .formArea {
        padding: 1.2rem 0;
      }

      .formArea ::-webkit-input-placeholder {
        /* Edge */
        color: #a5a5a5;
        opacity: 1;
    }
    
    .formArea :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #a5a5a5;
        opacity: 1;
    }
    
    .formArea ::placeholder {
        color: #a5a5a5;
        opacity: 1;
    }

    .logoLeft {
        width: 38%;
        left: 50%;
        top: -12px;
        transform: translateX(-50%);
    }
}