@import url(https://fonts.googleapis.com/css?family=Raleway);
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');
@import url('https://fonts.googleapis.com/css?family=Tangerine');

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  margin: 0;
  background-image: url('img/wizard-v4.jpg');
  // background: url('img/sparkles_2.gif');
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
}

div.container {
 // width: 400px;
 width: 90%;
 // height: 910px;
 margin:0px auto;
 float:center;
 // border-radius: 5px;
 // Border:2px solid #990909;
 // padding:0px 50px 20px;
}

div.main {
 // width: 400px;
 width: 90%;
 margin-bottom: 35px;
 float:center;
 border-radius: 5px;
 Border:2px solid #999900;
 // padding:0px 50px 20px;
 font-family: 'Raleway', sans-serif;
 background-color: rgba(255,255,255, 0.75);
}

#error{
 display:block;
 margin-top: 10px;
 margin-bottom: 10px;
}

#success{
 color:green;
 font-weight:bold;
}

span{
 color:red;
}

h1{
background-color: #808080;
background: linear-gradient(#808080 5%, #FFFFFF 100%);
padding: 8px;
margin: 0 0px;
text-align: center;
border-radius: 5px 5px 0 0;
color: #00007F;
text-shadow: 1px 1px 1px #7f7f7f;
}

h2{
// background-color: #808080;
// background: linear-gradient(#808080 5%, #FFFFFF 100%);
padding: 8px;
margin: 0 0px;
text-align: center;
border-radius: 5px 5px 0 0;
color: #FFFFFF;
text-shadow: 2px 2px 2px #7f7f7f;
}

b{
font-size:18px;
display: block;
color: #555;
}

hr{
margin: 0 0px;
border: 1;
color: #0F0F0F;
border-bottom: 1px solid #ccc;
margin-bottom:5px;
}

label{
color: #060606;
font-size: 12px;
font-weight: bold;
// text-shadow: 1px 1px 1px #7f7f7f;
}

li{
padding: 8px;
margin: 0 15px;
text-align: left;
border-radius: 5px 5px 0 0;
color: #5f0000;
}

input[type=firstname],
input[type=lastname]{
  width:96%;
  height:25px;
  padding:5px;
  margin-top:5px;
  margin-bottom:15px;
  font-size: 16px;
  border-radius: 2px;
}

input[type=text],
input[type=password],
input[type=number],
input[type=email]{
  width:96%;
  height:30px;
  padding:5px;
  margin-top:5px;
  margin-bottom:15px;
  font-size: 16px;
  border-radius: 2px;
}

textarea {
  resize: none;
  width:96%;
  padding:5px;
  margin-top:5px;
  margin-bottom:15px;
  border-radius: 2px;
  font-size: 16px;
}

input[type=radio] {
  margin:10px;
}

input[type=checkbox] {
  margin:10px;
}


select {
  width:96%;
  margin-bottom: 15px;
  margin-top: 5px;
  height: 50px;
  font-size: 16px;
  border-radius: 5px;
  color: black;
  background-color: #f4f4f4;
  // font-family: cursive;
  // border-color: aqua;
}

select.item {
    color: blue;
}
select.selected {
    color: red;
}

select.option {
  width:96%;
  margin-bottom: 15px;
  margin-top: 5px;
  height: 50px;
  font-size: 16px;
  border-radius: 2px;
  color: black;
  background-color: #f4f4f4;
  // font-family: cursive;
}

input[type=submit],
input[type=reset]{
padding: 10px;
background: linear-gradient(#FFFFFF 5%, #808080 100%);
border: 1px solid #0000FF;
color: #0000FF;
cursor: pointer;
width: 49.2%;
border-radius: 2px;
margin-bottom: 5px;
font-weight:bold;
font-size:16px;
}

input[type=submit]:hover,
input[type=reset]:hover {
background: linear-gradient(#8080FF 5%, #FFFFFF 100%);
}

/* Image ZOOM CSS Effect */
#myVideo {
  position: fixed;
  right: 0;
  top: 100;
  bottom: 0;
  min-width: 100%; 
  z-index:-1;
  // min-height: 100%;
}

.responsive_image {
    width: 100%;
    max-width: 1120px;
    height: auto;
}

.popOver {
    height: 80%;
    width: 80%;
    position: float;;
    background-color: transparent;
    -webkit-animation: zoomme 4s;
    animation: zoomme 4s;
    -webkit-transform: scale(0.1,0.1); 
    transform: scale(0.1,0.1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes zoomme {
    100% {
        -webkit-transform: scale(0.8,0.8); 
    }
}

@keyframes zoomme {
    100% {
        transform: scale(1,1); 
    }
}

/* GLOWING TEXT */
.glow_small {
  font-size: 1.7vw;
  color: #fff;
  text-align: center;
  transform: scale(1,1);

  // -webkit-animation: glow_small 1s ease-in-out infinite alternate;
  // -moz-animation: glow_small 1s ease-in-out infinite alternate;
  // animation: glow_small 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow_small {
  from {
    text-shadow: 0 0 2px #fff, 0 0 8px #fff, 0 0 5px #00007F, 0 0 4px #00007F, 0 0 5px #00007F, 0 0 6px #00007F, 0 0 7px #00007F;
  }
  
  to {
    text-shadow: 0 0 2px #fff, 0 0 3px #0000FF, 0 0 4px #0000FF, 0 0 5px #0000FF, 0 0 6px #0000FF, 0 0 7px #0000FF, 0 0 8px #0000FF;
  }
}

.glow {
  font-size: 6vw;
  color: rgba(250, 216, 89, 1); // #fff;
  text-align: center;
  transform: scale(1,1);

  // -webkit-animation: glow 1s ease-in-out infinite alternate;
  // -moz-animation: glow 1s ease-in-out infinite alternate;
  // animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00007F, 0 0 40px #00007F, 0 0 50px #00007F, 0 0 60px #00007F, 0 0 70px #00007F;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #0000FF, 0 0 40px #0000FF, 0 0 50px #0000FF, 0 0 60px #0000FF, 0 0 70px #0000FF, 0 0 80px #0000FF;
  }
}

/* SOCIAL MEDIA FOOTER */

.footer_container{
  padding-top:10px;
  min-width:100%;
  min-height:10%;
  max-height:150px;
  text-align:center;
  position: fixed;
  bottom: 10px;
  // border: 3px solid #077;;
  background: linear-gradient(0deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 100%);
}

.footer_headline{
  font-size:20px;
  font-size:2vw;
  text-align:center;
  font-family: 'Montserrat', sans-serif;
  color:#fff;
}

.footer_headline  h4{
    font-size:18px;
    font-family: 'Montserrat', sans-serif;
    color:#fff;
  }

.social-buttons{
  display:inline-block;
  background: rgba(256,256,256,0.5);
  padding:20px;
  padding-bottom: 5px;
  border-radius:10px;
  text-align:center;
  margin:20px 10px;
  box-shadow: 0px 0px 32px -7px #00199f;
}
  
/* Helper class to divide the icons */
.social-margin {
  margin-right: 5px;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

.social-icon {
  margin-bottom: 15px;
   box-sizing: border-box;
  -moz-border-radius: 138px;
  -webkit-border-radius: 138px;
  border-radius: 138px;
  border: 5px solid;
  text-align: center;
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 1px;
  padding-top: 11px;
  transition: all 0.5s;
}
.social-icon:hover {
    transform: rotate(360deg)scale(1.3);
  }
  /* Facebook Button Styling */
 .facebook {
    font-size: 22px;
    padding-top: 9px;
    border-color: #3b5998;
    background-color: #3b5998;
    color: #ffffff;
   
  }
  .facebook:hover {
    background-color: #ffffff;
    color: #3b5998;
  }
  /* Twitter Button Styling */
.twitter {
    font-size: 22px;
    padding-top: 10px;
    padding-left: 2px;
    border-color: #55acee;
    background-color: #55acee;
    color: #ffffff;
    
  }
  .twitter:hover {
    background-color: #ffffff;
    color: #55acee;
  }
  /* Linkedin Button Styling */
  .linkedin {
    font-size: 24px;
    padding-top: 8px;
    padding-left: 1px;
    background-color: #0976b4;
    color: #ffffff;
    border-color: #0976b4;
    
  }
  .linkedin :hover {
    background-color: #ffffff;
    color: #0976b4;
  }
  /* Pinterest Button Styling */
  .instagram {
    font-size: 22px;
    padding-top: 9px;
    background-color:  #cb2027;
    color: #ffffff;
    border-color:  #cb2027;
    
  }
  .instagram:hover {
    background-color: #ffffff;
    color:  #cb2027;
  }

  /* Youtube Button Styling */
 .youtube {
    font-size: 22px;
    padding-top: 9px;
    padding-left: 0px;
    background-color: #bb0000;
    color: #ffffff;
    border-color: #bb0000;
    
  }
  .youtube  :hover {
    background-color: #ffffff;
    color: #bb0000;
  }


  /* Home Button Styling */
 .home {
    font-size: 22px;
    padding-top: 9px;
    padding-left: 0px;
    background-color: #fb0a0a;
    color: #ffffff;
    border-color: transparent;
    
  }
  .home  :hover {
    background-color: #ffffff;
    color: #bb0000;
  }


  /* email Button Styling */
 .email {
    font-size: 22px;
    padding-top: 9px;
    padding-left: 0px;
    background-color: #f39c12;
    color: #ffffff;
    border-color: transparent;
  }
  .email  :hover {
    background-color: #ffffff;
    color: #f39c12;
  }


