.top-cover {
  background: linear-gradient(-90deg, rgb(30, 84, 194) 0%, rgb(14, 40, 92) 100%);
  color: rgb(255, 255, 255);
  height: 775px;
}
html.dark-mode .top-cover {
  background: linear-gradient(-90deg, rgb(49, 89, 171) 0%, rgb(21, 44, 96) 100%);
}
.top-cover--with-margin-bottom {
  margin-bottom: 56px;
}
.top-cover--with-header-margin {
  margin-top: -70px;
  padding-top: 70px;
}
.top-cover__inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 160px;
  height: 100%;
}
.top-cover__text-block {
  max-width: 600px;
}
.top-cover__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 21px;
}
.top-cover__subtitle, .top-cover__description {
  font-size: 20px;
  line-height: 130%;
}
.top-cover__subtitle {
  margin-bottom: 23px;
}
.top-cover__description {
  margin-bottom: 36px;
}
.top-cover__contact-with-us {
  max-width: 270px;
  width: 100%;
}
.top-cover__image {
  animation: bounce 3s ease-in-out infinite;
  max-width: 466px;
}
@media (max-width: 1399px) {
  .top-cover__inner {
    gap: 60px;
    justify-content: space-between;
  }
  .top-cover__image {
    max-width: 420px;
  }
}
@media (max-width: 1199px) {
  .top-cover {
    height: 650px;
  }
  .top-cover__subtitle, .top-cover__description {
    font-size: 18px;
  }
  .top-cover__image {
    max-width: 350px;
  }
}
@media (max-width: 991px) {
  .top-cover {
    height: 650px;
  }
  .top-cover__title {
    font-size: 45px;
  }
  .top-cover__subtitle, .top-cover__description {
    font-size: 16px;
  }
  .top-cover__subtitle {
    margin-bottom: 20px;
  }
  .top-cover__image {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .top-cover {
    height: unset;
  }
  .top-cover__inner {
    flex-direction: column-reverse;
    padding: 40px 0;
    gap: 30px;
  }
  .top-cover__text-block {
    text-align: center;
  }
  .top-cover__title {
    font-size: 35px;
  }
  .top-cover__subtitle, .top-cover__description {
    font-size: 14px;
  }
  .top-cover__subtitle {
    margin-bottom: 18px;
  }
  .top-cover__description {
    margin-bottom: 30px;
  }
  .top-cover__contact-with-us {
    margin: auto;
  }
  .top-cover__image {
    max-width: 230px;
  }
}
@media (max-width: 575px) {
  .top-cover__image {
    max-width: 180px;
  }
}

.top-panel {
  align-items: center;
  display: flex;
  font-size: 18px;
  gap: 45px;
  height: 75px;
}
.top-panel--with-margin-bottom {
  margin-bottom: 50px;
}
.top-panel__mobile-filters {
  border-radius: 12px !important;
  height: 100%;
}
.top-panel__filters {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 45px;
  height: 100%;
  padding: 0 35px;
}
.top-panel__go-to-archive {
  align-items: center;
  color: var(--primary-font-color);
  display: flex;
  height: 100%;
  padding: 0 35px;
}
.top-panel__filter:hover, .top-panel__filter--active, .top-panel__go-to-archive:hover {
  color: var(--blue-primary-color);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  user-select: none;
}
@media (max-width: 991px) {
  .top-panel {
    font-size: 16px;
    height: 65px;
  }
}
@media (min-width: 576px) {
  .top-panel__mobile-filters {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .top-panel {
    gap: 20px;
    justify-content: space-between;
    text-align: center;
  }
  .top-panel__filters, .top-panel__go-to-archive {
    padding: 0 25px;
  }
}
@media (max-width: 575px) {
  .top-panel {
    align-items: start;
    flex-direction: column-reverse;
    gap: 15px;
    height: unset;
  }
  .top-panel__go-to-archive, .top-panel__mobile-filters {
    height: 50px;
  }
  .top-panel__filters {
    display: none;
  }
}

.page-title--for-category {
  margin-bottom: 27px;
}

.product-category--with-margin-bottom {
  margin-bottom: 65px;
}

.products-grid {
  display: grid;
  gap: 23px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .products-grid {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-card {
  display: block;
  color: var(--primary-font-color);
  flex: 1;
  min-width: 0;
  transition: scale 0.3s;
  padding: 20px 40px 20px 30px;
  position: relative;
  min-height: 165px;
}
.product-card:hover, .product-card:focus {
  scale: 1.02;
}
.product-card__logo {
  height: 45px;
}
.product-card__custom-logo-container {
  align-items: center;
  color: rgb(0, 0, 0);
  display: flex;
  gap: 10px;
  font-size: 24px;
  line-height: 110%;
}
html.dark-mode .product-card__custom-logo-container {
  color: var(--primary-font-color);
}
.product-card__custom-logo-container b {
  font-weight: 600;
}
.product-card__description {
  margin-left: 55px;
  line-height: 130%;
}
.product-card__icon {
  fill: var(--subtitle-font-color);
}
.product-card__icon--arrow {
  right: 25px;
  bottom: 21px;
  position: absolute;
}
.product-card:hover .product-card__icon--arrow {
  animation: moving-animation 1.5s infinite ease;
}
@media (max-width: 1199px) {
  .product-card {
    padding: 20px;
  }
  .product-card__logo {
    height: 38px;
  }
  .product-card__custom-logo-container {
    font-size: 22px;
  }
  .product-card__description {
    margin-left: 45px;
  }
  .product-card__description br {
    display: none;
  }
}

.contact-form--with-margin-bottom {
  scroll-margin-top: 50px;
  margin-bottom: 87px;
}

#tasks {
  display: none;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes moving-animation {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

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