html,
body {
  padding: 0;
  margin: 0;
}
body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}
.clearfix {
  clear: both;
}
.hero {
  background-color: #020024;
  background-size: cover;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  box-sizing: border-box;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #020024;
  background: linear-gradient(
    45deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(0, 62, 88, 1) 36%,
    rgba(18, 79, 105, 1) 60%,
    rgba(16, 69, 91, 1) 100%
  );
}
.hero section {
  z-index: 1;
}
.centered {
  z-index: 1;
}
.logo {
  margin: auto;
  display: block;
  width: 400px;
}
@media (max-width: 768px) {
  .centered {
    width: 100%;
  }
  .logo {
    width: 60%;
  }
}
.description {
  font-family: Raleway;
  color: #fff;
  text-align: center;
  line-height: 2.5em;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .description {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .description {
    font-size: 13px;
  }
}
.address {
  padding: 40px 10px;
}
.address .img {
  margin-bottom: 5px;
}
.social-text {
  bottom: 30px;
  left: 50%;
  z-index: 1;
  width: 100vw;
  text-align: center;
}
.social-text a, .social-text p {
  color: #c1c1c1;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Montserrat;
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 0 0 0 0.2em;
  margin: 0 10px;
  transition: color 0.4s;
}
.social-text a {
  font-weight: bold;
}

@media (max-width: 1170px) {
  .social-text a, .social-text p {
    font-size: 8px;
  }
}
.social-text a:hover {
  color: #fff;
}

.logo-third-party {
  -webkit-filter: grayscale(100%);
     -moz-filter: grayscale(100%);
          filter: grayscale(100%);
  transition: all 0.5s ease;
  width: 100px;
  padding: 10px 20px;
}

.logo-third-party:hover {
  -webkit-filter: grayscale(0%);
     -moz-filter: grayscale(100%);
          filter: grayscale(0);
}

.logo-block {
  padding: 100px 0px;
}

.default-text p, .default-text h1 {
  color: #c1c1c1;
  text-transform: uppercase;
  font-family: Montserrat;
  padding: 0 0 0 0.2em;
  margin: 0 10px;
  transition: color 0.4s;
}

.default-text p {
  text-decoration: none;
  letter-spacing: 0.2em;
  font-size: 9px;
}

.default-text h1 {
  /*letter-spacing: 0.2em;*/
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.logo-grid {
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0px;
}