/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size:var(--fw-light)%;
    font: inherit;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block; }

body {
    line-height: 1; }

ol, ul {
    list-style: none; }

blockquote, q {
    quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none; }

table {
    border-collapse: collapse;
    border-spacing: 0; }

body {
    font-family:var(--font-base); }

img {
    -webkit-transition: .25s ease-in;
    -moz-transition: .25s ease-in;
    -o-transition: .25s ease-in;
    transition: .25s ease-in; }

.full-width {
    width: 100%; }

.section {
    padding-top: 50px;
    padding-bottom: 30px; }

@media (min-width: 1760px) {
    .container-lg {
        width: 1730px; } }
.bg-opacity {
    background-color: #000;
    opacity: .45;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.bg-primary {
    background-color: #1d3b6f; }

.bg-second {
    background-color: #ff9900; }

.bg-gray {
    background-color: #f1f2f2; }

.fsz-md {
    font-size: inherit; }
@media (min-width: 768px) {
    .fsz-md {
        font-size:var(--fs-30); } }

.fsz-lg {
    font-size:var(--text-display); }
@media (min-width: 768px) {
    .fsz-lg {
        font-size:var(--fw-light)px; } }

.fwb {
    font-weight:var(--fw-bold); }

.cpr {
    color: #1d3b6f; }

.csc {
    color: #ff9900; }

.p-t-none {
    padding-top: 0; }

.p-b-none {
    padding-bottom: 0; }

.m-l-md {
    margin-left: 20px; }

.m-b-sm {
    margin-bottom: 10px; }

.m-b-md {
    margin-bottom: 20px; }

.m-b-lg {
    margin-bottom: 50px; }

.text-ellipsis, .member-profile .name, .member-profile .title {
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: block;
    white-space: nowrap; }

/**
 * Entry header CSS
 */
.entry-header {  
    background-image: url("../img/entry-header-default.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
}
.entry-header .entry-title {
    position: relative;
    z-index: 2;
    padding: 20px 0; }
.entry-header .entry-title .primary-title {
    line-height:var(--fs-24);
    font-size:var(--fs-24);
    font-weight:var(--fw-bold);
    color: #fff; }


.entry-header .entry-title {
    padding: 120px 0 170px; 
} 
/**
 * Headline CSS
 */
.headline {
    text-transform: uppercase;
    text-align: center; }
.headline .primary {
    font-weight:var(--fw-bold);
    font-size:var(--fs-30); }
.headline .second {
    font-size:var(--fs-18);
    font-weight:var(--fw-bold); }

/**
 * About us CSS
 */
.about-us blockquote {
    padding: 0 20px;
    margin: 10px 0 20px 60px;
    border-left: 5px solid #1d3b6f;
    position: relative; }
.about-us blockquote:before {
    content: '';
    height: 100%;
    border-left: 5px solid #ff9900;
    position: absolute;
    left: 5px; }
.about-us blockquote strong {
    font-size:var(--fw-light)px; }
.about-us p {
    margin-bottom: 30px;
    line-height:var(--fs-30); }

/**
 * Team CSS
 */
.img_team {
    padding-top: 56.34%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
@media (min-width: 992px) {
    .img_team {
        padding-top: 118.3%; } }
@media (min-width: 1200px) {
    .img_team {
        padding-top: 115.3%; } }
@media (min-width: 1760px) {
    .img_team {
        padding-top: 109.8%; } }

.member-profile {
    text-align: center; }
.member-profile .thumb {
    overflow: hidden;
    border-radius: var(--card-radius); }
.member-profile .thumb img {
    margin-left: auto;
    margin-right: auto; }
.member-profile .thumb:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1); }
.member-profile .name {
    font-size:var(--fs-18);
    line-height:var(--fs-24);
    font-weight:var(--fw-bold); }
.member-profile .title {
    color: #666666;
    font-size:var(--fs-16);
    font-weight:var(--fw-normal);
    line-height:normal; }

img.filter-grayscale {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%); }
img.filter-grayscale:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%); }

/**
 * Map CSS
 */
.gmap_container {
    background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #e5e3df;
    overflow: hidden;
    width: 100%;
    height: 500px; }
@media (min-width: 1760px) {
    .gmap_container {
        height: 700px; } }
.gmap_container #gmap_canvas {
    width: 100%;
    height: 100%; }

@media (max-width: 700px) {
    .container{
        padding:0 15px; 
    } 
}

/*# sourceMappingURL=style.css.map */
