/* CSS Reset or Normalize */
* {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  line-height: 1;
  color: black;
}

.hero-text-color-h1 {
  font-size: 3rem;
}

.card {
  opacity: 1;
  margin-top: 5%;
  background-color: rgb(243, 243, 243);
}

/* Semantic class names */
.carousel-container {
  width: 60%;
  margin: 3rem auto;
  box-shadow: 0 0 20px rgba(101, 216, 187, 0.5);
}

/* Slider styling and cutomization */
.carousel-inner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: auto;
}

.homepage-hero-module {
  position: relative;
}

/* Hero backgound styling */
.bg-overlay {
  width: 100%;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Logo styling */
.logo-img {
  width: 12rem;
  margin-left: 1rem;
}

.form-horizontal .control-label {
  text-align: left !important;
  /* !important added for priority in SO snippet. */
}

/* Section styling */
section {
  background-color: #f8f9fa;
  padding: 40px 0;
  padding: 1rem;
  font-weight: 400;
}

/* ul and li styling */
ul li {
  padding-right: 1.5em;
  margin-bottom: 0.5em;
}

/* Responsive image */
img.img-fluid {
  width: 100%;
  height: 60vh;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

/* Distance and Payment table cutomization */
table {
  margin-top: 2rem;
}

.travel-table {
  margin-top: 4rem;
}

.payment-table {
  margin-top: 4rem;
}

.payment-plan {
  font-weight: 400;
  font-size: 1.5rem;
}

/* Footer Social Network customization */
.social_network a {
  text-decoration: none;
  color: inherit;
}

.social_network i {
  transition: color 0.3s ease;
}

.social_network a:hover i {
  color: #cf3b3b;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .hero-text-color-h1 {
    font-size: 2rem;
    font-weight: 600;
  }

  .hero-text-color-h3 {
    font-size: 1.5rem;
  }
}

/* Additional responsive styles for even smaller screens */
@media (max-width: 576px) {
  .hero-text-color-h1 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .hero-text-color-h3 {
    font-size: 1.5rem;
  }
}


hero-text-color-h3