@font-face {
    font-family: "Rajdhani-Medium";
    src: url("../fonts/Rajdhani-Medium.ttf");
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}
main{
    flex-grow: 1;
}
.logo-empresa{
    font-family: "Rajdhani-Medium", Arial, sans-serif;
    font-size: 30px;
    font-weight: bold;
    transition: 300ms;
}
.logo-empresa:hover{
  transform: rotate(-3deg) scale(1.05);
}
.carousel-img{
    height: 350px;
    object-fit: cover;
}

.h-header{
    min-height: 65px;
}
.item-filamento{
       overflow: hidden;
}
.img-scale{
 
    transition: 300ms;
}

.img-scale:hover{
    transform: scale(1.2);
}

@media(760px <= width <= 991px){
 .carousel-img{
    height: 450px;
 }
}

@media(width>= 992px){
    .carousel-img{
        height: 500px;
    }
}