<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,body{
 font-family: "Enriqueta", sans-serif;
}
.enriqueta-regular {
  font-family: "Enriqueta", serif;
  font-weight: 400;
  font-style: normal;
}

.enriqueta-medium {
  font-family: "Enriqueta", serif;
  font-weight: 500;
  font-style: normal;
}

.enriqueta-semibold {
  font-family: "Enriqueta", serif;
  font-weight: 600;
  font-style: normal;
}

.enriqueta-bold {
  font-family: "Enriqueta", serif;
  font-weight: 700;
  font-style: normal;
}


.navbar {
    background-color: #0047AB;
}
.nav-link, .dropdown-item {
    color: #0047AB !important;
}
.nav-link:hover, .nav-link:focus, .nav-link:active,
.dropdown-item:hover, .dropdown-item:focus, .dropdown-item:active {
    color: #333 !important;
    background-color: #f26522;
}
.orange{
    background-color: #f26522;
    color: #333;
}
.otxt{
    color:#f26522;
}
.tpbtn{
    color: #333;
    text-decoration: none;
}
.tpbtn:hover{
    color:#fff;
    background-color: #0047AB;
}
.blue{
    background-color: #20409a;
    color: #333;
}
.custom {
    background: url('../phoro/fed.png') no-repeat center center;
    background-size: cover;
}

.lin{
    color: #f26522;
    font-weight: bold;
}

  /* Carousel base class */
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 1rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}

@media (min-width: 20em) {
  .carousel-item{
    height: 35rem;
  }
  .carousel-item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Ensure the carousel images are sized correctly */
.carousel-item {
  position: relative; /* Positioning for child elements */
  height: 100vh; /* Full viewport height */
  overflow: hidden; /* Hide overflow to keep the layout clean */
}

/* Create the fade overlay */
.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%; /* Adjust the height of the fade */
  background: linear-gradient(to top, rgba(52,98,173, 0.95), rgba(52,98,173, 0) 97%);
  pointer-events: none; /* Ensure clicks pass through */
  z-index: 1; /* Ensure it sits above the image, but below the caption */
}

/* Adjust the caption's position to sit above the fade */
.carousel-caption {
  position: absolute;
  bottom: 10%; /* Adjust caption position */
  z-index: 2; /* Make sure captions are on top */
  left: 50%;
  transform: translateX(-50%); /* Center the text */
  color: white; /* Ensure white text */
}

/* Make sure images fill the carousel item */
.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}</pre></body></html>