:root{
    --primary-color: #233b77;
    --secondary-color: rgb(255,151,112);
    --light-color: #f3f3f3;
    --dark-color: #333;
}

.footer{
    background-color: rgb(255, 244, 237);
    color:var(--primary-color);
}

.copyright{
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 25px 50px;
    width: 100%;
}

.text-primary{
    color: var(--primary-color)!important;
}

.text-waring{
    color: var(--secondary-color)!important;
}

.text-gold{
    color: var(--secondary-color)!important;
}

.footer-links li{
    padding: 10px 0;
}

.footer-links li a, .footer-links li i{
    color: #999;
    text-decoration: none;
    transition: all 0.5s ease;
}

.footer-links li a:hover{
    color:  var(--primary-color);
}




  .whatsapp-icon {
    position: fixed;
    bottom: 100px;
    right: 30px;
    animation: float 3s ease-in-out infinite;
    z-index: 9999;
  }

  .whatsapp-icon .bi-whatsapp {
    color: var(--secondary-color);
    font-size: 60px;
    transition: all 0.5s ease;
  }
  
  .whatsapp-icon .bi-whatsapp:hover {
    color:#128C7E;
  }

  .whatsapp-text {
    font-size: 10px;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }


.text-left{
    text-align: left;
}

.carousel-indicators [data-bs-target] {
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.carousel-indicators [data-bs-target].active {
  background-color: #ffffff;
}

[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #fffdfd;
  position: relative;
  bottom: -70px;
}


.overlay::before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}


.search-box{
    min-height: 250px;
    background-color: #fff;
}