.content a {
  color: #406D7F;
  font-weight: bold;
 }
 
 .content__reference-atlas-description {
  width: 65%;
  float: left;
 }

 .content__app-quicklink {
  width: 33%;
  float: left;
 }

 .quicklink__container {
  background-color:#2C5064;
  text-align: center;
  padding: .4em;
  max-width: 65%;
  margin:auto;
  box-shadow: #ccc 3px 5px 5px;
 }

 .quicklink__container:hover{
   background-color: #22404C;
 }

 .quicklink__text {
  color: #fff;
  padding: .7em;
  border: solid 1.5px #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  margin: 0;
 }

.quicklink__link{
  color: #fff;
  text-decoration: none;
 }

 .feedback {
   padding: 2em;
   margin-top: 1em;
 }

 /*------------------------MEDIA QUERIES------------------------*/
/*-------------------------------------------------------------*/


/*------------------------Tablet------------------------*/
@media screen and (max-width: 1165px) {
  .content__reference-atlas-description {
    width: 100%;
    float: left;

   }
  
   .content__app-quicklink {
    width: 100%;
    float: left;
    margin-top: 3em;
   }
}

/*------------------------Mobile------------------------*/
@media screen and (max-width: 1000px) {

}

/*Print Css*/
@media print {

  .content{
    width: 100%;
  }
  .content__reference-atlas-description {
    width: 100%;
    float: left;
   }

   .content__app-quicklink {
    width: 100%;
    float: left;
    margin-top: 3em;
   }

   .quicklink__container {
     display: none;
   }

   .feedback {
    padding: 0em;
    margin-top: 0em;
  }
}