.tecnologias_colum {
    display: flex;
    flex-direction: column
  }

  .tecnologias_colum * {
    box-sizing: border-box
  }

  @media screen and (min-width: 650px) {
    .tecnologias_colum .tecnologias_row {
      display: flex;
      flex-direction: row;
      justify-content: center
    }
  }

  .tecnologias_colum .block {
    display: flex;
    flex-direction: column;
    width: 100%
  }

  @media screen and (min-width: 960px) {
    .tecnologias_colum .block {
      height: 300px
    }
  }

  @media screen and (min-width: 600px) {
    .tecnologias_colum .block {
      width: 300px
    }
  }

  .tecnologias_colum .block-column .row {
    flex-direction: column
  }

  .tecnologias_colum .block-column .row .logo {
    margin-top: 8px
  }

  .tecnologias_colum .row {
    display: flex;
    flex: 1;
    height: 48%;
    margin-top: 2%
  }

  .tecnologias_colum .logo {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 90px;
    background-color: #fff;
    box-shadow: 5px 0px 20px rgba(0, 0, 0, .1);
    border: solid thin #dbe3e9;
    border-radius: 10px;
    line-height: 0;
    transition: transform .2s linear;
    margin: 0 4px;
    padding: 8px;
    transform: scale(1);
    transform-origin: center center;
    transition: transform .2s;
    cursor: pointer;
    position: relative
  }

  .tecnologias_colum .logo .logo-hover {
    position: absolute;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 10px;
    height: 100%;
    transition: all .5s;
    background-color: rgba(255, 255, 255, .9)
  }

  .tecnologias_colum .logo:hover {
    transform: scale(1.05);
    z-index: 1
  }

  .tecnologias_colum .logo:hover .logo-hover {
    opacity: 1
  }

  .logo{
    width: 400px;
  }

  .tecnologias_colum .logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain
  }





  @media(max-width: 768px) {
    .tecnologias_colum {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .tecnologias_row {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .block {
      width: 100% !important;
      max-width: 200px;
      height: auto !important;
      margin-bottom: 1rem !important;
      padding-left: 0 !important;
    }
  
    .logo {
      height: auto !important;
      width: 100% !important;
      max-width: 150px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }
  
    .logo img {
      width: 100%;
      height: auto;
    }
  }