.pulse-animation {
    animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(.9);
    }

    100% {
        transform: scale(1);
    }
}

@media (min-width: 576px) and (max-width: 991px) {

    .container,
    .container-sm {
        max-width: 100%;
    }
}

.buttons .button5 {
    margin: 0 25%;
    font-size: 30px;
    line-height: 33px;
    text-align: center;
    vertical-align: center;
    font-weight: bold;
    color: #fff;
    width: 100px;
    height: 100px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #fdd832 0%, #f7b42f 10%, #9c7625 30%, #80672c 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #fff 0%, #f8f8a6 7%, #d8b965 25%, #5d4a1f 62%, #5c491d 100%);
    border-top-color: #d8b965;
    border-right-color: #f7b42f;
    border-bottom-color: #f7b42f;
    border-left-color: #d8b965;
    border-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
    position: absolute;
    bottom: -40px;
    right: -50px;
    z-index: 9;
}

@media (max-width: 991px) {
    .buttons .button5 {
        font-size: 20px;
        line-height: 17px;
        width: 70px;
        height: 70px;
        bottom: 10px;
    }
}

.testimonials {
    overflow: hidden;
    background-image: linear-gradient(to bottom, var(--primary-color), var(--primary-color-dark));
}

.testimonials .review {
    background-color: #fff;
    max-width: 90%;
    padding: 20px;
    border-radius: 10px;
    min-height: 250px;
    display: flex;
    gap: 15px;
}

@media (max-width: 991px) {
    .testimonials .review {
        height: auto;
        display: inline-block;
        text-align: center;
    }
}

.testimonials .review .profile {
    display: flex;
}

@media (max-width: 991px) {
    .testimonials .review .profile {
        justify-content: center;
        margin-bottom: 15px;
    }
}

.testimonials .review .image-profile {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-size: cover;
    background-position: center center;
}

.testimonials .review .image-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.testimonials .review p {
    font-size: 18px;
    font-style: italic;
}

.testimonials .arrows-slide {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.testimonials .arrows-slide i {
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

@media(max-width: 991px) {
    .text-header p.fs-5 {
        font-size: 18px !important;
    }

    .text-header h1 {
        font-size: 25px !important;
    }

    .text-header h2 {
        font-size: 20px !important;
    }

    #about {
        margin-bottom: 0 !important;
    }
}

.scroll {
    animation: moveUpDown 2s infinite ease-in-out;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(18px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(18px);
    }
}

.today {
    color: var(--contrast-color);
    text-decoration: underline;
}