@media (min-width: 320px){
.header-links {
  margin-top: 88px;
  gap: 20px;
  margin-bottom: 24px;
}

.header-links--item {
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--main-basic);
  height: 135px;
  max-height: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}  
  .link-service-more::before {
    content: url("/assets/img/arrow-white.svg");
    -webkit-transition: 0.4s;
    transition: 0.4s;
    line-height: 42px;
    height: 42px;
    display: block;
    width: 42px;
    text-align: center;
    border-radius: 50%;
  }

.header-links--item:hover,
.header-links--item:active {
  border-color: var(--white);
  backdrop-filter: blur(20.7905540466px);
  -webkit-box-shadow: 0px 21.62px 53.22px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 21.62px 53.22px 0px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 2ms;
  transition: all 2ms;
}

.header-links--item:hover .header-links--more,
.header-links--item:active .header-links--more {
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
}

.header-links--title {
  font-family: Unbounded;
  font-weight: 200;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--white);
}

.header-links--button {
  position: relative;
  height: 42px;
  width: 100%;
}

.header-links .header-links--more {
  position: static;
  border-color: var(--white);
    width: 42px;
    height: 42px;
    border: 1px solid var(--white);
    border-radius: 30px;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.header-links .header-links--more::before {
  content: url(./img/arrow-white.svg);
}


 .header-links .link-service-more::before {
    content: url("./img/arrow-white.svg");
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .header-links .services-item:hover .link-service-more {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media (min-width: 1023px) {
  .header-links {
    margin-top: 196px;
  }

  .header-links--item {
    height: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .header-links--title {
    font-size: 20px;
  }
}

@media (min-width: 1350px) {
  .header-links {
    margin-top: 192px;
    margin-bottom: 56px;
  }
}
@media (min-width: 1040px) and (max-width: 1120px) {
  .header-links--item {
    height: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .header-links--title {
    font-size: 16px;
  }
}