@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700&subset=latin,latin-ext);

/*font-family: 'Open Sans', sans-serif;*/

body
{			
	background-color: #EEEEEE;	
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 16px;	
    color: #333333;
	padding:0px;
	margin:0px;	
}

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #444;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #444;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #444;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #444;
}

.awhite
{
	color:#EEEEEE;
}

a
{
	color: #333333;
}

td
{
	font-family: 'Lato', sans-serif;
	text-align:left;
}


h1
{
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 40px;	
	padding-top:0px;
	margin-top:0px;
}

h3
{
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 30px;	
	padding-top:0px;
	margin-top:0px;
}

p
{
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 20px;	
	padding-top:0px;
	margin-top:0px;
}


input
{
	border-radius :5px;	
	background: rgba(0,0,0,0.1);
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 0px solid #e0e0e0;
	outline-color: #f0f0f0;
	outline-style: none;
	
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 16px;	
}
textarea
{
	border-radius :5px;	
	background: rgba(0,0,0,0.1);
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 0px solid #e0e0e0;
	outline-color: #f0f0f0;
	outline-style: none;
	
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 16px;	
}

.buttonblue
{	
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 20px;	
	background-color:#58C1FF;       
	border: none;
	border-radius: 5px;		
	text-align: center;
	padding: 10px;		
	color: #FFFFFF;
	text-decoration: none;
	cursor:pointer;
}

.buttonblue2
{	
	font-family: 'Lato', sans-serif;
	font-weight: normal;
	font-size: 20px;	
	background-color:#58C1FF;       
	border: none;
	border-radius: 5px;		
	text-align: center;
	padding-left: 0px;		
	padding-right: 0px;		
	padding-top: 10px;		
	padding-bottom: 10px;		
	color: #FFFFFF;
	text-decoration: none;
	cursor:pointer;
}

.div-header
{
	margin:0px;
	padding:0px;
	background: #3679C7; /* Old browsers */	
	background: radial-gradient(ellipse at center, #68B4E8 0%,#235EAA 100%);
	display:block;	
}

.header-top-margin
{
	margin-top:100px;
}

.div-footer
{
	padding:20px;
	background-color: #464646;	
	color:#EEEEEE;
	font-size:16px;
	text-align:center;
}

.block-transparent
{
	display:block;	
	text-align:center;
	color:#FFFFFF;
	padding:30px;	
}


.block-screen1
{
	padding-top:20px;
	text-align:center;
	background-color:#FFFFFF;
}

.block-screen2
{
	padding-top:20px;
	text-align:center;
	background-color:#EEEEEE;
}

.block-screen3
{
	text-align:center;
	background-color:#EEEEEE;
}

.bubble-icon
{
	width:70px;
	border-radius:70px;
	margin:10px;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3); 
}
.bubble-icon:hover
{
	margin-top:5px;
	margin-bottom:15px;
	margin-left:10px;
	margin-right:10px;
	box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.3); 
}


/* ************************************************************* */
/* PHONE DEVICE */

@media (max-width: 800px), (max-height: 700px)
{	
	h1
	{	
		font-size: 35px;			
	}

	h3
	{
		font-size: 25px;	
	}

	.header-top-margin
	{
		margin-top:20px;
	}
}

@media (max-width: 400px)
{	
	h1
	{	
		font-size: 30px;			
		margin-bottom:5px;
	}

	h3
	{
		font-size: 20px;	
	}
	
	p
	{
		font-size: 16px;	
	}

	.header-top-margin
	{
		margin-top:10px;
	}
	
	.bubble-icon
	{
		width:60px;
		border-radius:60px;
		margin:5px;
		box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3); 
	}
	.bubble-icon:hover
	{
		margin-top:2px;
		margin-bottom:8px;
		margin-left:5px;
		margin-right:5px;
		box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3); 
	}
}



/* ************************************************************* */
/* ANIMATION */

.animated 
{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.animated-delay-1
{
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.fade-in-down
{
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown
{
	0% {
		opacity: 0;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown
{
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}


.fade-in-up
{
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}



