/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

.list-institutions {
  display: flex;
  flex-wrap: wrap;
}

.list-institutions ul {
  cursor: pointer;
  height: 217px;
  margin: 0 0 15px;
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  transition: all .3s ease-in-out;
  width: 33%;
}

.list-institutions ul::after {
  background: linear-gradient(to top, rgba(255,255,255, 1) 10%, rgba(255,255,255, 0) 60% );
  bottom: 0;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  pointer-events: none;
  transition: all .3s ease-in-out;
  width: 100%;
}

.list-institutions ul::before {
  bottom: 0;
  content: 'Pogledaj više';
  font-family: 'Montserrat SemiBold';
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
  width: 90%;
  z-index: 1;
}

.list-institutions ul.open::after {
  background: linear-gradient(to top, rgba(255,255,255, 1) 0%, rgba(255,255,255, 0) 5% );
  content: '';
}

.list-institutions ul.open::before {
  content: 'Pogledaj manje';
}

.list-institutions ul:hover::before {
  color: #3563c0;
}

.list-institutions ul li {
  width: 90%;
}

.list-institutions ul li:first-child {
  font-size: 20px;
  font-family: 'Montserrat Bold';
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.list-institutions ul li:first-child::before {
  border-bottom: 3px solid #0a3351;
  bottom: -5px;
  content: '';
  left: 0;
  position: absolute;
  width: 90%;
}

.about-us .description {
  font-size: 16px;
  margin-bottom: 15px;
}

.about-us-info h2,
.delivery-price-list-header {
  color: #0a4d7e;
  font-family: 'Montserrat SemiBold';
  font-size: 24px;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.about-us-info p {
  font-size: 16px;
}

@media only screen and (max-width: 1024px) {
  /* About us page */
	.list-institutions ul {
    width: 50%;
  }
}

@media only screen and (max-width: 660px) {
  /* About us page */
	.list-institutions ul,
	.list-institutions ul li {
      width: 100%;
  }

  .list-institutions ul li {
    margin-bottom: 5px;
  }
}
