 

 .wrapper {
     position: relative;
     height: 100%;
     width: 100%;
 }

 #loader-wrapper {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1000;
 }

 #loader {
     background-image: url('../images/loading.gif');
     display: block;
     position: relative;
     left: 50%;
     top: 50%;
     width: 130px;
     height: 130px;
     margin: -75px 0 0 -75px;
     z-index: 1001;

 }


 #loader-wrapper .loader-section {
     position: fixed;
     top: 0;
     width: 100%;
     height: 100%;
     background: #fff;
     z-index: 1000;

 }

 .loaded #loader {
     opacity: 0;
     -webkit-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
 }

 .loaded #loader-wrapper {
     visibility: hidden;

     -webkit-transition: all 0.3s ease-out;
     transition: all 0.3s ease-out;
 }
body{
    font-family: 'Lalezar', cursive;
   
  background: url(../images/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
 
}
.center{
    text-align: center;
}
.gap{
    padding: 30px;
}
.newdesign h1,.newdesign h3{
    color: #fff;
}
.imagebrder img{
        border: 5px solid #fff;
    border-radius: 10px;
}