.navbar-wrap {
    flex-wrap: wrap;
}



.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.footer a {
    color: #ffffff;
}

.img-gallery {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.video {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    max-height: calc(100vh - 200px);
}

.video-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    opacity: .5;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: black;
}

/* .grid-item {
    width: 200px;
} */

.img-testimony {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 200px;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.btn-whatsapp-container {
    left: initial;
}

.btn-whatsapp-link {
    width: 75px;
    height: 75px;
}

.btn-whatsapp {
    width: 50px;
    height: 50px;
}

.link-register {
    animation-name: grow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    width: fit-content;
}

@keyframes grow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.25);
    }
}