
.row {
  max-width: 114rem;
  margin: 0 auto;
  margin-top: 5rem;
  display: flex;
}

.row .col img {
  width: 10vw;
  /* max-height: 10%; */
  margin: 0 auto;
}

.row:not(:last-child) {
  margin-bottom: 4rem;
}
.row [class^=col] {
  width: calc((100% - 2 * 3rem) / 3);
  min-height: 14rem;
  /* max-height: 10rem; */
}
.row [class^=col]:not(:last-child) {
  margin-right: 3rem;
}

.col__background {
  padding: 2rem;
  box-shadow: 0.3rem 0.3rem 0.5rem #696969;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s ease;
}
.col__background:hover {
  cursor: pointer;
  transform: translate(-1px, 1px);
  box-shadow: 0.1rem 0.1rem 0.3rem #696969;
}
.col__background--blue {
  background-image: linear-gradient(to right, #2193b0, #6dd5ed);
}
.col__background--blue:hover {
  background-image: linear-gradient(to right, #2193b0, #6dd5ed);
}
.col__background--ocean {
  background-image: linear-gradient(to right, #56CCF2, #2F80ED);
}
.col__background--ocean:hover {
  background-image: linear-gradient(to right, #56CCF2, #2F80ED);
}
.col__background--red {
  background-image: linear-gradient(to right, #ED213A, #93291E);
}
.col__background--red:hover {
  background-image: linear-gradient(to right, #ED213A, #93291E);
}
.col__background--red2 {
    background-image: linear-gradient(to right, #cb2d3e, #ef473a);
  }
  .col__background--red2:hover{
    background-image: linear-gradient(to right, #cb2d3e, #ef473a);
  }
  .col__background--gb {
    background-image: linear-gradient(to right, #00F260, #0575E6);
  }
  .col__background--gb:hover{
    background-image: linear-gradient(to right, #00F260, #0575E6);
  }
  .col__background--aws {
    background-image: linear-gradient(to right, #243041, #4a515a);
  }
  .col__background--aws:hover{
    background-image: linear-gradient(to right, #243041, #4a515a);
  }
  .col__background--rb {
    background-image: linear-gradient(to right, #c31432, #240b36);
  }
  .col__background--rb:hover{
    background-image: linear-gradient(to right, #c31432, #240b36);
  }
  .col__background--bg {
    background-image: linear-gradient(to right, #11998e, #38ef7d);
  }
  .col__background--bg:hover{
    background-image: linear-gradient(to right, #11998e, #38ef7d);
  }

  .col__background--os {
    background-image: linear-gradient(to right, #aadfdb, #a0e3ba);
  }
  .col__background--os:hover{
    /* background-image: linear-gradient(to right, #2e8d85, #72cc94); */
  }


  a.button:hover {
    background-color: transparent;
    /* color: #fff; */
    color: black;
}

.footer-logo img {
  width: 50%;
  max-width: 50%;
}


  /* responsive */

  @media screen and (max-width: 600px){
    .row {
      flex-direction: column;
      margin-bottom: 0!important;
      margin-top: 0!important;
    }
  
    .row [class^=col] {
      width: calc((100% - 2 * 3rem) / 1);
      min-height: 10rem;
      margin-bottom: 2rem;
    }

    .row .col img {
      width: 45vw;
    }
    
  }

  @media screen and (max-width: 400px){
    .medium-text-white {
      font-size: 2.5rem;
    }
  }



