/**********Fonts**********/
@import url(http://fonts.googleapis.com/css?family=Lato|Cantarell|Molengo|Fjalla+One);
@import url(http://fonts.googleapis.com/css?family=Raleway);

/*DESKTOP*/
@media screen and (min-width:1000px){
 body {
    background-color: #323232;
    background-image: url(/images/footer_lodyas.png);
 }
 #logo {
    height: 300px;
    margin: 0 auto;
    background-image: url(/images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
}
#logo h1{ 
	text-indent: -9999px;
	border-bottom: none; 	
}          
  section.wrapper {
    position: relative;
	width: 940px;
    margin: 0 auto;
	height: 750px;
    background-color: #FFF;
    background-image: url(/images/bg_toronto.png);
      
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
}
   
 nav{
     position: fixed;
	top: 0;
	width: 100%;
	height:40px;
     background-color: #FFF;
     z-index: 9999;
     
     -webkit-box-shadow: 2px 2px 2px #323232;
     -moz-box-shadow: 2px 2px 2px #323232;
     box-shadow: 2px 2px 2px #323232;
 }   
#nav{
    width: 940px;
    margin: 0 auto;
    position: relative;
}   
ul#nav li{
    float: left;
}
ul#nav li a{
    font-family: 'Raleway', sans-serif;
    text-decoration:none;
    text-align: center;
    vertical-align:middle;
    display:inline-block;
    width:95px;
    height:40px;
    padding:0 10px 0 10px;
    color:#FF5722;
    line-height:40px;
    font-weight:bold;
    outline:none;
    /*TRANSITION*/
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease; 
}    
ul#nav li a:hover {
    color: #FFF;
    background-color: #FF5722;
   }

ul#nav a.active {
    color: #ffffff;
    background: #FF5722;
    line-height: 40px;
   }  
    
.displayNone {
    display: none; 
}
    
/***********WEATHER CONDITIONS AND WEATHER DIVS************/

/* Loading Gif*/    
#loadingCircle{
    width: 75px;
    height: 75px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}  
    

#apiGlobeContainer  {
    position: relative;
    width:500px;
    height: 150px;
    margin: 15px auto;
    text-align: center;
	
}
    
    

#temperature, #condition{
width: 100px;
height: 100px;
margin-left: 20px;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;    
-o-border-radius: 60px;
border-radius: 60px;    
border: 8px solid #2196f3;
background-color: rgba(255, 255, 255, 0.5);
/*background-color: rgba(33, 150, 243, 0.3);*/
display: inline-block;
line-height: 100px;
vertical-align: middle;
font-family: 'Fjalla One', sans-serif;
color: #FFDB4D;
font-size: 30px;
font-weight: bold;
-webkit-text-stroke: 0.5px black;
-moz-text-stroke: 0.5px black;
text-stroke: 0.5px black;
} 
    
#temperature, #condition {
   color: #FFDB4D;
   -webkit-text-fill-color: #FFDB4D; /* Will override color (regardless of order) */
   -webkit-text-stroke-width: 0.5px;
   -webkit-text-stroke-color: black;   
}

#errorMessage {
	width: 500px;
	margin: 20px auto;
	font-family: 'Raleway', sans-serif;
    color: #ff0000;
	font-weight:bold;
	text-align: center;
    background-color: #fff;
    border-radius: 12px;
}    
/*ANIMATION SECTION*/    

/*API CONTAINER*/
.fadeAnimation{
   /*ANIMATION ONE*/
  -webkit-animation: fadeIn 1s forwards; 
  -moz-animation:    fadeIn 1s forwards; 
  -o-animation:     fadeIn 1s forwards; 
  animation:        fadeIn 1s forwards;
}
    /*Loading Circle*/
.fadeLoad{
   
    /*ANIMATION ZERO*/
  -webkit-animation: fadeLoad 2s forwards; 
  -moz-animation:    fadeLoad 2s forwards; 
  -o-animation:     fadeLoad 2s forwards; 
  animation:        fadeLoad 2s forwards;
}
/*GLOBES*/
.popUpAnimation{
    /*ANIMATION TWO*/
  -webkit-animation:  popUp 3s forwards; 
  -moz-animation:     popUp 3s forwards; 
  -o-animation:       popUp 3s forwards; 
  animation:          popUp 3s forwards;
}
/*FONTS*/
.fadeAnimationTwo{
    /*ANIMATION THREE*/
  -webkit-animation: fadeInTwo 5.5s forwards; 
  -moz-animation:    fadeInTwo 5.5s forwards; 
  -o-animation:     fadeInTwo 5.5s forwards; 
  animation:        fadeInTwo 5.5s forwards;
} 
/*ANIMATION SECTION ENDS*/    
    
/**********APP Form**********/

form#add-content {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}
    
form#add-content fieldset label {
    width: 234px;
    margin: 0 auto;
    font-family: 'Fjalla One', sans-serif;
    color: #212121;
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}    
form#add-content fieldset input[type=text]{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	width: 400px;
    height: 25px;
	margin-bottom: 10px;
    border: 1px solid #000;
    line-height: 20px;
    text-align: center;
}    

form#add-content fieldset button {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
     margin-right: 10px;
	background: #212121;
	border: none;
	color: #FFF;
	padding: 6px 20px;
	cursor: pointer;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
	border-radius: 7px;
    -webkit-transition: color 0.7s; 
     -moz-transition: color 0.7s;
     -o-transition: color 0.7s;
     transition: color 0.7s;
}
#buttons{
	display: inline-block;
}
 form#add-content fieldset button:hover {
    color: #2196f3;
    -webkit-transition: color 0.4s; 
     -moz-transition: color 0.4s;
     -o-transition: color 0.4s;
     transition: color 0.4s;
 }   
    
    
/**********Footer**********/
footer {
    width: 940px;
	height:30px;
    position: absolute;
	bottom: 0;
	background-color: #000000;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
    }    
footer p {
    float: left;
	font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
	color: #FFF;
	line-height: 30px;
    margin-left: 20px;
}    
 #social {
	float: right;
	line-height: 30px;
     margin-right: 20px;
}
#social a {
    text-decoration: none;
	color: #FFF;	
}   

/*ABOUT PAGE*/ 
 #about{
    width: 680px;
     margin: 0 auto; }
#about h1{
    width:340px;
    font-family: 'Verdana', sans-serif;
    font-size: 80px;
    margin-bottom: 20px;
    text-indent: 30px;
    border-bottom: 3px solid #212121;
}
#about strong{
    font-weight: bold;
    color: #2196f3;
}
#about p{
    background-color: rgba( 255, 255, 255, 0.7);
    margin-top: 80px;
    padding: 25px 25px;
    font-family: 'Ubuntu', sans-serif;
    text-indent: 20px;
    line-height: 20px;
    
    /*BORDER RADIUS*/
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
/*CONTACT PAGE*/
    h1{
    width:500px;
    font-family: 'Verdana', sans-serif;
    font-size: 80px;
    padding-top: 100px;
    margin-bottom: 20px;
    margin-left: 50px;
    text-indent: 30px;
    border-bottom: 3px solid #212121;
    }
    
    form#contact {
    width: 580px;
    margin: 0 auto;
    padding-top: 50px;    
}
    
form#contact label {
    width: 135px;
    margin-right: 20px;
    font-family: 'Fjalla One', sans-serif;
    color: #212121;
    font-size: 30px;
    float: left;
    }    
form#contact input[type=text]{
    width: 420px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    border: 1px solid #000;
    float: right;
}    
form#contact ul li, form#contact ul li p {
    display: inline-block;
}
form#contact ul li p.error {
	margin-bottom: 10px;
     font-family: 'Raleway', sans-serif;
     color: #ff0000;
	font-weight:bold;
}    
form#contact input[type=text], form#contact label{
    height: 30px;
    margin-bottom: 30px;
}

textarea#message {
    width: 419px;
    height: 80px;
    display: inline;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}
    
::-webkit-input-placeholder {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}
    
::-moz-placeholder {  
    font-family: 'Raleway', sans-serif;
    font-size: 16px; 
}

:-ms-input-placeholder {  
    font-family: 'Raleway', sans-serif;
    font-size: 16px;  
}
    
form#contact button {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    margin-top: 20px;
	background: #212121;
	border: none;
	color: #FFF;
	padding: 6px 20px;
	cursor: pointer;
    display: block;
    float: right;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
	border-radius: 7px;
    margin-right: 10px;
    -webkit-transition: color 0.7s; 
     -moz-transition: color 0.7s;
     -o-transition: color 0.7s;
     transition: color 0.7s;
}
form#contact button:hover{
    color: #2196f3;
    -webkit-transition: color 0.4s; 
     -moz-transition: color 0.4s;
     -o-transition: color 0.4s;
     transition: color 0.4s;
}

/*LOAD CIRCLE ANIMATION*/
@keyframes fadeLoad{
  0%{
        opacity: 0;
    }
45%{
    opacity: 1;
}    
90%{
    opacity: 1;
}    
    100%{
        opacity: 0;
    }
}
@-webkit-keyframes fadeLoad{
  0%{
        opacity: 0;
    }
45%{
    opacity: 1;
}    
90%{
    opacity: 1;
}    
    100%{
        opacity: 0;
    }
}
@-moz-keyframes fadeLoad{
  0%{
        opacity: 0;
    }
45%{
    opacity: 1;
}    
90%{
    opacity: 1;
}    
    100%{
        opacity: 0;
    }
}
@-o-keyframes fadeLoad{
  0%{
        opacity: 0;
    }
45%{
    opacity: 1;
}    
90%{
    opacity: 1;
}    
    100%{
        opacity: 0;
    }
}
/*API CONTAINER*/
@keyframes fadeIn{
  0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn{
  0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@-moz-keyframes fadeIn{
  0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@-o-keyframes fadeIn{
  0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
/*GLOBES*/
@keyframes popUp{
  0%{
    transform: scale(0);  
   }
75%{ 
    transform: scale(0); 
}    
90%{
    transform: scale(1.1);
}    
    
98%{
    transform: scale(0.75);
}    
    100%{
     transform: scale(1);
    }
}
@-webkit-keyframes popUp{
  0%{
    transform: scale(0);  
   }
75%{ 
    transform: scale(0); 
}    
90%{
    transform: scale(1.1);
}    
    
98%{
    transform: scale(0.75);
}    
    100%{
     transform: scale(1);
    }
}
@-moz-keyframes popUp{
  0%{
    transform: scale(0);  
   }
75%{ 
    transform: scale(0); 
}    
90%{
    transform: scale(1.1);
}    
    
98%{
    transform: scale(0.75);
}    
    100%{
     transform: scale(1);
    }
}
@-o-keyframes popUp{
  0%{
    transform: scale(0);  
   }
75%{ 
    transform: scale(0); 
}    
90%{
    transform: scale(1.1);
}    
    
98%{
    transform: scale(0.75);
}    
    100%{
     transform: scale(1);
    }
}
/*FONTS*/
@keyframes fadeInTwo{
  0%{
        opacity: 0;
    }
  50%{
        opacity: 0;
  }
    100%{
        opacity: 1;
    }
}
@-webkit-keyframes fadeInTwo{
  0%{
        opacity: 0;
    }
  50%{
        opacity: 0;
  }
    100%{
        opacity: 1;
    }
}
@-moz-keyframes fadeInTwo{
  0%{
        opacity: 0;
    }
  50%{
        opacity: 0;
  }
    100%{
        opacity: 1;
    }
}
@-o-keyframes fadeInTwo{
  0%{
        opacity: 0;
    }
  50%{
        opacity: 0;
  }
    100%{
        opacity: 1;
    }
}
    
}
    
/*TABLET*/
@media screen and (min-width:600px) and (max-width:999px){
    body {
    background-color: #323232;
    background-image: url(/images/footer_lodyas.png);
 }
 #logo {
    width: 60%; 
    height: 300px;
    margin: 0 auto;
    background-image: url(/images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
	background-size:contain;
}
 #logo h1{ 
	text-indent: -9999px;
	border-bottom: none; 	
}         
  section.wrapper {
    position: relative;
	width: 100%;
    margin: 0 auto;
	height: 750px;
    background-color: #FFF;
    background-image: url(/images/bg_toronto.png);
    background-position: center;
    background-repeat: no-repeat;  
    background-size: cover;    
      
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
}

 nav{
    position: fixed;
	top: 0;
	width: 100%;
	height:40px;
    background-color: #FFF;
    z-index: 9999;
     
     -webkit-box-shadow: 2px 2px 2px #323232;
     -moz-box-shadow: 2px 2px 2px #323232;
     box-shadow: 2px 2px 2px #323232;
 }   
#nav{
    width: 100%;
    margin: 0 auto;
    position: relative;
}   
ul#nav li{
    float: left;
}
ul#nav li a{
    font-family: 'Raleway', sans-serif;
    text-decoration:none;
    text-align: center;
    vertical-align:middle;
    display:inline-block;
    width:95px;
    height:40px;
    padding:0 10px 0 10px;
    color:#FF5722;
    line-height:40px;
    font-weight:bold;
    outline:none;
    /*TRANSITION*/
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease; 
}    
ul#nav li a:hover {
    color: #FFF;
    background-color: #FF5722;
   }

ul#nav a.active {
    color: #ffffff;
    background: #FF5722;
    line-height: 40px;
   }  
    
.displayNone {
    display: none; 
}
/***********WEATHER CONDITIONS AND WEATHER DIVS************/
#apiGlobeContainer  {
    width:100%;
    height: auto;
    margin: 15px auto;
    text-align: center;
	
}

#temperature, #condition{
width: 100px;
height: 100px;

-webkit-border-radius: 60px;
-moz-border-radius: 60px;    
-o-border-radius: 60px;
border-radius: 60px;    
border: 8px solid #2196f3;
background-color: rgba(255, 255, 255, 0.5);
/*background-color: rgba(33, 150, 243, 0.3);*/
display: inline-block;
line-height: 100px;
vertical-align: middle;
font-family: 'Fjalla One', sans-serif;
color: #FFDB4D;
font-size: 30px;
font-weight: bold;
-webkit-text-stroke: 0.5px black;
-moz-text-stroke: 0.5px black;
text-stroke: 0.5px black;
  
}    
 #condition{
	 margin-left: 20px;
 }   
/**********APP Form**********/

form#add-content {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
    
label {
    width: 234px;
    margin: 0 auto;
    font-family: 'Fjalla One', sans-serif;
    color: #212121;
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}  
	
form fieldset input[type=text]{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	width: 50%;
    height: 25px;
	margin-bottom: 10px;
    border: 1px solid #000;
    line-height: 20px;
    text-align: center;
}    
    
form fieldset button {
     margin-right: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	background: #212121;
	border: none;
	color: #FFF;
	padding: 6px 20px;
	cursor: pointer;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
	border-radius: 7px;
}


#buttons{
	display: inline-block;
}
#errorMessage {
	width: 500px;
	margin: 20px auto;
	font-family: 'Raleway', sans-serif;
    color: #ff0000;
	font-weight:bold;
	text-align: center;
}
/**********Footer**********/
footer {
    width: 100%;
	height:30px;
    position: absolute;
	bottom: 0;
	background-color: #000000;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
    }    
footer p {
    float: left;
	font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
	color: #FFF;
	line-height: 30px;
    margin-left: 20px;
}    
 #social {
	float: right;
	line-height: 30px;
     margin-right: 20px;
}
#social a {
    text-decoration: none;
	color: #FFF;	
} 
/*ABOUT PAGE*/ 
 #about{
     width: 80%;
     margin: 0 auto;
     
 }
#about h1{
    width:340px;
    font-family: 'Verdana', sans-serif;
    font-size: 80px;
    margin-bottom: 20px;
    text-indent: 30px;
    border-bottom: 3px solid #212121;
}
#about strong{
    font-weight: bold;
    color: #2196f3;
}
#about p{
    background-color: rgba( 255, 255, 255, 0.7);
    margin-top: 80px;
    padding: 25px 25px;
    font-family: 'Ubuntu', sans-serif;
    text-indent: 20px;
    line-height: 20px;
    
    /*BORDER RADIUS*/
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}    

 /*CONTACT PAGE*/
    h1{
    width:500px;
    font-family: 'Verdana', sans-serif;
    font-size: 80px;
    padding-top: 100px;
    margin-bottom: 20px;
    margin-left: 50px;
    text-indent: 30px;
    border-bottom: 3px solid #212121;
    }
    
    form#contact {
    width: 580px;
    margin: 0 auto;
    padding-top: 50px;    
}
    
form#contact ul li label {
    width: 135px;
    margin-right: 20px;
    font-family: 'Fjalla One', sans-serif;
    color: #212121;
    font-size: 30px;
    float: left;
    }    
form#contact ul li input[type=text]{
    width: 420px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    border: 1px solid #000;
    float: right;
}    
form#contact ul li, form#contact ul li p {
    display: inline-block;
}
form#contact ul li p.error {
	margin-bottom: 10px;
     font-family: 'Raleway', sans-serif;
     color: #ff0000;
	font-weight:bold;
}    
form#contact ul li input[type=text], form#contact ul li label{
    height: 30px;
    margin-bottom: 30px;
}

textarea#message {
    width: 419px;
    height: 80px;
    display: inline;
}
    
form#contact button {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	background: #212121;
	border: none;
	color: #FFF;
    margin-top: 20px;
	padding: 6px 20px;
	cursor: pointer;
    display: block;
    float: right;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
	border-radius: 7px;
   
}
   
    
    
}

/*MOBILE*/
@media screen and (max-width:599px){
  body {
    background-color: #fc6b3d;
    background-image: url(/images/footer_lodyas.png);
 }
 #logo {
    width: 60%; 
    height: 300px;
    margin: 0 auto;
    background-image: url(/images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#logo h1{ 
	text-indent: -9999px;
	border-bottom: none; 	
}    
  section.wrapper {
    position: relative;
	width: 100%;
    height: 100%;
    margin: 0 auto;
	background-color: #FFF;
    background-image: url(/images/bg_toronto.png);
    background-position: center;
    background-repeat: no-repeat;  
    background-size: cover;     
      
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
}
/*NAVIGATION*/    
 nav{
    width: 100%;
	margin: 0 auto;
	border-bottom: 3px #FF5722  solid;
    background: #FFFFFF;
    z-index: 2;
}
 #nav{
    width: 40%;
    margin: auto;
	text-align: center; 
 }
 ul#nav li {
    margin: 0 auto 20px auto;
    height:25px;
    line-height: 25px;
    vertical-align: middle;
    border-bottom: 3px #FF5722  solid;
 }
ul#nav li:last-child{
    border-bottom: none;
}    
 ul#nav li a{
    width:95px;
    height:40px;
    padding:3px;
    font-family: 'Raleway', sans-serif; 
    font-size: 20px; 
    font-weight: bold;
    text-decoration:none;
    color:#FF5722; 
 }
ul#nav a.active {
    color: #ffffff;
    background: #FF5722;
    
   }
 /*HIDE/SHOW MENU TRANSITION*/ 
div#toggle, div#toggle a {
	width:50px;
	height: 50px;
	margin: 0 auto 15px auto;
	
	display:block;
	text-indent: -9999px;
}
div#toggle { 
  background:url(../images/menu.png) center center no-repeat;
  border: 3px solid #FF5722;
}
div#toggle a{
	padding-top: 15px;
}   

    
    /***********WEATHER CONDITIONS AND WEATHER DIVS************/
#apiGlobeContainer  {
    width:100%;
    height: auto;
    margin: 15px auto;
    text-align: center;
	/*display: none;*/
}
.ui-progressbar{
	width: 70%;
	margin: 10px auto;
}	
#temperature, #condition{
width: 100px;
height: 100px;
margin-left: 20px;
-webkit-border-radius: 60px;
-moz-border-radius: 60px;    
-o-border-radius: 60px;
border-radius: 60px;    
border: 8px solid #2196f3;
background-color: rgba(255, 255, 255, 0.5);
/*background-color: rgba(33, 150, 243, 0.3);*/
display: inline-block;
line-height: 100px;
vertical-align: middle;
font-family: 'Fjalla One', sans-serif;
color: #FFDB4D;
font-size: 30px;
font-weight: bold;
-webkit-text-stroke: 0.5px black;
-moz-text-stroke: 0.5px black;
text-stroke: 0.5px black;
}        
/**********APP Form**********/

form#add-content {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 60px;
    padding-bottom: 60px;
    text-align: center;
}
    
label {
    width: 234px;
    margin: 0 auto;
    font-family: 'Fjalla One', sans-serif;
    color: #212121;
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}  
	
form fieldset input[type=text]{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	width: 80%;
    margin: 0 auto 20px auto;
    height: 25px;
    border: 1px solid #000;
    line-height: 20px;
    text-align: center;
    display: block;
}    
    
form fieldset button {
    width: 92px;
    float: left;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	background: #212121;
	border: none;
	color: #FFF;
	padding: 6px 20px;
	cursor: pointer;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
	border-radius: 7px;
}
#buttons{
	width:200px;
	text-align: center;
	margin: 0 auto;
	
}    
 #send,#reset{
   margin: 0 auto;
 }

 #reset{
 	margin-left: 10px; 
 }
  #errorMessage {
	width: 200px;
	margin: 20px auto;
	 font-family: 'Raleway', sans-serif;
     color: #ff0000;
	font-weight:bold;
    ext-align: center;
}
  
/**********Footer**********/
footer {
    width: 100%;
	height:30px;
    position: absolute;
	bottom: 0;
	background-color: #000000;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 15px 15px;
    border-radius: 0 0 15px 15px;
    }    
footer p {
    float: left;
	font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
	color: #FFF;
	line-height: 30px;
    margin-left: 20px;
}    
 #social {
	float: right;
	line-height: 30px;
     margin-right: 20px;
}
#social a {
    text-decoration: none;
	color: #FFF;	
}      
 /*ABOUT PAGE*/ 
 #about{
     width: 80%;
     margin: 0 auto;
     padding-top: 50px;
     padding-bottom: 30px;
 }
#about h1{
    width:340px;
    font-family: 'Verdana', sans-serif;
    font-size: 80px;
    margin-bottom: 20px;
    text-indent: 30px;
    border-bottom: 3px solid #212121;
}
#about strong{
    font-weight: bold;
    color: #2196f3;
}
#about p{
    background-color: rgba( 255, 255, 255, 0.7);
    margin-top: 80px;
    margin-bottom: 30px;
    padding: 25px 25px;
    font-family: 'Ubuntu', sans-serif;
    text-indent: 20px;
    line-height: 20px;
    
    /*BORDER RADIUS*/
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
} 
    /*CONTACT PAGE*/
    h1{
    width:350px;
    font-family: 'Verdana', sans-serif;
    font-size: 60px;
    padding-top: 100px;
    margin-bottom: 20px;
    margin: 0 auto;
    text-indent: 17px;
    border-bottom: 3px solid #212121;
    }
    
    form#contact {
    width: 92%;
    margin: 0 auto;
    padding: 50px 0;  
}
    
form#contact label {
    width: 100%;
    margin: 0 auto;
    font-family: 'Fjalla One', sans-serif;
    color: #212121;
    font-size: 30px;
    display: block;
    }    
form#contact input[type=text]{
    width: 100%;
    margin: 0 auto;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    border: 1px solid #000;
    display: block;
   
}    
form#contact ul li {
    width: 100%;
    margin: 0 auto;
    display: inline-block;
}
form#contact ul li, form#contact ul li p {
    display: inline-block;
}
form#contact ul li p.error {
	margin-bottom: 10px;
     font-family: 'Raleway', sans-serif;
     color: #ff0000;
	font-weight:bold;
}    

form#contact input[type=text], form#contact label{
    height: 30px;
    text-align: center;
    margin-bottom: 30px;
}

form#contact textarea#message {
    width: 100%;
    height: 100px;
    margin: 0 auto;
}
    
form#contact button {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	background: #212121;
	border: none;
	color: #FFF;
    padding: 6px 20px;
	cursor: pointer;
    display: block;
    margin: 20px auto;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
	border-radius: 7px;
}

}
    
    
    
    


