﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../Images/ThemePic.jpg") top center;
    background-size: cover;
    color: white;
}

    #hero:before {
        content: "";
        background: rgba(0, 0, 0, 0.6);
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #hero .container {
        position: relative;
        text-align: center;
     
    }

    #hero h1 {
        margin: 0;
        font-size: 56px;
        font-weight: 700;
        line-height: 64px;
        color: #fff;
        font-family: "Poppins", sans-serif;
    }

        #hero h1 span {
            color: #ffc451;
        }

    #hero h2 {
        color: rgba(255, 255, 255, 0.9);
        margin: 10px 0 0 0;
        font-size: 24px;
    }

    #hero .icon-box {
        padding: 30px 20px;
        transition: ease-in-out 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.3);
        height: 100%;
        text-align: center;
    }

        #hero .icon-box i {
            font-size: 32px;
            line-height: 1;
            color: #ffc451;
        }

        #hero .icon-box h3 {
            font-weight: 700;
            margin: 10px 0 0 0;
            padding: 0;
            line-height: 1;
            font-size: 20px;
            line-height: 26px;
        }

            #hero .icon-box h3 a {
                color: #fff;
                transition: ease-in-out 0.3s;
            }

                #hero .icon-box h3 a:hover {
                    color: #ffc451;
                }

        #hero .icon-box:hover {
            border-color: #ffc451;
        }

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero {
        height: auto;
    }

        #hero h1 {
            font-size: 28px;
            line-height: 36px;
        }

        #hero h2 {
            font-size: 20px;
            line-height: 24px;
        }
}

/* Search field */
.select2-search input {
    background-color:gray;
}

/* Each result */
.select2-results {
    color:black
}


        div.dt-container .dt-input {
            border: 1px solid #aaa;
            border-radius: 3px;
            padding: 5px;
            background-color: #3A3E40;
            color: white
        }
        div.dt-container select.dt-input {
            padding: 4px ;
            color: white
        }
        div.dt-container .dt-search input {
            border: 1px solid #aaa;
            border-radius: 3px;
            padding: 5px;
            background-color: transparent;
            color: white;
            margin-left: 3px
        }

.panel {
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.panel-heading {
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    border-radius: 5px 5px 0 0;
}

.panel-body {
    padding: 15px;
    background-color: #fff;
}




