html, body {height: 100%; width: 100%; font-size: 16px;}
body {font-family: 'Open Sans', Arial, Helvetica, sans-serif; font-weight: 400; font-style: normal; color: #000000; line-height: 1.5;}


/* --- TYPOGRAPHY --- */


a {
    color: #23334A;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
a:hover, a:focus {color: #000000;}


.lead {
    margin: 32px 0;
    color: #333333;
    font-size: 24px;
    line-height: 32px;
}

.heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.muted {
    color: #86897e;
    font-size: 14px;
    font-weight: 600;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: #23334A;
    font-weight: 700;
    line-height: 1.33;
}

h1, .h1 {font-size: 42px;}
h2, .h2 {font-size: 32px;}
h3, .h3 {
    font-size: 16px;
    text-transform: uppercase;
}
h4, .h4 {
    font-size: 13px;
    text-transform: uppercase;
}
h5, .h5 {
    font-size: 13px;
}
/*h6, .h6 {}*/

@media(max-width: 991px){}
@media (max-width: 767px) {}

/* --- BUTTONS --- */

.btn {
    padding: 0 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D8D3C5;
    border: 2px solid #D8D3C5;
    border-radius: 0;
    box-shadow: none;
    color: #23334A;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    transition: background-color 0.4s ease-in-out,
                border-color 0.4s ease-in-out,
                color 0.4s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
}
.btn:hover, .btn:focus {
    background-color: #23334A;
    border-color: #23334A;
    color: #D8D3C5;
}

    .btn svg {
        margin-right: 10px;
        transition: fill 0.4s ease-in-out;
        fill: #23334A;
    }
    .btn:hover svg, .btn:focus svg {
        fill: #D8D3C5;
    }


.btn-svg {
    padding: 0;
    width: 50px;
}

    .btn-svg svg {
        margin: 0;
    }

.btn-svg-lg {
    height: 64px;
    width: 64px;
    border-width: 3px;
}


.btn-transparent {
    background-color: transparent;
    border-color: transparent;
    color: #D8D3C5;
}
.btn-transparent:hover, .btn-transparent:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #86897e;
}

    .btn-transparent svg {
        fill: #D8D3C5;
    }
    .btn-transparent:hover svg, .btn-transparent:focus svg {
        fill: #86897e;
    }


.btn-outline {
    background-color: transparent;
    border-color: #D8D3C5;
    color: #D8D3C5;
}
.btn-outline:hover, .btn-outline:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #86897e;
}

    .btn-outline svg {
        fill: #D8D3C5;
    }
    .btn-outline:hover svg, .btn-outline:focus svg {
        fill: #86897e;
    }


.btn-success {
    background-color: #23334A;
    border-color: #23334A;
    color: #D8D3C5;
    outline: none;
    box-shadow: none;
}
.btn-success:hover, .btn-success:focus, .btn-success:active:focus, .btn-success:not(:disabled):not(.disabled):active {
    background-color: transparent;
    border-color: #23334A;
    color: #23334A;
}

    .btn-success svg {
        fill: #D8D3C5;
    }
    .btn-success:hover svg, .btn-success:focus svg {
        fill: #23334A;
    }


.btn-transparent-success {
    background-color: transparent;
    border-color: transparent;
    color: #23334A;
    text-decoration: underline;
}
.btn-transparent-success:hover, .btn-transparent-success:focus {
    background-color: #D8D3C5;
    border-color: #D8D3C5;
    color: #23334A;
    text-decoration: none;
}

    .btn-transparent-success svg {
        fill: #23334A;
    }
    .btn-transparent-success:hover svg, .btn-transparent-success:focus svg {
        fill: #23334A;
    }


.btn-outline-success {
    background-color: transparent;
    border-color: #23334A;
    color: #23334A;
}
.btn-outline-success:hover, .btn-outline-success:focus {
    background-color: #23334A;
    border-color: #23334A;
    color: #D8D3C5;
}

    .btn-outline-success svg {
        fill: #23334A;
    }
    .btn-outline-success:hover svg, .btn-outline-success:focus svg {
        fill: #D8D3C5;
    }


.btn-outline-secondary {
    background-color: transparent;
    border-color: #c6bbaf;
    color: #c6bbaf;
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus {
    background-color: #c6bbaf;
    border-color: #c6bbaf;
    color: #23334A;
}

    .btn-outline-secondary svg {
        fill: #c6bbaf;
    }
    .btn-outline-secondary:hover svg, .btn-outline-secondary:focus svg {
        fill: #23334A;
    }

/* --- BACKGROUNDS --- */

.bg-grey {background: rgba(134, 137, 126, 0.1) !important;}

/* --- COVERS --- */

.cover {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 25;
}

.cover-gradient {
    background-image: linear-gradient(90deg, rgba(7, 40, 38, .6) 0%, rgba(7, 40, 38, 0) 100%);
}

/* --- FORMS --- */

.form-group {
    margin-bottom: 30px;
}

input[type="text"], input[type="password"], input[type="email"], textarea, .form-control {
    padding: 0 20px;
    height: 40px;
    background: #ffffff !important;
    border-radius: 0;
    border: 1px solid #23334A;
    box-shadow: none !important;
    color: #23334A !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
}

.form-control::-webkit-input-placeholder {color: #86897e; text-transform: uppercase;}
.form-control::-moz-placeholder {color: #86897e; text-transform: uppercase;}
.form-control:-moz-placeholder {color: #86897e; text-transform: uppercase;}
.form-control:-ms-input-placeholder {color: #86897e; text-transform: uppercase;}

input[type="text"]:focus, input[type="password"]:focus,
input[type="email"]:focus, textarea:focus, .form-control:focus {border-color: #999999;}
.has-error > input[type="text"], .has-error > input[type="password"],
.has-error > input[type="email"], .has-error > textarea, .has-error > .form-control {border-color: #c62828;}

/* --- SIMPLEBAR --- */

.simplebar-content {
    display: flex;
}

    .simplebar-track.simplebar-horizontal:before {
        content: "";
        height: 1px;
        width: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -25;
        background: #86897e;
    }

        .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
            top: 0;
            background: transparent;
        }
        .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
            height: 3px;
            left: 0;
            right: 0;
            opacity: 1;
            background: #23334A;
            border-radius: 0;
        }

/* --- OTHER CLASSES --- */

.has-error .help-block {
    text-align: left;
    font-size: 12px;
    color: #ff0000;
    padding: 5px 0 0 11px;
}

.i-checks label {
    margin: 0 0 0 6px;
}
