/*********************************
	Section - solutions
*/

.solutions-overview{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.solutions-wrapper{width:100%;}


.solutions-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
  
}

.solution-card{
  width:100%;
  text-decoration:none;
  color:currentColor;
  border:1px solid var(--dark-gray);
  border-radius:3px;
}

.solution-card--link{
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
.solution-card--link:hover{
  box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.solution-card__wrapper{
  height:100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.solution-card__image{
  position:relative;
  top:0;
  left:0;
  width:100%;
  height:0;
  padding-bottom:56.25%;
  background:var(--dark-gray);
}

.solution-card__image img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.solutions-overview__description{
 margin-bottom:30px;
}

.solution-card__content{
  padding:15px;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.solution-card__categories{
  margin-bottom:4px;
  font-size:1.4rem;
  opacity:.7;
}

.solution-card__read-more{
  margin-top:auto;
  color:var(--red);
}

.solution-card__read-more strong{
  margin-top:10px;
  display:inline-block;
}

.solution-card__read-more strong i{
  display:inline-block;
  margin-right:8px;
  width:7px;
  height:7px;
  border:2px solid var(--red);
  border-left:0;
  border-bottom:0;
  transform:translate(0px,-2px) rotate(45deg);
}

.solutions-card__buttons {
  margin-top: 30px;
  width: 100%;
}

/*
xxl = '1400px'
xl = '1200px'
lg = '992px'
md = '768px'
sm = '576px'
xs = '480px'
 */

@media (min-width: 993px ){
  .filter__list{display:block!important;}
}

@media (max-width: 992px ){
  .solutions-filters{width:100%; padding-right:0;}
  .filter__label-desktop{display:none;}
  .filter__label-mobile{display:block; font-weight:bold; border:2px solid currentColor; padding:5px 15px; border-radius:200px; cursor:pointer; transition: all 200ms ease-in-out;}
  .filter__label-mobile--open{background-color:var(--base-color); color:#fff;}
  .solutions-wrapper{width:100%; margin-top:20px;}
  .filter__list{display:none; padding:15px; border:2px solid currentColor;}
  .filter-item + .filter-item{padding-top:10px; border-top:1px solid rgba(0,0,0,0.2);}
  .filter-item__label{display:block;}
  .solutions-list {grid-template-columns: repeat(3, 1fr);
}


@media (max-width: 700px ){
.solutions-list{
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 450px ){
.solutions-list{
  grid-template-columns: repeat(1, 1fr);
}
}