@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color: #000;
}

body {
  margin: 0;
  overflow-x: hidden;
}

*,
html {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
}

* {
  font-size: 1rem;
  font-weight: 300;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: .25rem;
}

.container.sticker-container .sticker {
  grid-column: span 12;
  max-width: 100%;
}

@media screen and (min-width:560px) {
  .container.sticker-container .sticker {
    grid-column: span 6;
    grid-column-gap: .5rem;
  }
}

@media screen and (min-width:768px) {
  .container.sticker-container {
    grid-column-gap: 1rem;
  }
}

.column-center {
  grid-column: span 12;
  max-width: 100%;
}

@media screen and (min-width:768px) {
  .column-center {
    grid-column: 2/12;
  }
}

@media screen and (min-width:1280px) {
  .column-center {
    grid-column: 3/11;
  }
}

.column-max {
  grid-column: span 12;
}

header {
  max-width: 100%;
  height: 100vh;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background-image: url(./../images/bg.jpg);
  background-size: cover;
  background-position: center;
}

.cover.light {
  filter: blur(.5px) grayscale(12%) brightness(62.5%);
}

.logo {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  height: 200px;
  width: 20%;
  filter: drop-shadow(0 0 5px #ffffff);
  background-image: url(./../images/logo.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}

.title {
  z-index: 5;
  align-self: center;
  padding: .5rem;
  max-width: 960px;
  text-align: center;
}

@media screen and (min-width:320px) {
  .title {
    padding: 2rem;
  }
}

.title h1 {
  text-shadow: 1px 2px 6px #212121;
  font-size: 2rem;
  line-height: .8;
  color: #fff;
  letter-spacing: 1px;
}

@media screen and (min-width:490px) {
  .title h1 {
    letter-spacing: 3px;
    font-size: 2.5rem;
  }
}

@media screen and (min-width:510px) {
  .title h1 {
    font-size: 3.25rem;
  }
}

@media screen and (min-width:768px) {
  .title h1 {
    font-size: 4rem;
  }
}

.title h1 small {
  margin-top: 24px;
  display: block;
  font-size: 1.50rem;
  letter-spacing: 2px;
}

@media screen and (min-width:490px) {
  .title h1 small {
    margin-top: 50px;
    font-size: 1.90rem;
    letter-spacing: 4px;
  }
}

@media screen and (min-width:510px) {
  .title h1 small {
    margin-top: 50px;
    font-size: 2.10rem;
    letter-spacing: 4px;
  }
}

@media screen and (min-width:768px) {
  .title h1 small {
    margin-top: 50px;
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
}

.title .separator {
  background: #fff;
  height: 2px;
  width: 70px;
  margin: auto;
}

@media screen and (max-height:500px) {
  .title .separator {
    display: none;
  }
}

.move-down {
  position: absolute;
  left: calc(50% - .5rem);
  bottom: 5vh;
  display: block;
  text-align: center;
  font-size: 1.25rem;
  z-index: 100;
  text-decoration: none;
  text-shadow: 0;
  width: 1rem;
  height: 1rem;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, 0) rotate(45deg);
  animation: fade_move_down 2s ease-in-out infinite;
}

@keyframes fade_move_down {
  0% {
    transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

.navigation-icon {
  width: 36px;
  height: 36px;
  position: fixed;
  margin: 32px 24px;
  bottom: 0;
  right: 0;
  transform: scale(1.25);
  transition: .5s ease-in-out;
  background: #286583;
  border-radius: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
  cursor: pointer;
  z-index: 100;
}

.navigation-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 22px;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 7px;
  transform: rotate(0);
  transition: .25s ease-in-out;
}

.navigation-icon span:nth-child(1) {
  top: 10px;
}

.navigation-icon span:nth-child(4) {
  top: 24px;
}

.navigation-icon span:nth-child(2),
.navigation-icon span:nth-child(3) {
  top: 17px;
}

.navigation-icon.open span:nth-child(1) {
  top: 17px;
  width: 0%;
  left: 50%;
}

.navigation-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation-icon.open span:nth-child(4) {
  top: 16px;
  width: 0%;
  left: 50%;
}

@media screen and (min-width:560px) {
  .navigation-icon {
    display: none;
  }
}

navigation {
  display: block;
  position: fixed;
  height: auto;
  width: 100vw;
  top: -100vh;
  background: #fff;
  left: 0;
  z-index: 90;
  transition: top .8s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

navigation.shown {
  top: 0;
}

navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}

navigation ul li {
  display: inline-block;
  transition: all .5s ease;
  flex: 1 1 auto;
  padding: .75rem .5rem;
}

navigation ul li:focus,
navigation ul li:hover {
  background: #286583;
  color: #fff;
}

navigation ul li.selected {
  border-bottom: 3px solid #286583;
}

navigation ul li a,
navigation ul li a:active,
navigation ul li a:hover,
navigation ul li a:link,
navigation ul li a:visited {
  letter-spacing: 1px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}

@media screen and (min-width:560px) {
  navigation ul {
    flex-direction: row;
  }
}

h2 {
  font-size: 3.25rem;
  letter-spacing: -.1rem;
  margin-left: -4px;
}

h2::after {
  display: block;
  content: '';
  width: 50%;
  max-width: 130px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,47,176,1) 0%, rgba(10,110,122,1) 50%, rgba(0,232,167,1) 100%);
  position: relative;
  top: 12px;
  left: 4px;
}

section li,
section p {
  line-height: 1.35;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  text-align: justify;
}

a:link {
  color: #1556d6;
}

a:visited {
  color: #0943b4;
}

a,
a:link,
a:visited {
  cursor: pointer;
  text-decoration: none;
}

strong {
  font-weight: 500;
}

footer,
section {
  padding: 14px 8px;
}

@media screen and (min-width:560px) {
  footer,
	section {
    padding: 20px 12px;
  }
}

.scalable-container {
  display: flex;
  flex-flow: row wrap;
}

.scalable-media-object {
  flex: 0 0 auto;
  padding: 25px;
  max-width: calc(100% - 50px);
  flex-basis: 100%;
  align-self: center;
  text-align: center;
}

@media screen and (min-width:560px) {
  .scalable-media-object {
    max-width: 136px;
    flex-basis: 120px;
  }
}

.scalable-max {
  flex: 0 0 auto;
  max-width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}

@media screen and (min-width:560px) {
  .scalable-max {
    text-align: left;
    padding-left: 1.25vw;
  }
}

.picture {
  width: 120px;
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}

.scalable-media-logo {
  flex: 0 0 auto;
  padding: 4px 8px 4px 0;
  max-width: 64px;
  flex-basis: 64px;
  text-align: center;
  align-self: center;
  box-sizing: border-box;
}

.scalable-media-logo img {
  width: 56px;
  height: auto;
}

.scalable-title {
  flex: 0 0 auto;
  max-width: 100%;
  flex-grow: 1;
  flex-basis: 0;
}

@media screen and (min-width:560px) {
  .scalable-title {
    padding-left: .75vw;
  }
}

.scalable-title h3 {
  font-size: 1.25rem;
}

.scalable-title h3 small {
  font-size: 1.0rem;
  padding: 4px 0px 0px 0;
  display: block;
}

.scalable-title h3 small+small {
  font-size: 1.0rem;
  color: #424242;
}

.sticker {
  display: flex;
  flex-direction: column;
  align-self: center;
  position: relative;
  width: 100%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
  border-radius: 4px;
  margin: 4px 0;
  overflow: hidden;
  transition: all .3s ease;
  height: calc(100% - 8px);
}

@media screen and (min-width:560px) {
  .sticker {
    max-width: 50%;
  }
}

@media screen and (min-width:800px) {
  .sticker {
    max-width: 33.3333%;
  }
}

.sticker .content,
.sticker .media {
  box-sizing: border-box;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 4px 8px;
  width: 100%;
}

.sticker .media {
  height: 230px;
  padding: 0;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 0 0;
}

.sticker .media-contain {
  height: 230px;
  padding: 0;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: 50% 50%;
}

.image {
  width: 100%;
  padding: 0;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: 50% 50%;
}

.sticker h3 {
  font-size: 1.0rem;
  margin: 6px;
  color: #000;
}

.sticker h3 small {
  display: block;
  font-size: .8rem;
  color: #424242;
}

.sticker:hover {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .14), 0 1px 7px 0 rgba(0, 0, 0, .12), 0 3px 1px -1px rgba(0, 0, 0, .2);
}

.content-with-margin {
  margin-left: 64px;
  margin-top: -24px;
}

@media screen and (min-width:560px) {
  .content-with-margin {
    margin-left: calc(.75vw + 64px);
  }
}

.content-with-margin p {
  margin-bottom: 8px;
}

.content-with-margin ul {
  padding-left: 12px;
  margin-top: 8px;
  list-style: none;
}

.content-with-margin ul li:before {
  content: "-";
  position: absolute;
  margin-left: -12px;
}

section h1 {
  font-size: 3rem;
  margin-bottom: 8px;
  margin-top: 16px;
}

section h1 small {
  display: block;
  font-size: 1.50rem;
  color: #424242;
}

.social-icon,
.social-icon:link,
.social-icon:visited {
  color: #1556d6;
  cursor: pointer;
}

.social-icon+.social-icon,
.social-icon+.social-icon:link,
.social-icon+.social-icon:visited,
.social-icon:link+.social-icon,
.social-icon:link+.social-icon:link,
.social-icon:link+.social-icon:visited,
.social-icon:visited+.social-icon,
.social-icon:visited+.social-icon:link,
.social-icon:visited+.social-icon:visited {
  padding-left: 4px;
}

.go_home {
  background: none;
  color: #000000;
  padding: 12px 0px 10px 0px;
  border: 1px solid #000000;
  outline: none;
  border-radius: 7px;
  width: 150px;
  font-size: 15px;
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
  display: block;
  margin-bottom: 40px;
  margin-top: 25px;
  font-weight: 400;
}

.go_home:hover {
  color: #286583;
  border-color: #286583;
  cursor: pointer;
  opacity: 1;
}

footer {
  background: linear-gradient(180deg, #f7f7f7 0, #f0f0f0 100%);
  margin-top: 44px;
}

footer a,
footer a:link,
footer a:visited,
footer p {
  font-size: .8rem;
  color: #666;
  line-height: 1.4;
}

footer a {
  font-weight: 400;
}