/* Default image for large screens (Desktops) */
/* body {
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
}
 */
.full-screen {
  height: 100vh;
  background: url('../images/hero_full.webp') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section {
  padding: 60px 15px;
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Tablets (portrait and landscape) */
@media (max-width: 1024px) {
  .full-screen {
    background: url('../images/hero_1440_900.webp') no-repeat center center/cover;
  }
}

/* Mobile devices (small screens) */
@media (max-width: 768px) {
  .full-screen {
    background: url('../images/hero_1080_1350.webp') no-repeat center center/cover;
  }
}

/* Smaller mobile screens (e.g., very small smartphones) */
@media (max-width: 480px) {
  .full-screen {
    background: url('../images/hero_640_960.webp') no-repeat center center/cover;
  }
}

/*
 * Globals
 */


/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none;
  /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

.full-screen {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
  max-width: 44em;
}

/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link+.nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

/***********featurettes*****************/
/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}

/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0;
  /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {

  /* Bump up size of carousel content */
  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

.clickable-card:hover {
  box-shadow: 0 0 10px rgba(248, 227, 227, 0.1);
  transition: box-shadow 0.2s ease;
}

.custom-tooltip {
  --bs-tooltip-bg: var(--bs-primary);
}