/* Adorka */
@charset "UTF-8";

html,
body {
   margin:0;
   padding:0;
   min-height:100%;
   height:100%;
   font-family: 'Roboto Condensed', sans-serif;
   background-color: #fff;
}

.icon
{
  position: relative;
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
  color: rgb(0, 102, 151);
}

.icon:after
{
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background-color: transparent;
  content: '';
}

*
{
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#content
{
  position: relative;
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100vh;
}

.splashframe
{
  background-color: transparent;
  padding: .1em .6em;
  color: #fff;
  margin-top: 1em;
  border: 2px solid #fefefe;
}

#vert
{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.splash
{
  float: left;
  margin-left: 5%;
  width: 30%;
  position: relative;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  -webkit-box-shadow: 0 0 8px 2px rgba(50,50,50,.2);
  box-shadow: 0 0 8px 2px rgba(50,50,50,.2);
}

.splash:first-child
{
  margin-left: 0;
}

.splash > div
{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.splash:after
{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: ease-in-out 0.3s;
  background-color: rgba(0, 102, 151, .7);
}

.splash:hover:after{
	transition: ease-in-out 0.3s;
	background-color: rgba(0, 102, 151, .4);
}

.splash img
{
  display: block;
  width: 215px;
}

.bg-color-logo{
	width: 100%;
	margin-top: 30px;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #AECAE3;
}

#vert a:first-child .bg-color-logo {
	background-color: #2C97C5;
}

.btn
{
  margin-top: 1em;
  margin-bottom: 1em;
  float: right;
  display: block;
  text-align: center;
  padding: 1em .6em;
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 700;
}

.c
{
  color: #000;
  line-height: 1.5em;
}

.splash:hover .c
{
  display: block;
}

@media all and (max-width: 1050px) {
  .c, .btn
  {
    height: auto !important;
  }

  #vert
  {
    position: static;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    padding: 1em 0;
  }

  .splash
  {
    margin: 1em 0;
    width: 100%;
  }
}