.loading-image {
 
    animation: rotateAndFade 12s ease-in-out infinite;
}

@keyframes rotateAndFade {
    0% {
        transform: rotate(-2deg);
        opacity: 0.9;
    }
    33% {
        transform: rotate(2deg); 
        opacity: 1;
    }
    66% {
        transform: rotate(2deg);
        opacity: 0.9;
    }
	 100% {
        transform: rotate(-2deg);
        opacity: 1;
    }
}


 .sppb-gallery img {
     object-fit: cover!important;
	 filter: drop-shadow(6px 6px 24px black)!important;
}

input[type=text]:not(.form-control), input[type=email]:not(.form-control), input[type=url]:not(.form-control), input[type=date]:not(.form-control), input[type=password]:not(.form-control), input[type=search]:not(.form-control), input[type=tel]:not(.form-control), input[type=number]:not(.form-control), select:not(.form-select):not(.form-control) {
    display: block;
    width: 100%;
    padding: .5rem .5rem .5rem 3rem !important;
    font-size: 1rem;
    line-height: 1.25;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

