

@charset "UTF-8";

/*------------------------------------*    MAIN
\*------------------------------------*/


/* global box-sizing */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*:focus {

}
main{
  position: relative;
min-height: 100%;
width:100%;
}
section{
  position: relative;
	width:100%;
	height:auto;
}
body, html{
  font-family: copperplate, serif;
  font-weight: 300;
  font-style: normal;
}
body{
  background: -o-radial-gradient(50% 50%, 50% 50%, #113C64 0%, #062541 100%);
  background: radial-gradient(50% 50% at 50% 50%, #113C64 0%, #062541 100%);
  height:100%;
width:100%;

position: relative;
}

.page{
  width: 100%;
  height: 100vh;
}

.content {
	position: relative;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
	width:100%;
	height:100%;
	max-width: 1400px;
	margin:0px auto;
	padding:90px 50px 100px 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faux-half{
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(6, 37, 65, 0.81);
}

.left-col img{
  width: 100%;
  max-width: 380px;
  height: auto;
}

.left-col, .right-col{
  width: 50%;
}

h1{
  font-style: normal;
font-weight: 500;
font-size: 42px;
line-height: 50px;
color: white;
margin-bottom: 10px;
}
.desc{
  font-weight: 300;
font-size: 32px;
line-height: 38px;

color: #24A4ED;
}
.button-row{
  width: 100%;
  margin-top: 40px;
}
.button{
  border: 1px solid white;
  padding: 8px 12px;
  background-color: transparent;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  display: inline;
}


.button:hover{
  background-color: rgba(255,255,255,.2);
}
.right-col{
  padding-left: 40px;
}
.left-col{
  text-align: right;
    padding-right: 40px;
}

    /* MEDIA QUERY */
@media screen and (max-width: 1025px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 1023px) {}
@media (max-width:885px) {
  .page{
    height: initial;
  }
  .content{
    padding-bottom: 100px;
  }
  .left-col, .right-col{
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .left-col{
    padding-bottom: 40px;
  }
  .faux-half{
    display: none;
  }
}
@media screen and (max-width: 767px) {}
@media (max-width:575px) {
  h1{
    font-size: 24px;
    line-height: 42px;
  }
  .desc{
    font-size: 20px;
    line-height: 28px;
  }
  .left-col img{
    max-width: 230px;
  }
}
@media (max-width:350px) {}

