h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, ul, li {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	list-style:none;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	outline:none;
  position: relative;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: block;
}

html, body {
	width:100%;
	height:100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif, "proxima-nova", "Helvetica Neue", Helvetica, Arial;
  font-style: normal;
  font-size:14px;
  line-height:16px;
	color:#1D2945;
	padding:0;
	margin:0;
	text-size-adjust: none ;
	-webkit-text-size-adjust:none;
	transition: background-color 1s ease;
  background:#1C313A;
}

img {
	display:block;
	max-width:100%;
	margin:0 auto;
}

a{
	color:#ffffff;
	text-decoration:none;
	transition:all .5s ease;
	-webkit-transition:all .5s ease;
	-moz-transition:all .5s ease;
	position: relative;
}

a:hover{
	color:#ffffff;
}

a.btn{
  text-transform:uppercase;
  display:inline-block;
  padding:12px 25px;
  border:1px solid #ffffff;
}

a.btn:hover{
  color:#000000;
  background:#ffffff;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Poppins', sans-serif, "proxima-nova", "Helvetica Neue", Helvetica, Arial;
  font-weight:normal;
}

h2{
  font-size:48px;
  line-height:1em;
  margin-bottom:20px;
}

h2 img{
  display:inline-block;
  vertical-align:middle;
  width:auto;
  max-width:inherit;
  height:48px;
  margin-right:10px;
}

p{
	font-family: 'Poppins', sans-serif, "proxima-nova", "Helvetica Neue", Helvetica, Arial;
  font-size:14px;
  line-height:24px;
  margin-bottom:30px;
}

.landing-page{
  width:100%;
  text-align:center;
  width:100%;
  max-width:1920px;
  padding:5rem 0;
  margin:0 auto;
  position:relative;
  z-index:0;
}

.landing-page .logo{
  position:absolute;
  left:-90px;
  top:-34px;
  height:280px;
}

.landing-page .logo img{
  width:auto;
  max-width:inherit;
  height:100%;
}

.landing-page-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  margin-bottom:2.5rem;
}

.landing-page-header-left{
  width:50%;
}

.landing-page-header-center{
  width:50%;
}

.landing-page-header-center-mobile{
  display:none;
}

.landing-page-header-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:2rem;
  width:50%;
}

.landing-page h1{
  font-size:2.8rem;
  line-height:1;
  font-weight:600;
  color:#ffffff;
  text-transform:uppercase;
}

.landing-page-header img{
  margin:0;
}

.landing-page-cols{
  float:left;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:5rem;
  margin-bottom:2.5rem;
}

.landing-page-col{
  width:25%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.landing-button{
  display:inline-block;
  text-transform:uppercase;
  font-weight:600;
  white-space:nowrap;
  padding:1rem 3rem;
  background: #005175;
  background: -moz-linear-gradient(30deg, #005175, #7AB82C);
  background: -webkit-linear-gradient(30deg, #005175, #7AB82C);
  background: linear-gradient(30deg, #005175 0,#7AB82C 100%);
  border-radius:0.35rem;
}

.landing-button:hover{
  background: #7AB82C;
  background: -moz-linear-gradient(30deg, #7AB82C, #005175);
  background: -webkit-linear-gradient(30deg, #7AB82C, #005175);
  background: linear-gradient(30deg, #7AB82C 0,#005175 100%);
}

.landing-page p{
  color:#ffffff;
}

.business-card{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  height:100vh;
  perspective: 1000px;
  overflow:hidden;
}

.business-card-wrapper{
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.business-card.business-card-flip .business-card-wrapper{
  transform: rotateY(180deg);
}

.business-card-front, .business-card-back{
  display:flex;
  justify-content:center;
  align-items:center;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.business-card-front{
  background:#1C313A;
}

/* Style the back side */
.business-card-back {
  background:#1C313A;
  transform: rotateY(180deg);
}

.business-card-front img, .business-card-back img{
  max-width:100%;
  max-height:100%;
}



@media screen and (max-width:2000px) { 
  .landing-page{
    padding:5rem;
  }
  .landing-page .logo{
    left: -10px;
  }
  .landing-page-cols{
    gap:2.5rem;
  }
}

@media screen and (max-width:1400px) { 
  .landing-page{
    padding:5rem 3rem;
  }
  .landing-page .logo{
    left: -20px;
    top: -6px;
    height: 220px;
  }
  .landing-page h1{
    font-size: 2.1rem;
  }
  .landing-page-cols{
    gap:2.5rem;
  }
}

@media screen and (max-width:1280px) { 
  .landing-page .logo{
    top: -3px;
  }
  .landing-button{
    padding: 1rem 1.5rem;
  }
  .landing-page-header-right{
    gap:1rem;
  }
}

@media screen and (max-width:900px) { 
  .landing-page{
    padding:3rem;
  }
  .landing-page .logo{
    left: -20px;
    top: -35px;
    height: 220px;
  }
  .landing-page-header-center{
    display:none;
  }
  .landing-page-header-center-mobile{
    display:block;
    margin-bottom:2rem;
  }
  .landing-page-cols{
    flex-wrap:wrap;
  }
  .landing-page-col{
    width:47%;
  }
}

@media screen and (max-width:767px) { 
  .landing-page{
    padding:2rem;
  }
  .landing-page .logo{
    height: 180px;
    left: -25px;
    top: -30px;
  }
  .landing-page-header{
    margin-bottom: 1.5rem;
  }
  .landing-page h1{
    font-size: 1.5rem;
  }
  .landing-page-col{
    width:100%;
  }
  .landing-button{
    width:100%;
    max-width:350px;
  }
}

@media screen and (max-width:490px) { 
  .landing-page-header{
    margin-top: 70px;
  }
}