/* pagesMV */
.projectstoryTop .heading--primary.imgBg {
    background-image: url(../img/mv_projectstoryTop.webp);
}

/* projects */
.projects {
    padding: 90rem 0 131rem;
}

.card__lists--3cols {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40rem 31rem;
}

.card__lists--3cols .card__list {
    width: 320rem;
    justify-content: flex-start;
}

.card__link {
    position: relative;
    display: block;
}

.card__link::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    opacity: .3;
    transition: all .4s;
}

.card__link:hover {
    opacity: 1;
}

.card__link:hover::after {
    opacity: .5;
}

.card__heading {
    position: absolute;
    color: var(--color-white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 20rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.title {
    font-weight: 600;
    line-height: 1.5;
    font-size: 16rem;
    margin: 15rem 0 10rem;
    flex-basis: 72rem;
}

.card__list .text {
    font-size: 14rem;
    line-height: 2;
    margin-bottom: 12rem;
}

.card__options {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    width: 98%;
    margin-bottom: 20rem;
}

.card__options .card__option {
    font-size: 14rem;
    color: var(--color-gray);
    border: solid 1px var(--color-gray);
    border-radius: 5rem;
    padding: 4rem 15rem;
    line-height: 1;
}

.card__list .btn--more {
    margin-left: auto;
}

@media screen and (max-width: 767.9px) {
    .projects {
        padding: 17rem 0 62rem;
    }

    .card__lists--3cols {
        align-items: center;
    }

    .title {
        flex-basis: unset;
    }

}

/* inquirySection */
.inquirySection {
    margin-bottom: 75rem;
}

@media screen and (max-width: 767.9px) {
    .inquirySection {
        margin-bottom: 30rem;
    }
}