:root {
    /* colours */
    --color-light-green: #25A27E;
    --color-green: #074C37;
    --color-black: #000000;
    --color-white: #ffffff;

    --color-main: var(--color-green);
    
    /* fonts */
    --main-font: 'Open Sans', sans-serif;
    --secondary-font: 'American Typewriter', serif;
 
    /* transition */
    --transition: 0.2s all;
 }

/* 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, select, 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;
    scroll-behavior: smooth;
}
body {
    position: relative;
    min-width: 1000px;
    line-height: 1;
    color: #333333;
    font-family: var(--main-font);
}
/* prevent scroll */
body.noScroll {
    /* position: fixed; */
    /* left: 0;
    right: 0; */
    overflow: hidden;
}
body.isMobile.noScroll{
    /* position: fixed;Safari */
    overflow: hidden;
  width: 100%;
  height: 100%;
}


main{
    min-height:600px;
}
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;
}
img{
    max-width: 100%;
}
img:not([src$=".png"]):not([src$=".gif"]):not([src$=".svg"]){
    /* background-color: #f5fbfe; */
}
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,
select,
textarea {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    font-size: 16px;
}
input.date,
select{
    cursor: pointer;
}

input::-ms-clear {
    display: none;
}

textarea {
    resize: vertical;
    min-height: 40px;
    max-height: 200px;
}




/* IE remove select arrow */
select::-ms-expand {
    display: none;
}

/* Placeholder overrides */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    rgba(0, 0, 0, 0.7);
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
}
input:-moz-placeholder,
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    rgba(0, 0, 0, 0.7);
    opacity:  1;
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
}
input::-moz-placeholder,
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    rgba(0, 0, 0, 0.7);
    opacity:  1;
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    rgba(0, 0, 0, 0.7);
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* Microsoft Edge */
    color:    rgba(0, 0, 0, 0.7);
    font-size: 16px;
    font-family: 'Lato', Arial, sans-serif;
}

/* 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;
}

._contentStyle {
    line-height: 1.4;
}
._contentStyle._contentStyle--big{
    font-size: 18px;
}
._contentStyle p:not(:last-child){
    margin-bottom: 15px;
}
._contentStyle a{
    text-decoration: underline;
    color: inherit;
}
._contentStyle ul,
._contentStyle ol{
    display: inline-block;
    text-align: left;
}
._contentStyle ol{
    list-style: auto;
}
._contentStyle li{
    position: relative;
    padding-left: 15px;
}
._contentStyle li:not(:last-child){
    margin-bottom: 15px;
}
._contentStyle:not(.tickList) ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: #333333;
}
._contentStyle img{
    max-width: 100%;
    height: auto !important;
}

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

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

._row:after,
._rowSmall:after,
._clearfix:after{content:"";visibility:hidden;display:block;height:0;clear:both;}
._row{margin-left:-15px;margin-right:-15px;}
._rowSmall{margin-left:-10px;margin-right:-10px;}

._mrgTop{margin-top: 15px;}
._mrgBot{margin-bottom: 15px;}
._mrgRight{margin-right: 15px;}
._mrgLeft{margin-left: 15px;}
._mrgV{margin-top:15px;margin-bottom:15px;}
._mrgH{margin-left: 15px;margin-right: 15px;}

._mrgTopBig{margin-top: 30px;}
._mrgBotBig{margin-bottom: 30px;}
._mrgRightBig{margin-right: 30px;}
._mrgLeftBig{margin-left: 30px;}
._mrgVbig{margin-top:30px;margin-bottom:30px;}
._mrgHbig{margin-left: 30px;margin-right: 30px;}

._pad{padding: 15px;}
._padTop{padding-top: 15px;}
._padBot{padding-bottom: 15px;}
._padRight{padding-right: 15px;}
._padLeft{padding-left: 15px;}
._padV{padding-top: 15px;padding-bottom: 15px;}
._padH{padding-left: 15px;padding-right: 15px;}
._padHsmall{padding-left: 10px;padding-right: 10px;}

._padBig{padding: 30px;}
._padTopBig{padding-top: 30px;}
._padBotBig{padding-bottom: 30px;}
._padRightBig{padding-right: 30px;}
._padLeftBig{padding-left: 30px;}
._padVbig{padding-top: 30px;padding-bottom: 30px;}
._padHbig{padding-left: 30px;padding-right: 30px;}

._noMrgTop{margin-top: 0 !important;}
._noMrgBot{margin-bottom: 0 !important;}
._noMrgRight{margin-right: 0 !important;}
._noMrgLeft{margin-left: 0 !important;}
._noMrgV{margin-top:0 !important;margin-bottom:0 !important;}
._noMrgH{margin-left: 0 !important;margin-right: 0 !important;}

._noPadTop{padding-top: 0 !important;}
._noPadBot{padding-bottom: 0 !important;}
._noPadRight{padding-right: 0 !important;}
._noPadLeft{padding-left: 0 !important;}
._noPadV{padding-top: 0 !important;padding-bottom: 0 !important;}
._noPadH{padding-left: 0 !important;padding-right: 0 !important;}

._textCenter{text-align:center;}
._textRight{text-align:right;}
._textLeft{text-align:left;}
._textLower{text-transform:lowercase;}
._textUpper{text-transform:uppercase;}
._textSmall,
._textSmall > *{font-size:14px;}
._textBig,
._textBig > *{font-size:28px;}





/* Grid sizes */
._colOne{width: 4.666%;}
._colTwo{width: 16.666%;}
._colFifth{width: 20%;}
._colThree{width: 25%;}
._colThird{width: 33.333%;}
._colFive{width: 41.666%;}
._colHalf{width: 50%;}
._colSeven{width: 58.333%;}
._colTwoThird{width: 66.666%;}
._colNine{width: 75%;}
._colTen{width: 83.333%;}
._colEleven{width: 91.666%;}
._colComplete{ width: 100%;}
._colBlock{display:inline-block;float:none!important;vertical-align:middle;}


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

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

._flex{
    display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;
    display:flex;
}
._flex--wrap{
    -webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
._flex--center{
    -webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;
    justify-content:center;
}
._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;
}
._flex--sa{
    -webkit-box-pack:----(justify);-moz-box-pack:----(justify);-webkit-justify-content:space-around;-ms-flex-pack:distribute;
    justify-content:space-around;
}
._flex--sb{
    -webkit-box-pack:justify;-moz-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;
    justify-content:space-between;
}
._flex--ait{
    -webkit-box-align:flex-start;-moz-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;
    align-items:flex-start;
}
._flex--aic{
    -webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;-ms-flex-align:center;
    align-items:center;
}
._flex--aib{
    -webkit-box-align:flex-end;-moz-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;
    align-items:flex-end;
}
._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;
}

._grid{
    display: grid;
}

._grid-2{
    grid-template-columns: repeat(2, 1fr);
}

._grid-3{
    grid-template-columns: repeat(3, 1fr);
}
._grid-4{
    grid-template-columns: repeat(4, 1fr);
}



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

._imgBg,
._imgTagBg{position: relative; overflow: hidden;}
._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;
}
._imgTagBg > :first-child {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    min-width: 100%;
    max-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;
    width: auto;
    height: auto;
}
._imgTagBg--contain > :first-child{
    object-fit: contain;
}
._imgBg--hover,
._imgTagBg--hover{
    overflow: hidden;
    position: relative;
}
._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;
}
._imgTagBg--overlay > *{
    position: relative;
    z-index: 1;
}
._imgBg--hover > :first-child{
    transition: 0.3s;
    -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);
}
._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);
}
._imgTagBg--hover > :first-child{
    transition: 0.3s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
._imgTagBg--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);
}
._imgTagBg--overlay:hover:before{
    background: rgba(0,0,0,.0);
}
._imgResponsive{
    max-width: 100%;
}
._imgAuto{
    width: auto;
    height: auto;
}

._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;
}
._modal__overlay{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:rgba(0, 0, 0, 0.7);
}
._modal__close{
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    fill: #ffffff;
    z-index: 2;
}
._modal__container{
    position: absolute;
    left: 15px;
    right: 15px;
    padding: 30px 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-height: 100%;
    overflow-y: auto;
    z-index: 1;
}
._modal--r2l{
    -moz-transform:translateX(100%);
    -ms-transform:translateX(100%);
    -o-transform:translateX(100%);
    -webkit-transform:translateX(100%);
    transform:translateX(100%);
}
._modal--l2r{
    -moz-transform:translateX(-100%);
    -ms-transform:translateX(-100%);
    -o-transform:translateX(-100%);
    -webkit-transform:translateX(-100%);
    transform:translateX(-100%);
}
._modal--t2b{
    -moz-transform:translateY(-100%);
    -ms-transform:translateY(-100%);
    -o-transform:translateY(-100%);
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%);
}
._modal--b2t{
    -moz-transform:translateY(100%);
    -ms-transform:translateY(100%);
    -o-transform:translateY(100%);
    -webkit-transform:translateY(100%);
    transform:translateY(100%);
}
._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;
}
._modal--full ._modal__container{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;
    display:flex;
    -webkit-box-align:center;-moz-box-align:center;-webkit-align-items:center;-ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;-moz-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;
    justify-content:center;
    background-color: #f2f2f2;
}
._modal--full ._modal__close {
    fill: #333333;
    padding: 15px;
    box-sizing: content-box;
}
._modal--full ._modal__inner{
    width: 100%;
    padding: 15px;
}
._modal--full ._modal__overlay{
    display: none;
}

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


/*------ contentWithSidebar ------*/
.contentWithSidebar{
    display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;
    display:flex;
}
.contentWithSidebar__content{
    width: 70%;
}

.contentWithSidebar > :first-child{
    padding-right: 20px;
}
.contentWithSidebar > :last-child{
    padding-left: 20px;
}

.contentWithSidebar__sidebar{
    width: 30%;
}
.contentWithSidebar__sidebar > *:not(:last-child) {
    margin-bottom: 40px;
}

@media (max-width: 1100px){
    .contentWithSidebar__content{
        width: 65%;
    }
    .contentWithSidebar__sidebar{
        width: 35%;
    }
}


/*----- Mobile overrides -----*/
body.isMobile{
    min-width: auto;
    overflow-x: hidden;
}
.isMobile ._container {
    min-width:initial!important;
    max-width:initial!important;
}
.isMobile :not(._section)>._container {
    padding-left: 15px;
    padding-right: 15px;
}

.isMobile ._section {
    margin: 20px 0;
    padding: 0;
}

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

.isMobile ._mrgTop{margin-top: 15px;}
.isMobile ._mrgBot{margin-bottom: 15px;}
.isMobile ._mrgRight{margin-right: 15px;}
.isMobile ._mrgLeft{margin-left: 15px;}
.isMobile ._mrgV{margin-top:15px;margin-bottom:15px;}
.isMobile ._mrgH{margin-left: 15px;margin-right: 15px;}

.isMobile ._bigMrgTop{margin-top: 30px;}
.isMobile ._bigMrgBot{margin-bottom: 30px;}
.isMobile ._bigMrgRight{margin-right: 30px;}
.isMobile ._bigMrgLeft{margin-left: 30px;}
.isMobile ._bigMrgV{margin-top:30px;margin-bottom:30px;}
.isMobile ._bigMrgH{margin-left: 30px;margin-right: 30px;}

.isMobile ._padTop{padding-top: 15px;}
.isMobile ._padBot{padding-bottom: 15px;}
.isMobile ._padRight{padding-right: 15px;}
.isMobile ._padLeft{padding-left: 15px;}
.isMobile ._padV{padding-top: 15px;padding-bottom: 15px;}
.isMobile ._padH{padding-left: 15px;padding-right: 15px;}

.isMobile ._bigPadTop{padding-top: 30px;}
.isMobile ._bigPadBot{padding-bottom: 30px;}
.isMobile ._bigPadRight{padding-right: 30px;}
.isMobile ._bigPadLeft{padding-left: 30px;}
.isMobile ._bigPadV{padding-top: 30px;padding-bottom: 30px;}
.isMobile ._bigPadH{padding-left: 30px;padding-right: 30px;}

.isMobile main{min-height: initial;}
.isMobile ._row{
    margin-left: -10px;
    margin-right: -10px;
}
.isMobile ._row .pad-h{
    padding: 0 10px;
}

.isMobile ._modal__container{
    position: absolute;
    padding: 20px 15px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}
.isMobile ._modal__overlay{
    display: none !important;
}


/*--------- 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;
}

@media(max-width: 1200px) {
    ._container--1000px {
        min-width: 800px;
        width: 800px;
    }
}
