.hero-category {
    height: calc(100vh - 120px);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.hero-category-inner {
    background-color: rgba(0, 0, 0, 0.35);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-category-inner-container {
    max-width: 710px;
    padding: 200px 20px 0;
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-category-inner-container > *, .hero-title-container > * {
    padding: 0;
    margin: 0;
}

.hero-category-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-category-badges img {
    max-height: 52px;
    width: auto;
    margin: 0;
}

.hero-category-type {
    color: white;
    font-size: 17px;
}

.hero-category-type span {
    display: inline-block;
    border: 1px solid white;
    padding: 1px 8px;
}

.hero-category-title {
    color: white;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-category-description {
    color: white;
    font-size: 19px;
}

.explore-procedures h3 {
    text-align: center;
}

.explore-procedures h3 {
    text-align: center;
}

.explore-procedures-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.explore-procedure {
    display: block;
    background-size: cover;
    background-position-x: 78%;
    aspect-ratio: 1 / 1;
    height: auto;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.explore-procedure .explore-procedure-content {
    transition: 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.explore-procedure:hover .explore-procedure-content {
    background: rgba(0, 0, 0, 0.5);
}

.explore-procedure-title {
    font: normal normal .875rem/1.5 "Lato", Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", "system", sans-serif;
    color: white;
    font-size: 26px;
    padding: 0 4% 4% 6%;
    font-weight: bold;
    text-transform: uppercase;
    flex-grow: 1;
    align-content: end;
}

.explore-procedure-excerpt {
    transition: 0.2s ease-in-out;
    height: 0;
    overflow: hidden;
}

.explore-procedure:hover .explore-procedure-excerpt {
    height: auto;
}

.explore-procedure-excerpt p {
    font: normal normal .875rem/1.5 "Lato", Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", "system", sans-serif;
    color: white;
    font-size: 17px;
    margin: 0;
    padding: 0 4% 4% 6%;
}

.accordion {
    transition: .2s;
    border: 1px solid #555d5f;
}

.accordion-cross {
    background: url("../images/cross-icon.png") right center no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.accordion + .accordion {
    margin-top: 10px;
}

.accordion-title {
    cursor: pointer;
    padding: 10px;
    font: normal normal .975rem / 1.5 "Lato", Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", "system", sans-serif;
    font-weight: bold;
    font-size: 22px;
    color: #555d5f;
    display: flex;
    align-items: center;
    gap: 20px;
}

.accordion-title > span:first-child {
    font-family: "Poppins", sans-serif;
    content: counter(step) ".";
    font-size: 36px;
    font-weight: bold;
    color: #555d5f;
    line-height: 1;
}

.accordion-title > span:nth-child(2) {
    flex-grow: 1;
}

.accordion-description {
    display: none;
    padding-left: 50px;
    font: normal normal .975rem / 1.5 "Lato", Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", "system", sans-serif;
    color: #3a3a3a;
}

.accordion.active {
    border-color: transparent;
}

.accordion.active .accordion-cross {
    display: none;
}

.accordion.active .accordion-description {
    display: block;
}

@media (max-width: 1064px) {
    .explore-procedures-list {
        grid-template-columns: 1fr 1fr;
    }

    .explore-procedure-title, .accordion-title {
        font-size: 19px;
    }

    .hero-category-badges img:nth-child(n+3) {
        display: none;
    }
}
