/* line 4, ../scss/style.scss */
* {
  box-sizing: border-box;
}

/* line 8, ../scss/style.scss */
html {
  height: 100%;
}

/* line 12, ../scss/style.scss */
body {
  padding: 0;
  margin: 0;
  font-size: 100%;
  height: 100%;
  font-family: "ITC Caslon No 224", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* line 21, ../scss/style.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 26, ../scss/style.scss */
.hero {
  background-color: #353b45;
  height: 450px;
}
/* line 30, ../scss/style.scss */
.hero .inner {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
/* line 39, ../scss/style.scss */
.hero .inner .logo {
  width: 100%;
  align-self: center;
  position: relative;
  flex-shrink: 0;
  max-width: 500px;
}
/* line 46, ../scss/style.scss */
.hero .inner .logo .pod {
  width: 60%;
  position: relative;
  left: 25px;
  top: 20px;
}
/* line 54, ../scss/style.scss */
.hero .inner .shadow {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
/* line 60, ../scss/style.scss */
.hero .inner .guys {
  align-self: flex-end;
}

/* line 66, ../scss/style.scss */
.content {
  padding: 80px 30px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
/* line 72, ../scss/style.scss */
.content h2 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 1.4em;
  color: #000;
  margin: 0 0 40px 0;
}
/* line 81, ../scss/style.scss */
.content .flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
/* line 87, ../scss/style.scss */
.content .flex-row div {
  width: calc(95% / 2);
  text-align: center;
  color: #000;
  font-weight: 700;
  font-size: 1em;
}
/* line 94, ../scss/style.scss */
.content .flex-row div a {
  text-decoration: none;
  color: #000;
  display: inline-block;
}
/* line 98, ../scss/style.scss */
.content .flex-row div a:hover > p {
  color: #fbb90f;
}
/* line 102, ../scss/style.scss */
.content .flex-row div a p {
  transition: all .2s ease-in-out;
}
/* line 106, ../scss/style.scss */
.content .flex-row div a .logo1 {
   width: 100%;
}
/* line 110, ../scss/style.scss */
.content .flex-row div a .logo2 {
    width: 100%;
}

/* line 131, ../scss/style.scss */
.copyright {
  text-align: center;
  padding: 0 30px;
  margin-top: 100px;
}
/* line 136, ../scss/style.scss */
.copyright p {
  margin: 0;
  color: #353b45;
}

@media only screen and (max-width: 800px) {
  /* line 144, ../scss/style.scss */
  .hero {
    height: 300px;
  }
  /* line 147, ../scss/style.scss */
  .hero .inner {

  }
  /* line 151, ../scss/style.scss */
  .hero .inner .logo {
    width: auto;
    flex-shrink: unset;
    left: 0;
  }
  /* line 157, ../scss/style.scss */
  .hero .inner .guys {
    align-self: center;
  }
  .content {
    max-width: 80%;
    padding: 60px 0;
  }
  .content h2 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 640px) {
  /* line 167, ../scss/style.scss */
  .hero .inner .logo {
      max-width: 80%;
  }

  /* line 172, ../scss/style.scss */
  .content .flex-row {
    flex-direction: column;
  }
  /* line 175, ../scss/style.scss */
  .content .flex-row div {
    width: 100%;
    margin-bottom: 20px;
  }
  /* line 179, ../scss/style.scss */
  .content .flex-row div:last-of-type {
    margin-bottom: 0;
  }

  /* line 185, ../scss/style.scss */
  .copyright {
    margin: 50px auto;
  }
}
