* {
  margin: 0;
  padding: 0;
}

html, body { height: 100%; }

body {
  background: url("../images/bg.jpg") center center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  box-sizing: border-box;
  font: 400 16px 'Figtree', sans-serif;
  padding-bottom: 107px;
  position: relative;
}

h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}

h2 span {
  color: #307dd1;
  font-weight: 700;
}

p {
  line-height: 1.6em;
  margin: 1em 0;
}

p:first-of-type { margin-top: 0; }

p:last-of-type { margin-bottom: 0; }

p.larger {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

img { vertical-align: middle; }

a { transition: 300ms; }

a.button {
	background-color: #307dd1;
	color: #fff !important;
	display: inline-block;
  font-weight: 700;
	padding: 15px 20px;
	text-decoration: none;
	text-transform: uppercase;
}

a.button:hover { background-color: #15579e; }

.button-wrapper { margin-top: 2em; }

main {
  align-items: center;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.main-logo { margin-bottom: 100px; }

.main-logo img {
  height: 290px;
  max-width: 100%;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin: 0 auto;
  max-width: 1600px;
}

.grid-item {
  background-color: rgba(255,255,255,0.9);
  padding: 30px;
}

.main-logo img,
.logo img { max-width: 100%; }

.copyright {
  color: #fff;
  padding: 40px 20px;
  position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  text-align: center;
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

.copyright a:hover { color: #307dd1; }

@media only screen  
and (max-width : 1199px) {

body { padding-bottom: 0; }

main {
  display: block;
  height: auto;
}

.copyright { position: relative; }

}

@media only screen  
and (max-width : 767px) {

.main-logo { margin-bottom: 60px; }

.grid { grid-template-columns: auto; }

}