@charset "UTF-8";
/* CSS Document */
/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }

.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
.fade-in.one {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}

.fade-in.two{
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}
body {
 background: #FFFFFF;
}

#logo {
	width: 20%;
	length: 20%;
}
.box {
	width: 80%;
margin-left: auto;
margin-right: auto;
}
.base {
	opacity: 1;
	width: 80%;
	margin: 0 auto;
	/*border:solid 3px #000000;*/
}
.mapouter {
	margin: 0 auto;
}
p {
	color: black;
}
#ima {
	margin: 0 auto;
	display: block;
}
nav {
	width: 80%;
	margin: 0 auto;
	color: black;
	/*border:solid 3px #000000;*/
}
a:link, a:visited {
	text-decoration: none;
	color: black;
}


a:hover, a:active {
	color: black;
  text-decoration: none;
}
#home {
	display: block;
	float: left;
}
#cont {
	display: block;
	float: left;
}
#banner {
	text-align: center;
}

#flag {
	display: block;
	float: right;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
li {
border: solid #000000 3px;
    background-color:#0098CB;
    color: black;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
li:active, li:hover {
	  background-color:#3DCEFF;
}
.ribbon {
	padding: 3px;
	width: 50px;
	height: 45px;
    position: fixed;
    top: 0px;
    right: 0px;
}
div.transbox {
    background-color: #ffffff;
    opacity: 0.6;
	width: 80%;
	margin: 0 auto;
}

div.transbox p {
	opacity: 1;
    font-weight: bold;
    color: #000000;
}

/*EMAIL*/

* {
    box-sizing: border-box;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
	margin: 0 auto;
	width: 80%;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}