:root {
  --main-color: #dc3545;
  --secondary-color: #2c3e50;
  --tertiary-color: #6d6b6f;
  --quaternary-color: #bbbbbb;
  --quinary-color: #ffffff;
  --senary-color: #171619;
  --septenary-color: #2a2429;
  --octonary-color: #9a9a9a;
  --nonary-color: #86b7fe;
}

.primary-color {
  color: var(--main-color) !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

.tertiary-color {
  color: var(--tertiary-color) !important;
}

.quaternary-color {
  color: var(--quaternary-color) !important;
}

.quinary-color {
  color: var(--quinary-color) !important;
}

.senary-color {
  color: var(--senary-color) !important;
}

.septenary-color {
  color: var(--septenary-color) !important;
}

.octonary-color {
  color: var(--octonary-color) !important;
}

.nonary-color {
  color: var(--nonary-color) !important;
}

html {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: hidden;
}

section[data-section] {
  width: 100%;
  min-height: 75vh;
  position: relative;
}

.primary-bg-color {
  background-color: var(--main-color) !important;
}

.primary-text-bg-color {
  color: #fff !important;
  background-color: var(--main-color) !important;
}

.grayBgColor {
  color: #fff !important;
  background-color: var(--tertiary-color) !important;
}

.navbar {
  transition: transform 0.3s ease-in-out;
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.griBtn {
  color: var(--tertiary-color);
  transition: all 0.6s ease;
  font-size: 1.2rem;
}

.griBtn:hover {
  color: #fff;
  transition: all 0.6s ease;
  scale: 1.1;
}

.griText {
  color: var(--quaternary-color);
}

.hoverStyleBtn {
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  background: linear-gradient(90deg, transparent 0%, transparent 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.hoverStyleBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: left 0.6s ease;
  z-index: -1;
}

.hoverStyleBtn:hover::before {
  left: 0;
}

.hoverStyleBtn:hover {
  color: #fff;
  scale: 1.1;
  background-position: 0% 0;
}

.hoverStyleBtnNoScale {
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  background: linear-gradient(90deg, transparent 0%, transparent 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.hoverStyleBtnNoScale::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: left 0.6s ease;
  z-index: -1;
}

.hoverStyleBtnNoScale:hover::before {
  left: 0;
}

.hoverStyleBtnNoScale:hover {
  color: #fff;
  scale: 1;
  background-position: 0% 0;
}

.hoverStyleBtnNoScalePrimaryColor {
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
  background: lightgray;
  background-size: 200% 100%;
  background-position: 100% 0;
}

.hoverStyleBtnNoScalePrimaryColor::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--main-color) !important;
  transition: left 0.6s ease;
  z-index: -1;
}

.hoverStyleBtnNoScalePrimaryColor:hover::before {
  left: 0;
}

.hoverStyleBtnNoScalePrimaryColor:hover {
  color: #fff;
  scale: 1;
  background-position: 0% 0;
}

.hoverStyleSearchBtn {
  position: relative;
  transition: all 0.6s ease;
  background-color: #fff;
  overflow: hidden;
}

.hoverStyleSearchBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: left 0.6s ease;
  z-index: 0;
}

.hoverStyleSearchBtn:hover::before {
  left: 0;
}

.hoverStyleSearchBtn i {
  transition: all 0.6s ease;
  color: black;
  position: relative;
  z-index: 1;
}

.hoverStyleSearchBtn:hover i {
  color: white;
}

.upBtn {
  top: -27px;
  right: 19.5%;
  z-index: 1000;
}

.closeRotater {
  transition: all 0.3s ease;
}

button:hover .closeRotater {
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.form-input-style {
  background-color: var(--senary-color);
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--octonary-color);
  transition: all 0.3s ease;
}

.form-input-style:focus {
  background-color: var(--septenary-color);
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(226, 41, 39, 0.3);
  transition: all 0.3s ease;
}

.form-textarea-style {
  background-color: var(--senary-color);
  height: 75px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--octonary-color);
}

.form-textarea-style:focus {
  background-color: var(--septenary-color);
  color: #ffffff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(226, 41, 39, 0.3);
}

.search-container {
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.search-container:focus-within {
  border-color: transparent;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.search-input:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.footerSearchContainer {
  width: 500px;
}

.scroll-indicator {
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  position: relative;
  background: transparent;
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-animation 2s infinite;
}

.next-section-indicator {
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-section-indicator:hover {
  transform: translateY(-5px);
}

.scroll-arrow-down {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 41, 39, 0.2);
  backdrop-filter: blur(10px);
}

.scroll-arrow-down i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  animation: bounce-arrow 2s infinite;
}

.firmName {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 15;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
}

.firmLinkBtn {
  bottom: 15px;
  left: 0;
  z-index: 20;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.firmLinkBtn a {
  background: rgba(226, 41, 39, 0.9);
  border: 1px solid rgba(226, 41, 39, 0.5);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.firmLinkBtn a:hover {
  background: rgba(226, 41, 39, 1);
  border-color: rgba(226, 41, 39, 0.8);
  transform: scale3d(1.05, 1.05, 1);
  box-shadow: 0 8px 25px rgba(226, 41, 39, 0.4);
}

.actionBtns {
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.3s ease;
}

section[data-section="firms"] {
  position: relative;
  transition: background-image 0.5s ease;
}

section[data-section="firms"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
}

section[data-section="firms"] .container-fluid {
  position: relative;
  z-index: 2;
}

.firmLine {
  transition: all 0.3s ease;
}

.firms-scroll-item {
  width: 175px;
  scroll-snap-align: start;
}

.firmImage {
  width: 80% !important;
  height: 80% !important;
  object-fit: contain;
  max-width: unset !important;
  max-height: unset !important;
}

.footerTextWeight {
  font-weight: 400;
}

.footerLinkHover {
  position: relative;
  overflow: hidden;
  transition: all 0.6s ease;
}

.footerLinkHover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: left 0.6s ease;
  z-index: 0;
}

.footerLinkHover:hover::before {
  left: 0;
}

.footerLinkHover i {
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
}

.footerLinkHover:hover i {
  color: var(--quinary-color) !important;
  transition: all 0.6s ease;
}

.footerListHover {
  transition: all 0.4s ease;
}

.footerListHover:hover {
  color: var(--main-color) !important;
  transition: all 0.4s ease;
}

.imgHoverZoom:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.imgHoverZoom {
  transition: all 0.3s ease;
}

.hero-container {
  overflow: visible;
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-width: 100vw;
}

.hero-wrapper {
  display: flex;
  width: 400vw;
  height: 100vh;
  will-change: transform;
  transition: transform 0.6s ease-in-out;
}

.hero-panel {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.15),
    rgba(20, 20, 20, 0.6)
  );
  z-index: 2;
}
.hero-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5),
    rgba(20, 20, 20, 0.5)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  pointer-events: auto;
}

.hero-title {
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.hero-subtitle {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-text {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-quote {
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
  font-family: "Times New Roman", serif;
}

.quote-part {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.quote-part.animate__fadeInLeft,
.quote-part.animate__fadeInRight,
.quote-part.animate__fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

.hero-author {
  font-style: italic;
}

.hero-indicators {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator.active {
  background: var(--main-color);
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.indicator.active:hover {
  background: var(--main-color);
  transform: scale(1.2);
}

.indicator-line {
  width: 25px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  --progress: 0%;
}

.indicator-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 100%;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.newsImageIconDiv {
  bottom: -27px;
  left: 35px;
  width: 40px;
  height: 40px;
  border: 1px solid black;
  z-index: 10;
  transition: all 0.3s ease;
}

.newsImageIconDiv:hover {
  scale: 1.1;
  transition: all 0.3s ease;
}

.langLi {
  transition: all 0.3s ease;
  position: relative;
  margin: 0 !important;
  overflow: hidden;
}

.langLi::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: left 0.5s ease;
  z-index: -1;
}

.langLi:hover::before {
  left: 0;
}

.langLi:hover {
  color: white !important;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.langLi:hover i {
  color: white !important;
  transition: all 0.3s ease;
}

.langLi:hover span {
  color: white !important;
  transition: all 0.3s ease;
}

.footer-link-hover {
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link-hover:hover {
  text-decoration: none;
}

.footer-link-hover span {
  position: relative;
  display: inline-block;
}

.footer-link-hover span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--septenary-color);
  transition: width 0.3s ease;
}

.footer-link-hover:hover span::after {
  width: 100%;
}

.values-hover {
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.values-hover.active {
  color: var(--main-color) !important;
}

.values-hover:hover {
  text-decoration: none;
}

.values-hover span {
  position: relative;
  display: inline-block;
}

.values-hover span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--septenary-color);
  transition: width 0.3s ease;
}

.values-hover:hover span::after {
  width: 100%;
}

.offCanvasPadding {
  height: 100vh !important;
  overflow: hidden;
}

.offcanvas-end {
  height: 100vh !important;
  max-height: 100vh !important;
}

.fs-7 {
  font-size: 12px;
}

.fs-8 {
  font-size: 9px;
}

.mutedColor {
  color: #888888 !important;
}

.firmHeader {
  color: var(--main-color) !important;
}

.firmDetailImgSize {
  width: 280px;
  height: 220px;
}

.firmLeftBorder {
  border-left: 4px var(--main-color) solid;
}

.cookieBannerStyle {
  height: 125px;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.cookieBannerStyle.show {
  transform: translateY(0);
}

.cookieBannerStyle.hide {
  transform: translateY(100%);
}

.overflowHider {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.overflowHider::-webkit-scrollbar {
  display: none;
}

.firmNameBtn {
  font-size: 14px;
  font-weight: 700;
}

.darkerTextCustom {
  color: #4a4a4a !important;
}

.logo-div {
  margin-left: 310px;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.xqc {
  background-color: #f8f8f8 !important;
  min-width: 115px !important;
}

.xqc.active {
  color: white !important;
  background-color: var(--main-color) !important;
  transition: 0.3s ease;
  border: none;
  position: relative;
}

.xqc.active:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: var(--main-color) !important;
  border-width: 8px;
  margin-left: -8px;
}
.xqc.active {
  color: white !important;
  background-color: var(--main-color) !important;
  transition: 0.3s ease;
  border: none;
}

.xqc:hover {
  color: white !important;
  background-color: var(--main-color) !important;
  transition: 0.3s ease;
}

.footerLogoSizer {
  height: 150px;
}

.newsImageDiv {
  height: 240px;
  width: 377px;
}

.newsBtn {
  float: right;
}

.newsBtn:hover .readMore {
  background-color: var(--secondary-color) !important;
  transform: translateX(5px);
}

.readMore {
  background-color: var(--main-color) !important;
  transition: all 0.3s ease;
}

.readMoreHover {
  transition: all 0.3s ease;
}

.news-card {
  width: 100%;
}

.filterHover {
  transition: all 0.3s ease;
}

.filterHover.active {
  background-color: var(--main-color) !important;
  color: white !important;
}

.filterHover:hover {
  background-color: var(--main-color) !important;
  color: white !important;
}

.hoverTextStyle {
  transition: all 0.3s ease;
  cursor: pointer;
}

.hoverTextStyle:hover {
  color: var(--main-color) !important;
}

.hoverTextStyle.valuesA:hover {
  color: #9835c6 !important;
}

.hoverTextStyle.valuesB:hover {
  color: #db8400 !important;
}

.hoverTextStyle.valuesC:hover {
  color: #929292 !important;
}

@keyframes scroll-animation {
  0% {
    opacity: 1;
    top: 8px;
  }

  50% {
    opacity: 0.5;
    top: 20px;
  }

  100% {
    opacity: 0;
    top: 30px;
  }
}

@keyframes bounce-arrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heroTitleHeight {
  margin-top: 0vh !important;
}

.heroSectors {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
}

.offcanvas.show {
  z-index: 10001 !important;
}

.offcanvas.showing {
  z-index: 10001 !important;
}

.carousel-indicators {
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  left: auto !important;
  bottom: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 15px 10px !important;
  z-index: 10 !important;
}

.carousel-indicators [data-bs-target] {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  border: 2px solid #fff !important;
  margin: 0 !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.carousel-indicators [data-bs-target]:hover {
  opacity: 0.8 !important;
  transform: scale(1.1) !important;
}

.carousel-indicators .active {
  opacity: 1 !important;
  background-color: #dc3545 !important;
  transform: scale(1.3) !important;
}

@media (max-width: 768px) {
  .carousel-indicators {
    right: 10px !important;
    padding: 10px 8px !important;
  }

  .carousel-indicators [data-bs-target] {
    width: 14px !important;
    height: 14px !important;
    border: 2px solid #000 !important;
  }
}

@media (max-width: 1367px) {
  .logo-div {
    margin-left: 0px;
  }
}

@media (max-width: 1200px) {
  .logo-div {
    margin-left: 0px;
  }

  .heroTitleHeight {
    margin-top: 22vh !important;
  }

  .footerSearchContainer {
    width: 440px;
  }

  .cookieBannerStyle {
    height: 175px;
  }

  .griBtn:hover {
    color: var(--tertiary-color) !important;
    scale: 1 !important;
  }

  .hoverStyleBtn:hover {
    color: inherit !important;
    scale: 1 !important;
  }

  .hoverStyleBtnNoScale:hover {
    color: inherit !important;
    scale: 1 !important;
  }

  .hoverStyleSearchBtn:hover i {
    color: black !important;
  }

  .footerLinkHover:hover i {
    color: inherit !important;
  }

  .footerListHover:hover {
    color: black !important;
  }

  .langLi:hover {
    color: inherit !important;
    transform: none !important;
  }

  .langLi:hover i {
    color: inherit !important;
  }

  .langLi:hover span {
    color: inherit !important;
  }
}

@media (max-width: 991px) {
  .sektor-img-height {
    height: 100%;
    max-height: 200px;
    max-width: 400px;
  }

  .firmImage {
    width: 130px;
  }

  .offCanvasPadding {
    padding: 0 !important;
  }

  .griBtn:hover {
    color: var(--tertiary-color) !important;
    scale: 1;
  }

  .griBtn:focus {
    color: var(--tertiary-color) !important;
  }

  .cookieBannerStyle {
    height: 175px;
  }
  section[data-section] {
    width: 100%;
    min-height: 50vh;
    position: relative;
  }
}

@media (max-width: 767px) {
  .hero-indicators {
    right: 20px;
    gap: 10px;
  }

  .footerLogoSizer {
    height: 80px;
  }

  .firmLeftBorder {
    border-bottom: 4px var(--main-color) solid;
    border-left: none;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator-line {
    width: 20px;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-quote {
    font-size: 1.5rem !important;
  }

  .footerSearchContainer {
    width: 100%;
  }

  .cookieBannerStyle {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .news-card {
    width: 100%;
  }

  .cookieBannerStyle {
    height: 250px;
  }

  .mobileAboutImgHeight {
    height: 350px !important;
  }

  .mobileHeightConfig {
    min-height: 100vh !important;
  }
}

@media (max-width: 480px) {
  .hero-indicators {
    right: 15px;
    bottom: 20px;
    gap: 8px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator-line {
    width: 15px;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .hero-quote {
    font-size: 1.25rem !important;
  }

  .scroll-indicator,
  .next-section-indicator {
    bottom: 80px;
  }

  .scroll-arrow-down {
    width: 35px;
    height: 35px;
  }

  .scroll-arrow-down i {
    font-size: 16px;
  }
}

@font-face {
  font-display: block;
  font-family: Mori;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Outfit/Outfit-VariableFont_wght.ttf") format("opentype");
}

.timeline-container {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

#svg-stage {
  max-width: 600px;
  overflow: visible;
  margin: 0 auto;
}

.ball {
  fill: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.line {
  fill: none;
  stroke: white;
  stroke-width: 2px;
  transition: all 0.3s ease;
}

.sektor-img {
  transition: all 0.3s ease;
}

.sektor-img-height {
  height: 500px;
}

.sektor-text {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.sektor-img:hover + .sektor-text {
  opacity: 1;
  transform: translateX(0);
}

#svg-stage text {
  fill: white;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

#svg-stage text:hover,
.ball:hover {
  fill: red;
  stroke: red;
}

#svg-stage .line:hover {
  stroke: red;
}

.letterSpacer {
  letter-spacing: 0.04em;
}
