.navigation.navtop,
.headerspacing {
  display: none !important;
}

.hero {
  position: relative;
  background-color: black;
  width: 100%;
  /* aspect-ratio: 16/9; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100vh;
}

.hero-overlay {
  /* background: rgba(0,0,0,0.5); */
  color: #fff;
  padding: 2rem;
  padding-top:0;
  max-width: 550px;
  position: relative;
}

.hero-overlay h1 {
  margin: 0 0 16px 0;
  line-height: 1.1;
  font-family: "HK-Grostek-Wide";
  font-style: normal;
  font-weight: 700;
}

.hero-overlay p {
  margin: 0 0 16px 0;
  font-style: normal;
  font-weight: 400;
}

.tmcorp__hero-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0 2rem 1rem;
  background: transparent;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scroll-behavior: smooth;
}

.tmcorp__hero-cards::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.tmcorp__hero-cards .tmcorp__card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  min-width: 300px;
  flex: 1 0 250px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  cursor: pointer;
  color: #222;
  text-decoration: none;
  gap: 24px;
  font-family: "HK-Grostek-Wide";
}
@media (max-width: 1050px) {
  .tmcorp__hero-cards .tmcorp__card {
    flex-basis: 250px;
  }
}

.tmcorp__card .card-image {
  transition: transform 0.3s ease;
}

.tmcorp__card .card:hover .card-image {
  transform: scale(1.35);
}

.tmcorp__card .card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tmcorp__card .card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.tmcorp__card .card-link {
  color: #1a73e8;
  font-size: 1.2rem;
}

.tmcorp__card .card-link img {
  width: 20px;
  height: 20px;
}
.tmcorp__card.active .card-image {
  transform: scale(1.35);
}
.stock-bar {
  background: #18184a;
  color: #fff;
  padding: 0.2rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  font-family: "HK-Grostek-Wide";
}

.stock-price {
  color: #00e676;
  font-weight: bold;
}

.stock-up {
  color: #00e676;
}

.stock-vol {
  font-weight: bold;
}

.company-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: white;
  justify-content: center;
}

.company-card {
  background: #fff;
  padding: 1rem;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
  font-family: "HK-Grostek-Wide";
}

.company-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.company-desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.company-link {
  color: #18184a;
  font-size: 1.5rem;
}

.company-link img {
  width: 20px;
  height: 20px;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.slider.active {
  display: block;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
  transition: opacity 0.5s ease-in-out;
  align-items: center;
}

/* .slide:nth-child(1) {
  background-image: url("../img/banner.jpg");
}

.slide:nth-child(2) {
  background-image: url("../img/banner2.jpg");
}

.slide:nth-child(3) {
  background-image: url("../img/banner.jpg");
} */

.slide.active {
  display: flex;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prev-slide,
.next-slide {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 40px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: white;
}

@media (max-width: 500px) {
  .hero {
    padding-top: 0;
    height: 100vh;
  }

  .company-section {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero-overlay {
    padding: 1rem;
    padding-top: 0;
  }

  .stock-bar {
    padding: 0.5rem 1rem;
  }

  .slide {
    background-size: cover;
    background-position: top center;
  }
}
.slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#slider-1 .slide {
  background-image: url("../img/banner-landing.jpg");
}
#slider-1 .slide video {
  transform: scaleX(-1);
}
#slider-2 .slide {
  background-image: url("../img/banner-stories.jpg");
}

#slider-3 .slide:nth-child(1) {
  background-image: url("../img/banner-sus1.jpg");
}

#slider-3 .slide:nth-child(2) {
  background-image: url("../img/banner-sus2.jpg");
}
#slider-4 .slide {
  background-image: url("../img/banner-ar.jpg");
}
#slider-5 .slide {
  background-image: url("../img/banner-news.jpg");
}

@media (max-width: 500px) {
  #slider-1 .slide {
    background-image: url("../img/banner-landing-mobile.jpg");
  }

  #slider-2 .slide {
    background-image: url("../img/banner-stories-mobile.jpg");
  }

  #slider-3 .slide:nth-child(1) {
    background-image: url("../img/banner-sus1-mobile.jpg");
  }

  #slider-3 .slide:nth-child(2) {
    background-image: url("../img/banner-sus2-mobile.jpg");
  }

  #slider-4 .slide {
    background-image: url("../img/banner-ar-mobile.jpg");
  }
  #slider-5 .slide {
    background-image: url("../img/banner-news-mobile.jpg");
  }
}

.tmcorp__navbar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.tmcorp__navbar-logo img {
  height: 40px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.tmcorp__navbar-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.tmcorp__navbar-menu li {
  position: relative;
}

.tmcorp__navbar-menu li > a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tmcorp__navbar-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  color: #18184a;
  min-width: 200px;
  padding: 0.5rem 0;
  display: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.tmcorp__navbar-menu .dropdown-menu li > a {
  color: #18184a;
  padding: 0.5rem 1rem;
  display: inline-block;
}
.tmcorp__navbar-menu .dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown span svg path {
  stroke: white !important;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .dropdown span svg path {
    stroke: #18184a !important;
  }
  .tmcorp__navbar-logo img {
    height: 25px;
    width: auto;
  }
  .tmcorp__navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    color: #18184a;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
  }

  .tmcorp__navbar-menu.active {
    right: 0;
  }

  .tmcorp__navbar-menu ul {
    flex-direction: column;
    gap: 1rem;
  }
  .tmcorp__navbar-menu li > a {
    color: #18184a;
  }
  .tmcorp__navbar-menu .dropdown-menu {
    position: static;
    display: none;
    padding-left: 1rem;
    box-shadow: none;
  }

  .tmcorp__navbar-menu .dropdown.active .dropdown-menu {
    display: block;
  }
  .mobile-menu-toggle.active span {
    background-color: #18184a;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

.discover-btn {
  width: 150px;
}
footer.footer {
  background-color: white;
  padding-bottom: 24px;
  border-top: 2px solid #1800e7;
}
footer.footer .footer-content > hr {
  border: 0.5px solid #18184a !important;
  margin-top: 54px;
}
footer .footer-content hr:first-child,
footer .footer-content hr:nth-child(2) {
  display: none;
}
footer::before,
footer::after {
  display: none;
}
footer .headingcover p.text-accent-orange {
  color: #18184a;
}
footer .headingcover-slimmer p.text-accent-orange {
  color: #18184a;
}
footer .headingcover li a {
  color: #18184a;
}
footer .content--section .listing li a {
  color: #18184a !important;
}

footer .footer-content .footer--tnc {
  color: #18184a;
}
@media (max-width: 992px) {
  footer .content--section .headingcover,
  footer .content--section .headingcover-slimmer {
    border-top: 1px solid #18184a !important;
  }
}