.s-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.s-btn {
  padding: 13px 25px;
  border-radius: 6px;
  background-color: #cb110b;
  box-shadow: 0 15px 30px 5px rgba(59, 59, 57, 0.2);
  -webkit-transition: all 400ms cubic-bezier(.455, .03, .515, .955);
  transition: all 400ms cubic-bezier(.455, .03, .515, .955);
  color: #fff;
  font-size: 0.85em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.s-btn:hover {
  box-shadow: 0 15px 30px 5px rgba(59, 59, 57, 0.4);
}

.s-link {
  text-decoration: none;
}

.s-link:hover {
  border-bottom-width: 2px;
}

.s-link.mail {
  border-bottom: 1px solid #3b3b39;
  -webkit-transition: all 400ms cubic-bezier(.455, .03, .515, .955);
  transition: all 400ms cubic-bezier(.455, .03, .515, .955);
  color: #3b3b39;
}

.s-link.mail:hover {
  border-bottom: 2px solid #3b3b39;
}

.logo {
  margin-top: 80px;
  margin-bottom: 50px;
  margin-left: -22px;
}

.copy-text.company {
  margin-top: 30px;
  margin-bottom: 30px;
}

.copy-text.mgmt {
  display: inline-block;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 30px;
  clear: left;
}

.copy-text.mgmt.right {
  clear: right;
}

.wrapper {
  width: auto;
  margin-bottom: 40px;
  color: #3b3b39;
  font-size: 1em;
  line-height: 1.8;
}

.body {
  font-family: 'Open Sans', sans-serif;
}

.phone {
  border-style: solid;
  border-width: 0px 0px 1px;
  border-color: #eab05f #eab05f #3b3b39;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: #3b3b39;
  text-decoration: none;
}

.phone:hover {
  border-width: 0px 0px 1px;
  border-color: #eab05f;
}

@media screen and (max-width: 991px) {
  .s-container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .logo {
    margin-top: 50px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    margin-left: -18px;
  }

  .copy-text.company {
    margin-top: 30px;
  }

  .copy-text.mgmt {
    margin-top: 30px;
  }

  .wrapper {
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    padding-right: 60px;
    padding-left: 60px;
  }
}

