/*Kretch*/

body {
    position: relative;
    font-family: "Titillium", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    color: #828282;
    background-color: transparent;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
}

#page-wrap {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: transparent;
}

#page-wrap:before {
    content: '';
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#page-wrap.active:before {
    opacity: 1;
    visibility: visible;
}

.container {
    position: relative;
}

::selection {
    background-color: #003690;
    color: #fff;
}

::-moz-selection {
    background-color: #003690;
    color: #fff;
}

.card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 80px;
}

a,
input,
textarea,
button,
select {
    outline: none;
}

a:hover,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus {
    text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
    outline: none !important;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    position: relative;
    color: #f4f6fa;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: "Titillium", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
    color: inherit;
    text-decoration: underline;
}

.h1,
h1 {
    font-size: 30px;
}

.h2,
h2 {
    font-size: 24px;
}

.h3,
h3 {
    font-size: 20px;
}

.h4,
h4 {
    font-size: 18px;
}

.h5,
h5 {
    font-size: 14px;
}

.h6,
h6 {
    font-size: 12px;
}

.sbig {
    font-size: 80px;
}

p {
    font-size: 14px;
    line-height: 1.8em;
    color: #444;
    font-family: "Titillium", sans-serif;
}

p > a {
    text-decoration: none;
    color: #2e66ca;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p > a:hover {
    color: #028705;
    background-color: #f4f6fa;
}

a {
    text-decoration: underline;
    color: #2e66ca;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:focus,
a:hover {
    color: #91aee2;
    text-decoration: underline;
}

a.static:hover {
    color: #444;
    text-decoration: none;
}

code,
kbd,
pre,
samp {
    font-family: "Titillium", sans-serif;
    font-size: inherit;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

code {
    background-color: #eee;
}

mark,
.mark {
    color: #fff;
    background-color: #003690;
}

blockquote {
    position: relative;
    padding: 0 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-left: 2px solid #003690;
    background: #f4f6fa;
}

blockquote p {
    font-family: "Titillium", sans-serif;
    color: #444;
    font-size: 14px;
    line-height: 2.2em !important;
    margin-bottom: 0;
    font-style: italic;
    vertical-align: middle;
}

blockquote i.fa {
    font-size: 1.8em;
    color: #003690;
    vertical-align: middle;
    padding-right: 6px;
    margin-bottom: 3px;
}

pre {
    font-family: "Titillium", sans-serif;
    line-height: 1.8em;
    padding: 15px;
    border: 1px solid #E4E4E4;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

@media (max-width: 767px) {
    .text-left-xs {
        text-align: left;
    }
    .text-center-xs {
        text-align: center;
    }
    .text-right-xs {
        text-align: right;
    }
}

@media (min-width: 768px) {
    .text-left-sm {
        text-align: left;
    }
    .text-center-sm {
        text-align: center;
    }
    .text-right-sm {
        text-align: right;
    }
}

@media (min-width: 991px) {
    .text-left-md {
        text-align: left;
    }
    .text-center-md {
        text-align: center;
    }
    .text-right-md {
        text-align: right;
    }
}

@media (min-width: 1199px) {
    .text-left-lg {
        text-align: left;
    }
    .text-center-lg {
        text-align: center;
    }
    .text-right-lg {
        text-align: right;
    }
}

input,
textarea {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    font-family: "Titillium", sans-serif;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 0 20px;
    color: #444;
    font-size: 0.9em;
    font-weight: 400;
    width: 100%;
    letter-spacing: 1px;
}

input:focus,
textarea:focus {
    border: 1px solid #444;
}

input {
    height: 50px;
}

input.black {
    border: 1px solid #333;
    font-size: 13px;
    background-color: #222;
    color: #fff;
}

input.black:focus {
    border: 1px solid #fff;
}

textarea {
    resize: none;
    height: 150px;
    vertical-align: middle;
    padding: 20px;
    margin-bottom: 30px;
}

input::-webkit-input-placeholder {
    color: #888;
    font-weight: 400;
}

input:-moz-placeholder {
    color: #888;
    font-weight: 400;
}

input::-moz-placeholder {
    color: #888;
    font-weight: 400;
}

input:-ms-input-placeholder {
    color: #888;
    font-weight: 400;
}

textarea::-webkit-input-placeholder {
    color: #888;
    font-weight: 400;
}

textarea:-moz-placeholder {
    color: #888;
    font-weight: 400;
}

textarea::-moz-placeholder {
    color: #888;
    font-weight: 400;
}

textarea:-ms-input-placeholder {
    color: #888;
    font-weight: 400;
}

ol,
ul {
    padding: 0 0 0 20px;
    margin: 0;
    font-family: "Titillium", sans-serif;
}

ol li,
ul li {
    font-size: 14px;
    line-height: 2.3em;
}

ol li a,
ul li a {
    color: inherit;
}

ol li a:hover,
ul li a:hover {
    text-decoration: none;
    color: #003690;
}

table {
    margin: 1px;
}

caption {
    background: #fff;
    margin-bottom: 2em;
    text-align: left;
}

thead {
    display: table-header-group;
}

tr {
    page-break-inside: avoid;
}

img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

iframe {
    border: 0;
    max-width: 100%;
    width: 100%;
}

.section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    z-index: 10;
}

.bd-b {
    border-bottom: 1px solid #eee;
}

.bd-b-bold {
    border-bottom: 1px solid #ddd;
}

.bd-b-alpha {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bd-b0 {
    border-bottom: none !important;
}

html {
    background: url(../img/bg-404.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

html .bg-parallax {
    background-attachment: fixed !important;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

html .bg-parallax h1,
html .bg-parallax h2,
html .bg-parallax h3,
html .bg-parallax h4,
html .bg-parallax h5,
html .bg-parallax h6 {
    color: #fff;
}

html .bg-static {
    position: relative;
    top: 0;
    left: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

html .bg-color {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    background-color: #003690;
}

.bg-overlay-black:before {
    background-color: #000;
}

.bg-overlay-dark:before {
    background-color: #333;
}

.bg-gray {
    background-color: #f9f9f9 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-dark {
    background-color: #222 !important;
}

[class*="bg-overlay-"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

[class*="bg-overlay-"]:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-overlay-0:before {
    opacity: 0;
}

.bg-overlay-1:before {
    opacity: 0.1;
}

.bg-overlay-2:before {
    opacity: 0.2;
}

.bg-overlay-3:before {
    opacity: 0.3;
}

.bg-overlay-4:before {
    opacity: 0.4;
}

.bg-overlay-5:before {
    opacity: 0.5;
}

.bg-overlay-6:before {
    opacity: 0.6;
}

.bg-overlay-7:before {
    opacity: 0.7;
}

.bg-overlay-8:before {
    opacity: 0.8;
}

.bg-overlay-9:before {
    opacity: 0.9;
}

.bg-overlay-10:before {
    opacity: 1;
}

.pd0 {
    padding: 0 !important;
}

.pd10 {
    padding: 10px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.m0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.grayscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: url("grayscale.svg#greyscale");
    filter: gray;
    -webkit-filter: grayscale(1);
}

.btn {
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    border: 0;
    white-space: normal;
    padding: 13px 25px;
    letter-spacing: 1px;
    font-family: "Titillium", sans-serif;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
    box-shadow: 0 0 0;
}

.btn.btn-primary {
    color: #fff;
    background-color: #003690;
    border: 1px solid transparent;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #222;
}

.site-content {
    position: relative;
    margin-bottom: 30px;
}

.page-not-found {
    position: relative;
    text-align: center;
}

.page-not-found .container {
    width: 100%;
    display: table;
    height: 100vh;
}

.page-not-found .container .site-content {
    display: table-cell;
    vertical-align: middle;
    padding: 50px 0;
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
        width: 100%;
    }
}
