.technology-section {
  /*   display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  grid-row-gap: 40px; */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.technology-section-item {
  text-align: center;
  width: 250px;
}
.technology-button {
  position: relative;
  cursor: pointer;
}

.technology-button:hover .technology-button-icon::before {
  /*  top: 46%;
  left: 50.5%;
  box-shadow: inset 3px 3px 5px -4px rgba(0, 0, 0, 0.75); */
  box-shadow: none;
}

.technology-button:hover .technology-button-icon img {
  transform: scale(0.9);
}

.technology-button-bg {
  width: 222px !important;
  height: auto;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.technology-button:hover .technology-button-bg {
  transform: rotate(10deg);
}

.technology-button-icon {
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
}
.technology-button-icon img {
  transition: all 1s ease;
}

.technology-button-icon:before {
  content: '';
  width: 170px;
  height: 170px;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fafafa;
  /*  box-shadow: 3px 3px 5px -4px rgba(0, 0, 0, 0.75); */
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.technology-text h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #44546a;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .technology-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    grid-row-gap: 0px;
    /*  display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 40px; */
    margin-bottom: 0;
  }

  .technology-section-item {
    transform: scale(0.9);
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .technology-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    grid-row-gap: 40px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .technology-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .technology-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .technology-section-item {
    transform: scale(0.8);
  }
}
