.box-img-h-fixed {
	height: 20rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 8px;
}

.box-transparant {
	width: 100%;
	height: 100%;
	background: rgba(54, 146, 108, 0.15);
}

.box-transparant-black {
	width: 100%;
	height: 100%;
	background: rgba(42, 43, 70, 0.5);
}

.rounded {
	border-radius: 30px;
}

.color-primary {
	background: rgba(54, 146, 108, 0.15);
}

@media screen and (min-width: 768px) {
	.dropdown {
	  position: relative;
	  display: inline-block;
	}

	.dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: #f1f1f1;
	  min-width: 160px;
	  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
	  z-index: 1;
	  border-radius: 10px;
	  background-color: white;
	}

	.dropdown-content a {
	  text-decoration: none;
	  display: block;
	}

	.dropdown-content a:hover {
	  background-color: #ddd;
	  border-radius: 10px;
	}

	.dropdown:hover .dropdown-content {
	  display: block;

	}

	.dropdown:hover .dropdown-toggle {
	  background-color: transparent;
	}
  }
