@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

html,
body {
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    color: #000;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.main {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    z-index: 1;
    background: #2D3A3A;
}

    .main:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 180PX;
        background: #248232;
    }

    .main img {
        margin: 40px 0 0;
        width: 660px;
    }

.form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 660px;
    height: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 11px 34px -19px rgb(0 0 0 / 66%);
    transition: all .3s ease;
}
.landing-form {
    width:100%;
}
.field input.input-invalid {
    outline: red solid 1px;
}

.question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    min-height: 370px;
    padding: 40px 80px;
    text-align: center;
}

    .question label {
        color: #248232;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
    }

    .question button {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 220px;
        height: 60px;
        line-height: 1;
        padding: 0 40px;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        border: 0;
        outline: 0;
        cursor: pointer;
        border-radius: 4px;
        background: #2BA84A;
        text-decoration: none;
        transition: all .3s ease;
    }

        .question button:hover {
            background: #2D3A3A;
        }

        .question button:disabled, .question button[disabled] {
            background: #72d48a;
        }

.question label.disclaimer {
    margin: 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
}
#srDisclosure label {
    margin: 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
    color: #000;
}

.option {
    width: 100%;
}

    .option select {
        width: 100%;
        height: 40px;
        line-height: 1;
        padding: 0 15px;
        font-size: 14px;
        font-weight: 500;
        outline: 0;
        border-radius: 4px;
        border: 1px solid #999;
    }

.tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 20px 0;
}
.tag-center {
    text-align:center;
}
.header-title {
    text-align: center;
}
.tag-center span {
    width: 100%;
}

    .text {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

.title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.description {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.range {
    font-family: 'Roboto', sans-serif;
    color: #248232;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

    .range:before {
        content: "$";
    }

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: #ddd;
    outline: none;
    transition: all .3s ease;
}

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #2BA84A;
        cursor: pointer;
    }

    .slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #2BA84A;
        cursor: pointer;
    }

.slider-range {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #666;
    margin: 15px 0 0;
}

.contact {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px 0;
}

.field {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin: 0 0 15px 0;
}

    .field:last-child {
        margin: 0;
    }

    .field:nth-child(1),
    .field:nth-child(2) {
        width: calc(50% - 10px);
    }

    .field span {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
    }

    .field button {
        width: 100%;
    }

    .field input {
        width: 100%;
        height: 40px;
        line-height: 1;
        padding: 0 15px;
        font-size: 14px;
        font-weight: 500;
        outline: 0;
        border-radius: 4px;
        border: 1px solid #999;
    }

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
    height: auto;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 0 30px 0;
}

    .logo span {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
    }

        .logo span a {
            color: inherit;
            font-weight: 600;
            text-decoration: underline;
        }

.brand {
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 0px 0;
}

    .brand i {
        margin: 0 10px 0 0;
    }

.header {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 40px 0;
    color: #fff;
    background: #248232;
}

    .header label {
        font-weight: 700;
        font-size: 58px;
        line-height: 1;
    }

.how {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 60px 0;
    color: #fff;
    background: #2D3A3A;
}

    .how:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 0;
        transform: translate(-50%, 100%);
        border-top: 50px solid #2D3A3A;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 50px solid transparent;
    }

    .how .container {
        padding: 0;
        margin: 60px 0 0 0;
    }

    .how label {
        font-weight: 700;
        font-size: 50px;
        line-height: 1;
    }

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 25%;
    height: auto;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

    .step i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 20px;
        font-weight: 700;
        font-size: 16px;
        font-weight: 700;
        border-radius: 50%;
        margin: 0 0 15px 0;
        border: 3px solid #fff;
    }

    .step span {
        font-size: 22px;
        font-weight: 700;
    }

    .step p {
        font-size: 16px;
        font-weight: 500;
        margin: 10px 0 0;
    }

.info {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 60px 0;
    color: #fff;
    background: #248232;
}

    .info .container {
        margin: 60px 0;
    }

    .info label {
        font-weight: 500;
        font-size: 50px;
        line-height: 1;
    }

        .info label + label {
            font-weight: 700;
        }

    .info a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: 60px;
        padding: 0 40px;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        border: 0;
        outline: 0;
        border-radius: 4px;
        background: #2BA84A;
        text-decoration: none;
        transition: all .3s ease;
    }

        .info a:hover {
            background: #2D3A3A;
        }

.icon {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: auto;
    height: auto;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    padding: 0;
    text-align: center;
}

    .icon i {
        color: #fff;
        margin: 0 0 20px 0;
        font-size: 50px;
    }

.footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 660px;
    color: #9d9d9d;
    padding: 60px 0;
    text-align: justify;
}

    .footer p {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
    }

        .footer p + p {
            margin: 20px 0 0;
        }

    .footer .logo {
        color: #248232;
    }

.question .option span.item {
    width: 40%;
    margin: 5%;
    text-align: center;
    padding: 25px 0;
    background: #424D4D;
    color: #fff;
    cursor: pointer;
}

    .question .option span.selected, .question .option span.item:hover {
        width: 40%;
        margin: 5%;
        text-align: center;
        padding: 25px 0;
        background: #7BE382;
        color: #fff;
        cursor: pointer;
    }

@media only screen and (max-width: 1000px) {

    .tag {
        flex-direction: column;
    }

    .text {
        align-items: center;
    }

    .contact {
        margin: 0;
    }

    .description {
        line-height: 1.5;
        margin: 5px 0;
        text-align: center;
    }

    .logo {
        font-size: 24px;
        margin: 0 0 20px 0;
    }

    .header {
        padding: 20px 0;
    }

        .header label {
            line-height: 1.2;
            font-size: 26px;
        }

    div#header label.thankyou-header {
        font-size: 20px;
    }

    div.main h2.tankyou-description {
        text-align: center;
        font-size: 15px;
    }
    .form {
        width: 90%;
    }

    .option {
        margin: 40px 0;
    }

    .question {
        min-height: auto;
        padding: 30px 5%;
    }

        .question label {
            font-size: 22px;
        }

    .main:before {
        height: 90px;
    }

    .main img {
        margin: 30px 0 0;
        width: 95%;
    }

    .info {
        width: 100%;
        padding: 40px 5%;
    }

        .info .container {
            margin: 0;
        }

        .info label {
            font-size: 30px;
            text-align: center;
        }

    .how {
        padding: 40px 5%;
    }

        .how:after {
            display: none;
        }

        .how label {
            font-size: 30px;
        }

        .how .container {
            padding: 0;
            margin: 0;
        }

    .footer {
        width: 90%;
        padding: 40px 0;
    }

    .container {
        justify-content: center;
        width: 100%;
        flex-direction: column;
    }

    .step {
        width: 100%;
        margin: 40px 0 0 0;
    }

    .icon {
        width: 100%;
        font-size: 22px;
        margin: 40px 0 0 0;
    }

        .icon i {
            font-size: 40px;
        }

    .info a {
        margin: 40px 0 0 0;
    }
}
