/*whatsap*/

.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 13px;
}
a {
    text-decoration: none;
}

/*slider home clientes*/

.sliderHome .carousel-item {
    min-height: 42vh;
    background-color: rgb(255, 255, 255);
}

.sliderHome .carousel-item .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.sliderHome .carousel-item h1 {
    font-size: 32px;
    color: #000000;
    margin: 0;
    margin-top: 4;
}

.sliderHome .carousel-item p {
    font-size: 22px;
    margin: 0;
    color: #d97706;
    opacity: 0;
    margin-top: 4;
}

.sliderHome .carousel-item.active h2 {
    animation: fadeInLeft 0.5s ease forwards;
}

.sliderHome .carousel-item.active p {
    animation: fadeInRight 0.5s ease forwards;
}

/*slider about certificaciones*/

.about .carousel-item {
    min-height: 65vh;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.about .carousel-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.about .carousel-item .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.about .carousel-item h2 {
    font-size: 80px;
    color: #ffffff;
    margin: 0 0 10px;
    opacity: 0;
}
.about .carousel-item p {
    font-size: 30px;
    margin: 0;
    color: #eeeeee;
    opacity: 0;
}
.about .carousel-item.active h2 {
    animation: fadeInLeft 0.5s ease forwards;
}
.about .carousel-item.active p {
    animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.about .carousel-controls {
    position: absolute;
    left: 50%;
    bottom: 40px;
    z-index: 10;
    transform: translateX(-50%);
}

.about .carousel-indicators {
    position: relative;
    margin: 0;
}

.about .carousel-indicators li {
    height: 70px;
    width: 70px;
    margin: 0 5px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}
.about .carousel-indicators li.active {
    border-color: #ffffff;
    transform: scale(1.2);
}

.about .carousel-control-next,
.about .carousel-control-prev {
    height: 60px;
    width: 60px;
    opacity: 1;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.about .carousel-control-next:hover,
.about .carousel-control-prev:hover {
    box-shadow: 0 0 10px #ffffff;
}
.about .carousel-control-next img,
.about .carousel-control-prev img {
    width: 30px;
}
.about .carousel-control-next {
    right: -90px;
}
.about .carousel-control-prev {
    left: -90px;
}

/*responsive about*/

@media (max-width: 767px) {
    .about .carousel-control-next,
    .about .carousel-control-prev {
        display: none;
    }
    .about .carousel-indicators li {
        height: 60px;
        width: 60px;
    }
    .about .carousel-item h2 {
        font-size: 45px;
    }
    .about .carousel-item p {
        font-size: 22px;
    }
}

.centrado {
    position: absolute;
    top: 10%;
    left: 50%;
    color: orange;
    transform: translate(-50%, -50%);
}
