body {
  margin-bottom: 0;
}
html {
  scroll-behavior: smooth;
}

.large-text {
  font-size: 2rem;
}
.titan{
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
}
.min-height-25 {
  min-height: 25vh !important;
}
.min-height-75 {
  min-height: 75vh;
}
.bg-img-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url(../images/lights.jpg);
  min-height: 25vh;
}
.bg-img-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url(../images/media.jpg);
  min-height: 25vh;
}
.bg-img-3 {
  background-image: url(../images/image1.webp);
  min-height: 75vh;
}
.bg-img {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
  /* .carousel .carousel-item {
    min-height: 75vh;
  } */
  
.carousel-item img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    min-height: 75vh;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
}
.bg-black {
  background-color: black;
}
.border-black {
  border-color: black !important;
}
.negative-margin {
  margin-top: -10vh;
}


  /*whatsapp*/
  .whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 4px #999;
    z-index: 100;
}
.whatsapp-icon {
    margin-top: 16px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.whatsapp-icon:hover{
  
  transform: scale(1.5);
}
@media screen and (max-width:767px){
    .whatsapp-icon {
        margin-top: 10px;
    }
    .whatsapp_float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 10px;
        font-size: 22px;
    }
}
  /*whatsapp*/

/* hover efect blur */
.box:has(.inbox:hover) .inbox:not(:hover){
  scale: 0.8;
  opacity: 0.8;
  filter: blur(1.5px);
}
.inbox {
  transition: scale 0.3s ease-in, opacity 0.3s ease-in, filter 0.3s ease-in;
  &:hover{
    scale: 1.1;
  }
}
/* hover efect blur */