* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

:root {
  --brand-red: #c8102e;
  --brand-red-bright: #ee2737;
  --brand-red-deep: #76232f;
  --brand-white: #f8f8f8;
  --gray-1: #e8e8e8;
  --gray-2: #d8d8d8;
  --gray-3: #b8b8b8;
  --gray-4: #888888;
  --gray-5: #555555;
  --gray-6: #333333;
  --brand-black: #111111;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--brand-white);
  color: var(--brand-black);
}

a {
  color: inherit;
  text-decoration: none;
}

.carouselDot {
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 6px;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carouselDot.active {
  background: var(--brand-red);
}

.brandArrowTitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: calc(100% - 40px);
}

.brandArrowTitle::before,
.brandArrowTitle::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 16px;
  background: currentColor;
  opacity: 0.68;
  clip-path: polygon(0 42%, 70% 42%, 70% 14%, 100% 50%, 70% 86%, 70% 58%, 0 58%);
}

.brandArrowTitle::after {
  transform: rotate(180deg);
}

.brandArrowTitleLeft {
  justify-content: flex-start;
}

.brandArrowTitleLeft::before {
  display: none;
}

.brandArrowTitleLeft::after {
  width: 52px;
}

@media screen and (max-width: 600px) {
  .brandArrowTitle {
    gap: 0;
  }

  .brandArrowTitle::before,
  .brandArrowTitle::after {
    display: none;
  }
}
