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

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

}

.assocation-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;
}

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

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

}

.assocation-text .assocation-content .assocation-contact{
  font-size: 14px;
font-weight: 600;

}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  .assocation {
    width: 100%;
  }
}
    


     
/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
  .assocation {
    width: 100%;
  }
}
  
/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px){
  .assocation {
    width: 100%;
  }
}
  
