#exhibitor-bar {
    text-align: center;
    /* background-color: #f5f5f5; */
    padding: 20px;
    margin-top: 15px;
}

.partners-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.partner-box {
    width: 28%;
    background-color: white;
    /* border-bottom: solid black 4px; */
    display: flex;
    flex-direction: column;
    padding: 8px;
    margin: 25px;
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}

.partner-name {
    margin-bottom: 5px;
	border-bottom: solid rgb(54, 54, 54) 1.2px;
}

.partner-img {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 20px;
    max-height: 200px;
}

.partner-link {
    text-decoration: none;
    font-style: italic;
    color: rgb(247, 148, 30);
    margin-top: auto;
}

.partner-link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1000px) {
    .partner-box {
        width: 40%;
    }
}

@media only screen and (max-width: 700px) {
    .partner-box {
        width: 80%;
    }
}