@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html,
body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    color: #000;
    background: #212121;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: left;
    width: 1100px;
    height: 70px;
    z-index: 1;
}

nav:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    z-index: -1;
    transform: translate(-50%,0);
    background: #fff;
}

nav label {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #81C6E8;
}
.logo img {
    height:50px;
}

.logo span {
    color: #7DE5ED;
}

.logo i {
    font-size: 30px;
    color: #5837D0;
    margin: 0 8px 0 0;
}

header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    float: left;
    width: 1100px;
    height: auto;
    padding: 80px 0;
    z-index: 2;
    color: #fff;
    transition: all .3s ease;
}

    header:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 100vw;
        height: 100%;
        z-index: -1;
        transform: translate(-50%,0);
        background: url("img/house-1.jpeg");
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

header:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    z-index: -1;
    transform: translate(-50%,0);
    background: rgba(0,0,0,0.5);
}

.info {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 400px);
    height: auto;
    padding: 0;
}

.title {
    width: 80%;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    margin: 60px 0;
    text-align: center;
}

.more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(88,55,208,0.8);
}

.bullet {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 25%;
    padding: 20px 10px;
}

.bullet i {
    font-size: 60px;
}

.bullet label {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin: 15px 0 0 0;
    text-align: center;
}

form {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    float: left;
    width: 400px;
    height: auto;
    overflow: hidden;
    background: #fff;
    transition: all .3s ease;
}

.question {
    overflow: hidden;
    min-width: 400px;
    height: 585px;
    overflow: hidden;
}

div#question-1 {
    height: 685px;
}

#NewGutter, .address input.NewGutter {
    height: 1.3em;
    width: auto;
    padding: 5px;
    margin-top: 2px;
    text-align: left;
}
.options .NewGutterGroup label {
    font-size: 17px;
    margin: 0 10px;
}
.options label.disclaimer {
    color: #000;
    font-size: 10px;
    text-align: justify;
    line-height: 1.4;
}
div.address .first-disclosure label {
    color: #000;
    font-size: 10px;
    text-align: justify;
    font-weight:normal;
}
    div.address .first-disclosure label.disclosure {
        display: inline-block;
        text-align: justify;
        width: 100%;
        font-weight:normal;
    }
.address input.NewGutter {
    margin:0;
}
.back-button {
    color: red;
    font-weight: bold;
    position: absolute;
    cursor: pointer;
    font-size: 22px;
    margin: 10px;
}

.head {
    display: block;
    width: 100%;
    height: auto;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    padding: 20px 0;
    background: #81C6E8;
    text-align: center;
}

.head b {
    font-style: italic;
}

.address {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 106px);
    padding: 0 24px;
}

.address label {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 24px 0;
}

.address input {
    display: block;
    float: left;
    width: 100%;
    height: 45px;
    line-height: 1;
    color: #545253;
    padding: 0 10px;
    margin: 0;
    background: #fff;
    outline: 0;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #ddd;
}

    .address button, button.next-button {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        width: 90%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        float: left;
        height: 45px;
        color: #fff;
        padding: 0;
        background: #5837D0;
        outline: 0;
        border: 0;
        cursor: pointer;
        font-size: 24px;
        font-weight: 700;
    }
button.next-button {
    margin-top:15px;
}
    .house {
    display: block;
    float: left;
    width: 100%;
    height: 160px;
    background: #eee;
}
div.house img {
    width: 100%;
}

footer {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    float: left;
    width: 1100px;
    height: auto;
    padding: 60px 0;
    z-index: 1;
}
footer label {
    color:#fff;
}

footer p + p {
    margin: 20px 0 0;
}

footer p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    text-align: justify;
}

footer a {
    font-weight: 700;
    outline: 0;
    color: inherit;
    text-decoration: underline;
}

section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: left;
    width: 1100px;
    height: auto;
    padding: 80px 0;
    z-index: 2;
}

section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    z-index: -1;
    transform: translate(-50%,0);
    background: #fff;
}

.blog-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 50%;
    height: auto;
}

.blog-info label {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.blog-info p {
    color: #626260;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.blog-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 50px;
    padding: 0 20px;
    color: #fff;
    outline: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    background: #5837D0;
    text-transform: uppercase;
    text-decoration: none;
}

.blog-image {
    display: block;
    float: left;
    width: 400px;
    height: 400px;
    background: url("img/worker.jpg");
    background-attachment: scroll;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
}

.options {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 0 24px;
}

    .options span {
        color: #000;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        margin: 10px 0 0 0;
        text-align: center;
    }

.options span i {
    margin: 0 5px 0 0;
}

.options label {
    color: #000;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 25px 0;
    text-align: center;
}

.choose {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.choose span {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    height: auto;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 400;
    color: #5837D0;
    padding: 20px 50px;
    margin: 0 0 15px 0;
    cursor: pointer;
    text-align: center;
    border: 2px solid #5837D0;
    transition: all .3s ease;
}

.choose span:last-child {
    margin: 0;
}

    .choose span:hover, .choose span.selected {
        color: #fff;
        background: #5837D0;
    }

.choose span:hover:after {
    font-weight: bold;
}

.choose span:after {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f058";
    top: 0;
    left: 20px;
    width: auto;
    height: 100%;
    font-size: 30px;
}

.choose-margin span {
    margin: 0;
}

.choose-image {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.choose-image span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 32%;
    padding: 20px;
}

.choose-image span img {
    width: 60px;
}

.choose-image span:after {
    display: none;
}

.personal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.personal input {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    height: 43px;
    line-height: 1;
    margin: 0 0 5px;
    padding: 15px;
    background: #fff;
    outline: 0;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    box-shadow: none;
    color: #545253;
    font-size: 16px;
    font-weight: 400;
}

.personal input:nth-child(1),
.personal input:nth-child(2) {
    width: 50%;
}

.personal button {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 100%;
    height: 45px;
    color: #fff;
    padding: 0;
    background: #5837D0;
    outline: 0;
    border: 0;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 600px) {


    form {
        width: 100%;
    }
    .question {
        width: 100%;
        min-width: auto;
    }
}
@media only screen and (max-width: 1200px) {

    nav {
        display: none;
    }

    .mobile {
        display: block;
    }

    .logo {
        font-size: 20px;
        color: #fff;
    }

    section {
        display: none;
    }

    footer {
        width: 90%;
    }

    .options label.disclaimer {
        width: 95%;
    }

    header {
        align-items: center;
        flex-direction: column;
        width: 100%;
        padding:  0;
    }

    .title {
        width: 100%;
        font-size: 18px;
        margin: 10px 0;
    }

    .info {
        width: 90%;
    }

    .more {
        margin: 0 0 30px 0;
    }

    .bullet {
        padding: 5px;
    }

    .bullet label {
        font-size: 12px;
        margin: 5px 0 0 0;
    }

    .bullet i {
        font-size: 30px;
    }

    .head {
        font-size: 18px;
        line-height: 1;
    }

    .address {
        height: calc(100% - 130px);
    }

    .address label {
        font-size: 18px;
        margin: 0 0 20px 0;
    }

        .personal button,
        .address button, button.next-button {
            font-size: 20px;
        }


        .address button,
        button.next-button {
            font-size: 20px;
            position: absolute;
            width: 320px;
            bottom: 30px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }

    .house {
        width: 100%;
        height: 140px;
    }

    .address input {
        height: 40px;
        margin: 20px 0;
    }

    .options label {
        width: 100%;
        font-size: 18px;
    }

    .choose span {
        line-height: 1;
        padding: 10px 60px;
    }

    .choose span:after {
        font-size: 24px;
    }

    .choose-image span {
        padding: 8px;
    }

    .question {
        height: 480px;
    }

        .question:nth-child(1),
        .move-1 .question:nth-child(2),
        .move-3 .question:nth-child(4),
        .move-4 .question:nth-child(5),
        .move-5 .question:nth-child(6),
        .move-6 .question:nth-child(7) {
            height: 630px;
        }

    .move-2 .question:nth-child(3) {
        height: 630px;
    }

    .move-3 .question:nth-child(3) {
        height: 630px;
    }
}