a {
  text-decoration: none !important;
}

.full-height-container {
  width: 100%;
  height: 100%;
  max-height: 850px;
  margin-bottom: 1rem;
}

.branch-selection-container {
  width: 100%;
  /* height: 820px; */
  height: 70vh;
  overflow: hidden;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: black;
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.branch-item-container {
  width: 100%;
  border-left: 1px solid white;
  box-sizing: border-box;
  
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.branch-item-container:first-child {
  border-left: none;
}

.branch-item {
  width: 100%;
  height: 100%;
  justify-content: center;
}

.branch-text-container {
  width: 100%;
  max-width: 300px;
  height: 140px;
  text-align: center;
  position: relative;
  bottom: calc(60% + 140px);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.branch-text-background {
  width: 100%;
  height: 140px;
  position: relative;
  background-color: #81bc0000;
  bottom: 0px;
  display: flex;
  
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.branch-text {
  margin: 10px;
  text-shadow: 0px 0px 4px #0007;
}

.branch-image {
  width: 100%;
  height: 100%;
  -webkit-filter: brightness(0.7) saturate(.7);
  filter: brightness(0.7) saturate(.7);

  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/******************************************************************************/

.description-recommandation-container {
  margin-top: 5%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
}

.description-recommandation-item {
	margin: 15px;
	text-align: center;
}

.description-recommandation-image {
	box-sizing: border-box;
}

.description-recommandation-image img {
	width: 150px;
	height: 150px;
	max-width: 150px;
	max-height: 150px;
	background-color: grey;
	border-radius: 50%;
	overflow: hidden;
	box-sizing: border-box;
}

.description-recommandation-text {
	width: 160px;
	margin: 15px 0;
}

/******************************************************************************/

.solution-item-container {
  margin-top: 5%;
  width: 100%;
  display: inline-flex;
}

.solution-item {
  width: 100%;
  margin: 0 2%;
}

.solution-item-image {
  background-color: grey;
  width: 100%;
  height: 250px;
}

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

.solution-item-text {
  margin-top: 15px;
  text-align: center;
}

@media (min-width: 1000px) {
  .branch-item-container:hover {
    width: 200%;
    
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  
  .branch-item-container:hover .branch-text-container {
    bottom: 280px;
    
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  
  .branch-item-container:hover .branch-text-background {
    background-color: #81bc00bb;
    bottom: 140px;
    
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  
  .branch-item-container:hover .branch-image {
    filter: brightness(1) saturate(1);
    -webkit-filter: brightness(1) saturate(1);
    
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  
  .branch-sm {
    display: none;
  }
}

@media (max-width: 999px) {
  .full-height-container {
    height: 100%;
    max-height: unset;
    margin-bottom: 20px;
  }

  .branch-selection-container {
    width: 100%;
    height: unset;
    flex-wrap: wrap;
  }

  .branch-item-container {
    width: 100%;
    height: 100vw;
    border: none;
    border-bottom: 1px solid white;
    max-height: 600px;
  }

  .branch-text-container {
    max-width: 100%;
    height: 70px;
    bottom: 70px;
    background-color: #81bc00bb;
  }

  .branch-text-background {
    height: 0;
    visibility: hidden;
  }
  
  .branch-lg {
    display: none;
  }
  
  /****************************************************************************/
  
  .solution-item-container {
    display: block;
  }

  .solution-item {
    margin: 0;
  }

  .solution-item-image {
    height: 60vw;
  }

  .solution-item-text {
    padding: 0 0 30px;
  }
}