body {
    padding-top: 50px;
}

/* 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;
}

.navbar {
    padding: 0px 16px;
}


/* CUSTOM CSS */
/* GENERAL */

.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

.bg-dark {
    /*background-color: #222222;*/
    background-color: black;
    color: white;
}

.bg-darkgray {
    /*background-color: #333333;*/
    background-color: #181818;
    color: white;
}

.bg-gray {
    background-color: #4c4c4c;
    color: white;
}

.bg-lightgray {
    background-color: #fcfcfc;
}

.border-dark {
    /*border: 2px solid #333333;*/
    border: 2px solid #181818;
}

.section-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #c3a440;
}

.section-subtitle {
    font-size: 3rem;
    font-weight: bold;
    color: #c3a440;
    /*color:#b5a77a;*/
}

.site-image {
    max-width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

.special-separator {
    border-top: solid 6px #c3a440;
}

.view-section {
    padding-top: 60px;
    padding-bottom: 32px;
}

.masked-image {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.grayscale {
    filter: grayscale(100%);
}

.jumbotron {
    color: white;
    /*background-color: #222222;*/
    background-color: black;
    text-align: center;
    margin-bottom: 0px;
    border-radius: 0px !important;
}

.position-relative {
    position: relative;
}

.absolute-background {
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden;
}

.light-backround {
    opacity: 0.12;
}

.form-control {
    background-color: #8e8e8e !important;
    border-bottom: 4px solid #c4c4c4 !important;
    color: white !important;
    height: 46px !important;
    font-size: 16px !important;
}

    .form-control::placeholder {
        color: white !important;
        opacity: 0.7 !important;
    }

.text-group * {
    margin: 0px;
}

input[type=range] {
    height: 26px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 13px;
        cursor: pointer;
        box-shadow: 0px 0px 0px #000000;
        border-radius: 25px;
        border: 0px solid #000101;
        background: rgb(181,167,122);
        background: linear-gradient(180deg, rgba(181,167,122,1) 0%, rgba(230,219,184,1) 100%);
    }

    input[type=range]::-webkit-slider-thumb {
        box-shadow: 0px 0px 0px #000000;
        border: 1px solid white;
        height: 30px;
        width: 30px;
        border-radius: 15px;
        background: rgb(181,167,122);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -8px;
    }

.btn-custom {
    background-color: #c3a440;
    min-width: 100px;
    font-weight: bold;
}

    .btn-custom:hover {
        color: white;
        background-color: #998d68;
    }


/* SPECIFIC CONTAINERS */

.general-icon {
    width: 100px;
}

.primary-image {
    width: 60vw;
    max-width: 700px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.vm-section {
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-section {
    min-height: 250px;
}

.middle-service {
    margin-top: 18px;
}

.image-footer {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
}

.footer-links {
    padding: 2px;
}

    .footer-links a {
        color: white !important;
    }

    .footer-links span {
        color: #656565;
    }

@media screen and (max-width: 991px) {
    .middle-service {
        margin-top: 0px;
    }

    .service-section {
        margin-bottom: 8px;
    }
}

.is-error {
    color: #B71C1C;
    display: block;
}