.custom-nav {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    padding-left: 2em;
    padding-right: 2em;
}

.bg-black {
    background-color: #080808;
}

.rz-width {
    max-width: 1024px;
}

.rz-image-circle {
    border-top-left-radius: var(--radius-round, 100000px);
    border-top-right-radius: var(--radius-round, 100000px);
    border-bottom-left-radius: var(--radius-round, 100000px);
    border-bottom-right-radius: var(--radius-round, 100000px);
}

img.w-image {
    box-sizing: border-box;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    outline-width: 1px;
    max-width: 100%;
    display: block;
    height: auto;
}

.rz-image {
    width: 320px;
    height: 320px;
    max-width: 320px;
    max-width: 320px;
}

.rz-button {
    color: rgba(255, 255, 255, 1);
    background-color: #398000;
    text-decoration-line: none;
    box-shadow: 0px 8px 30px rgba(63, 142, 0, .5);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid #62ba1b;
    border-radius: 0.375rem;
}

.rz-button:hover {
    opacity: 0.8;
}

.rz-bg-green {
    background-color: #418118;
}

.rz-border-green {
    border-color: #418118 !important;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #418118;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-card {
    background-color: #1e1e1e;
    border: none;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.rz-cta {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.rz-ff-georama {
    font-family: 'Georama', sans-serif;
}

p {
    font-family: 'Georama Light', sans-serif;
}

@font-face {
    font-family: "Georama";
    src: url('../font/Georama-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: "Georama Light";
    src: url('../font/Georama-Light.ttf') format('truetype');
}

.error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 1rem;
}

.sent-message {
    display: none;
    color: #fff;
    background: #1c1e1f;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border: 2px solid #398000;
    border-radius: 1rem;
}

.loading {
    display: none;
    background: #1c1e1f;
    border: 2px solid #398000;
    text-align: center;
    padding: 15px;
}

.loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #398000;
    border-top-color: rgb(208, 208, 208);
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
