.wrap {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.wrap input {
  display: none;
}

.wrap label {
  margin: 80px 0px 0 10px;
  background-color: #ccc;
  width: 320px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: wrap;
  font-weight: lighter;
  color: #fefefe;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.wrap label:hover {
  cursor: pointer;
  color: #131313;
  background-color: #eee;
}

.wrap input:checked + label {
  font-weight: bold;
  color: #131313;
  background-color: #eee;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
}

.tab-content {
  display: none;
}

#tab1:checked ~ .content1,
#tab2:checked ~ .content2 {
  display: block;
}

.pWrap {
  width: 100%;
  margin: 20px auto 80px;
  padding: 80px 120px;
  background-color: #eee;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
}
.pWrap h2 {
  text-align: center;
  font-size: 36px;
}
.pWrap .in20 {
  padding: 20px;
}
.pWrap .in40 {
  padding: 0 40px;
  line-height: 30px;
}
.pWrap h3 {
  margin-top: 60px;
}
.pWrap p {
  padding: 0 10px;
}
.pWrap .mt40 {
  margin-top: 40px;
}
.pWrap .tablewrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pWrap .tablewrap .row {
  width: 90%;
  height: 50px;
  border: 1px solid #131313;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
.pWrap .tablewrap .box {
  border-bottom: 1px solid #131313;
  border-right: 1px solid #131313;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: centerx;
}
.pWrap .side20 {
  padding: 0 20px;
}
.pWrap .w25p {
  width: 25%;
}
.pWrap .w40p {
  width: 40%;
}
.pWrap .w60p {
  width: 60%;
}
.pWrap .grey {
  background-color: #d4d4d4;
}
.pWrap .bdr0 {
  border-right: 0 !important;
}
.pWrap .bdb0 {
  border-bottom: 0 !important;
}
.pWrap .bdb1 {
  border-bottom: 1px solid #b8b7b7;
}
.pWrap .bdr1 {
  border-right: 1px solid #b8b7b7;
}