.header-request-free {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 6px 10px 6px 13px;
  border: 1px solid #ffc9a6;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff8f3, #fff);
  color: #2e3a50;
  box-shadow: 0 7px 18px rgba(255, 101, 8, .1);
  transition: .2s
}

.header-request-free:hover,
.header-request-free.active {
  border-color: #ff6508;
  transform: translateY(-1px);
  box-shadow: 0 10px 23px rgba(255, 101, 8, .18)
}

.header-request-free-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff6508, #ff8b40);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 13px rgba(255, 101, 8, .25)
}

.header-request-free>span:last-child,
.header-request-free b,
.header-request-free small {
  display: block
}

.header-request-free b {
  font-size: 11px;
  font-weight: 900;
  color: #26334a;
  white-space: nowrap
}

.header-request-free small {
  margin-top: 1px;
  color: #8b94a2;
  font-size: 7px;
  font-weight: 700;
  white-space: nowrap
}

.header-request-free:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #20a264;
  box-shadow: 0 0 0 2px rgba(32, 162, 100, .12)
}

.mobile-request-service {
  position: relative;
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #ffbd90;
  border-radius: 14px;
  background: linear-gradient(145deg, #ff6508, #ff914d);
  color: #fff;
  box-shadow: 0 7px 17px rgba(255, 101, 8, .25);
  overflow: hidden
}

.mobile-request-service:before {
  content: "";
  position: absolute;
  width: 29px;
  height: 29px;
  left: -12px;
  top: -12px;
  border: 7px solid rgba(255, 255, 255, .19);
  border-radius: 50%
}

.mobile-request-service span {
  position: relative;
  z-index: 1;
  font-size: 23px
}

.mobile-request-service i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #24a46a
}

.mobile-request-service.active {
  outline: 3px solid rgba(255, 101, 8, .16)
}

@media(max-width:960px) {
  .mobile-request-service {
    display: grid
  }
}

@media(max-width:380px) {
  .mobile-request-service {
    width: 39px;
    height: 39px;
    border-radius: 13px
  }

  .mobile-request-service span {
    font-size: 21px
  }
}