@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.containerr {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 62px 24px 67px;
  border-radius: none;
}

.background-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  border-radius: none;
  transition: opacity 0.76s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: none;
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.title {
  font-size: 62px;
  text-align: center !important;
  margin: 0;
  font-weight: bold;
  color: #ffffff;
  padding-top: 170px;
}

.showcase-container {
  display: inline-flex;
  flex-direction: column;
  align-items: left;
  align-self: left;
}

.showcase-option {
  cursor: pointer;
  font-size: 36px;
  font-weight: bold;
  text-align: left;
  color: #ffffff;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .container {
    padding: 39px 10px;
  }

  .title {
    font-size: 33px;
    text-align: center;
    padding-top: 142px;
  }

  .showcase-option {
    font-size: 25px;
    text-align: center;
  }
}


@media (max-width: 768px) {
  #slider-hero-section {

    height: 66vh !important;
  }}