@font-face {
  font-family: 'Cairo';
  src: url('./fonts/Cairo/Cairo-VariableFont.ttf') format('truetype');
  font-weight: 100 900; /* Defines the weight range */
  font-style: normal;
}

@font-face {
  font-family: 'CairoExtraBold';
  src: url('./fonts/Cairo/Cairo-ExtraBold.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'SpaceGrotesk';
  src: url('./fonts/SpaceGrotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* Defines the weight range */
  font-style: normal;
}

@font-face {
  font-family: 'SpaceGrotesk-Regular';
  src: url('./fonts/SpaceGrotesk/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 100 900; /* Defines the weight range */
  font-style: normal;
}

:root {
  --Black: #000;
  --Red: rgba(236, 50, 55, 1);
  --Red-Accent: rgba(230, 11, 17, 1);
  --Text: rgba(241, 241, 241, 1);
  --Dark-Blue: rgba(16, 18, 26, 1);
}

* {
  box-sizing: border-box;
  color: var(--Text);
}

/* scrollbar width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--Orange); 
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--Red); 
  border-radius: 6px;
}

html,
body {
  background-color: black;
  padding: 0;
  margin: 0;
  font-family: 'SpaceGrotesk', 'sans-serif' !important;
  font-size: 16px;
  color: var(--Text) !important;
  min-width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

.navbar-toggler:focus {
  border: none;
  box-shadow: 0 0 0 0.1rem !important;
}

/* Navbar */
nav.navbar {
  padding: 30px 32px;
  transition: opacity 0.5s;
}

nav:hover,
nav.navbar:hover {
  opacity: 1;
}

.logo {
  gap: 10px;
}

.logo span {
  font-family: 'Cairo', 'sans-serif';
  font-size: 48px;
}

.logo > div {
  padding: 7px 17px;
}

nav > div {
  max-width: 1140px;
}

.navmenu li a {
  font-family: 'Cairo', 'sans-serif';
}

.active {
  color: var(--Red-Accent) !important;
}

#heroCarousel {
  overflow: hidden;
  z-index: 1;
  margin-top: 132px;
  max-width: 1440px;
}

.content {
  z-index: 9;
}

.home-header,
.content-child,
.content-child-larger  {
  width: min(1440px, 100%);
  padding-left: 32px;
  padding-right: 32px;
}

.headings {
  font-family: 'Cairo', 'sans-serif' !important;
  text-transform: uppercase;
  font-size: 48px;
}

.heading-3 {
  font-family: 'Cairo', 'sans-serif';
  font-size: 32px;
  font-weight: 800;
  line-height: 45px;
}

.heading-4 {
  font-family: 'Cairo', 'sans-serif';
  font-size: 24px;
  font-weight: 800;
  line-height: 45px;
  text-transform: uppercase;
}

.heading-5 {
  font-family: 'Cairo', 'sans-serif';
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  text-transform: uppercase;
}

header {
  margin-top: 132px;
}

section {
  padding: 100px 0;
}

.section-heading {
  font-family: 'Cairo', 'sans-serif';
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 25.2px;
  color: var(--Red);
  border-left: 2px solid var(--Red, #EC3237);
  padding-left: 16px;
}

.carousel-indicators {
  z-index: 10;
  margin-bottom: 2rem;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: white !important;
  opacity: 1 !important;
}

.carousel-indicators .active {
  background-color: var(--Red) !important;
  border: none;
  outline: none;
  width: 10px !important;
  height: 10px !important;
}

.carousel-indicators [data-bs-target] {
  background-color: white;
}

@media (min-width: 480px) {
  .headings {
    font-size: 64px;
    line-height: 76.8px;
  } 
}

@media (min-width: 1200px) {
  .home-header,
  .content-child {
    padding-left: 120px;
    padding-right: 120px;
  }

  .top-banner > div {
    flex-direction: row;
    margin-left: auto;
  }

  .row-div-1 {
    min-width: 648px;
    flex-shrink: 0;
    padding-right: 0;
  }

  .header-image img {
    width: 847px;
  }

  #carousel {
    padding: 72px 24px;
  }
}

@media (min-width: 1440px) {
  .home-header,
  .content-child {
    padding-left: 150px;
    padding-right: 150px;
  }
}