/********* General styles **********/
@import url('https://fonts.googleapis.com/css?family=Oswald');
@import url('https://fonts.googleapis.com/css?family=Tangerine');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,500&display=swap&subset=latin-ext');


    

body, html{
    font-family: 'Raleway', arial, sans-serif;
    color: #1e1e1f;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
 }

.clearFix{
    clear: both;
}

.fotoDescription span{
    position: absolute;
    color: #cccccc;
    font-size: 12px;
    left: 0;
    bottom: 0;
    font-style: italic;
    background: rgb(35, 35, 35, 0.3);
    padding: 0.3%;
}

h1{
    color: rgb(63, 60, 60); 
    text-transform: uppercase;
    text-align: center;
    font-size: 1.7vw;
    letter-spacing: 2px;
}

h2 {
    text-align: center;
    font-size: 30px;
    color:  #3f3c3c; 
    border-bottom: double #c4c1bf;
    margin: 30px 80px 0 80px;
    letter-spacing: 1px;
    text-shadow: 1px 1px #b6b1b1;
    
}

h2 span{
    position: relative;
    top: 19px;
    background: #ffffff;
    padding: 0 50px 0px 50px;
}

.content1 {
    width: 100%;
    background: #f8f5f5;
}

.content1 p {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 100;
    margin: 0 80px 0 80px;
    padding: 40px 15px 40px 15px;
    display: block;
    color:  #3f3c3c; 
    border-bottom: 1px solid #c4c1bf;
}


#mainContent img,
.content1 img,
#aboutProject img,
#mainMap img
 {
    vertical-align: -4px;
}
.goToSection img  {
    vertical-align: -3px;
    }

/**** Arow top-to section ****/

#arowTop{
    position: fixed;
	bottom: 2%;
    right: 0.5%;;
    z-index: 9;
}



/********** HEADER **********/
header {
    width:100%;
    height: 100px;
    top:0;   /*fix to up*/
    left: 0;
    /*background: rgba(35, 35, 35, 0.6);*/
    position: fixed;
    z-index: 10;
    transition: padding .3s;
    -webkit-transition: padding .3s;
	-moz-transition: padding .3s;
	-o-transition: padding .3s;   
}


/********** LOGO **********/
#logoWeb{
    float: left;  
    margin: 0 0 0 80px;  
}
/*
#logoWeb a{
    font-family: 'Tangerine', cursive;
    font-size: 60px;
    text-decoration: none;
    color: rgb(216, 211, 211);
    
}

#logoWeb a:hover{
    color: #bbb;
}*/ /* off no logo text*/

/********** NAV BAR **********/
nav{  
    overflow: hidden;
    float: right;
    margin-right: 80px;
} 

nav ul{
    list-style-type: none;
    float: right;
    margin: 0;
    padding: 0;
}

nav ul li{
    float: left;  
}

nav ul li a{
    display: block;
    position: relative; /* for hover effect */
    font-weight: 550;
    font-family: 'Oswald', arial, sans-serif;
    text-align: center; 
    text-decoration: none;
    text-transform: uppercase;
    color: #d8d3d3; 
    font-size: 17px;
    letter-spacing: 2px;
    padding: 42px 30px;
    padding-bottom: 33px;
    transition: .8s;
    -webkit-transition: .8s;
    -moz-transition: .8s;
    -o-transition: .8s; 
}

/* hover effect for menu */
nav ul li a::after{
    content: " ";
    width: 0%;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease; 
    left: 50%;
}

nav ul li a::before{
    content: " ";
    width: 0%;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
    -o-transition: all .4s ease; 
    left: 50%;
}

nav ul li a:hover::after{
    content:'';
    position: absolute;
	bottom: 0px;
	left: 50%;
	background:#f8f5f5;
	height: 3px;
    width: 50%;
}

nav ul li a:hover:before{
	content:'';
	position:absolute;
	bottom: 0px;
	left: 0px;
	background:#f8f5f5;
	height: 3px;
	width: 50%;
}

nav ul li a.active {
    color: #ffffff;  
}


nav ul li a:hover{

    color: white;
}

/* menu for mobile icon */
.menu-toggle {
    color: #d8d3d3;
    float: right;
    font-size: 50px;
    padding-top: 25px;
    cursor: pointer;
    display: none;
}


/*HEADER Shrink*/
.cbp-af-header-shrink {
    padding: 5px 0;
    background: rgb(35, 35, 35);
    box-shadow: 0px 3px 20px #1d1c1c;
}
    
.cbp-af-header-shrink nav ul li a {
    padding-bottom: 38px;
    
}

/*
.cbp-af-header-shrink #logoWeb{
    font-size: 65px;
    transition: 0.8s;
}*/





/********** SOCIAL MEDIA **********/
.socialMedia{
    position: absolute;
    right: 1%;
    top: 88%;
    z-index: 3;
    
}
.socialMedia ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.socialMedia ul li {
    width: 24px;
    height: 24px;
    transition:  1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
 
}

.socialMedia ul li:hover
 {
    transform: scale(1.2,1.2);
    -ms-transform: scaleY(1.2,1.2); /* IE 9 */
    -webkit-transform: scaleY(1.2,1.2); /* Safari 3-8 */
    
}
/**** AROW TO NEXT section ***/
 .goToSection img{
    transition:  .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
}

.goToSection img:hover{
    transform: rotate(90deg);
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Safari 3-8 */
}



/********** MAIN Content and contens **********/



/********** SECTION Content1 **********/
.borderPicture2{
    background-image: url(../images/backpicture2.jpg);
}

/********** SECTION About Project **********/
#aboutProject{
    width: 100%;
    background-color:  #f8f5f5;
    display: block;
}

#aboutProject p,
#mainMap p, #aboutSyn p{
    font-size: 16px;
    line-height: 1.8;
    margin: 0 80px 0 80px;
    padding: 40px 15px 20px 15px;
    display: block;
    color: #3f3c3c;
}

#qrSynagouge p img{
    max-width: 100%;
    margin: auto;  
    margin-top: 30px;  
}

/********** SECTION Footer **********/
footer{
    display: block;
    font-family: 'Oswald', arial, sans-serif;
    text-align: center;
    width: 100%;
    height: auto;
    background: #000000;
    color: #6d6767;;
    padding: 5px 0 15px 0;

} 
footer a, footer p, footer address{
    
    font-size: 14px;
    text-decoration: none;
    color:#6d6767;
}

footer a span {
    display: inline-block;
    font-size: 15px;
    font-weight: initial;
    color: #f8f5f5;
    padding: 10px;
}
/*
footer .socialIcon i{
    display: inline-block;
    color: #f8f5f5;
    cursor: pointer;
    font-size: 40px;
    padding: 20px 10px 10px 10px;
    
}


