﻿
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Poppins", sans-serif;
    color: #212529;
    background: #fff;
}


.redclr {
    color: red !important;
}

a {
    color: #F7F7F7;
    text-decoration: none;
}

    a:hover {
        color: #fff;
        text-decoration: none;
    }

    a.clink, a.clink:hover {
        color: #212340;
        text-decoration: underline;
    }

    a.cslink, a.cslink:hover {
        color: #000;
        text-decoration: underline;
    }

.container-fluid {
    padding: 0 50px;
}


p {
    color: #212529;
}

.center-block {
    display: block;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #212340;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    color: #212529;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #d5d2d2;
}

    #footer h3 {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        position: relative;
        font-family: "Poppins", sans-serif;
        padding: 0;
        margin: 0 0 15px 0;
    }

    #footer p {
        font-size: 15;
        font-style: italic;
        padding: 0;
        margin: 0 0 40px 0;
    }

    #footer .social-links {
        margin: 0 0 20px 0;
    }

        #footer .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #787bbf;
            color: #f9f9fb;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .social-links a:hover {
                background: #17182D;
                color: #fff;
                text-decoration: none;
            }

    #footer .copyright {
        margin: 0 0 5px 0;
        font-size: 13px;
        color: #212529;
    }

    #footer .credits {
        font-size: 13px;
    }

        #footer .credits a {
            color: #17182D;
            transition: 0.3s;
        }

            #footer .credits a:hover {
                color: #F7F7F7;
            }

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

.hrh {
    margin: 1pc 0 3pc;
    position: relative;
    left: -5%;
    width: 110%;
    background-color: #b9b9b9;
}

.termspg {
    margin: 2pc 0;
}

.main-header {
    text-align: center;
    font-size: 18px;
    color: red;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1;
}

.termsblock {
    position: relative;
    margin: 30px auto 50px;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
    padding: 50px;
    border: 1px solid #eee;
}

.termsblock::before, .termsblock::after {
    content: "";
    position: absolute;
    top: 6px;
    width: 50%;
    height: 100px;
    box-shadow: 0 5px 14px #000000b3;
    z-index: -1;
    transition: all .3s ease-in-out;
}

    .termsblock::before {
        left: 1px;
        transform: skew(0) rotate(0);
    }

    .termsblock::after {
        right: 1px;
        transform: skew(0) rotate(0);
    }

.terms-first {
    color: #242424;
    font-style: italic;
    opacity: 0.8;
    line-height: 2;
    margin-top: 21px;
    font-size: 15px;
    margin-bottom: 25px;
}

.block-terms {
    margin-bottom: 30px;
}

.question {
    font-size: 21px;
    font-weight: 600;
    color: #212340;
}

.block-terms-inner {
    padding: 0px 20px 10px;
    font-size: 15px;
}

    .block-terms-inner:last-child {
        padding-bottom: 0;
    }

    .block-terms-inner h4 {
        font-size: 19px;
    }

.btnsubmit, .btnsubmit:hover {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 13px 30px;
    min-width: 100%;
    transition: 0.3s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    margin-top: 6px;
    background: #212340;
    box-shadow: none;
    border: 0;
    border-radius: 5px;
}

.chkterms {
    font-size: 18px;
}

    .chkterms span {
        position: relative;
        top: 2px;
        letter-spacing: 0;
        color: #000;
    }

.error {
    font-size: 16px;
    color: red;
    margin-top: 20px;
    font-weight: 400;
}

@media(max-width: 767px){
    .container-fluid {
        padding: 0 20px;
    }

    .offset-4 {
        margin-left: 0;
    }

    .termsblock {
        padding: 30px 20px;
    }
}