@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

html, body
{
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
}

*
{
box-sizing: border-box;
}

a
{
color: #fff;
}

.container
{
display: flex;
width: 100%;
height: 100vh;
}

.container .logo
{
position: fixed;
top: 0;
left: 50%;
transform: translate(-50%,0);
text-align: center;
padding-top: 30px;
z-index: 10;
}

.container .logo img
{
width: auto;
max-height: 90px;
}

.container .logo a img
{
transition: all .2s ease;
}

.container .logo a:hover img
{
opacity: 0.6;
}

.container .section
{
position: relative;
flex: 50%;
transition: all .5s ease;
overflow: hidden;
filter:grayscale(100%);

}

.container .section:hover
{
width: 100%;
height: 100%;
filter:grayscale(0);

}

.container .section::after
{
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 100%;
transition: all 1s ease;
background-color: rgba(0,0,0,0.1);
z-index: 1;
}

.container .section:hover::after
{
background-color: rgba(0,0,0,0.4);
}

.container .section:hover img
{
transform: scale(1.2);
}

.container .section img
{
position: absolute;
transition: all 1s ease;
width: 100%;
height: auto;
}

@media only screen and (max-width: 1024px) {

  .container .logo
  {
  background-color: #1578A9;
  height: 60px;
  width: 100%;
  padding: 5px 0;
  }

  .container .logo::after
  {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  }

  .container .logo img
  {
  position: relative;
  height: 50px;
  z-index: 2;
  }

  .container
  {
  flex-flow: column nowrap;
  padding-top: 60px;
  }

  .container .section
  {
  flex: 100%;
  height: 100vh;
  }

}

.content
{
position: relative;
display: flex;
align-items: center;
width: 100%;
height: 100%;
padding: 0 25px;
z-index: 2;
text-decoration: none;
}

.content.left
{
justify-content: flex-end;
}


.content.left .desc-block
{
text-align: right;
}

.content.right .desc-block
{
text-align: left;
}

.content .desc-block ._pageName a
{
display: inline-block;
text-decoration: none;
letter-spacing: 1px;
width: 150px;
font-size: 16px;
padding: 8px 14px;
border: 1px solid #fff;
font-weight: normal;
text-align: center;
text-transform: uppercase;
color: #fff;
}

.content .desc-block ._pageName a:hover
{
transition: all .3s ease-in-out;
background-color: #fff;
color: #000;
}

.content .desc-block ._pageDesc
{
font-size: 14px;
color: #fff;
}

@media only screen and (max-width: 1024px) {

  .content.left,
  .content.right
  {
  justify-content: center;
  }

  .content.left .desc-block,
  .content.right .desc-block
  {
  text-align: center;
  }

  .content .desc-block ._pageName a
  {
  font-size: 13px;
  font-weight: bold;
  width: 130px;
  }

  .content .desc-block ._pageDesc
  {
  font-size: 12px;
  }

}
