@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Open + Sans&subset=latin,
  latin-ext);
@import url("https://fonts.googleapis.com/css?family=Ubuntu&subset=latin-ext");
/**********************************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* !CSS RESET */
/**********************************************************************************************************************/
/* SELECTIONS KILL OUT */
:focus {
  outline: 0;
}
::selection {
  background-color: transparent;
}
::-moz-selection {
  background-color: transparent;
}
::-webkit-selection {
  background-color: transparent;
}

/**********************************************************************************************************************/

html,
body {
  font-family: "Ubuntu", Verdana, sans-serif;
  box-sizing: border-box;
}

/**********************************************************************************************************************/

h1 {
  margin: 0.5rem;
  line-height: 1.5rem;
  color: #054683;
  font-size: 3rem;
  text-transform: uppercase;
}

h2 {
  margin: 0.75rem;
  line-height: 2rem;
  font-size: 1.5rem;
  color: #054683;
}

h3 {
  margin: 0.875rem;
  line-height: 1.5rem;
  font-size: 1.25rem;
  color: #054683;
}
h4 {
  margin: 1.25rem;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #054683;
}

h5 {
  line-height: 1.5rem;
  font-size: 0.75rem;
  color: #ffffff;
}

h6 {
  line-height: 1.5rem;
  font-size: 0.5rem;
  color: #ffffff;
}

p {
  margin: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #054683;
}

a {
  color: #054683;
  text-decoration: underline;
}

.text-link {
  margin: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

p:first-letter {
  color: #054683;
  font-size: 1.5rem;
}

p.initial-off:first-letter {
  font-size: 1rem;
  color: #054683;
}

b {
  font-weight: bold;
}

.center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.clear-fix {
  float: none;
  clear: both;
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.no-collapse {
  /*???*/
  padding: 0.1px;
}

/**********************************************************************************************************************/

.white-border-bottom {
  border-bottom: 5px solid #ffffff;
  border-bottom: 5px solid rgba(255, 255, 255, 1);
}

/* todo apply all remaining item
*/
.blue-border-bottom {
  border-bottom: 5px solid rgba(3, 169, 244, 1);
}

.blue-border-top {
  border-top: 5px solid rgba(3, 169, 244, 1);
}

.blue-border-left {
  border-left: 5px solid rgba(3, 169, 244, 1);
}

/**********************************************************************************************************************/

.fixed-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 9rem;
  background: rgba(3, 169, 244, 1);
  -webkit-transition-property: top;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-property: top;
  transition-duration: 1s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

.fixed-header-bar * {
  box-sizing: border-box;
}

.header-container {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.header-container a {
  text-decoration: none;
}

.logo {
  padding: 2rem 0rem 1rem 1rem;
  text-align: left;
}

.logo h1 {
  /*font-family: 'Zeyada', cursive;*/
  margin: 0;
  line-height: 1rem;
  color: rgba(255, 255, 255, 1);
  font-size: 1.5rem;
}

.logo h2 {
  /*font-family: 'Zeyada', cursive;*/
  margin: 0.5rem;
  text-align: center;
}

.icons {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem 1rem 1rem 3rem;
  text-align: right;
  z-index: 9999;
}
.icons a {
  display: block;
  font-size: 0.875rem;
  text-decoration: none;
  color: #ffffff;
  transform: scale(1);
  -webkit-transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: linear;
  transition-delay: 0s;
  cursor: pointer;
}
.icons a:hover {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
}

.icons li {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  float: left;
}

/**********************************************************************************************************************/
section.module.content {
  box-sizing: border-box;
}

section.module.content {
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.1);
}

section.module:first-of-type {
  background: rgba(3, 169, 244, 1);
}

section.module:last-of-type {
  margin-bottom: 0;
}

/**********************************************************************************************************************/

.container {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.column {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.frame {
  position: relative;
  width: 100%;
  min-height: 1px;
}

.frame > img {
  max-width: 100%;
  height: auto;
}

.main-title {
  position: absolute;
  width: 100%;
  height: auto;
}

.main-title h1 {
  margin: auto;
  text-align: center;
  color: #ffffff;
}

.title {
  position: absolute;
  width: 100%;
  height: 2rem;
  top: 0em;
  left: 0;
  background-color: rgba(3, 169, 244, 1);
  z-index: 9;
  opacity: 0;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

.title h2 {
  margin: auto;
  text-align: center;
  color: #ffffff;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0rem;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9;
  -webkit-transition-property: height;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-property: height;
  transition-duration: 1s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

.caption h2 {
  text-align: center;
  color: #8ba57b;
}

/**********************************************************************************************************************/

.bar {
  margin: 0 0 0 20%;
  width: 75%;
}

.bar li {
  padding-left: 1.5em;
  padding-right: 1.5em;
  padding-bottom: 1.5em;
  display: inline-block;
  float: left;
}

.bar li img {
  max-width: 100%;
  height: auto;
}

.list {
  width: 100%;
  display: table;
}

.list .left-side {
  width: 50%;
  overflow: hidden;
  vertical-align: top;
  display: table-cell;
}

.list .right-side {
  width: 50%;
  overflow: hidden;
  vertical-align: top;
  display: table-cell;
}

/**********************************************************************************************************************/

.animation {
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

#animation-01 {
  animation-delay: 1s;
}
#animation-02 {
  animation-delay: 2s;
}
#animation-03 {
  animation-delay: 3s;
}
#animation-04 {
  animation-delay: 4s;
}
#animation-05 {
  margin-top: 50px;
  animation-delay: 5s;
}
#animation-06 {
  animation-delay: 6s;
}
#animation-07 {
  animation-delay: 7s;
}
#animation-08 {
  animation-delay: 8s;
}
#animation-09 {
  animation-delay: 9s;
}
#animation-10 {
  animation-delay: 10s;
}
#animation-11 {
  animation-delay: 11s;
}
#animation-12 {
  animation-delay: 12s;
}

.animation-button {
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

/**********************************************************************************************************************/

footer.module.content {
  border-top: 5px solid #ffffff;
  position: relative;
  background: rgba(3, 169, 244, 1);
  height: 10rem;
}

footer.module.content .datafield {
  height: 8rem;
  padding: 1rem 0;
  width: 100%;
}

footer.module.content .datafield div {
  width: 33%;
  float: left;
  text-align: center;
}

/**********************************************************************************************************************/
@media screen and (min-width: 1024px) {
  html,
  body {
    font-size: 100%;
  }
}

@media screen and (max-width: 1023px) {
  html,
  body {
    font-size: 80%;
  }

  .fixed-header-bar {
    position: relative;
  }

  .logo {
    padding: 1rem 0rem 1rem 1rem;
  }

  .logo h1 {
    line-height: 1rem;
    font-size: 1rem;
  }
  .logo h2 {
    line-height: 1rem;
    font-size: 1rem;
  }

  .logo h2 span {
    /*padding-right: 5rem;*/
  }

  .title h2 {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .padding-top-30 {
    padding-top: 30%;
  }
}
