* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

ul {
  list-style: none;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

section::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(corp-page-1.jpeg);
  background-position: center 70%;
}

.hero .logo {
  width: 350px;
  padding-bottom: 10px;
}

.hero p {
  text-align: center;
}

.hero .arrow-down {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  padding: 10px;
}

.service {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(corp-page-2.jpeg);
  background-position: center 100%;
}

.service p {
  line-height: 40px;
  text-align: center;
  letter-spacing: 3px;
}

.company-info {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(corp-page-3.jpeg);
}

.company-info ul {
  width: 80%;
}

@media screen and (min-width: 1025px) {
  .company-info ul {
    width: 35%;
  }
}

.company-info li {
  font-size: 1.2rem;
  border-bottom: 2px solid #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.company-info .label {
  flex: 1;
}

.company-info .data {
  flex: 1;
  text-align: right;
}

.company-info-title {
  letter-spacing: 3px;
  width: 100%;
  text-align: center;
}

.footer {
  background-color: #000;
  text-align: center;
  font-size: 1rem;
  padding: 80px 50px;
}

.footer h2 {
  font-size: 2.5rem;
}

.footer li {
  padding: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer ul {
  padding: 30px 0 40px;
}

.footer-logo img {
  width: 200px;
}