.tf-iconbox.style1 {
  display: flex;
  gap: 24px;
  align-items: center;
}

.style1 .icon-box {
  width: 76px;
  height: 76px;
  background: #f3fbfd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  flex-shrink: 0;
}

.style1 .title {
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
  margin-bottom: 10px;
}

.tf-iconbox.style1 .desc {
  line-height: 1.3;
}

.style1 .icon-box svg {
  width: 40px;
  height: 40px;
  transition: all 0.8s ease;
}

.style1 .icon-box svg path {
  fill: #00a8d0;
}

.style1 .icon-box i {
  color: #00a8d0;
  font-size: 40px;
  transition: all 0.8s ease;
}

.box-icon-text:hover .icon {
  transform: rotateY(360deg);
}

.tf-iconbox:hover .icon-box svg,
.tf-iconbox:hover .icon-box i {
  transform: rotateY(360deg);
}

.tf-iconbox.style2 {
  text-align: center;
}

.tf-iconbox.style2 .icon-box {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.tf-iconbox.style2 .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3em;
}

.tf-iconbox.style2 .desc {
  margin-bottom: 7px;
}

.style2 .icon-box svg {
  width: 64px;
  height: 64px;
  transition: all 0.8s ease;
}

.style2 .icon-box i {
  color: #00a8d0;
  font-size: 64px;
  transition: all 0.8s ease;
}

.box-icon-text:hover .icon {
  transform: rotateY(360deg);
}

.tf-iconbox:hover .icon-box svg,
.tf-iconbox:hover .icon-box i {
  transform: rotateY(360deg);
}

.tf-iconbox.style3 {
  display: flex;
  gap: 32px;
  align-items: center;
      padding: 24px 20px 21px 24px;
  border: 1px solid rgba(0, 168, 208, 0.16);
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  height: 100%;
}

.tf-iconbox.style3:hover {
  background-color: #00a8d0;
}

.tf-iconbox.style3:hover .title {
  color: #fff;
}

.style3 .icon-box {
  width: 112px;
  height: 112px;
  background: #f3fbfd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  flex-shrink: 0;
}

.style3 .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.28em;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.tf-iconbox.style3 .desc {
  line-height: 1.3;
}

.style3 .icon-box svg {
  width: 64px;
  height: 64px;
  transition: all 0.8s ease;
}

.style3 .icon-box svg path {
  fill: #00a8d0;
}

.style3 .icon-box i {
  color: #00a8d0;
  font-size: 64px;
  transition: all 0.8s ease;
}

.style4 .tf-iconbox-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  border: 1px solid #f6f6f6;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}

.style4 .tf-iconbox-link:hover {
  background-color: #00a8d0;
}

.style4 .tf-iconbox-link:hover .title {
  color: #fff;
}

.style4 .tf-iconbox-link:hover .icon-box {
  background-color: #000000;
  transform: rotate(-45deg);
}

.style4 .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.style4 .icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: #00a8d0;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 480px) {
  .tf-iconbox.style1 {
    gap: 24px;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .tf-iconbox.style3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .style3 .icon-box {
    width: 60px;
    height: 60px;
  }
  .style3 .icon-box i {
    font-size: 30px;
  }
  .style3 .icon-box svg {
    width: 30px;
    height: 30px;
  }
}
