a.blogger-all { text-decoration: underline !important; }

.icon {
    width:18px;
    height:18px;
    margin-left: 8px;
}

.logo-img { width: 40px; }

.bg-light {
    background-color: #f2f2f2;
}
.text-grey {
    color: #bdbbbb;
}

.round {
    border-radius: 5px;
    padding: 5px 25px;
}

.btn-secondary, .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    color: #fff;
    background-color: #000;
    border-color: #000;
  }

@media (min-width: 768px) {
    .px-md-10 {
        padding-right: 10rem !important;
        padding-left: 10rem !important;
    }
}

.mod-languages {
    margin-top: -8px;
    margin-left: 15px;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #000;
}

.carousel-control-next, .carousel-control-prev {
  color: #000;
}

select {
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-radius: unset;
    background: #fff;
}

.btn-success {
    color: #fff;
    background-color: #33a55a;
    border-color: #33a55a;
}

.img__wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.img__wrap img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

.img__wrap .img__description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    border-radius: 5px;
}

.img__wrap:hover img {
    opacity: 0.7;
}

.img__wrap:hover .img__description {
    opacity: 1;
}

