/*---Iconbox style1---*/

.themetechmount-iconbox.themetechmount-iconbox-styleone {
  padding: 30px 10px 10px 50px;
}

.themetechmount-iconbox-styleone .themetechmount-iconbox-icon {
  display: table-cell;
  vertical-align: middle;
}

.themetechmount-iconbox-styleone .themetechmount-iconbox-heading {
  display: table-cell;
  vertical-align: middle;
  padding-left: 18px;
}

.themetechmount-iconbox-styleone .themetechmount-iconbox-heading .tm-custom-heading a:hover {
  color: var(--body-blackfont-color);
}

.themetechmount-iconbox-styleone .themetechmount-iconbox-heading h4.tm-element-subheading {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--body-font-family);
}

.themetechmount-iconbox-styleone:hover .themetechmount-iconbox-icon .tm-box-icon {
  animation: heartBeat 1.3s ease-in-out 50ms;
}

.themetechmount-iconbox-styleone .themetechmount-iconbox-icon .tm-box-icon {
  transition: all 1s ease;
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  14% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  42% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@media (max-width: 480px) {
.themetechmount-iconbox.themetechmount-iconbox-styleone {
  padding: 20px;
}
}

/*---Iconbox style2---*/
.themetechmount-iconbox-styletwo .themetechmount-iconbox-inner {
  text-align: center;
}

.themetechmount-iconbox-styletwo .themetechmount-iconbox-inner .tm-box-icon i {
    font-size: 90px;
    vertical-align: middle;
}

.themetechmount-iconbox-styletwo .themetechmount-iconbox-heading .tm-custom-heading {
  margin-bottom: 18px;
}

.themetechmount-iconbox-styletwo .tm-box-icon {
    padding: 45px 45px 45px;
    background-color: #122b29;
    display: inline-block;
    transition: .9s;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
}

.themetechmount-iconbox-styletwo .tm-box-icon:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background-color: var(--ttm-skincolor);
    transition-duration: 1000ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.themetechmount-iconbox-styletwo:hover .tm-box-icon:after {
  bottom: -50%;
}
.themetechmount-iconbox-styletwo:hover .themetechmount-iconbox-inner .tm-box-icon i {
  color: var(--body-blackfont-color) !important;
  z-index: 1;
  position: relative;
}

.themetechmount-iconbox.themetechmount-iconbox-styletwo .themetechmount-iconbox-icon {
  margin-bottom: 31px;
}

.themetechmount-iconbox-styletwo .tm-cta3-content-wrapper {
  color: rgba(255, 255, 255, 0.70);
  padding: 0 10px;
}

.tm-greybg-iconsec .themetechmount-iconbox-styletwo .tm-box-icon {
  background-color: var(--ttm-whitecolor);
}

.tm-greybg-iconsec .themetechmount-iconbox-styletwo .tm-cta3-content-wrapper {
  color: var(--body-fonts-color);
}

.tm-left-iconbox .themetechmount-iconbox-styletwo .themetechmount-iconbox-inner {
    text-align: left;
}

.tm-left-iconbox .themetechmount-iconbox-styletwo .tm-cta3-content-wrapper {
    padding: 0 20px 0 0;
}