/* RESET */
html, body, div, span, applet, object, iframe, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, tt, var, 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, div,
input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    box-sizing:border-box;
    font-size:inherit;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-family: inherit;
    font-size: 100%;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
    font-size: 16px;
}
body {
    position: relative;
    line-height: 1;
}
ol, ul {
    list-style: none;
    padding:0;
    margin:0;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all;
}
/* HTML5 display-role reset for older browsers */ 
a:visited {
    color: inherit;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input, select, textarea{
    margin: 0;
    padding: 0;
    border: none;
    border-radius: initial;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent; 
}
input:focus,
select:focus,
textarea:focus,
button:focus{
    outline: none;
}
input::-ms-clear {
    display: none;
}
/* IE remove select arrow */
select::-ms-expand {
    display: none;
}
/* Firefox overrides */
:not(output):-moz-ui-invalid {
    box-shadow: none;
}
:not(output):-moz-ui-invalid:-moz-focusring {
    box-shadow: none;
}
button{
    background:none;
    border:0;
    padding: 0;
    outline:none;
    cursor:pointer;
    font: inherit;
    color: inherit;
}






/* FRAMEWORK */
body{
    color: #333333;
}
body.noScroll {
    position: fixed;
    left: 0;
    right: 0;
    overflow: hidden;
}
/* main{
    min-height:600px;
} */
img{
    max-width: 100%;
}
input,
textarea{
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    font-size: 16px;
}
textarea {
    resize: vertical;
    min-height: 40px;
    max-height: 200px;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    rgba(0, 0, 0, 0.7);
    font-size: inherit;
}
input:-moz-placeholder,
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    rgba(0, 0, 0, 0.7);
    opacity:  1;
    font-size: inherit;
}
input::-moz-placeholder,
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    rgba(0, 0, 0, 0.7);
    opacity:  1;
    font-size: inherit;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    rgba(0, 0, 0, 0.7);
    font-size: inherit;
}   
input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color:    rgba(0, 0, 0, 0.7);
    font-size: inherit;
}


.ag_pageTitles{
    margin-bottom: 15px;
    font-weight: bold;
}
.ag_pageTitles > *:first-letter{
    text-transform: capitalize;
}
.ag_pageTitles__title{
    font-size: 30px;
}
.ag_pageTitles__subtitle{
    font-size: 20px;
}

.ag_blockTitles{
    margin-bottom: 10px;
}
.ag_blockTitles > *:first-letter{
    text-transform: capitalize;
}
.ag_blockTitles__title{
    font-size: 22px;
    font-weight: bold;
}
.ag_blockTitles__subtitle{
    font-size: 18px;
}


.ag_contentStyle{
    font-size: 15px;
}
.ag_contentStyle--big{
    font-size: 17px;
}
.ag_contentStyle--white{
    color:#ffffff;
}
.ag_contentStyle h3{
    font-size: 20px;
    font-weight: bold;
}
.ag_contentStyle p:not(:last-child){
    margin-bottom: 15px;
}
.ag_contentStyle a{
    text-decoration: underline;
    color: inherit;
}
.ag_contentStyle li{
    position: relative;
    padding-left: 25px;
    margin: 8px 0;
}
.ag_contentStyle li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: #333333;
}

.ag_textCenter{text-align:center;}
.ag_textRight{text-align:right;}
.ag_textLeft{text-align:left;}
.ag_capitalize{text-transform:lowercase;}
.ag_lowercase{text-transform:lowercase;}
.ag_uppercase{text-transform:uppercase;}

.ag_bgImg{background-repeat:no-repeat;background-position:center;background-size:cover;}

.ag_imgBg,
.ag_imgTagBg{position: relative; overflow: hidden;}
.ag_imgBg > :first-child{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-repeat: no-repeat;background-position: center;background-size: cover;transition: 0.2s all;}
.ag_imgTagBg > :first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    
}
.ag_imgTagBg--contain > :first-child{
    object-fit: contain;
}
.ag_imgBg--hover,
.ag_imgTagBg--hover{
    overflow: hidden;
    position: relative;
}
.ag_imgTagBg--overlay:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    z-index: 1;
    transition: .2s;
}
.ag_imgTagBg--overlay > *{
    position: relative;
    z-index: 1;
}
.ag_imgBg--hover > :first-child{
    transition: 0.3s;
}
.ag_imgBg--scale.ag_imgBg--hover > :first-child{
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.ag_imgBg--scale.ag_imgBg--hover :hover > :first-child{
    -webkit-transform: translate(-50%, -50%) scale(1.03);
    -ms-transform: translate(-50%, -50%) scale(1.03);
    -o-transform: translate(-50%, -50%) scale(1.03);
    transform: translate(-50%, -50%) scale(1.03);
}
.ag_imgTagBg--hover > :first-child{
    transition: 0.3s;
}
.ag_imgTagBg--scale.ag_imgTagBg--hover > :first-child{
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.ag_imgTagBg--scale.ag_imgBg--hover:hover > :first-child{
    -webkit-transform: translate(-50%, -50%) scale(1.03);
    -ms-transform: translate(-50%, -50%) scale(1.03);
    -o-transform: translate(-50%, -50%) scale(1.03);
    transform: translate(-50%, -50%) scale(1.03);
}
.ag_imgTagBg--overlay.ag_imgTagBg--hover:hover:before{
    background: rgba(0,0,0,.0);
}
.ag_imgResponsive{max-width: 100%;}


.ag_modal{
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:-1;
    opacity:0;
    box-sizing: border-box;
    -moz-transition:z-index 0s .5s, opacity .5s, all .5s;
    -o-transition:z-index 0s .5s, opacity .5s, all .5s;
    -ms-transition:z-index 0s .5s, opacity .5s, all .5s;
    -webkit-transition:z-index 0s .5s, opacity .5s, all .5s;
    transition:z-index 0s .5s, opacity .5s, all .5s;
}
.ag_modal--bg{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ag_modal__overlay{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0, 0, 0, 0.9);
}
.ag_modal__close{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    fill: #ffffff;
    z-index: 2;
}
.ag_modal__container{
    position: absolute;
    padding: 60px;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-height: 100%;
    overflow-y: auto;
}
.ag_modal__container::-webkit-scrollbar { width: 0; }
.ag_modal .ag_container{
    position: relative;
}
.ag_modal--r2l{
    -moz-transform:translateX(100%);
    -ms-transform:translateX(100%);
    -o-transform:translateX(100%);
    -webkit-transform:translateX(100%);
    transform:translateX(100%);
}
.ag_modal--l2r{
    -moz-transform:translateX(-100%);
    -ms-transform:translateX(-100%);
    -o-transform:translateX(-100%);
    -webkit-transform:translateX(-100%);
    transform:translateX(-100%);
}
.ag_modal--t2b{
    -moz-transform:translateY(-100%);
    -ms-transform:translateY(-100%);
    -o-transform:translateY(-100%);
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%);
}
.ag_modal--b2t{
    -moz-transform:translateY(100%);
    -ms-transform:translateY(100%);
    -o-transform:translateY(100%);
    -webkit-transform:translateY(100%);
    transform:translateY(100%);
}
.ag_modal.active{
    z-index:2000;
    opacity:1;
    -moz-transform:translate(0);
    -ms-transform:translate(0);
    -o-transform:translate(0);
    -webkit-transform:translate(0);
    transform:translate(0);
    -moz-transition:z-index 0s 0s, opacity .5s, all .5s;
    -o-transition:z-index 0s 0s, opacity .5s, all .5s;
    -ms-transition:z-index 0s 0s, opacity .5s, all .5s;
    -webkit-transition:z-index 0s 0s, opacity .5s, all .5s;
    transition:z-index 0s 0s, opacity .5s, all .5s;
}

.fn-parallax{background-attachment:fixed;}


/* LAYOUT CLASSES */
.ag_section{margin:30px 0;padding:0 15px;}
.ag_section--mrgTop{margin-top:30px;}
.ag_section--mrgBot{margin-bottom:30px;}
.ag_section--small{margin:30px 0;padding:0 15px;}
.ag_section--smallMrgTop{margin-top:30px;}
.ag_section--smallMrgBot{margin-bottom:30px;}
.ag_section--big{margin:120px 0;padding:0 15px;}
.ag_section--bigMrgTop{margin-top:50px;}
.ag_section--bigMrgBot{margin-bottom:50px;}
.ag_section--pad{margin:0;padding:30px 15px;}
.ag_section--padTop{padding-top:30px;}
.ag_section--padBot{padding-bottom:30px;}
.ag_section--smallPad{margin: 0; padding: 30px 15px;}
.ag_section--smallPadTop{padding-top:30px;}
.ag_section--smallPadBot{padding-bottom:30px;}
.ag_section--bigPad{margin: 0;padding:50px 15px;}
.ag_section--bigPadTop{padding-top:50px;}
.ag_section--bigPadBot{padding-bottom:50px;}
.ag_section--vPad{margin: 0; padding: 30px 0;}
.ag_section--smallVPad{margin: 0; padding: 30px 0;}
.ag_section--bigVPad{margin: 0; padding: 50px 0;}

.ag_row:after,
.ag_rowSmall:after,
.ag_clearfix:after{content:"";visibility:hidden;display:block;height:0;clear:both;}

.ag_rowSmall{margin-left:-10px;margin-right:-10px;}
.ag_row{margin-left:-15px;margin-right:-15px;}
.ag_rowBig{margin-left:-30px;margin-right:-30px;}

.ag_noMrgTop{margin-top: 0;}
.ag_noMrgBot{margin-bottom: 0;}
.ag_noMrgRight{margin-right: 0;}
.ag_noMrgLeft{margin-left: 0;}
.ag_noMrgV{margin-top:0;margin-bottom:0;}
.ag_noMrgH{margin-left: 0;margin-right: 0;}

.ag_mrgTopSmall{margin-top: 10px;}
.ag_mrgBotSmall{margin-bottom: 10px;}
.ag_mrgRightSmall{margin-right: 10px;}
.ag_mrgLeftSmall{margin-left: 10px;}
.ag_mrgVsmall{margin-top:10px;margin-bottom:10px;}
.ag_mrgHsmall{margin-left: 10px;margin-right: 10px;}

.ag_mrgTop{margin-top: 15px;}
.ag_mrgBot{margin-bottom: 15px;}
.ag_mrgRight{margin-right: 15px;}
.ag_mrgLeft{margin-left: 15px;}
.ag_mrgV{margin-top:15px;margin-bottom:15px;}
.ag_mrgH{margin-left: 15px;margin-right: 15px;}

.ag_mrgTopBig{margin-top: 30px;}
.ag_mrgBotBig{margin-bottom: 30px;}
.ag_mrgRightBig{margin-right: 30px;}
.ag_mrgLeftBig{margin-left: 30px;}
.ag_mrgVbig{margin-top:30px;margin-bottom:30px;}
.ag_mrgHbig{margin-left: 30px;margin-right: 30px;}

.ag_noPadTop{padding-top: 0;}
.ag_noPadBot{padding-bottom: 0;}
.ag_noPadRight{padding-right: 0;}
.ag_noPadLeft{padding-left: 0;}
.ag_noPadV{padding-top: 0;padding-bottom: 0;}
.ag_noPadH{padding-left: 0;padding-right: 0;}

.ag_padTopSmall{padding-top: 10px;}
.ag_padBotSmall{padding-bottom: 10px;}
.ag_padRightSmall{padding-right: 10px;}
.ag_padLeftSmall{padding-left: 10px;}
.ag_padVsmall{padding-top: 10px;padding-bottom: 10px;}
.ag_padHsmall{padding-left: 10px;padding-right: 10px;}

.ag_padTop{padding-top: 15px;}
.ag_padBot{padding-bottom: 15px;}
.ag_padRight{padding-right: 15px;}
.ag_padLeft{padding-left: 15px;}
.ag_padV{padding-top: 15px;padding-bottom: 15px;}
.ag_padH{padding-left: 15px;padding-right: 15px;}

.ag_padTopBig{padding-top: 30px;}
.ag_padBotBig{padding-bottom: 30px;}
.ag_padRightBig{padding-right: 30px;}
.ag_padLeftBig{padding-left: 30px;}
.ag_padVbig{padding-top: 30px;padding-bottom: 30px;}
.ag_padHbig{padding-left: 30px;padding-right: 30px;}

/* Floating */
[class*=' ag_col'],
[class^='ag_col']{float:left;}

/* Grid sizes */
.ag_colOne{width: 4.666%;}
.ag_colTwo{width: 16.666%;}
.ag_colFifth{width: 20%;}
.ag_colThree{width: 25%;}
.ag_colThird{width: 33.333%;}
.ag_colFive{width: 41.666%;}
.ag_colHalf{width: 50%;}
.ag_colSeven{width: 58.333%;}
.ag_colTwoThird{width: 66.666%;}
.ag_colNine{width: 75%;}
.ag_colTen{width: 83.333%;}
.ag_colEleven{width: 91.666%;}
.ag_colComplete{ width: 100%;}
.ag_colBlock{display:inline-block;float:none!important;vertical-align:middle;}

.ag_pullRight{float:right;}
.ag_pullLeft{float:left;}

.ag_table{
    display: table;
    width: 100%;
}
.ag_inlineTable{
    display: inline-table;
    vertical-align: middle;
}
.ag_inlineTable > *,
.ag_table > *{
    display: table-cell;
    vertical-align: middle;
    float:none;
}

.ag_flex{
    display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;
}
.ag_flex--column,
.ag_flex--col{
    -webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
}
.ag_flex--wrap{
    -webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;
}
.ag_flex--center{
    -webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;
}
.ag_flex--right{
    -webkit-box-pack:flex-end;-moz-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;
}
.ag_flex--aic{
    -webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;
}
.ag_flex--sb{
    -webkit-box-pack:justify;-moz-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;
}
.ag_flex--sa{
    -webkit-box-pack:----(justify);-moz-box-pack:----(justify);-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around;
}

@media(max-width: 800px){
    .ag_xs_flex{
        display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;
    }
}
/*----- Desktop overrides -----*/
@media(min-width: 801px){

    .ag_container{margin:0 auto;max-width:1200px;}
    .ag_container--600px{min-width:600px;width:600px;}
    .ag_container--max600px{max-width:600px;}
    .ag_container--800px{min-width:800px;width:800px;}
    .ag_container--max800px{max-width:800px;}
    .ag_container--1000px{min-width:1000px;width:1000px;}
    .ag_container--max1000px{max-width:1000px;}

    .ag_sticky{
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    /* Floating */
    [class*=' ag_md_col'],
    [class^='ag_md_col']{float:left;}

    /* Grid sizes */
    .ag_md_colOne{width: 4.666%;}
    .ag_md_colTwo{width: 16.666%;}
    .ag_md_colFifth{width: 20%;}
    .ag_md_colThree{width: 25%;}
    .ag_md_colThird{width: 33.333%;}
    .ag_md_colFive{width: 41.666%;}
    .ag_md_colHalf{width: 50%;}
    .ag_md_colSeven{width: 58.333%;}
    .ag_md_colTwoThird{width: 66.666%;}
    .ag_md_colNine{width: 75%;}
    .ag_md_colTen{width: 83.333%;}
    .ag_md_colEleven{width: 91.666%;}
    .ag_md_colComplete{ width: 100%;}

    /* .ag_section{margin:60px 0;padding:0 15px;}
    .ag_section--mrgTop{margin-top:60px;}
    .ag_section--mrgBot{margin-bottom:60px;}
    .ag_section--small{margin:30px 0;padding:0 15px;}
    .ag_section--smallMrgTop{margin-top:30px;}
    .ag_section--smallMrgBot{margin-bottom:30px;}
    .ag_section--big{margin:120px 0;padding:0 15px;}
    .ag_section--bigMrgTop{margin-top:120px;}
    .ag_section--bigMrgBot{margin-bottom:120px;}
    .ag_section--bigMrgV{margin-top:120px;margin-bottom:120px;}
    .ag_section--pad{margin:0;padding:60px 15px;}
    .ag_section--padTop{padding-top:60px;}
    .ag_section--padBot{padding-bottom:60px;}
    .ag_section--smallPad{margin: 0; padding: 30px 15px;}
    .ag_section--smallPadTop{padding-top:30px;}
    .ag_section--smallPadBot{padding-bottom:30px;}
    .ag_section--bigPad{margin: 0;padding:120px 15px;}
    .ag_section--bigPadTop{padding-top:120px;}
    .ag_section--bigPadBot{padding-bottom:120px;}
    .ag_section--padV{margin: 0; padding: 60px 0;}
    .ag_section--smallPadV{margin: 0; padding: 30px 0;}
    .ag_section--bigPadV{margin: 0; padding: 120px 15px;} */

    .ag_md_flex{
        display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;
    }

}


/*--------- Datepicker override ---------*/
a.ui-state-default.ui-state-highlight.ui-state-active, 
a.ui-state-default.ui-state-active {
    background-color: #022A4A !important;
    color: #ffffff !important;
}
a.ui-state-default.ui-state-hover {
    background-color: #022A4A !important;
    color: #ffffff !important;
}








/* FRAMEWORK V2 */
.cnt {
    line-height: 1.2;
    font-size: 16px;
    color: #333333;
}
.cnt p:not(:last-child){
    margin-bottom: 15px;
}
.cnt h3{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1;
}
.cnt p + h3,
.cnt ol + h3,
.cnt ul + h3{
    margin-top: 15px;
}
.cnt a{
    text-decoration: underline;
}
.cnt li{
    position: relative;
    padding-left: 15px;
    margin: 8px 0;
}
.cnt ul li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: #000000;
}
.cnt table{
    width: 100%;
}
.cnt table th,
.cnt table td{
    padding: 10px;
}

/* LAYOUT CLASSES */
.sct{
    margin: 15px 0;
    padding:0 15px;
    width: 100%;
}
/* .sct--mt{
        margin-top: 15px;
    }
.sct--mb{
    margin-bottom: 15px;
}
.sct--mtb{
    margin-top: 30px;
}
.sct--mbb{
    margin-bottom: 30px;
}
.sct--mv{
    margin-top: 15px; margin-bottom: 15px;
}
.sct--mvb{
    margin-top: 30px; margin-bottom: 30px;
}
.sct--pad{
    margin: 0; padding: 15px;
}
.sct--pt{
    padding-top: 15px;
}
.sct--pb{
    padding-bottom: 15px;
}
.sct--padb{
    margin: 0;padding: 30px;
}
.sct--padb{
    margin: 0;padding: 30px;
}
.sct--ptb{
    padding-top: 30px;
}
.sct--pbb{
    padding-bottom: 30px;
}
.sct--pv{
    padding-top: 15px; padding-bottom: 15px;
}
.sct--pvb{
    padding-top: 30px; padding-bottom: 30px;
}
.sct--ph{
    padding-left: 15px; padding-right: 15px;
}
.sct--phb{
    padding-left: 30px; padding-right: 30px;
} */

.ctr{
    margin: 0 auto;
    max-width: 1200px;
}
.ctr--max600px {
    max-width: 600px;
}
.ctr--max800px {
    max-width: 800px;
}
.ctr--max1000px {
    max-width: 1000px;
}

.rel{
    position: relative;
}

.mt{margin-top: 15px;}
.mb{margin-bottom: 15px;}
.mr{margin-right: 15px;}
.ml{margin-left: 15px;}
.mv{margin-top:15px;margin-bottom:15px;}
.mh{margin-left: 15px;margin-right: 15px;}

.mts{margin-top: 7px;}
.mbs{margin-bottom: 7px;}
.mrs{margin-right: 7px;}
.mls{margin-left: 7px;}
.mvs{margin-top:7px;margin-bottom:7px;}
.mhs{margin-left: 7px;margin-right: 7px;}

.mtb{margin-top: 30px;}
.mbb{margin-bottom: 30px;}
.mrb{margin-right: 30px;}
.mlb{margin-left: 30px;}
.mvb{margin-top:30px;margin-bottom:30px;}
.mhb{margin-left: 30px;margin-right: 30px;}

.p{padding: 15px;}
.pt{padding-top: 15px;}
.pb{padding-bottom: 15px;}
.pr{padding-right: 15px;}
.pl{padding-left: 15px;}
.pv{padding-top: 15px;padding-bottom: 15px;}
.ph{padding-left: 15px;padding-right: 15px;}

.ptb{padding-top: 30px;}
.pbb{padding-bottom: 30px;}
.prb{padding-right: 30px;}
.plb{padding-left: 30px;}
.pvb{padding-top:30px;padding-bottom:30px;}
.phb{padding-left: 30px;padding-right: 30px;}

.nomt{margin-top: 0;}
.nomb{margin-bottom: 0;}
.nomr{margin-right: 0;}
.noml{margin-left: 0;}
.nomv{margin-top:0;margin-bottom:0;}
.nomh{margin-left: 0;margin-right: 0;}

.nopt{padding-top: 0;}
.nopb{padding-bottom: 0;}
.nopr{padding-right: 0;}
.nopl{padding-left: 0;}
.nopv{padding-top: 0;padding-bottom: 0;}
.noph{padding-left: 0;padding-right: 0;}

.tc{text-align:center;}
.tr{text-align:right;}
.tl{text-align:left;}
.tj{text-align:justify;}
.tlwr{text-transform:lowercase;}
.tupr{text-transform:uppercase;}
.tnrm{text-transform:none;}

.clfx:after{content:"";visibility:hidden;display:block;height:0;clear:both;}
.clear{clear: both}
.fr{float:right;}
.fl{float:left;}

[class*=' cl-'],
[class^='cl-']{float:left;}

.colOne{width: 4.666%;}
.colTwo{width: 16.666%;}
.colFifth{width: 20%;}
.colThree,
.colFour{width: 25%;}
.colThird{width: 33.333%;}
.colFive{width: 41.666%;}
.colHalf,
.colSix{width: 50%;}
.colSeven{width: 58.333%;}
.colTwoThird,
.colEight{width: 66.666%;}
.colNine{width: 75%;}
.colTen{width: 83.333%;}
.colEleven{width: 91.666%;}
.colComplete{width: 100%;}
.colBlock{display:inline-block;float:none;vertical-align:middle;}

.stky{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.tb{
    display: table;
    width: 100%;
}
.itb{
    display: inline-table;
    vertical-align: middle;
}
.itb > *,
.tb > *{
    display: table-cell;
    vertical-align: middle;
    float:none!important;
}

.flx{
    display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;
}
.flx--wrap{
    -webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;
}
.flx--center{
    -webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;
}
.flx--right{
    -webkit-box-pack:flex-end;-moz-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;
}
.flx--column{
    -webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
}
.flx--sb{
    -webkit-box-pack:justify;-moz-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;
}
.flx--aic{
    -webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;
}
.flx--aiEnd{
    -webkit-box-align:flex-end;-moz-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;
}
.flx.box,
.flx--col{
    -webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
}

.bg{
    background: #ffffff;
}
.deco{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.deco--blendcolor{
    background-blend-mode: luminosity;
}
.deco--overlayBlue:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgb(0 37 62 / 74%);
}
.bgImg,
.imgBg{position: relative; overflow: hidden;}
.bgImg > :first-child{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-repeat: no-repeat;background-position: center;background-size: cover;transition: 0.2s all;}
.imgBg > :first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    
}
.imgBg--contain > :first-child{
    object-fit: contain;
}
.bgImg--hover,
.imgBg--hover{
    overflow: hidden;
    position: relative;
}
.imgBg--overlay:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    z-index: 1;
    transition: .2s;
}
.imgBg--overlay > *{
    position: relative;
    z-index: 1;
}
.bgImg--hover > :first-child{
    transition: 0.3s;
}
.bgImg--scale.bgImg--hover > :first-child{
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.bgImg--scale.bgImg--hover :hover > :first-child{
    -webkit-transform: translate(-50%, -50%) scale(1.03);
    -ms-transform: translate(-50%, -50%) scale(1.03);
    -o-transform: translate(-50%, -50%) scale(1.03);
    transform: translate(-50%, -50%) scale(1.03);
}
.imgBg--hover > :first-child{
    transition: 0.3s;
}
.imgBg--scale.imgBg--hover > :first-child{
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.imgBg--scale.bgImg--hover:hover > :first-child{
    -webkit-transform: translate(-50%, -50%) scale(1.03);
    -ms-transform: translate(-50%, -50%) scale(1.03);
    -o-transform: translate(-50%, -50%) scale(1.03);
    transform: translate(-50%, -50%) scale(1.03);
}
.imgBg--overlay.imgBg--hover:hover:before{
    background: rgba(0,0,0,.0);
}
.imgRsp{max-width: 100%;}

.btn,
a.btn{
    color: #ffffff;
    background-color: #1b87b3;
    display: block;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}
.btn:hover{
    background-color: #167da7;
}

/* ONLY MOBILE */
@media(max-width: 800px){
    .deco_xs{
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .deco_xs--blendcolor{
        background-blend-mode: luminosity;
    }
    .deco_xs--overlayBlue:before{
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: rgb(0 37 62 / 74%);
    }
}

/* > MOBILE */
@media(min-width: 801px){

    .sct{
        padding:0 30px;
    }

    .sct:not(.nomt):not(.nomv){
        margin-top: 30px;
    }
    .sct:not(.nomb):not(.nomv){
        margin-bottom: 30px;
    }
    .sct:not(.nomv):not(.nomt):not(.nomb){
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .mt_md{margin-top: 30px;}
    .mb_md{margin-bottom: 30px;}
    .mr_md{margin-right: 30px;}
    .ml_md{margin-left: 30px;}
    .mv_md{margin-top: 30px;margin-bottom: 30px;}
    .mh_md{margin-left: 30px;margin-right: 30px;}

    .mts_md{margin-top: 15px;}
    .mbs_md{margin-bottom: 15px;}
    .mrs_md{margin-right: 15px;}
    .mls_md{margin-left: 15px;}
    .mvs_md{margin-top:15px;margin-bottom:15px;}
    .mhs_md{margin-left: 15px;margin-right: 15px;}

    .mtb_md{margin-top: 60px;}
    .mbb_md{margin-bottom: 60px;}
    .mrb_md{margin-right: 60px;}
    .mlb_md{margin-left: 60px;}
    .mvb_md{margin-top:60px;margin-bottom:60px;}
    .mhb_md{margin-left: 60px;margin-right: 60px;}

    .p_md{padding: 30px;}
    .pt_md{padding-top: 30px;}
    .pb_md{padding-bottom: 30px;}
    .pr_md{padding-right: 30px;}
    .pl_md{padding-left: 30px;}
    .pv_md{padding-top: 30px;padding-bottom: 30px;}
    .ph_md{padding-left: 30px;padding-right: 30px;}

    .ptb_md{padding-top: 60px;}
    .pbb_md{padding-bottom: 60px;}
    .prb_md{padding-right: 60px;}
    .plb_md{padding-left: 60px;}
    .pvb_md{padding-top:60px;padding-bottom:60px;}
    .phb_md{padding-left: 60px;padding-right: 60px;}

    .nomt_md{margin-top: 0;}
    .nomb_md{margin-bottom: 0;}
    .nomr_md{margin-right: 0;}
    .noml_md{margin-left: 0;}
    .nomv_md{margin-top:0;margin-bottom:0;}
    .nomh_md{margin-left: 0;margin-right: 0;}

    .nopt_md{padding-top: 0;}
    .nopb_md{padding-bottom: 0;}
    .nopr_md{padding-right: 0;}
    .nopl_md{padding-left: 0;}
    .nopv_md{padding-top: 0;padding-bottom: 0;}
    .noph_md{padding-left: 0;padding-right: 0;}

    .colOne_md{width: 4.666%;}
    .colTwo_md{width: 16.666%;}
    .colFifth_md{width: 20%;}
    .colThree_md,
    .colFour_md{width: 25%;}
    .colThird_md{width: 33.333%;}
    .colFive_md{width: 41.666%;}
    .colHalf_md,
    .colSix_md{width: 50%;}
    .colSeven_md{width: 58.333%;}
    .colTwoThird_md,
    .colEight_md{width: 66.666%;}
    .colNine_md{width: 75%;}
    .colTen_md{width: 83.333%;}
    .colEleven_md{width: 91.666%;}
    .colComplete_md{width: 100%;}
    .colBlock_md{display:inline-block;float:none;vertical-align:middle;}

    .flx_md{
        display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;
    }
    .flx_md--wrap{
        -webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;
    }
    .flx_md--center{
        -webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;
    }
    .flx_md--right{
        -webkit-box-pack:flex-end;-moz-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;
    }
    .flx_md--column{
        -webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
    }
    .flx_md--sb{
        -webkit-box-pack:justify;-moz-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;
    }
    .flx_md--aic{
        -webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;
    }
    .flx_md--aiEnd{
        -webkit-box-align:flex-end;-moz-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;
    }
    .flx_md--col{
        -webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;
    }

    .bgImg_md,
    .imgBg_md{position: relative; overflow: hidden;}
    .bgImg_md > :first-child{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-repeat: no-repeat;background-position: center;background-size: cover;transition: 0.2s all;}
    .imgBg_md > :first-child {
        position: absolute;
        top: 50%;
        left: 50%;
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 0;
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        z-index: 0;
        
    }
    .imgBg_md--contain > :first-child{
        object-fit: contain;
    }
    .bgImg_md--hover,
    .imgBg_md--hover{
        overflow: hidden;
        position: relative;
    }
    .imgBg_md--overlay:before{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0,0,0,.3);
        z-index: 1;
        transition: .2s;
    }
    .imgBg_md--overlay > *{
        position: relative;
        z-index: 1;
    }
    .bgImg_md--hover > :first-child{
        transition: 0.3s;
    }
    .bgImg_md--scale.bgImg--hover > :first-child{
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    .bgImg_md--scale.bgImg--hover :hover > :first-child{
        -webkit-transform: translate(-50%, -50%) scale(1.03);
        -ms-transform: translate(-50%, -50%) scale(1.03);
        -o-transform: translate(-50%, -50%) scale(1.03);
        transform: translate(-50%, -50%) scale(1.03);
    }
    .imgBg_md--hover > :first-child{
        transition: 0.3s;
    }
    .imgBg_md--scale.imgBg--hover > :first-child{
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .imgBg_md--scale.bgImg--hover:hover > :first-child{
        -webkit-transform: translate(-50%, -50%) scale(1.03);
        -ms-transform: translate(-50%, -50%) scale(1.03);
        -o-transform: translate(-50%, -50%) scale(1.03);
        transform: translate(-50%, -50%) scale(1.03);
    }
    .imgBg_md--overlay.imgBg--hover:hover:before{
        background: rgba(0,0,0,.0);
    }
}