.header {
  height: auto;
  box-shadow: none;
  overflow: visible;
  box-shadow: inset 0px 90px 100px -90px #272727;
}
.app {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.serviceSupport-list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 500px);
  grid-gap: 10px;
  position: relative;
}
main {
  padding: 100px;
  position: relative;
}
.serviceSupport-item {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  height: 400px;
  border-radius: 30px;
  padding: 20px;
  transition: 0.2s;
}
.serviceSupport-item:hover {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.serviceSupport-item a {
  color: #003436;
}

.serviceSupport-item:hover .serviceSupport-title {
  color: #fff;
}
.serviceSupport-item:hover a {
  color: #fff;
}
.serviceSupport-item a:hover {
  color: #003436;
}
.serviceSupport-item:nth-child(1):hover {
  transform: scale(1.05) translateX(-20px) translateY(-20px);
}
.serviceSupport-item:nth-child(2):hover {
  transform: scale(1.05) translateX(20px) translateY(-20px);
}
.serviceSupport-item:nth-child(3):hover {
  transform: scale(1.05) translateX(-20px) translateY(20px);
}
.serviceSupport-item:nth-child(4):hover {
  transform: scale(1.05) translateX(20px) translateY(20px);
}
.serviceSupport-title-right {
  text-align: right;
}
.serviceSupport-title {
  font-size: 28px;
  font-weight: 550;
  color: #00a185;
}
.serviceSupport-content-list {
  display: flex;
    /* grid-template-columns: repeat(2, 1fr); */
    padding-left: 35px;
    overflow: hidden;
    flex-direction: column;
    flex-wrap: wrap;
    height: 85%;
}
.serviceSupport-content-list li {
  margin: 10px;
}
.lightImg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.lightImg img {
  width: 100px;
}
.pageDot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dot {
  width: 8px;
  height: 8px;
}
.greenLine {
  position: absolute;
  width: 100%;
  height: 13px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #aee4da;
}