.wrap {
  overflow: hidden;
}

.bg-slider {
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 1;
  left: 0;
  right: 1;
  margin: auto;
  z-index: 3;
  max-width: 320px;
  width: 100%;
  height: 50px;
  font-size: 1.3rem;
  padding-top: 30px;
}

.title {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 1;
  left: 0;
  right: 1;
  margin: auto;
  z-index: 3;
  max-width: 300px;
  width: 100%;
  height: 50px;
  font-size: 1rem;
  padding-top: 130px;
  padding-left: 90px;
}

.info {
  position: absolute;
  top: 1;
  bottom: 0;
  left: 1;
  right: 0;
  margin: auto;
  z-index: 3;
  max-width: 350px;
  width: 100%;
  height: 50px;
  padding-bottom: 50px;
}

p {
  text-align: left;
  color: #fff;
  font-size: 0.8rem;
  line-height: 0.7;
}

.container {
  display: flex;
  flex-direction: column;
}

.logo {
  height: 7rem;
  background-color: black;
}

.companyinfo {
  width: 80%;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table tr {
  border-bottom: solid 2px white;
}

table tr:last-child {
  border-bottom: none;
}

table th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td {
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}

.button01 a{
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
  max-width: 220px;
  padding: 10px 0px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #52c2d0;
  background: linear-gradient(270deg, #52c2d0 0%, #52c2d0 100%);
}
.button01 a:hover {
  background: #52c2d0;
  background: linear-gradient(270deg, #52c2d0 0%, #52c2d0 100%);
}