/* full gutenberg */
.footer-gut__logo {
    width: 7.5rem;
}

@media screen and (max-width: 500px) {
    .footer-gut__logo {
        margin: 0 auto;
        margin-bottom: .5rem;
    }
}

.footer-gut__logo img {
    width: 100%;
}

.footer-gut__up {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-gut__nav {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .footer-gut__nav {
        width: 100%;
        justify-content: center;
    }
}

.footer-gut__nav .header__actions li {
    margin: 0;
}

.footer-gut__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 500px) {
    .footer-gut__bottom .footer__legal__text {
        margin-bottom: 1rem;
        text-align: center;
    }
}

.footer-gut__bottom .footer__main__rrss {
    gap: .5rem;
}

@media screen and (max-width: 500px) {
    .footer-gut__bottom .footer__main__social {
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-gut__bottom .footer__main__rrss li a {
    width: 2rem;
    height: 2rem;
}

.is-layout-constrained {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: calc(var(--maxw-container) - 10rem) !important;
}

.alignwide, .alignfull {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.is-layout-constrained.alignwide, .alignwide {
    max-width: var(--maxw-container) !important;
}

.is-layout-constrained.alignfull, .alignfull {
    max-width: 100% !important;
}

/* nuevo video */
.whyus__container {
    gap: 3rem;
}

.whyus__info_ {
    width: 53%;
}

@media screen and (max-width: 800px) {
    .whyus__info_ {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .whyus__info_ {
        width: 100%;
    }
}

.whyus__video {
    display: block;
    width: 100%;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .35);
    position: relative;
}

.whyus__video img {
    width: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;

}

@media screen and (max-width: 500px) {
    .video-play-button {
        transform: translateX(-50%) translateY(-50%) scale(.8);
    }
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #FF0000;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #FF0000;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: darken(#FF0000, 10%);
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    /* position: relative; */
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 27px solid #fff;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}