.hero-cta:hover {
    background-color: #1aa533;;
}
.section-block:hover .section-block-header-wrapper img  {
    transform: translateY(-10px);
}
.section-split-btn:hover {
    background-color: #c3f0cc;
    box-shadow: none;
}
.form-items {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-item-input {
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
    font-size: 17px;
}
.form-item-text-area {
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
    font-size: 17px;
    height: 170px;
    resize: none;
}
#form-submit-btn {
    cursor: pointer;
    width: 90%;
    outline: none;
    border: none;
    padding: 10px;
    font-size: 17px;
    background-color: #1eb53a;
    color: white;
    font-weight: bold;
}
.loader {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border-top: 2px solid #fff;
    border-right: 2px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
