h2.warehouse__title {
    color: black !important;
}

.warehouse-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.warehouse-item {
    position: relative;
    margin: 20px;
    width: calc(50% - 40px);
    height: 250px;
}

.warehouse-item a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.warehouse-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.warehouse-item__title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    margin: 0;
	font-family: 'Roboto';
    color: white;
    background-color: rgba(27, 38, 90, 0.5);
    font-size: 18px;
}

.warehouse-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.warehouse-feature-item {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 15px;
}

.warehouse-feature__title {
    color: black;
    font-size: 18px;
    font-weight: 600;
}

.warehouse-feature__icon {
    width: 100px;
    height: auto;
}

.warehouse-link {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 20px 40px;
    background-color: #5c6eac;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
}

.warehouse-link a {
    color: white;
    text-decoration: underline;
    font-style: italic;
}

.warehouse-catalog {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.warehouse-catalog img {
    width: 150px;
}

.warehouse-catalog p {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.choose__title {
    text-align: center;
    margin-bottom: 25px;
}

.choose-item {
    margin-bottom: 10px;
    background-color: #5c6eac;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 25px 20px;
    line-height: 1.2;
}

@media screen and (max-width: 520px)  {
    .warehouse-item {
        width: 100%;
    }

    .warehouse-feature-item {
        max-width: initial;
    }
}