a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
button,
span,
b,
div {
  font-family: "Helvetica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.container {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.button {
  font-size: 16px;
  font-weight: 550;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-align: center;
  background: linear-gradient(90deg, #ff752d 0%, #ff4b39 100%);
  border-radius: 20px;
  border: none;
  color: #fff;
  transition: 0.2s ease-in-out all;
}

.button:hover {
  transition: 0.2s ease-in-out all;
  opacity: 0.8;
  transform: scale(1.05);
  cursor: pointer;
}

.d-block {
  display: block;
}

.hidden,
.d-none {
  display: none !important;
}

.desk-hide,
.desk-hide-flex {
  display: none !important;
}

.mob-hide {
  display: block;
}

.mob-hide-flex {
  display: flex;
}

.tablet-hide {
  display: block;
}
.special-hider {
  display: none;
}

@media (max-width: 1550px) {
  .container {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .tablet-hide {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desk-hide {
    display: block !important;
  }

  .desk-hide-flex {
    display: flex !important;
  }

  .mob-hide {
    display: none !important;
  }
}

@media (max-width: 768px) and (min-width: 555px) {
  .special-hider {
    display: flex !important;
  }
}

@media (max-width: 555px) {
  .tablet-hide {
    display: block !important;
  }
}
