body::-webkit-scrollbar {
    width: 0.25rem;

}

body::-webkit-scrollbar-track {
    background: #1e1e24;
}

body::-webkit-scrollbar-thumb {
    background: #A2E94B;
}

/* Botones slider */
.swiper-button-prev,
.swiper-button-next {
    --swiper-navigation-size: 20px;
    background: #151515;
    color: #B8B8B8;
    font-weight: bold;
    height: 50px;
    width: 50px;
    margin-top: -35px;
    opacity: 0.8;
    transition: opacity 0.9s;
    border-radius: 50%;
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1;
}

input[type="number"] {
    -moz-appearance: textfield;
    /* Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Quitar las flechas en Internet Explorer */
input[type="number"] {
    -ms-appearance: none;
}

.tagline2 {
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 8px 10px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 20px;
    margin-bottom: 16px;
    display: inline-block;
    color: #ffffff !important;
    position: relative;
    transition: 0.3s ease-in-out;
}

.tagline2::before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    background: linear-gradient(90.21deg, rgba(162, 233, 75, 0.5) -5.91%, rgba(39, 126, 45, 0.5) 111.58%);
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.tagline2:hover {
    color: #fff;
}

.tagline2:hover::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
}

.social-icon {
    display: inline-block;
    margin-left: 14px;
}

.social-icon a {
    width: 42px;
    height: 42px;
    background: rgba(217, 217, 217, 0.1);
    display: inline-flex;
    border-radius: 50%;
    margin-right: 6px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.social-icon a::before {
    content: "";
    width: 42px;
    height: 42px;
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.social-icon a:hover::before {
    transform: scale(1);
}

.social-icon a img {
    width: 40%;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.social-icon a:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(98%) hue-rotate(346deg) brightness(95%) contrast(86%);
}

.contactame {
    padding: 80px;
    padding-bottom: 80px;
}

.icon-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #A2E94B;
    color: #1f1f1f;
    padding: 14px;
    border-radius: 100%;
    box-shadow: 0 0 12px rgba(162, 233, 75, 1);
}

@media screen and (max-width: 768px) {

    .contactame {
        padding: 40px;
    }
}