/* open-sans-300 - hebrew_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/open-sans-v34-hebrew_latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v34-hebrew_latin-300.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-regular - hebrew_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-hebrew_latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v34-hebrew_latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-500 - hebrew_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/open-sans-v34-hebrew_latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v34-hebrew_latin-500.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-600 - hebrew_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v34-hebrew_latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v34-hebrew_latin-600.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-700 - hebrew_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-hebrew_latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v34-hebrew_latin-700.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-800 - hebrew_latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/open-sans-v34-hebrew_latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */ url('../fonts/open-sans-v34-hebrew_latin-800.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
    --sponser-font-sans-serif: 'Open Sans', sans-serif, system-ui, -apple-system;
    --base-font-size: 16px;
    --base-font-weight: 400;
    --line-height: 1.5;
    --sponser-bg: #eaeef7;
    --sponser-black: #272d3d;
    --sponser-text: #3E3158;
    --sponser-white: #FDFEFF;
    --sponser-white-bg: #FDFEFF;
    --sponser-purple: #6932d4;
    --sponser-purple-lighter: #F6F7FF;
    --sponser-purple-extra-lighter: #eaeef7;
    --sponser-purple-light: #8c4bff;
    --sponser-purple-soft: #E8ECFF;
    --sponser-purple-dark: #51289b;
    --sponser-purple-darker: #382979;
    --sponser-orange: #FA8C05;
    --sponser-orange-dark: #d05a00;
    --sponser-gray-light: #eaeef7;
    --sponser-gray-dark: #dcdef0;
    --sponser-pink: #ea1e63;
    --forum-msg-border: #d3cce3;
    /*--forum-title-bg: #e5dff1;*/
    --forum-card-hover: #A0AEC0;
    --forum-title-bg: #e5dff1;
    --forum-comment-bg: #f0f0f0;
    --forum-body-width: 100%;
    --forum-tag-bg: #EDE9F9;
    --forum-tag-border: rgba(87, 67, 155, .2);
    --forum-section-bg: #6653a5;
    --sponser-purple-darkmode: #E6C9FF;
}


html {
    /*font-family: 'Open Sans', sans-serif;*/
    font-size: var(--base-font-size);
    font-weight: var(--base-font-weight);
    line-height: var(--line-height);
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

body {
    font-family: var(--sponser-font-sans-serif) !important;
    margin: 0;
    direction: rtl;
    color: var(--lp-color) !important;
    background-color: var(--lp-bg) !important;
    font-weight: 400;
}

body,
html {
    height: 100%;
    min-height: 100%
}

*,
:after,
:before {
    box-sizing: inherit
}

a {
    transition: color .15s ease-in-out;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;

}

a, a:visited {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

::-moz-selection { /* Code for Firefox */
    color: var(--sponser-purple-extra-lighter);
    background: var(--lp-primary-alt);
}

::selection {
    color: var(--sponser-purple-extra-lighter);
    background: var(--lp-primary-alt);
}

blockquote,
body,
dd,
dl,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
legend,
ol,
p,
pre,
ul {
    margin: 0;
    padding: 0
}

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block
}

address {
    font-style: normal
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: var(--line-height);
    margin: 0;
}

button {
    padding: 0;
    border: unset;
    background-color: unset;
    cursor: pointer;
    font-weight: inherit;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

li > ol,
li > ul {
    margin-bottom: 0
}

p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: inherit;;
    font-weight: inherit;
}

h1 {
    font-size: 2.25rem
}

h2 {
    font-size: 1.75rem
}

h3 {
    font-size: 1.5rem
}

h4 {
    font-size: 1.25rem
}

h5 {
    font-size: 1.125rem
}

h6 {
    font-size: 1rem
}

.s-h1 {
    font-size: 2.25rem !important;
}

.s-h2 {
    font-size: 1.75rem !important;
}

.s-h3 {
    font-size: 1.5rem !important;
}

.s-h4 {
    font-size: 1.25rem !important;
}

.s-h5 {
    font-size: 1.125rem !important;
}

.s-h6 {
    font-size: 1rem !important;
}

.s-h7 {
    font-size: .875rem !important;
}

.s-h8 {
    font-size: .675rem !important;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border-style: none;
    object-fit: cover;
}


.color-primary {
    color: var(--lp-primary)
}

.color-primary-alt {
    color: var(--lp-primary-alt)
}

.color-accent {
    color: var(--lp-accent);
}

.color-accent-alt {
    color: var(--lp-accent-alt);
}

.container {
    max-width: 1200px !important;
}

.sponser-logo {
    height: 31px !important;
    width: 140px !important;
    fill: var(--sponser-logo);
}

nav {
    background-color: var(--lp-nav-bg);
    color: var(--sponser-white);
}

footer {
    background-color: var(--lp-footer-bg);
    color: var(--sponser-text);
}

footer .sponser-logo{
    fill: var(--lp-primary);
}

nav .container, footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bg-purple {
    background-color: var(--sponser-purple-darker);
}

.jumbo-cta {
    padding: 3rem 4rem;
    border: 2px solid var(--lp-primary);
    border-radius: 16px;
}


/* story */
.story {
    border-right: 1px solid var(--lp-primary);
    padding-right: 20px;
}

.story .ball {
    color: inherit;
    margin-bottom: 0;
}

.story :not(:last-child) {
    padding-bottom: 1rem;
}

.story .ball:after {
    content: "";
    position: absolute;
    background: var(--lp-primary);
    border-radius: 50%;
    right: -28px;
    width: 14px;
    height: 14px;
    top: 5px;
    border: 1px solid var(--lp-primary);
}


/* List */
.list-ic a {
    color: #788288;
    text-decoration: none;
}

.list-ic li {
    position: relative;
}

.list-ic li span {
    display: inline-block;
    font-weight: 800;
    width: 2em;
    height: 2em;
    text-align: center;
    line-height: 2em;
    border-radius: 1em;
    background: #18bc9c;
    color: white;
    position: relative;
}

.list-ic li::before {
    content: "";
    position: absolute;
    background: #18bc9c;
    z-index: -1;
}

.list-ic.horizontal li {
    display: inline-block;
}

.list-ic.horizontal li span {
    margin: 0 1em;
}

.list-ic.horizontal li::before {
    top: 0.9em;
    right: -25px;
    width: 4em;
    height: 0.2em;
}

.list-ic.vertical {
    padding: 0;
    margin: 0;
}

.list-ic.vertical li {
    list-style-type: none;
    text-align: right;
}

.list-ic.vertical li span {
    margin: 1rem 0;
}

.list-ic.vertical li::before {
    top: -35px;
    right: 13px;
    width: 0.2em;
    height: 4em;
}

.list-ic li:first-child::before {
    display: none;
}

.list-ic .active {
    background: dodgerblue;
}

.list-ic .active ~ li {
    background: lightblue;
}

.list-ic .active ~ li::before {
    background: lightblue;
}


.card {
    background-color: var(--lp-card-bg) !important;
    border-radius: .75rem !important;
}


.card.card-outline {
    background-color: var(--lp-footer-bg);
    border: unset !important;
}


.card.card-outline:hover {

    background-color: var(--lp-card-bg) !important;
    border: unset !important;
}

/*.btn-outline-secondary {
 color: var(--sponser-white) !important;
}*/


.features {
    background-color: var(--lp-section);
}

/* Lead gen form */

.bar-center::after {
    width: 20%;
    content: "";
    display: block;
    position: relative;
    margin: 16px auto ;
    max-width: 120px;
    border-bottom-color: var(--lp-form-btn);
    border-bottom-style: solid;
    border-bottom-width: 2px;
}

.register-form {
    position: relative;
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    overflow: hidden;
    color: var(--lp-form-text);
    text-decoration: none;
    background-color: var(--lp-form-bg);
   /* border: var(--lp-form-border);*/
}

.register-form input[type=checkbox] {
    accent-color: var(--lp-form-btn);
}


.register-form .disclaimer {
    font-size: 12px;
    margin: .5rem 0 1rem;

}

.register-form .disclaimer label {
    padding-right: 10px;
    color: var(--lp-form-disclaimer);
}

.register-form .disclaimer a {
    color: inherit;
    text-decoration: underline;
}

.register-form .form-group {
    margin-bottom: 15px;
}


.register-form input {
    transition: all .2s ease 0s;
}

.register-form input[type=radio], .register-form input[type=checkbox] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

.register-form .form-control {
    height: auto;
    padding: 0.375em 0.5em;
    font-size: 1em;
    line-height: 1.5;
    min-height: 33px;
    color: #555;
    background-color: var(--lp-form-input-bg);
    border: var(--lp-form-border);
    -webkit-border-radius: .35rem;
    border-radius: .35rem;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.register-form label.error{
    color: var(--sponser-pink);
}



.btn-primary {
    color: var(--lp-form-btn-text) !important;
    background-color: var(--lp-form-btn) !important;
    border-color: var(--lp-form-btn) !important;
}

.btn-twitter {
    color: var(--lp-form-btn-text) !important;
    background-color: var(--twitter) !important;
    border-color: var(--twitter) !important;
    padding: 0.125rem 1rem !important;
    border-radius: 50px !important;
}
.btn-facebook {
    color: var(--lp-form-btn-text) !important;
    background-color: var(--facebook) !important;
    border-color: var(--facebook) !important;
    padding: 0.125rem 1rem !important;
    border-radius: 50px !important;
}


.s-pill {
    border-radius: 0.75rem;
    background-color: var(--lp-primary);
    color: var(--sponser-white);
    font-size: .875rem;
    padding: 0 0.5rem;
    margin-bottom: 0.25rem;
}

.jumbotron {
    min-height: 80vh;
    /*background-image: linear-gradient(90deg, rgba(33, 37, 41, 0.01), rgba(33, 37, 41, 1) 85%), radial-gradient(ellipse at top left, rgba(13, 110, 253, 0.5), transparent 50%), radial-gradient(ellipse at top right, rgba(255, 228, 132, 0.5), transparent 50%), radial-gradient(ellipse at center right, rgba(112.520718, 44.062154, 249.437846, 0.5), transparent 50%), radial-gradient(ellipse at center left, rgba(214, 51, 132, 0.5), transparent 50%);*/
    background-color: var(----jumbotron-background-color);
    /*background-image: linear-gradient(180deg, rgba(56, 41, 121, 0.95), rgba(99, 88, 222, 0.85)), url("../images/bg-arrows.jpg");*/
    background-image: var(--jumbotron-background-image);

    background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;

    color: var(--sponser-white);

    /*
    */


    padding: 0 0 2rem 0;
}


/* Accordion styles */
.accordion-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    width: 100%;
}

.accordion {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    width: 100%;
    outline: none;
    transition: 0.4s;
    position: relative;
    background-color: inherit;
    border: unset;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--lp-color);
    text-align: right;
    font-size: 1.25rem;
    padding-right: 1.5rem;
}

.accordion-item {
    width: 100%;
    margin-bottom: 1.25rem;
    background: var(--lp-footer-bg) !IMPORTANT;
    border: unset !important;
    padding: 1rem 0.5rem;
    border-radius: 0.75rem !IMPORTANT;
}

.accordion:after {
    content: '\002B';
    position: absolute;
    right: 0;
    transform: rotate(0deg);
    transition: transform 0.8s, color 0.4s;
}

.accordion.active, .accordion:hover {
    color: var(--lp-primary-alt);
}

.accordion.active:after {
    content: "\2212";
    /* transform: rotate(
        180deg); */
}

.panel {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    color: var(--lp-color);
    font-size: 1.25rem;
}


.icon-sm {
    height: 2rem;
    line-height: 2rem;
    width: 2rem
}

.icon-md {
    height: 2.5rem;
    line-height: 2.5rem;
    width: 2.5rem
}

.icon-lg {
    height: 3rem;
    line-height: 3rem;
    width: 3rem
}

.icon-xl {
    height: 3.5rem;
    line-height: 3.5rem;
    width: 3.5rem
}

.icon-xxl {
    height: 4rem;
    line-height: 4rem;
    width: 4rem
}

.icon-shape {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    vertical-align: middle
}

.icon-shape.primary{
    /*background-color: rgba(155, 87, 255,1)!important;*/
}

.icon-shape svg{
    fill: rgba(155, 87, 255,1)!important;
    height: 2.5rem;
    width: 2.5rem
}

hr.divider {
    width: 100%;
    height: 1px;
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(206, 211, 246, 0) 0, #bbb 38%, #bbb 64%, rgba(206, 211, 246, 0) 99%);
    opacity: .4;
    border: none;
    margin: 0;
}

.feature-container {
    background-color: #F2F2F2;
    border-radius: .5rem;
    overflow: hidden;
}

a.feature-box {
    text-decoration: none;
    color: var(--lp-color);
}

a.feature-box:hover > div{
    border: solid 1px #bbb;
    color: var(--lp-color);
}

a.feature-box:hover > div  svg{
    fill: var(--lp-primary-alt)!important;
}

a.feature-box > div {
    margin-bottom: .5rem;
    padding: .5rem;
    border-radius: .625rem;
    overflow: hidden;
    border: solid 1px transparent;
}