@import url(https://fonts.googleapis.com/earlyaccess/opensanshebrew.css);
@import url(https://fonts.googleapis.com/earlyaccess/opensanshebrewcondensed.css); 
*{
    box-sizing: border-box;
    font-family: 'Open Sans Hebrew','Open Sans Hebrew Condensed', serif;
    letter-spacing: 0.7px;
}

body{
    margin:0;
    padding: 0;
    direction: rtl;
    color: rgba(22,22,22,.6);
    font-size: 14px;
}
.body-wrapper{
    padding: 0 30px;
    font-family: arial;
    box-shadow: 0 3px 15px 5px rgba(0,0,0,.9);
    -webkit-font-smoothing: antialiased;
}
.row-wrap{
    padding-top: 70px;
    padding-bottom: 70px;
}
.full-width{
   margin: 0 -30px; 
   display: block;
}
a{
    color: #000;
    text-decoration: none ;
}
h1,h2,h3,h4,h5{
    margin:0;
    padding:0;
}
ul,li{
    list-style: none;
    padding: 0;
    margin: 0;
}
.text-box{
    text-align: center;
}
.container{
    margin-left: auto;
    margin-right: auto;
    display: table;
}    
.animatable{
    transition: all 2s;
}
.fadeInDown{
    opacity: 0;
    transform: translate3d(0,-100%,0);
}
.fadeInLeft{
    opacity: 0;
    transform: translate3d(-100%,0,0);
}
.go-to-top-btn{
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999;
    opacity: .55;
    display: none;
}
.go-to-top-btn span{
    font-size: 50px;
}
.go-to-top-btn:hover{
    opacity: .85;
}
@media screen and (max-width: 800px){
    .animatable{
        transition: none;
        transform: none;
        opacity: 1;
    }
}
