

.container-boton{
    background-color: #2e6329;
    border: 1px solid #fff;
    position: fixed;
    z-index: 500;
    border-radius: 50%;
    bottom: 20px;
    right: 25px;
    padding: 25px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.boton{
    width: 50px;
    transition: ease 1s;
}

.not-carousel{
 display: flex!important;
 justify-content: space-evenly;
 gap: 30px;
}

.iframe-video {
height: 450px;
max-width: 450px;
width: 100%;
}
.iframe-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


#contactForm:invalid button {
  opacity: 0.3;
  pointer-events: none;
}

#contactForm input:valid{
    border-color: green!important;
}

.complete-form{
    background-color: #007300;
    color:white;
    padding: 10px;
}

.height-6{
 height: 25px;
 padding-top:3px;
}

.height-6 span{
color: red;
font-size: 12px;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}


@media screen and (max-width: 959px) {
    .not-carousel{
        align-items: center;
        flex-direction: column;
    }
}