body.landing{
    font-family: 'Open Sans Hebrew';     
}
.contentRow {
    display: flex;
    flex-flow: wrap; 
    justify-content: space-between;
    align-items: stretch;
}
.bigImg {
    width: 77%;
}
img.desktopIMG {
    display: block;
}
img.mobileIMG {
    display: none;
}
.bigImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.RightSide {
    background-color: #BB1E35;
    width: 23%;
    text-align: center;
    padding: 50px;
    position: relative;
	min-height: 875px;
}
a.loginReguser {
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    transition: all linear .5s; 
    letter-spacing: 0.7px;  
}
.Regform .row {
    margin: 0px;
    display: flex;
    flex-flow: wrap;
}
.Regform .row .p-0{
    padding: 0px 5px;
}
.Regform select, .Regform input[type=text] {
    background-color: #ECECEC;
    border-radius: 6px;
}
.Regform .form-group {
    margin-bottom: 15px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    background: #fff;
    padding: 10px; 
    font-family: 'Open Sans Hebrew'; 
}
.Regform h2 {
    font-size: 27px;
    line-height: 37px;
    color: #fff;
    font-weight: bold;
    margin: 30px 0px 25px; 
}
.Regform .form-group label {
    text-align: right;
    display: block;
    padding-right: 5px;
    font-family: 'Open Sans Hebrew'; 
}

.Regform .form-group .form-control{
    border: 0px;
    box-shadow: none;
    font-size: 20px;
    color: #000; 
    font-family: 'Open Sans Hebrew'; 
    background-color: #ECECEC;
}
.Regform .form-group input::placeholder{
    color: #000 !important;
    font-size: 20px;
    opacity: 1;
}
.Regform .form-check{
    text-align: right; 
    font-family: 'Open Sans Hebrew'; 
}
.Regform label.form-check-label, .Regform label.form-check-label a {
    color: #ffff;
}
.Regform label.form-check-label{
    font-size: 14px;
    font-family: 'Open Sans Hebrew'; 
}
.Regform label.form-check-label a{
    text-decoration: underline;
}
.Regform input[type=checkbox] {
    position: relative;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    line-height: 0;
    margin: 0 0 0 0.6em;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    box-shadow: 0px 3px 6px #00000029;
  }
  
  
  .Regform input[type=checkbox]:checked:before {
    border: solid #BB1E35;
    border-width: 0px 2px 2px 0px;
  }
  
  .Regform input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
  }
  .Regform button.btn{
    background: #000;
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    border: 0px;
    margin: 14px 0px;
    padding: 12px 10px;
    font-size: 20px;
    font-weight: bold;
    transition: all linear .5s; 
  }
  .Regform button.btn:hover, a.loginReguser:hover {
    transform: scale(1.1);
}
  .content {
    padding: 70px 20px;
}
.contentInner h1 {
    font-size: 46px;
    color: #BB1E35;
    font-weight: 700;
    font-family: 'Open Sans Hebrew';
}
.contentInner p {
    font-size: 22px;
    color: #000;
    line-height: 30px;
}
.Regform label.error {
	color: red;
    background: white;
    border-radius: 5px;
    width: 100%;
}
/************RESPONSIVE********************/
@media(max-width: 1366px){
    .bigImg {
        width: 70%;
    }

    .RightSide {
        width: 30%;
    }
    a.loginReguser {
        bottom: 20px;
    }
}

@media(max-width: 1279px){
.RightSide {
    padding: 24px 24px 50px;
}
}


@media(max-width: 990px){
    .bigImg, .RightSide {
        width: 100%;
    }
    .contentRow {
        flex-direction: column-reverse;
    }
    .content {
        padding: 20px 20px;
    }
    .mainLanding{
        padding-bottom: 50px;
    }
    .Regform {
        position: relative;
        z-index: 9;
    }
    .RightSide:after {
        content: "";
        background: linear-gradient(0deg, #fff 10%, transparent);
        width: 100%;
        height: 12%;
        position: absolute;
        bottom: -2px;
        left: 0;
        z-index: 0;
    }
    .RightSide{
        padding-bottom: 15rem
    }
    a.loginReguser {
        bottom: 10rem;
        z-index: 9;
    }
    img.desktopIMG {
        display: none;
    }
    img.mobileIMG {
        display: block;
    }
}


@media(max-width: 767px){
    .Regform .row .col-sm-4 {
        width: 33.33333333%;
    }
    .Regform .row .col-sm-6 {
        width: 50%;
    }
    .Regform .row .col-sm-12 {
        width: 100%;
    }	
    .contentInner h1 {
        font-size: 25px;
        line-height: 33px;
    }
    .contentInner p {
        font-size: 18px;
        line-height: 22px;
    }
    .content {
        padding: 20px 15px;
    }
}