@charset "utf-8";

.title {
    height: 310px;
    /* margin-top: 100px; */
    background-color: goldenrod;
    background-image: url(../images/equipment/cleanroom.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-blend-mode: hard-light;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
    font-family: sans-serif;
    font-size: 32px;
    font-weight: bold;
}

.title p {
    font-size: 20px;
    margin-top: 15px;
}

.equipments {
    width: 930px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.equipments h2 {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.equipments h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: hsl(256 100% 22%);
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.equipment-list {
    width: 100%;
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
    column-gap: 40px;
    row-gap: 70px;
    justify-content: center;
}

.equipment-list dl {
    margin-top: 20px;
}

.equipment-list dt {
    font-weight: bold;
}

.equipment-list dd {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.second-header {
    margin-top: 15px;
}

.member-list .photo {
    height: 200px;
}

.equipment-list a {
    text-decoration: underline;
    display: block;
    height: 200px;
    font-size: 14px;
    line-height: 20px;
}

.reference a {
    height: 20px;
}

.equipment-list a:hover {
    color: goldenrod;
}

.main hr {
    width: 100%; height: 2px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    background-color: goldenrod;
    border: none;
}

.affiliates {
    margin-top: 30px;
}

.affiliates h3::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: hsl(256 100% 22%);
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer {
    margin-top: 100px;
}

@media (max-width: 1000px) {

    .equipments {
        max-width: 90%;
    }

    .footer {
        margin-top: 50px;
    }
}