body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #f0f0f0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav-ul {
  align-items: center;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

a {
  text-decoration: none;
  color: black;
}

section {
  padding: 20px;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Add styles for project cards and other sections as needed */
ul.timeline {
  padding-left: 1rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 500;
}

.job-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-item span.text-muted {
  font-size: 0.9rem;
}

.card {
  overflow: hidden;
}

.project-card {
  height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: 0.25rem 0.25rem 0 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.project-card:hover {
  transform: scale(1.05, 1.05);
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 780px) {
  .modal-dialog.max-limit {
    max-width: calc(100% - 10rem);
  }

  .hero-txt {
    min-height: 288px;
  }
}

@media screen and (max-width: 780px) {
  .hero-txt {
    font-size: 2.4rem;
    min-height: 138px;
  }
  .main-nav-ul {
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .main-nav-ul {
    font-size: 12px;
  }
  .main-nav-ul > li > a{
    padding-left: 0.45rem !important;
    padding-right: 0.45rem !important;
  }
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  position: fixed;
  z-index: 999;
  right: 2rem;
  top: 2rem;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 2rem;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 2rem;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 2rem;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 2rem;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

button.carousel-control-prev {
  background: linear-gradient(-90deg, transparent, rgba(0, 0, 0, 1));
}

button.carousel-control-next {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 1));
}

.modal-body {
  width: 100%;
}

.w-300 {
  max-width: 300px;
  width: 100%;
}

.w-70rem {
  max-width: 70rem;
  width: 100%;
}

.outline-light {
  border: 1px solid #f8f9fa
}

.shadow-b-1 {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5) !important;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: right;
  background-size: cover;
  opacity: 0.1;
  top: 0;
  right: 0;
}

.z-1 {
  position: relative;
  z-index: 1;
}

.bg-dark.text-white p a {
  color: rgb(180, 219, 255);
  text-decoration: underline;
}

.reviews-controllers {
  background: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0)) !important;
  width: auto !important;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

#carouselReviews .carousel-inner {
  padding: 1.5rem 2.5rem 3.5rem 2.5rem;
}

#carouselReviews .card.rounded-3 {
  border-radius: 1rem !important;
  margin-bottom: 2rem;
}

#carouselReviews .card-title {
  font-size: 1rem;
}

#carouselReviews p {
  font-size: 0.8rem;
}
