.why-we-block {
  padding: 60px 0 90px;
}
.why-we-block .block-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.why-we-block h2.block-title {
  margin-bottom: 0;
}
.why-we-block .presentation-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-radius: 25px;
  background: var(--blue, #0088C4);
  box-shadow: 0 4px 30px 0 rgba(0, 136, 196, 0.3);
  padding: 5px 20px 5px 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
  transition: background-color 0.3s ease-in;
}
.why-we-block .presentation-link .icon {
  display: flex;
  margin-right: 10px;
  width: 40px;
  height: 40px;
}
.why-we-block .presentation-link .icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-we-block .presentation-link .icon svg path {
  transition: fill 0.3s ease-in;
}
.why-we-block .presentation-link:hover {
  background-color: var(--orange);
}
.why-we-block .presentation-link:hover .icon svg path {
  fill: var(--orange);
}
.why-we-block .nums {
  width: 100%;
  margin-bottom: 30px;
}
.why-we-block .nums__title {
  color: var(--text);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.why-we-block .nums__holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.why-we-block .why-adv {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 15px;
  background: #F5FAFF;
  padding: 30px;
}
.why-we-block .adv__title {
  color: var(--blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  margin-bottom: 10px;
}
.why-we-block .adv__desc {
  color: var(--grey);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.why-we-block .ann {
  position: relative;
  padding: 30px 30px 30px 160px;
  border-radius: 15px;
  background: #F5FAFF;
}
.why-we-block .ann:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  background-image: url("images/desk.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 1025px) {
  .why-we-block .nums__holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 769px) {
  .why-we-block {
    padding: 60px 0;
  }
  .why-we-block .ann {
    padding: 30px 30px 30px 100px;
  }
  .why-we-block .ann:before {
    content: "";
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 498px) {
  .why-we-block {
    padding: 40px 0;
  }
  .why-we-block .nums__holder {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .why-we-block .ann {
    padding: 15px 15px 15px 60px;
  }
  .why-we-block .ann:before {
    content: "";
    width: 30px;
    height: 30px;
    left: 15px;
    top: 15px;
  }
}

/*# sourceMappingURL=block.css.map */
