@charset "utf-8";

/* CSS Document */
:root {
    --green: #26a851;
    --paragraph-color: #000000;
    --white: #fff;
    --red: #c12d2c;
    --bg-gray: #eeeeee;
    --yellow: #f9d619;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: "Roboto", sans-serif;
    background: var(--green) url(../images/bg-teagarden.png) no-repeat center
        bottom;
    background-size: 100%;
    background-attachment: fixed;
    height: 100%;
}

a {
    text-decoration: none;
}

.main-wrapper {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.header {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    img {
        height: 55px;
    }
}

.section-body {
    padding: 2% 0;
}

.redtxt {
    color: #c12d2c;
}

.btn-green {
    background: #08580d;
    color: #fff;
    margin: auto;
}
.btn-gray {
    background: #cdcdcd;
    margin: auto;
}
.text-right {
    text-align: right;
}

.qset {
    padding: 15px;

    h6 {
        margin-bottom: 15px;
    }
    .form-check {
        border-bottom: solid 1px #ececec;
        padding-top: 4px;
        padding-bottom: 6px;
    }
}
.qset + .qset {
    margin-top: 5px;
}
.qset:nth-child(even) {
    background-color: #fafafa;
}
.addfld {
    cursor: pointer;
}

.thanks {
    text-align: center;
    padding: 30px;
    i {
        color: var(--green);
        font-size: 34px;
        margin-bottom: 20px;
    }
}

.footer {
    background: var(--paragraph-color);
    background-size: auto 20px;
    padding: 2% 0;
    color: var(--bg-gray);
    font-size: 12px;
}
.heading-l {
    color: #fff;
    text-align: center;
    font-size: 20px;
}
@media (max-width: 500px) {
    .header {
        .rightcont {
            font-size: 10px;
            text-align: right;
        }

        > img {
            height: 45px;
        }
    }

    .poweredby {
        width: 100%;
    }

    .poweredby {
        img {
            max-height: 45px;
            max-width: 110px;
        }

        .owl-dots {
            display: none;
        }
    }
}

.block-regiform {
    background-image: url(../images/img-floralchain.png),
        url(../images/img-floralchain.png);
    background-repeat: no-repeat;
    background-position: left top, right top;
    background-size: 70px;
    padding: 0 150px;
    .heading {
        font-size: 28px;
        margin: 20px 0;
        color: #57a615;
        border-bottom: solid 1px #ddd;
        padding-bottom: 10px;
        margin-bottom: 35px;
    }
    .form-control,
    .form-select {
        border: 1px solid #4caf50;
    }
}
@media (max-width: 768px) {
    .block-regiform {
        padding: 0;
        background: none;
    }
}
@media (max-width: 500px) {
    .block-regiform {
        .mb-3 {
            margin-bottom: 5px !important;
        }
        .heading {
            margin-bottom: 0;
        }
    }
}
