@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&family=Montserrat:ital,wght@0,100;1,100&display=swap');

@font-face {
    font-family: "ploni";

    src: url('../fonts/woff2/ploni-black-aaa.woff2') format('woff2'),
         url('../fonts/woff/ploni-black-aaa.woff') format('woff'), 
         url('../fonts/ttf/ploni-black-aaa.ttf') format('truetype');
         

    font-weight: bold;
}
@font-face {
    font-family: "ploni";

    src: url('../fonts/woff2/ploni-medium-aaa.woff2') format('woff2'),
         url('../fonts/woff/ploni-medium-aaa.woff') format('woff'),
         url('../fonts/ttf/ploni-medium-aaa.ttf') format('truetype');

    font-weight: 600;
}
@font-face {
    font-family: "ploni";

    src: url('../fonts/woff2/ploni-light-aaa.woff2') format('woff2'),
         url('../fonts/woff/ploni-light-aaa.woff') format('woff'),
         url('../fonts/ttf/ploni-light-aaa.ttf') format('truetype');

    font-weight: normal;
}


*{
    font-family: Assistant;
    font-weight: normal;
    box-sizing: border-box;
    scroll-behavior: smooth;
    letter-spacing: 0;
}

:root {
    --darkBlue: #064471;
    --blue: #0038B8;
    --blueOpacity: #2B90A3;
    --pink: #FF4242;
    --green: #64FF41;
    --greenLight: #EDFFE9;
    --redLight: #FFE9E9;
    --gray: #53575A;
    --grayBright: #F8F8F8;
    --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

body{
    margin: 0;
    padding: 0; 
    background-color: white;
}

h1{
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 50px;
    color: var(--blue);
}

h2{
    padding: 0;
    margin: 0;
    font-family: ploni;
    font-weight: bold;
    font-size: 30px;
    color: var(--blue);
}

h2 span{
    color: var(--green);
}

p{
    font-size: 20px;
    font-weight: 500;
}

p span{
    font-weight: bold;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: black;
}

section{
    margin: 0;
    padding: 0; 
}

div{
    margin: 0;
    padding: 0; 
}

/* Chrome, Safari, Edge, Opera  הסתרת חיצים שדה מספר */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* הגדרות אתר */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000075;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
    z-index: 999999999;
    backdrop-filter: blur(5px);
}
  
.modal.is-visible {
    visibility: visible;
    opacity: 1;
}
  
.modalDialog {
    position: relative;
    width: 500px;
    overflow-y: scroll;
    border-radius: 10px;
    background: white;
    overflow: auto;
    cursor: default;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    max-width: 90%;
    max-height: 98%;
}

[data-animation="slideInOutLeft"] .modalDialog {
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s var(--bounceEasing);
}
  
[data-animation="slideInOutLeft"].is-visible .modalDialog {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
}
  
.modalDialog .closeModal{
    position: absolute;
    top: 15px;
    right: 15px;
}

.modalDialog .closeModal .close-modal{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -webkit-box-shadow: none;
    border: none;
    border-radius: 50%;
    transition: .3s;
    color: #c2c7cc;
    outline: none;
    background-color: transparent;
    border: 1px solid #c2c7cc;
    cursor: pointer;
}

.modalDialog .closeModal .close-modal:before, .modalDialog .closeModal .close-modal:after {
    position: absolute;
    width: 20px;
    height: 1px;
    top: 50%;

    content: '';
    background:#c2c7cc;
    transition: all ease 1s;
}
  
.modalDialog .closeModal .close-modal:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
  
.modalDialog .closeModal .close-modal:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modalDialog .closeModal .close-modal:hover::after{
    background: red;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.modalDialog .closeModal .close-modal:hover::before{
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    background: red;
}

.modalDialog .closeModal .close-modal:hover{
    background: #f26a3d34;
    border: 1px solid red;
}

.btn{
    display: flex;
    justify-content: center;
    column-gap: 0px;
    align-items: center;
    background-color: var(--blue);
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    transition: .2s;
    cursor: pointer;
}

.btn:hover{
    transform: scale(.955);
    transition: .2s;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.btn .text{
    font-family: ploni;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.btn .icon{
    display: flex;
    justify-content: left;
    align-items: center;
}

.btn .icon img{
    width: 60%;
    height: auto;
}

.btnGreen{
    background-color: #42ff8a;
}

.btnGray{
    background-color: var(--gray);
}

.btnPink{
    background-color: var(--pink);
}

.btnWhite{
    background-color: white;
}

.btnWhite .text{
    color: var(--gray);
}

.btnGradient{
    background: linear-gradient(270deg, #0D3388 0%, #0D42BC 100%);
}

.btnOpacity{
    background-color: rgba(255, 66, 119, 0.51);
    border: 2px solid var(--pink);
}

.btnOpacity .text{
    color: white;
}

.marker{
    position: relative;

    font-family: ploni;
    font-weight: bold;
    font-size: 40px;
    color: white;
}

.marker::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 105%;
    height: 90%;
    
    background-color: var(--blueOpacity);
    z-index: -8;
}

input{
    border: none;
    outline: none;
    --webkit-appearance: none;
}
  
input:focus-visible{
    border-color: var(--blue);
    transition: .3s;
}

select{
    border: none;
    outline: none;
    --webkit-appearance: none;
}
  
select:focus-visible{
    border: none;
}

input[type="text"], input[type="number"]{
    border-radius: 50px;
    color: var(--gray);
    font-size: 15px;
    font-weight: 600;
    width: 330px;
    padding: 15px 30px;
    border: 2px solid var(--gray);
}

input[type="text"], input[type="number"]::placeholder {
    color: var(--gray);
    font-size: 15px;
    font-weight: 600;
}
  
input[type="text"], input[type="number"]::-ms-input-placeholder {
    color: var(--gray);
    font-size: 15px;
    font-weight: 600;
}

button[type="submit"]{
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    width: 330px;
    padding: 15px 30px;
    font-family: ploni;
    background: linear-gradient(270deg, #0D3388 0%, #0D42BC 100%);
}


.dataId{
    display: none;
}

/**/
header{
    width: 100%;
    position: fixed;
    top: 0;
    height: 100px;
    box-shadow: 0px 4px 51px 0px rgba(0, 0, 0, 0.08);
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 80px;
    z-index: 9999999;
}

header .logo{
    width: 300px;
    height: auto;
}

header .logo img{
    width: 100%;
    height: auto;
}

header .headerMenu{
    display: flex;
    justify-content: space-around;
    column-gap: 20px;
    align-items: center;
}

.title{
    margin-top: 100px;
    padding: 50px 15px;
    text-align: center;

    font-family: ploni;
    font-weight: bold;
    font-size: 40px;
    color: var(--darkBlue);
    line-height: 45px;
}

.hero{
    width: 100%;
    background-color: var(--grayBright);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 15px;
}

.hero .subTitle{
    font-family: ploni;
    font-weight: 600;
    font-size: 20px;
    color: var(--darkBlue);
    text-align: center;

    line-height: 20px;
}

.hero .subTitle span{
    font-family: ploni;
    font-weight: bold;
}

.hero .lists{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.hero .lists .list{
    width: 300px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 31px 0px rgba(0, 0, 0, 0.053);
    padding: 10px;
    text-align: center;
    transition: .2s;

    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: stretch;
}


.hero .lists .list:hover{
    box-shadow: none;
    transition: .2s;
}

.hero .lists .list .banner{
    width: 100%;
    height: 190px;
    background-color: #0038B8;
    border-radius: 10px;
}

.hero .lists .list .banner img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-position: center;
    object-fit: cover;
}

.hero .lists .dataName{
    font-family: ploni;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    color: var(--blue);
    margin-top: 15px;
}

.hero .lists .dataSubName{
    font-family: ploni;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    color: var(--darkBlue);
    margin-top: 15px;
    padding: 0px 15px;
}

.hero .lists .btnRegister{
    margin-top: 15px;
}

footer{
    text-align: center;
    font-family: ploni;
    font-weight: 600;
    font-size: 18px;
    color: var(--pink);
    padding: 15px 0px;
}

.modal .modalDialog .formLogin{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.modal .modalDialog .formLogin .checboxs{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.modal .modalDialog .formLogin .checboxs input[type="checkbox"]{
    width: 15px;
    height: 15px;
    padding: 25px;
}

.modal .modalDialog .formLogin .checboxs label{
    font-weight: 700;
    color: var(--pink);
    font-size: 18px;
}

.modal .modalDialog .formLogin button{
    margin-top: 25px;
}

.modal .modalDialog p{
    font-family: ploni;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: var(--darkBlue);
    margin-top: 5px;
    padding: 0px 15px;
}

.listIndex{
    height: 400px;
    overflow-y: scroll;
    margin-top: 20px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    text-align: right;

    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    border-bottom: 3px solid var(--blue);
    border-top: 3px solid var(--blue);
    padding: 15px;
    border-radius: 10px;
}

.listBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

@media all and (max-width: 750px){
    header {
        padding: 0px 25px;
    }

    header .logo {
        width: 230px;
        height: auto;
    }

    .title {
        padding: 35px 10px;
        font-size: 30px;
        line-height: 35px;
    }

    .marker{
        font-size: 30px;
    }

    .hero {
        padding: 20px 10px;
    }

    .hero .subTitle {
        font-size: 18px;
        line-height: 18px;
    }

    .hero .lists {
        gap: 25px;
    }

    .hero .lists .list {
        width: 80%;
    }

    footer {
        font-size: 15px;
        padding: 10px 0px;
    }

    .modal .modalDialog .formLogin .checboxs input[type="checkbox"]{
        padding: 0px;
        width: 10px;
        height: 10px;
    }
    
}

@media all and (max-width: 500px){
    .modalDialog {
        width: 95%;
        padding: 60px 10px;
        max-width: 95%;
    }

    .btn .text {
        font-family: ploni;
        font-size: 15px;
        font-weight: 600;
        color: white;
    }

    .btn .icon img {
        width: 55%;
        height: auto;
    }

    .marker{
        font-size: 20px;
    }
    
    header {
        padding: 0px 15px;
        height: 80px;
    }

    header .logo {
        width: 150px;
        height: auto;
    }

    .title {
        margin-top: 80px;
        padding: 30px 10px;
        font-size: 20px;
        line-height: 25px;
    }

    .listBtn{
        align-items: stretch;
        gap: 20px;
        flex-direction: column;
    }
}