/*
	Certifications
*/
.tt-certifications-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: -30px;
    margin-left: -30px; }
    .tt-certifications-wrapper .tt-item {
      margin-top: 30px;
      margin-left: 30px;
      width: calc(50% - 30px);
      max-width: 246px; }
  
  .tt-certifications {
    display: inline-block;
    position: relative; }
    .tt-certifications:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      border: 2px solid transparent;
      width: 100%;
      height: 100%;
      -webkit-transition: border-color .2s;
      transition: border-color .2s; }
    .tt-certifications:hover:before {
      border-color: #6984c2; }