*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    line-height: 1.6;
    letter-spacing: -.02em;
    text-rendering: optimizeSpeed;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(30, 30, 30, 0.8);
    overflow-x: hidden;
}

@media screen and (max-width:991px) {
    body {
        font-size: 1rem;
    }
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit
}

button {
    cursor: pointer;
    background: none;
    border: none
}

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

@media (prefers-reduced-motion: reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #2a3335;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
}

h1 {
    font-size: 5rem;
    line-height: 1.12;
    /* font-weight: 800; */
    /* letter-spacing: 0.01em; */
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

a {
    color: #C6FA35;
    transition: color .15s
}

a:hover {
    color: #B6FB04
}

strong,
b {
    font-weight: 600
}

small {
    font-size: .875rem
}


@media screen and (max-width: 1199px) {
    h1 {
        font-size: 3.5rem
    }

    h2 {
        font-size: 2.5rem
    }

    h3 {
        font-size: 1.5rem
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 2.5rem
    }

    h2 {
        font-size: 2rem
    }

    h3 {
        font-size: 1.5rem
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    h6 {
        font-size: 1rem;
    }
}

.container {
    width: 100%;
    max-width: 1388px;
    margin-inline: auto;
    padding-inline: 2rem;
}

@media (max-width: 1199px) {
    .container {
        max-width: 1140px
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 940px
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 720px;
        padding-inline: 1rem;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 540px
    }
}

/* Button */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    font-weight: 500;
    letter-spacing: -.04em;
    border: 2px solid;
    border-radius: 50px;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
    transition: .3s;
}

.btn:focus-visible {
    outline: 2px solid #C6FA35;
    outline-offset: 2px
}

.btn.btn-primary {
    border-color: #C6FA35;
    background: #C6FA35;
    color: #1e1e1e
}

.btn.btn-primary:hover {
    border-color: #B6FB04;
    background: #B6FB04
}

.btn.btn-secondary {
    border-color: #fff;
    background: #fff;
    color: #1e1e1e
}

.btn.btn-secondary:hover {
    border-color: #B6FB04;
    background: #B6FB04
}

.btn-outlined {
    background: transparent;
    border-color: #C6FA35;
    color: #C6FA35
}

.btn.btn-outlined:hover {
    color: #fff;
    border-color: #B6FB04;
    background: #B6FB04
}

.btn.btn-ghost {
    background: transparent;
    color: #C6FA35
}

.btn.btn-ghost:hover {
    background: #C6FA351a
}

.btn.btn-sm {
    padding: .75rem 1.75rem;
    font-size: 1.125rem
}

.btn.btn-full {
    width: 100%
}

.btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.btn:disabled:hover {
    transform: none
}

@media screen and (max-width:991px) {
    .btn {
        font-size: 1.125rem;
        padding: 0.75rem 2rem;
    }

    .btn.btn-sm {
        font-size: 1rem;
    }
}

@media screen and (max-width:767px) {
    .btn {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .btn.btn-sm {
        padding: .5rem 1.25rem;
    }
}


/* Form CSS */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.full-width {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 1.5rem
}

.form-grid .form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    font-size: 1rem;
    font-weight: 400;
    color: #2a3335
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #CCCCCC;
    border-radius: 0;
    font-size: 1rem;
    transition-property: border-color, box-shadow;
    transition-duration: .25s;
    transition-timing-function: ease
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #C6FA35;
    box-shadow: 0 0 0 3px #C6FA351a
}

.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder,
.form-select::-moz-placeholder {
    color: #9b9b9b
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
    color: #9b9b9b
}

.error {
    border-color: #ef4444
}

.error:focus {
    box-shadow: 0 0 0 3px #ef44441a
}

.form-textarea {
    min-height: 120px;
    resize: vertical
}

.error-message,
.error {
    display: block;
    margin-top: .25rem;
    color: #ef4444;
    font-size: .875rem
}

.form-help {
    display: block;
    margin-top: .25rem;
    color: #9b9b9b;
    font-size: .875rem
}

.form-checkbox,
.form-radio {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer
}

.form-checkbox input,
.form-radio input {
    width: auto;
    cursor: pointer
}

@media screen and (max-width:767px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1rem
    }

    .form-label {
        margin-bottom: .375rem;
        font-size: 0.875rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: .5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* ---------------------------- */  