@charset "utf-8";
/* CSS Document */

/* 1. Resets *************************************************************/
* {
	-webkit-box-sizing: border-box; /* ???? */
	-moz-box-sizing: border-box; /*firefox*/
	box-sizing: border-box; /*new browsers*/
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-webkit-appearance: none;
}

::-webkit-input-placeholder {
	color: #000000;
	opacity: 1;
}

:-moz-placeholder { /* Firefox 18- */
	color: #000000;
	opacity: 1;

}

::-moz-placeholder {  /* Firefox 19+ */
	color: #000000;
	opacity: 1;
}

:-ms-input-placeholder {  
	color: #000000;
	opacity: 1;
}

/* 2. Basic Desktop Layout *************************************************************/

body {
  background-color: #fff;
  margin:0;
  padding:0;
}

.wrap {
    background-image: url("Images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 750px;
    margin: 0 auto;
    width: 100%;
}

img[name="logo"] {
	height: 32%;
	margin-top: -7%;
	padding-left: 1%;
	width: 25%;
}

h1 {
  color:#4eaef1;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
  font-size: 39px;
  line-height: 36px;
  text-align: center;
}

h2 {
  color:#000;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
  font-size: 28px;
  margin-top: -18px;
  text-align: center;
}

h3 {
  color:#59a1d3;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; 
  font-size: 32px;
  line-height: 32px;
  text-align: center;
}


#form {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  font-family: 'Mukta Mahee', sans-serif;
  margin-top: 2%;
  margin-left: 53%;
  margin-right: 3%;
  padding: 0.5% 2% 1% 2%;
}

#form p {
    font-size: 14px;
    line-height: 16px;
    text-align:justify;
}

#form a:link {
    color: #15728e;
}

#form a:hover {
  color: #ff9705;
}

input {
  border: 1px solid #aaaaaa;
  box-shadow:none;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
  padding: 10px;
  width: 100%;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
}

input[id='Address']{
    width: 48%;
}

input[id='City']{
    width: 48%;
}

input[id='postal']{
    margin-top: 5px;
    width: 48%;
}

input[id='FirstName']{
    width: 48%;
}

input[id='LastName']{
    width: 48%;
}

input[id='phone']{
    margin-top: 5px;
    width: 48%;
}

input[id='Email']{
    margin-top: 5px;
    width: 48%;
}

select[id='State'] {
        background-size: 2.5%;
    margin-top: 5px;
    width: 48%;
}

select[id='DOBM'] {
    width: 35%;
}

select[id='DOBD'] {
    background-size: 7%;
    width: 20%;
}

select[id='DOBY'] {
    width: 35%;
}

select[id='Gender'] {
    background-size: 1.5%;
}

select { 
  background-image: url("Images/arrow.png");
  background-repeat: no-repeat;
  background-position: right 10px top 19px;
  background-size: 4%;
  border: 1px solid #aaaaaa;
  box-shadow:none;
  font-size: 20px;
  font-family: 'Barlow', sans-serif;
  padding: 10px;
  width: 100%;
}


/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

select.invalid {
  background-color: #ffdddd;
}


/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #ff9c00;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: 'Pavanam', sans-serif;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #484848;
}

/* circles that indicate the steps of the form */
.step {
  height: 15px;
  width: 15px;
  margin-top: 0px;
  margin-right: 2px;
  background-color: #4eaef1;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* steps that are finished and valid */
.step.finish {
  background-color: #fea72d;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

button[id="myBtn"] {
    background:rgba(255,255,255,0.1);
    color:#000;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    padding: 0px 0px 0px 0px;
    text-decoration:underline;
}


/* Modal Content */
.modal-content {
  background-color: #fefefe;
  border: 1px solid #888;
  font-family: 'Roboto', sans-serif;
  margin: auto;
  padding: 1.5% 1.5% 1.5% 1.5%;
  width: 45%;
  height: 50%;
  overflow: auto;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}

.footer {
    background-color:#626262;
    color: #fff;
    font-family: 'Mukta Mahee', sans-serif;
    padding: 1% 0% 1% 0%;
}

/*******************************3. Media Queries - Desktop*******************************/
@media only screen and (min-width: 1400px) and (max-width: 1500px) {
    
    img[name="logo"] {
	height: 27%;
	margin-top: -7%;
	padding-left: 1%;
	width: 27%;
}

}

/*******************************3. Media Queries - Desktop*******************************/
@media only screen and (min-width: 1300px) and (max-width: 1400px) {
    
    img[name="logo"] {
	height: 27%;
	margin-top: -7%;
	padding-left: 1%;
	width: 27%;
}

h3 {
  font-size: 30px;
  line-height: 32px;
}

#form {
  margin-left: 52%;
  margin-right: 1.5%;
}

}

/*******************************3. Media Queries - Desktop*******************************/
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
    
    img[name="logo"] {
	height: 27%;
	margin-top: -10%;
	padding-left: 0.5%;
	width: 27%;
}

h3 {
  font-size: 27px;
  line-height: 32px;
}

#form {
  margin-left: 52%;
  margin-right: 1.5%;
}

}

/*******************************3. Media Queries - Tablet*******************************/
@media only screen and (min-width: 1000px) and (max-width: 1200px) {
    
    img[name="logo"] {
	height: 30%;
	margin-top: -2%;
	padding-left: 2%;
	width: 35%;
}

.wrap {
    background-image: none;
    height: 650px;
    margin: 0 auto;
    width: 100%;
}

h3 {
  font-size: 27px;
  line-height: 32px;
  margin-left: -8%;
  padding-right:3%;
}

#form {
  background: #fff;
  border-radius: 0px;
  margin-left: 0%;
  margin-right: 0%;
}

}

/*******************************3. Media Queries - Tablet*******************************/
@media only screen and (min-width: 800px) and (max-width: 1000px) {
    
    img[name="logo"] {
	height: 32%;
	margin-top: -2%;
	padding-left: 2%;
	width: 45%;
}

.wrap {
    background-image: none;
    height: 650px;
    margin: 0 auto;
    width: 100%;
}

h3 {
  font-size: 26px;
  line-height: 30px;
  margin-left: -38%;
  padding-right:3%;
}

#form {
  background: #fff;
  border-radius: 0px;
  margin-left: 0%;
  margin-right: 0%;
}

.modal-content {
  width: 80%;
  height: 75%;
}

}

/*******************************3. Media Queries - Phone*******************************/
@media only screen and (min-width: 600px) and (max-width: 800px) {
    
    img[name="logo"] {
	height: 28%;
	margin-top: -2%;
	padding-left: 2%;
	width: 50%;
}

.wrap {
    background-image: none;
    height: 750px;
    margin: 0 auto;
    width: 100%;
}

h3 {
  font-size: 20px;
  line-height: 24px;
  margin-left: -38%;
  padding-right:3%;
}

#form {
  background: #fff;
  border-radius: 0px;
  margin-left: 0%;
  margin-right: 0%;
}

.modal-content {
  width: 80%;
  height: 75%;
}

}

/*******************************3. Media Queries - Phone*******************************/
@media only screen and (min-width: 400px) and (max-width: 600px) {
    
    img[name="logo"] {
	height: 35%;
	margin-top: 2%;
	margin-left: 60%;
	width: 80%;
}

.wrap {
    background-image: none;
    height: 700px;
    margin: 0 auto;
    width: 100%;
}

h3 {
  display:none;
}

#form {
  background: #fff;
  border-radius: 0px;
  margin-left: 0%;
  margin-right: 0%;
}

.modal-content {
  width: 80%;
  height: 75%;
}

}

/*******************************3. Media Queries - Phone*******************************/
@media only screen and (min-width: 200px) and (max-width: 400px) {
    
    img[name="logo"] {
	height: 30%;
	margin-top: 2%;
	margin-left: 52%;
	width: 100%;
}

.wrap {
    background-image: none;
    height: 790px;
    margin: 0 auto;
    width: 100%;
}

h3 {
  display:none;
}

#form {
  background: #fff;
  border-radius: 0px;
  margin-left: 0%;
  margin-right: 0%;
}

.modal-content {
  width: 80%;
  height: 75%;
}

}


