﻿



/*@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");*/

/*html,
body {
	padding: 0;
	margin: 0;
	position: relative;
    background-color:hsla(120,100%,50%,0.3);
	background-size: cover;
	height: 100vh;
	font-family: "Raleway", sans-serif;
	overflow-y: hidden;
}*/

.content1 {
	max-width: 650px;
	margin: 0 auto;
	top: 35%;
	position: relative;
	h1 {
		line-height: 1.5;
		color: white;
		font-weight: 300;
		text-align: center;
		font-size: 3rem;
		text-shadow: 0 2px 5px black;
	}
}

    .overlaycls {
          opacity: 0.5;
}
/* PRELOADER CSS */
.page-loader1{
	/*width: 100%;*/
	/*height: 5000vh;*/
	position: fixed;
	background: #1a191936;
	z-index: 1000;
    top: 50%;
    left: 50%;
      margin-top: -50px; 
  margin-left: -50px; 
	.txt{
		color: #666;
		text-align: center;
		top: 40%;
		position: relative;
		text-transform: uppercase;
		letter-spacing: 0.3rem;
		font-weight: bold;
		line-height: 1.5;
	}
}

/* SPINNER ANIMATION */
.spinner1 {

  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px; 
  margin-left: -50px; 
  /*position: relative;*/

  /*top: 35%;*/
  width: 80px;
  height: 80px;
  /*margin: 0 auto;*/
  background-color: #404f68;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}