@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Wix+Madefor+Display:wght@400..800&display=swap");

html {
  font-family: "Play";
  scroll-behavior: smooth;
}

li {
  list-style-type: none;
}

h1 {
  margin: 0 auto;
}

.gradient-title {
  background-color: #be1522;
  background-image: linear-gradient(90deg, #be1522, #e94e1b, #38a8e1, #1d72b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.btn-gradient {
  background-image: linear-gradient(90deg, #be1522, #e94e1b, #38a8e1, #1d72b9);
}

.burger {
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
  position: relative;
  /* border: 1px solid #676b6c; */
  border-radius: 5px;
}

.burger:before,
.burger:after {
  content: "";
  width: 36px;
  height: 2px;
  will-change: transform;
  background: #f4f4f4;
  transition: all 0.25s ease-out;
  position: absolute;
  top: 50%;
  left: 50%;
}

.burger:before {
  transform: translate(-50%, -6px);
}
.burger:after {
  transform: translate(-50%, 6px);
}

.burger--active:after {
  transform: translate(-50%) rotate(-45deg);
}

.burger--active:before {
  transform: translate(-50%) rotate(45deg);
}

.js-burger-menu--active {
  display: block;
}

.js-submenu {
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.js-submenu--active {
  max-height: max-content;
  opacity: 1;
  padding: 1rem 1.5rem;
  transition: all 0.5s;
}

.ticker-item {
  -webkit-text-stroke: 3px transparent;
  text-stroke: 3px transparent;
}

.gradient-stroke {
  background-image: linear-gradient(90deg, white, white);
  -webkit-background-clip: text;
  width: fit-content;
}

.hero:before {
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  color: #bcc0c7;
  font-size: 28px !important;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  color: #1d72b9;
}

.swiper-pagination-bullet-active {
  background-color: #1d72b9;
}
.swiper-pagination-bullet {
  background-color: #9da0a5;
}

.swiper-slide {
  height: auto !important;
}

.product-hero {
  transition: max-height 1s;
}

.file:before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(./images/icons/file.svg);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  background-position: center;
  background-size: contain;
  transform: scale(-1, 1) translate(-100, 0);
}

.file:hover:before {
  background-image: url(./images/icons/download.svg);
}

.js-tab--active {
  border: solid 2px transparent;
  background-image: linear-gradient(#f4f4f4, #f4f4f4),
    linear-gradient(to right, #be1522, #e94e1b, #38a8e1, #1d72b9);
  background-origin: border-box;
  background-clip: content-box, border-box;
  color: #212121;
  opacity: 1;
}

.map-table {
  border: solid 2px transparent;
  background-image: linear-gradient(#f4f4f4, #f4f4f4),
    linear-gradient(to right, #be1522, #e94e1b, #38a8e1, #1d72b9);
  background-origin: border-box;
  background-clip: content-box, border-box;
  color: #212121;
}

.list-item:before {
  content: "";
  width: 6px;
  height: 6px;
  opacity: 0;
  background-color: #212121;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
}

.list-item {
  transition: 0.3s all;
}

.list-item:hover:before {
  opacity: 1;
  left: 0;
}

.category-card:hover .category-link {
  color: #be1522;
}

.js-arrow {
  transition: all 0.3s;
}

.js-arrow--active {
  transform: rotateX(180deg);
  transition: all 0.3s;
}
