.submit-contact-form.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}
.submit-contact-form {
    cursor: pointer;
}
.submit-contact-form.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-top: 2px solid #16a34a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.blog-details-area .article-image img {
    min-width: 100%;
    height: 500px;
    object-fit: fill;
}

.single-news .blog-img a img {
    height: 293px;
    object-fit: cover;
}
.single-news .news-content-wrap {
    height: 277px;
}

.user-technology img{
    height: 128px;
    width: 220px;
    border-radius: 10px;
}

.page-title-area.custom-page {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
