﻿.main {
  padding: 50px 0;
  background-image: linear-gradient(rgba(34, 147, 215, 0.7), rgba(34, 147, 215, 0.5)), url('../images/home.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.main__inner {
  width: 100%;
  height: 100%;
}

.main__title {
  font-family: 'Varela Round', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 72px;
  padding: 0px 100px;
  color: #ffffff;
  text-align: center;
  margin-top: 214px;
  position: relative;
  z-index: 2;
}

.main__inner {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  padding-top: 100px; /* Adjust the padding value as needed */
  padding-left: 200px;
}

.content-stack {
  display: flex;
  align-items: center; /* Center vertically within the content stack */
}

.image-stack {
  margin-right: 50px; /* Adjust as needed for spacing between the image and bullet list */
}

.image-stack__item {
  max-height: 500px;
  width: auto;
  height: auto;
  filter: none; /* Remove the tint filter */
}

.bullet-list-container {
  text-align: left;
  margin-top: 20px;
}

.title-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 0;
  text-align: left;
}

.title-label__icon {
  height: 40px; /* Adjust the value to match the title height */
  margin-right: 10px;
}


.title-label h3 {
  font-family: 'Varela Round', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 45px;
  line-height: 72px;
  margin: 0;
  padding: 0;
}


.bullet-list-wrapper {
  margin-left: 50px;
  padding-left: 0;
}

.bullet-list {
  list-style: disc;
  padding: 0;
  margin: 0;
}

.bullet-list__item {
  margin-bottom: 10px;
  padding-left: 0px;
}

.sub-bullet-list {
  padding: 0;
  margin-left: 20px;
}

.sub-bullet-list__item {
  margin-bottom: 5px;
  padding-left: -5px;
  /*text-transform: lowercase; /* Convert text to lowercase */
}

.app-store-button {
  text-align: left;
  margin-top: 20px;
}

.app-store-button img {
  max-width: 200px;
}

.aligned-button-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  gap: 15px;
}

.aligned-button-list li {
  display: flex;
  align-items: center;
}

.aligned-button-list img {
  height: 36px;
}

/* Media Queries */
@media only screen and (max-width: 767px) {
  .main__inner {
    padding: 50px 20px; /* Adjust the padding value as needed */
  }

  .content-stack {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
  }

  .image-stack {
    margin-right: 0; /* Reset the margin */
    margin-bottom: 20px; /* Add some spacing between the image and other items */
  }

  .title-label {
    text-align: center; /* Center the title label */
  }

  .bullet-list-wrapper {
    margin-left: 0; /* Reset the margin */
  }

  .app-store-button {
    text-align: center; /* Center the app store button */
  }
}

