html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.carousel {
  width: 100%;
  height: auto;
}
.carousel .carousel-cell {
    padding: 0 !important;
    background-color: #FFFFFF;
    width: 40%;
    min-width: 120px;
    margin: 0 50px !important;
    transition: transform 500ms ease;

    background:rgba(250,253,255,1);
    box-shadow:0px 20px 38px 8px rgba(0, 0, 0, 0.05);
}
.carousel .carousel-cell .img-container {
    padding: 0 !important;
}
.carousel .carousel-cell img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.carousel .carousel-cell.is-selected {
  transform: scale(1.1);
}
.flickity-page-dots {
  display: none;
}
.flickity-viewport, .flickity-slider {
  overflow: visible;
}

h4 {
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
}
small {
  font-size: 10px;
  font-weight: 500;
  color: rgba(51,51,51,1);
}
.section-title {
    border-top: 6px solid #5FBFDE;
}
.p-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.p-card h5 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(51,51,51,1);  
}
.p-card p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(153,153,153,1);  
}
.p-card a {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    opacity: 0;
    text-decoration: none;
}
.p-card:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.p-card:hover a {
    opacity: 1;
}

