/*
::-webkit-scrollbar { 
    display: none; 
}
*/

body {
    background-color: #ffffff;
    background-color: #01427f;
    width: 100%;
    height: 100vh;
    min-height: 800px; 
}

#main {
    width: 480px;
    height: 100vh;
    min-height: 802px; /* main.jpg height X 0.75 */
    position: absolute;
    top: 0px;
    left: 0px;
    margin-bottom: 0px;
    background-color: #01427f;

    -moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.75);


}
#mainImage {
    width: 480px;
    margin-left: auto;
    margin-right: auto;
}

#bg {
    position: fixed; 
    top: 0px; 
    right: 0px; 
    width: calc(100% - 480px); 
    height: 100%; 
    background-image: url('../images/background2.jpg');
    background-repeat:  no-repeat;
    background-position: center center;
    background-attachment: inherit;
    background-attachment: inherit;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: -2000;
}

#gallery {
    position: fixed; 
    top: 0px; 
    right: 0px; 
    width: calc(100% - 480px); 
    height: 100%; 
    overflow: hidden;
    z-index: -1000;
}

#languagesDiv {
    position: absolute;
    top: 10px;
    right: 30px;
    border: 0px solid red;
    width: 150px;
    text-align: right;
    transform-origin: top right;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition:  0.5s ease-in-out;
    -ms-transition:  0.5s ease-in-out;
    -o-transition:  0.5s ease-in-out;
    transition:  0.5s ease-in-out;    

}
#languagesDiv:hover {
    -ms-transform: scale(2.0, 2.0);
    -webkit-transform: scale(2.0, 2.0);
    transform: scale(2.0, 2.0); 

}
.languageButton {
    height: 12px; 
    border-radius: 2px; 
    margin-left: 3px;                
    vertical-align: middle; 
    border: 0px solid #808080; 
}

#phoneDiv {
    position: absolute; 
    width: 220px; 
    top: 590px; 
    left: 190px; 
    height: 25px; 
    border: 0px solid red; 
    text-align: center; 
    direction: rtl;
    font-size: 14px; 
    color: #a0a0a0;
    font-family: 'Open Sans Hebrew',Arial,sans-serif; 
    transform-origin: center center;
    -ms-transform: scale(1.25, 1.25);
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.25, 1.25); 
}
#phoneNumber {
    color: #808080;
    font-family: 'Open Sans Hebrew',Arial,sans-serif; 
    text-align: center; 
    direction: ltr;
    font-size: 16px; 
    cursor: pointer;

}

#formContainer {
    border: 0px solid red;           
    border-radius: 5px;
    background: none;
    position: absolute;
    top: 385px;
    left: 164px;
    width: 280px;
    height: 185px;
    padding-top: 10px;
    overflow: hidden;
}
.leadockForm {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
}

/* Mobile */
@media only screen and (max-width: 700px) {
    body {
        width: 640px;
        height: auto;
        min-height: 1570px; /* 500 + 1070 */ 
    }
#languagesDiv {
    width: 200px;
}
    .languageButton {
        height: 28px; 
        border-radius: 4px; 
        margin-left: 5px;                

    }

    #scroller {
        left: calc(50% - 320px);
    }

    #gallery {
        height: 500px;
        width: 100%;
        left: 0px
    }

    #bg {
        height: 500px;
        width: 100%;
        left: 0px
    }

    #main {
        width: 100%;
        top: 500px;
        left: 0px;
        min-height: 1070px; /* main.jpg height */
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #mainImage {
        width: 640px;
    }

    #formContainer {
        top: 540px;
        left: calc(50% - 50px);
        -ms-transform: scale(1.25,1.25);
        -webkit-transform: scale(1.25,1.25);
        transform: scale(1.25,1.25); 

    }

    #phoneDiv {
        top: 790px;
        border: 0px solid red;
        left: calc(50% - 110px);
        -ms-transform: scale(1.75,1.75);
        -webkit-transform: scale(1.75,1.75);
        transform: scale(1.75,1.75); 
    }
}



