.container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.profil {
  width: 31%;
  flex-wrap: wrap;
  height: auto;
  display: flex;
  margin: 1%;
  box-shadow: 0px 0px 30px 0px rgba(3,29,60,.05);
  flex-direction: column;

}

.text {
  position: relative;
  width: 100%;
  font-family: "museo-sans", Sans-serif;
  color: #031d3c;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  padding: 27px 27px 30px;
  background-color: #ffffff;
}

.text .title{
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  color: #031d3c;
}


.text a{
  color: #fff;
}

.text .content{
  font-size: 13px;
font-weight: 400;
color: #7f8995;

}
.btn {
  border: 1px solid #29614e !important;
  background: #29614e !important;
  color: #fff !important;
}

.btn:hover {
  border: 1px solid rgba(83, 124, 97, 0.8) !important;
}

.close:hover {
  background: transparent !important;
}

#dialog div form input[type="text"] {
  border: 1px solid #b7b7b7;
  border-radius: 0;
}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  .profil {
    width: 70%;
    margin: 2% 15%;
  }
}
     
/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
  .profil {
    width: 100%;
  }
}
  
/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px){
  .profil {
    width: 48%;
  }
}
  
/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1200px){
  .profil {
    width: 30%;
  }
}