/*! Import all styles */

:root {
    --white: #fff;
    --black: #000;
    --lightGrey: #f4f4f4;
    --mediumGrey: #e0e0e0;
    --darkGrey: #b0b0b0;
    --pageBackground: #fff;
    --primaryColor: #1171A8;
    --primaryColorDark: #15375B;
    --secondaryColor: #fd6e2c;
    --secondaryColorDark: #fa621b;
    --fontColor: #1171A8;
    --fontColorLight: #fff;
    --brandColor: #1171A8;
    --brandColorHover: #15375B;
    --fontBody: "LibreBaskerville";
    --fontHeadings: "LibreBaskerville";
    --fontSecondary: "LibreBaskerville";
    --fontIcons: "Font Awesome 5 Pro";
    --fontWeight: 400;
    --fontWeightExtraLight: 200;
    --fontWeightLight: 300;
    --fontWeightSemi: 600;
    --fontWeightBold: 700;
    --fontWeightExtraBold: 800;
    --fontWeightBlack: 900;
    --fontSize: 2.2rem;
    --fontLineHeight: 3.2rem;
}

@media (min-width:1200px) {
    :root {
        --fontSize: 2.1rem;
        --fontLineHeight: 3.6rem;
    }
}

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width:992px) {
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (min-width:1200px) {
    .container {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width:1600px) {
    .container {
        padding-right: 70px;
        padding-left: 70px;
    }
}

.container-fluid {
    padding-right: 20px;
    padding-left: 20px;
}

@media (min-width:992px) {
    .container-fluid {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (min-width:1200px) {
    .container-fluid {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width:1600px) {
    .container-fluid {
        padding-right: 70px;
        padding-left: 70px;
    }
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width:992px) {
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (min-width:1200px) {
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width:1600px) {
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: 70px;
        padding-left: 70px;
    }
}

@media (min-width:992px) {
    .container-xxl {
        width: 95%;
    }
}

@media (min-width:576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width:1600px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1690px;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: -15px;
    margin-left: -15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
}

@media (min-width:992px) {
    .row {
        margin-right: -40px;
        margin-left: -40px;
    }
}

@media (min-width:1200px) {
    .row {
        margin-right: -50px;
        margin-left: -50px;
    }
}

@media (min-width:1600px) {
    .row {
        margin-right: -70px;
        margin-left: -70px;
    }
}

.row.reverse {
    flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row-reverse;
}

.col.reverse,
.row.reverse {
    -webkit-box-direction: reverse;
}

.col.reverse {
    flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
}

.row-cols-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

.row-cols-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
}

.row-cols-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
}

.row-cols-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
}

.row-cols-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
}

.row-cols-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
    flex: 0 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
}

@media (min-width:992px) {
    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-offset-0,
    .col-xs-offset-1,
    .col-xs-offset-2,
    .col-xs-offset-3,
    .col-xs-offset-4,
    .col-xs-offset-5,
    .col-xs-offset-6,
    .col-xs-offset-7,
    .col-xs-offset-8,
    .col-xs-offset-9,
    .col-xs-offset-10,
    .col-xs-offset-11,
    .col-xs-offset-12 {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (min-width:1200px) {
    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-offset-0,
    .col-xs-offset-1,
    .col-xs-offset-2,
    .col-xs-offset-3,
    .col-xs-offset-4,
    .col-xs-offset-5,
    .col-xs-offset-6,
    .col-xs-offset-7,
    .col-xs-offset-8,
    .col-xs-offset-9,
    .col-xs-offset-10,
    .col-xs-offset-11,
    .col-xs-offset-12 {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width:1600px) {
    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-offset-0,
    .col-xs-offset-1,
    .col-xs-offset-2,
    .col-xs-offset-3,
    .col-xs-offset-4,
    .col-xs-offset-5,
    .col-xs-offset-6,
    .col-xs-offset-7,
    .col-xs-offset-8,
    .col-xs-offset-9,
    .col-xs-offset-10,
    .col-xs-offset-11,
    .col-xs-offset-12 {
        padding-right: 70px;
        padding-left: 70px;
    }
}

.col,
.col-xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -ms-flex-preferred-size: 0;
}

.col-1,
.col-xs-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
}

.col-2,
.col-xs-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
}

.col-3,
.col-xs-3 {
    flex-basis: 25%;
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
}

.col-4,
.col-xs-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
}

.col-5,
.col-xs-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
}

.col-6,
.col-xs-6 {
    flex-basis: 50%;
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
}

.col-7,
.col-xs-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
}

.col-8,
.col-xs-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
}

.col-9,
.col-xs-9 {
    flex-basis: 75%;
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
}

.col-10,
.col-xs-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
}

.col-11,
.col-xs-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
}

.col-12,
.col-xs-12 {
    flex-basis: 100%;
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-fifth {
    flex-basis: 20%;
    max-width: 20%;
    -ms-flex-preferred-size: 20%;
}

.row.start,
.start-xs {
    [dir=ltr] & {
        justify-content: flex-start;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }

    [dir=rtl] & {
        text-align: right;
    }
}

.center-xs,
.row.center {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.end-xs,
.row.end {
    justify-content: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
}

.row.top,
.top-xs {
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.middle-xs,
.row.middle {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.bottom-xs,
.row.bottom {
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.around-xs,
.row.around {
    justify-content: space-around;
    -ms-flex-pack: distribute;
}

.between-xs,
.row.between {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.first-xs,
.row.first {
    order: -1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
}

.last-xs,
.row.last {
    order: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
}

.d-none {
    display: none!important;
}

.d-inline {
    display: inline!important;
}

.d-inline-block {
    display: inline-block!important;
}

.d-block {
    display: block!important;
}

.d-table {
    display: table!important;
}

.d-table-row {
    display: table-row!important;
}

.d-table-cell {
    display: table-cell!important;
}

.d-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.d-inline-flex {
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important;
}

.mt-auto {
    margin-top: auto!important;
}

.ml-auto {
    margin-left: auto!important;
}

.mr-auto {
    margin-right: auto!important;
}

.mb-auto {
    margin-bottom: auto!important;
}

.mx-auto {
    margin-right: auto!important;
    margin-left: auto!important;
}

.row.cols-flush > div {
    padding: 0;
}

.row.cols-flush > div img {
    display: block;
}

@media only screen and (min-width:576px) {
    .container {
        width: 540px;
    }

    .row-cols-sm-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
    }

    .row-cols-sm-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
    }

    .row-cols-sm-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
    }

    .row-cols-sm-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
    }

    .row-cols-sm-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
    }

    .row-cols-sm-6 > * {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
    }

    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-offset-0,
    .col-sm-offset-1,
    .col-sm-offset-2,
    .col-sm-offset-3,
    .col-sm-offset-4,
    .col-sm-offset-5,
    .col-sm-offset-6,
    .col-sm-offset-7,
    .col-sm-offset-8,
    .col-sm-offset-9,
    .col-sm-offset-10,
    .col-sm-offset-11,
    .col-sm-offset-12 {
        flex: 0 0 auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
    }

    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        -ms-flex-preferred-size: 0;
    }

    .col-sm-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
    }

    .col-sm-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
    }

    .col-sm-3 {
        flex-basis: 25%;
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
    }

    .col-sm-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
    }

    .col-sm-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
    }

    .col-sm-6 {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }

    .col-sm-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
    }

    .col-sm-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
    }

    .col-sm-9 {
        flex-basis: 75%;
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
    }

    .col-sm-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
    }

    .col-sm-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
    }

    .col-sm-12 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-fifth {
        flex-basis: 20%;
        max-width: 20%;
        -ms-flex-preferred-size: 20%;
    }

    .start-sm {
    [dir=ltr] & {
        justify-content: flex-start;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }

    [dir=rtl] & {
        text-align: right;
    }
}

.center-sm {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.end-sm {
    [dir=ltr] & {
        justify-content: flex-end;
        text-align: right;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
    }

    [dir=rtl] & {
        text-align: left;
    }
}

.top-sm {
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.middle-sm {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.bottom-sm {
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.around-sm {
    justify-content: space-around;
    -ms-flex-pack: distribute;
}

.between-sm {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.first-sm {
    order: -1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
}

.last-sm {
    order: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
}

.d-sm-none {
    display: none!important;
}

.d-sm-inline {
    display: inline!important;
}

.d-sm-inline-block {
    display: inline-block!important;
}

.d-sm-block {
    display: block!important;
}

.d-sm-table {
    display: table!important;
}

.d-sm-table-row {
    display: table-row!important;
}

.d-sm-table-cell {
    display: table-cell!important;
}

.d-sm-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.d-sm-inline-flex {
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important;
}
}

@media only screen and (min-width:768px) {
    .container {
        width: 720px;
    }

    .row-cols-md-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
    }

    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-offset-0,
    .col-md-offset-1,
    .col-md-offset-2,
    .col-md-offset-3,
    .col-md-offset-4,
    .col-md-offset-5,
    .col-md-offset-6,
    .col-md-offset-7,
    .col-md-offset-8,
    .col-md-offset-9,
    .col-md-offset-10,
    .col-md-offset-11,
    .col-md-offset-12 {
        flex: 0 0 auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
    }

    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        -ms-flex-preferred-size: 0;
    }

    .col-md-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
    }

    .col-md-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
    }

    .col-md-3 {
        flex-basis: 25%;
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
    }

    .col-md-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
    }

    .col-md-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
    }

    .col-md-6 {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }

    .col-md-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
    }

    .col-md-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
    }

    .col-md-9 {
        flex-basis: 75%;
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
    }

    .col-md-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
    }

    .col-md-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
    }

    .col-md-12 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-fifth {
        flex-basis: 20%;
        max-width: 20%;
        -ms-flex-preferred-size: 20%;
    }

    .start-md {
    [dir=ltr] & {
        justify-content: flex-start;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }

    [dir=rtl] & {
        text-align: right;
    }
}

.center-md {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.end-md {
    [dir=ltr] & {
        justify-content: flex-end;
        text-align: right;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
    }

    [dir=rtl] & {
        text-align: left;
    }
}

.top-md {
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.middle-md {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.bottom-md {
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.around-md {
    justify-content: space-around;
    -ms-flex-pack: distribute;
}

.between-md {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.first-md {
    order: -1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
}

.last-md {
    order: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
}

.d-md-none {
    display: none!important;
}

.d-md-inline {
    display: inline!important;
}

.d-md-inline-block {
    display: inline-block!important;
}

.d-md-block {
    display: block!important;
}

.d-md-table {
    display: table!important;
}

.d-md-table-row {
    display: table-row!important;
}

.d-md-table-cell {
    display: table-cell!important;
}

.d-md-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.d-md-inline-flex {
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important;
}
}

@media only screen and (min-width:992px) {
    .mx-lg-reset {
        margin-right: 0!important;
        margin-left: 0!important;
    }

    .container {
        width: 960px;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
    }

    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-offset-0,
    .col-lg-offset-1,
    .col-lg-offset-2,
    .col-lg-offset-3,
    .col-lg-offset-4,
    .col-lg-offset-5,
    .col-lg-offset-6,
    .col-lg-offset-7,
    .col-lg-offset-8,
    .col-lg-offset-9,
    .col-lg-offset-10,
    .col-lg-offset-11,
    .col-lg-offset-12 {
        flex: 0 0 auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
    }

    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        -ms-flex-preferred-size: 0;
    }

    .col-lg-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
    }

    .col-lg-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
    }

    .col-lg-3 {
        flex-basis: 25%;
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
    }

    .col-lg-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
    }

    .col-lg-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
    }

    .col-lg-6 {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }

    .col-lg-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
    }

    .col-lg-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
    }

    .col-lg-9 {
        flex-basis: 75%;
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
    }

    .col-lg-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
    }

    .col-lg-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
    }

    .col-lg-12 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-fifth {
        flex-basis: 20%;
        max-width: 20%;
        -ms-flex-preferred-size: 20%;
    }

    .start-lg {
    [dir=ltr] & {
        justify-content: flex-start;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }

    [dir=rtl] & {
        text-align: right;
    }
}

.center-lg {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.end-lg {
    [dir=ltr] & {
        justify-content: flex-end;
        text-align: right;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
    }

    [dir=rtl] & {
        text-align: left;
    }
}

.top-lg {
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.middle-lg {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.bottom-lg {
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.around-lg {
    justify-content: space-around;
    -ms-flex-pack: distribute;
}

.between-lg {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.first-lg {
    order: -1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
}

.last-lg {
    order: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
}

.d-lg-none {
    display: none!important;
}

.d-lg-inline {
    display: inline!important;
}

.d-lg-inline-block {
    display: inline-block!important;
}

.d-lg-block {
    display: block!important;
}

.d-lg-table {
    display: table!important;
}

.d-lg-table-row {
    display: table-row!important;
}

.d-lg-table-cell {
    display: table-cell!important;
}

.d-lg-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.d-lg-inline-flex {
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important;
}
}

@media only screen and (min-width:1200px) {
    .container {
        width: 1140px;
    }

    .row-cols-xl-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
    }

    .row-cols-xl-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
    }

    .row-cols-xl-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
    }

    .row-cols-xl-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
    }

    .row-cols-xl-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
    }

    .row-cols-xl-6 > * {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
    }

    .col-xl,
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-offset-0,
    .col-xl-offset-1,
    .col-xl-offset-2,
    .col-xl-offset-3,
    .col-xl-offset-4,
    .col-xl-offset-5,
    .col-xl-offset-6,
    .col-xl-offset-7,
    .col-xl-offset-8,
    .col-xl-offset-9,
    .col-xl-offset-10,
    .col-xl-offset-11,
    .col-xl-offset-12 {
        flex: 0 0 auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
    }

    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        -ms-flex-preferred-size: 0;
    }

    .col-xl-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
    }

    .col-xl-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
    }

    .col-xl-3 {
        flex-basis: 25%;
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
    }

    .col-xl-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
    }

    .col-xl-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
    }

    .col-xl-6 {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }

    .col-xl-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
    }

    .col-xl-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
    }

    .col-xl-9 {
        flex-basis: 75%;
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
    }

    .col-xl-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
    }

    .col-xl-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
    }

    .col-xl-12 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }

    .col-xl-offset-0 {
        margin-left: 0;
    }

    .col-xl-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xl-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xl-offset-3 {
        margin-left: 25%;
    }

    .col-xl-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xl-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xl-offset-6 {
        margin-left: 50%;
    }

    .col-xl-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xl-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xl-offset-9 {
        margin-left: 75%;
    }

    .col-xl-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xl-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xl-fifth {
        flex-basis: 20%;
        max-width: 20%;
        -ms-flex-preferred-size: 20%;
    }

    .start-xl {
    [dir=ltr] & {
        justify-content: flex-start;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }

    [dir=rtl] & {
        text-align: right;
    }
}

.center-xl {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.end-xl {
    [dir=ltr] & {
        justify-content: flex-end;
        text-align: right;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
    }

    [dir=rtl] & {
        text-align: left;
    }
}

.top-xl {
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.middle-xl {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.bottom-xl {
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.around-xl {
    justify-content: space-around;
    -ms-flex-pack: distribute;
}

.between-xl {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.first-xl {
    order: -1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
}

.last-xl {
    order: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
}

.d-xl-none {
    display: none!important;
}

.d-xl-inline {
    display: inline!important;
}

.d-xl-inline-block {
    display: inline-block!important;
}

.d-xl-block {
    display: block!important;
}

.d-xl-table {
    display: table!important;
}

.d-xl-table-row {
    display: table-row!important;
}

.d-xl-table-cell {
    display: table-cell!important;
}

.d-xl-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.d-xl-inline-flex {
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important;
}
}

@media only screen and (min-width:1600px) {
    .container {
        width: 1540px;
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
    }

    .col-xxl,
    .col-xxl-1,
    .col-xxl-2,
    .col-xxl-3,
    .col-xxl-4,
    .col-xxl-5,
    .col-xxl-6,
    .col-xxl-7,
    .col-xxl-8,
    .col-xxl-9,
    .col-xxl-10,
    .col-xxl-11,
    .col-xxl-12,
    .col-xxl-offset-0,
    .col-xxl-offset-1,
    .col-xxl-offset-2,
    .col-xxl-offset-3,
    .col-xxl-offset-4,
    .col-xxl-offset-5,
    .col-xxl-offset-6,
    .col-xxl-offset-7,
    .col-xxl-offset-8,
    .col-xxl-offset-9,
    .col-xxl-offset-10,
    .col-xxl-offset-11,
    .col-xxl-offset-12 {
        flex: 0 0 auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
    }

    .col-xxl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        -ms-flex-preferred-size: 0;
    }

    .col-xxl-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
        -ms-flex-preferred-size: 8.33333333%;
    }

    .col-xxl-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
        -ms-flex-preferred-size: 16.66666667%;
    }

    .col-xxl-3 {
        flex-basis: 25%;
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
    }

    .col-xxl-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
        -ms-flex-preferred-size: 33.33333333%;
    }

    .col-xxl-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
        -ms-flex-preferred-size: 41.66666667%;
    }

    .col-xxl-6 {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }

    .col-xxl-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
        -ms-flex-preferred-size: 58.33333333%;
    }

    .col-xxl-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
        -ms-flex-preferred-size: 66.66666667%;
    }

    .col-xxl-9 {
        flex-basis: 75%;
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
    }

    .col-xxl-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
        -ms-flex-preferred-size: 83.33333333%;
    }

    .col-xxl-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
        -ms-flex-preferred-size: 91.66666667%;
    }

    .col-xxl-12 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }

    .col-xxl-offset-0 {
        margin-left: 0;
    }

    .col-xxl-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xxl-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xxl-offset-3 {
        margin-left: 25%;
    }

    .col-xxl-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xxl-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xxl-offset-6 {
        margin-left: 50%;
    }

    .col-xxl-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xxl-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xxl-offset-9 {
        margin-left: 75%;
    }

    .col-xxl-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xxl-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xxl-fifth {
        flex-basis: 20%;
        max-width: 20%;
        -ms-flex-preferred-size: 20%;
    }

    .start-xxl {
    [dir=ltr] & {
        justify-content: flex-start;
        text-align: left;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }

    [dir=rtl] & {
        text-align: right;
    }
}

.center-xxl {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.end-xxl {
    [dir=ltr] & {
        justify-content: flex-end;
        text-align: right;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
    }

    [dir=rtl] & {
        text-align: left;
    }
}

.top-xxl {
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.middle-xxl {
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.bottom-xxl {
    align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
}

.around-xxl {
    justify-content: space-around;
    -ms-flex-pack: distribute;
}

.between-xxl {
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.first-xxl {
    order: -1;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
}

.last-xxl {
    order: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
}

.d-xxl-none {
    display: none!important;
}

.d-xxl-inline {
    display: inline!important;
}

.d-xxl-inline-block {
    display: inline-block!important;
}

.d-xxl-block {
    display: block!important;
}

.d-xxl-table {
    display: table!important;
}

.d-xxl-table-row {
    display: table-row!important;
}

.d-xxl-table-cell {
    display: table-cell!important;
}

.d-xxl-flex {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}

.d-xxl-inline-flex {
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    display: inline-flex!important;
}
}

@font-face {
    font-family: LibreBaskerville;
    font-style: normal;
    font-weight: 400;
    src: url(../assets/css/vendors/fonts/LibreBaskerville-Regular.ttf) format("ttf");
    font-stretch: normal;
}

@font-face {
    font-family: LibreBaskerville;
    font-style: italic;
    font-weight: 400;
    src: url(../assets/css/vendors/fonts/LibreBaskerville-Italic.ttf) format("ttf");
    font-stretch: normal;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: LibreBaskerville
    font-family: var(--fontBody);
    font-size: 62.5%;
    line-height: 3.2rem;
    line-height: var(--fontLineHeight);
    color: #1171A8;
    color: var(--fontColor);
}

@media (min-width:1600px) {
    html {
        font-size: 62.5%;
    }
}

body {
    min-width: 320px;
    font-family: LibreBaskerville;
    font-family: var(--fontBody);
    font-size: 1.8rem;
    font-size: var(--fontSize);
    font-weight: 300;
    font-weight: var(--fontWeightLight);
    line-height: 3.2rem;
    line-height: var(--fontLineHeight);
    color: #1171A8;
    color: var(--fontColor);
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    -webkit-font-smoothing: antialiased;
}

@media (min-width:768px) {
    body {
        padding-top: 0;
    }
}

body.js.loaded,
body.no-js {
    opacity: 1;
}

body,
html {
    height: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

hr {
    margin: 5px 0;
    border: 0;
    border-bottom: #e1e1e1;
}

.color-brand {
    color: #1171A8;
    color: var(--brandColor);
}

.color-black {
    color: #000;
    color: var(--black);
}

.color-white {
    color: #fff;
    color: var(--white);
}

.block-subtitle,
.block-text p strong em,
.block-title {
    color: #1171A8;
    color: var(--primaryColor);
    text-align: justify;
}

.block-text p strong em {
    font-style: normal;
    font-weight: 400;
     text-align: justify;
}

.block-text p small {
    display: inline-block;
     text-align: justify;
}

.block-text p:last-of-type {
    margin-bottom: 0;
     text-align: justify;
     font-size: 2.2vh;
     line-height: 4vh;
     padding:5%;
}

.block-text ul {
    list-style: none;
}

.block-text ul li {
    position: relative;
    margin-bottom: 20px;
}


.block-text ul li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 9px;
    left: -30px;
    width: 20px;
    border-bottom: 1px solid #1171A8;
    border-bottom: 1px solid var(--fontColor);
}

@media (min-width:768px) {
    .block-text ul li:before {
        top: 15px;
        left: -35px;
        width: 25px;
    }
}

.block-text-features .col {
    margin-bottom: 4vh;
}

@media (min-width:768px) {
    .block-text-features .col {
        margin-bottom: 2vh;
    }
}

.block-text-features .col .block-subtitle,
.block-text-features .col:last-of-type {
    margin-bottom: 0;
}

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

.bg-mint {
    background-color: #c7edc2;
}

.bg-moss {
    background-color: #e1e7be;
}

.bg-sky {
    background-color: #c0e9e8;
}

.bg-deepocean {
    background-color: #0c1728;
}

.entry-footer {
    display: none;
    padding: 10px 0;
    text-align: center;
    background-color: #e1e1e1;
}

.slick-dots {
    display: block;
    position: absolute;
    bottom: -10px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    display: block;
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    font-size: 0;
    line-height: 0;
    outline: none;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1;
}

.slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 100%;
    text-align: center;
    font-size: 6px;
    line-height: 20px;
    color: #000;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75;
    background-color: #000;
}

body .mfp-bg {
    background-color: #fff;
}

.info-tooltip {
    position: relative;
}

.info-tooltip-icon {
    display: inline-block;
    z-index: 6;
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    text-align: center;
    text-transform: lowercase;
    color: #1171A8;
    color: var(--primaryColor);
    background-color: var(--colorLightRed);
    cursor: pointer;
}

@media (min-width:992px) {
    .info-tooltip-icon {
        width: 16px;
        height: 16px;
    }
}

.info-tooltip-content {
    display: none;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50vw;
    padding: 20px;
    border-radius: 10px;
    text-transform: none;
    font-family: LibreBaskerville;
    font-family: var(--fontBody);
    font-weight: 400;
    color: #1171A8;
    color: var(--fontColor);
    background-color: #fff;
}

@media (min-width:992px) {
    .info-tooltip-content {
        width: 25vw;
    }
}

.info-tooltip.active .info-tooltip-content {
    display: block;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-weight: 400;
    letter-spacing: 0;
    font-weight: bold;
}

.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: underline;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-weight: 400;
    color: inherit;
}

.h1 i,
.h2 i,
.h3 i,
.h4 i,
.h5 i,
.h6 i,
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
    font-family: LibreBaskerville;
    font-family: var(--fontSecondary);
    font-size: 110%;
}

.h1,
h1 {
    margin-bottom: 2rem;
    padding-top: 10%;
    text-transform: none;
    font-size: 3rem;
    line-height: 3.8rem;
}

@media (min-width:992px) {
    .h1,
    h1 {
        font-size: 4rem;
        line-height: 4.8rem;
    }
}

@media (min-width:1200px) {
    .h1,
    h1 {
        font-size: 4.7rem;
        font-weight: bold;
        line-height: 5.5rem;
    }
}

@media (min-width:1600px) {
    .h1,
    h1 {
        font-size: 5.4rem;
        line-height: 6.5rem;
    }
}

.h2,
h2 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 4.5rem;
}

@media (min-width:992px) {
    .h2,
    h2 {
        font-size: 4.5rem;
        line-height: 5.5rem;
    }
}

@media (min-width:1200px) {
    .h2,
    h2 {
        font-size: 5rem;
        line-height: 6rem;
    }
}

@media (min-width:1600px) {
    .h2,
    h2 {
        font-size: 6rem;
        line-height: 7rem;
    }
}

.h3,
h3 {
    margin-bottom: 1.5rem;
    font-size: 4.8rem;
    line-height: 6rem;
}

@media (min-width:768px) {
    .h3,
    h3 {
        font-size: 4rem;
        line-height: 5rem;
    }
}

@media (min-width:1600px) {
    .h3,
    h3 {
        font-size: 4.8rem;
        line-height: 6rem;
    }
}

.h4,
h4 {
    margin-bottom: 1.5rem;
    font-size: 2.6rem;
    line-height: 4.2rem;
}

@media (min-width:768px) {
    .h4,
    h4 {
        font-size: 2rem;
        line-height: 3.6rem;
    }
}

@media (min-width:1200px) {
    .h4,
    h4 {
        margin-bottom: 1.8rem;
        font-size: 2.6rem;
        line-height: 4.2rem;
    }
}

.h5,
h5 {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 3.1rem;
}

@media (min-width:768px) {
    .h5,
    h5 {
        font-size: 1.6rem;
        line-height: 2.3rem;
    }
}

@media (min-width:1200px) {
    .h5,
    h5 {
        margin-bottom: 1.5rem;
        font-size: 2.4rem;
        line-height: 3.1rem;
    }
}

.h6,
h6 {
    font-size: 1.6rem;
    line-height: 1.8rem;
}

@media (min-width:1200px) {
    .h6,
    h6 {
        font-size: 1.8rem;
        line-height: 2rem;
    }
}

@media (min-width:1600px) {
    .h6,
    h6 {
        font-size: 2.1rem;
        line-height: 2.8rem;
    }
}

.heading-base {
    font-family: LibreBaskerville;
    font-family: var(--fontBody);
    font-weight: 400;
}

p {
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: justify;
}

@media (min-width:992px) {
    p {
        margin-bottom: 1.5rem;
        text-align: justify;
    }
}

p a {
    text-decoration: underline;
}

b,
strong {
    font-weight: 700;
    font-weight: var(--fontWeightBold);
}

small {
    font-size: 1.3rem;
    line-height: 1.6rem;
}

@media (min-width:768px) {
    small {
        font-size: 1.4rem;
        line-height: 1.7rem;
    }
}

.text-large {
    font-size: 2rem;
    line-height: 2.6rem;
}

@media (min-width:992px) {
    .text-large {
        font-size: 2.2rem;
        line-height: 2.7rem;
    }
}

@media (min-width:1200px) {
    .text-large {
        font-size: 2.4rem;
        line-height: 2.8rem;
    }
}

@media (min-width:1600px) {
    .text-large {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }
}

.text-center {
    text-align: center;
}

@media (max-width:991px) {
    .text-center-m {
        text-align: center;
    }
}

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

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

.text-capitalize {
    text-transform: capitalize!important;
}

.text-underline {
    text-decoration: underline;
}

.text-light {
    color: #fff;
    color: var(--fontColorLight);
}

.text-dark {
    color: #1171A8;
    color: var(--fontColor);
}

.font-heading {
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
}

.font-secondary {
    font-family: LibreBaskerville;
    font-family: var(--fontSecondary);
}

.text-white {
    color: #fff;
}

a {
    text-decoration: underline;
    font-weight: 400;
    font-weight: var(--fontWeight);
    outline: none;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip: ink;
}

a:hover {
    color: inherit;
}

a.default {
    text-decoration: underline;
}

a.link,
a.link-block {
    display: block;
}

a.link {
    position: relative;
    padding: 10px 0;
    border: 1px solid #1171A8;
    border-right: none;
    border-left: none;
    text-decoration: none;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    cursor: pointer;
}

@media (max-width:767px) {
    a.link {
        color: inherit;
    }
}

@media (min-width:768px) {
    a.link {
        padding: 16px 0;
    }
}

@media (min-width:1200px) {
    a.link {
        padding: 17px 0;
    }
}

a.link:focus,
a.link:hover {
    color: inherit;
}

a.link-dark {
    color: #1171A8;
    color: var(--fontColor);
}

a.link img {
    position: absolute;
    top: 14px;
    right: -10px;
    width: 28px;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

@media (min-width:992px) {
    a.link img {
        width: 34px;
    }
}

@media (min-width:1200px) {
    a.link img {
        width: 41px;
    }
}

a.link.is-inview img {
    right: 0;
    opacity: 1;
}

a.link-title {
    border-bottom: 1px solid #1171A8;
    border-bottom: 1px solid var(--primaryColor);
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.4rem;
}

@media (min-width:768px) {
    a.link-title {
        font-size: 1.6rem;
    }
}

.is-inview > a.link img {
    right: 0;
    opacity: 1;
}

.link-wrap {
    margin-top: 25px;
}

.fadeIn {
    opacity: 0;
    -webkit-transition: opacity 1.4s;
    transition: opacity 1.4s;
}

.slideUp {
    -webkit-transition: 1.1s;
    transition: 1.1s;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.slideUp.step-1 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.slideUp.step-2 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}

.slideUp.step-3 {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
}

.slideUp.step-4 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.slideUp.step-5 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.is-inview {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

@media (min-width:768px) {
    .is-inview {
        -webkit-transition-delay: .5s;
        transition-delay: .5s;
    }
}

.is-inview.fadeIn {
    opacity: 1;
    text-align: justify;
}

.is-inview.slideUp {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    text-align: justify;
}

.anim-text > span {
    display: block;
    overflow: hidden;
}

.anim-text>span:nth-child(2) > span {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.anim-text>span:nth-child(3) > span {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.anim-text>span:nth-child(4) > span {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.anim-text>span:nth-child(5) > span {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.anim-text>span:nth-child(6) > span {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}

.anim-text>span:nth-child(7) > span {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
}

.anim-text > span > span {
    display: block;
    line-height: 110%;
    opacity: 0;
    -webkit-transition: opacity .6s cubic-bezier(.215,.61,.355,1) ,-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1) ,-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1), transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1), transform .6s cubic-bezier(.215,.61,.355,1) ,-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}

.anim-text > span > span.is-inview {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.delay-0 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.delay-05s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}

.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.delay-15s {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}

.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}

.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-transition-delay: 3s;
    transition-delay: 3s;
}

.delay-3-5s {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
    -webkit-transition-delay: 3.5s;
    transition-delay: 3.5s;
}

.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-transition-delay: 4s;
    transition-delay: 4s;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1);
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.header_main {
    z-index: 1020;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #fff;
    color: #fff;
    opacity: 0;
    -webkit-transition: opacity .6s cubic-bezier(.215,.61,.355,1) ,-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1) ,-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1), transform .6s cubic-bezier(.215,.61,.355,1);
    transition: opacity .6s cubic-bezier(.215,.61,.355,1), transform .6s cubic-bezier(.215,.61,.355,1) ,-webkit-transform .6s cubic-bezier(.215,.61,.355,1);
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

@media (min-width:1200px) {
    .header_main {
        height: auto;
    }
}

.header_main--item {
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width:767px) {
    .header_main--item {
        height: 75px;
    }
}

@media (min-width:768px) {
    .header_main--item {
        align-self: stretch;
        -ms-flex-item-align: stretch;
    }
}

@media (min-width:992px) {
    .header_main--item {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (min-width:1200px) {
    .header_main--item {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (min-width:1600px) {
    .header_main--item {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

body.bg-white:not(.home):not(.nav-active) .header_main {
    background-color: #fff;
}

body.bg-mint:not(.home):not(.nav-active) .header_main {
    background-color: #c7edc2;
}

body.bg-moss:not(.home):not(.nav-active) .header_main {
    background-color: #e1e7be;
}

body.loaded .header_main {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

body:not(.nav-active) .header_main.scroll {
    border-bottom-color: rgb(0, 0, 0, 0);
    color: #1171A8;
    background-color: #fff;
}

body:not(.nav-active) .header_main.scroll .header_main-logo svg {
    fill: #1171A8;
}

body:not(.nav-active) .header_main.scroll .header_main-logo {
    border-right-color: rgb(0, 0, 0, 0);
}

body:not(.nav-active) .header_main.scroll .header_hamburger button svg path {
    stroke: #1171A8;
}

body:not(.nav-active) .header_main.scroll .header_pagetitle {
    border-left-color: #1171A8;
}

body.bg-mint .header_main,
body.bg-moss .header_main,
body.bg-white .header_main {
    border-bottom-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

body.bg-mint .header_main .header_main-logo svg,
body.bg-moss .header_main .header_main-logo svg,
body.bg-white .header_main .header_main-logo svg {
    fill: r;
}

body.bg-mint .header_main .header_main-logo,
body.bg-moss .header_main .header_main-logo,
body.bg-white .header_main .header_main-logo {
    border-right-color: #1171A8;
}

body.bg-mint .header_main .header_hamburger button svg path,
body.bg-moss .header_main .header_hamburger button svg path,
body.bg-white .header_main .header_hamburger button svg path {
    stroke: #1171A8;
}

body.bg-mint .header_main .header_pagetitle,
body.bg-moss .header_main .header_pagetitle,
body.bg-white .header_main .header_pagetitle {
    border-left-color: #1171A8;
}

body.home .header_main {
    border-bottom-color: rgb(0, 0, 0, 0);
    color: #fff;
}

body.home .header_main .header_main-logo svg {
    fill: #fff;
}

body.home .header_main .header_main-logo {
    border-right-color: rgb(0, 0, 0, 0);
}

body.home .header_main .header_hamburger button svg path {
    stroke: #fff;
}

body.home .header_main .header_pagetitle {
    border-left-color: #fff;
}

.header_main-logo {
    position: relative;
    border-right: 1px solid #fff;
    text-align: center;
}

@media (min-width:992px) {
    .header_main-logo {
        display: inline-grid;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
}

.header_main-logo a,
.header_main-logo img {
    display: block;
}

.header_main-logo svg {
    display: block;
    fill: #fff;
}

@media (max-width:767px) {
    .header_main-logo svg {
        height: auto;
        max-width: 120px;
    }
}

@media (min-width:768px) {
    .header_main-logo svg {
        max-width: 80%;
    }
}

@media (min-width:992px) {
    .header_main-logo svg {
        max-width: 140px;
    }
}

@media (min-width:1200px) {
    .header_main-logo svg {
        max-width: 180px;
    }
}

.header_pagetitle,
.header_subtitle {
    flex: 0 1 auto;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.header_pagetitle {
    border-left: 1px solid #fff;
}

.header_hamburger {
    text-align: right;
    color: #fff;
    color: var(--white);
}

@media (min-width:1200px) {
    .header_hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
}

.header_hamburger-inner {
    display: inline-block;
}

.header_hamburger button {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 0;
    padding-left: 0;
    border: none;
    font-size: 1.6rem;
    outline: none;
    color: #fff;
    color: var(--white);
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
}

.header_hamburger button svg {
    width: 30px;
    height: auto;
    fill: #fff;
}

@media (min-width:992px) {
    .header_hamburger button svg {
        width: 42px;
    }
}

.header_hamburger button svg .a {
    stroke: #1171A8;
    stroke: var(--primaryColor);
    stroke: #fff;
}

body.nav-active .header_main {
    color: #c7edc2;
}

body.nav-active .header_main .header_main-logo {
   
}

body.nav-active .header_main .header_main-logo svg {
    fill: #c7edc2;
}

body.nav-active .header_main .header_pagetitle {
    
}

body.nav-active .header_main .header_hamburger button svg path {
    stroke: #c7edc2;
}

body.nav-active .header_main .header_hamburger .linehide {
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header_menu {
    display: none;
    display: block!important;
    z-index: 1019;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 130px;
    max-width: 200%;
    color: rgb(255,255,255);
    background-color: rgb(0,0,0,0.8);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@media (min-width:992px) {
    .header_menu {
        padding-top: 84px;
    }
}

@media (min-width:1200px) {
    .header_menu {
        padding-top: 98px;
    }
}

@media (min-width:1600px) {
    .header_menu {
        padding-top: 109px;
    }
}

.header_menu.show-menu {
    display: block!important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.header_menu-menu ul {
    margin: 0;
    padding: 0;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    list-style: none;
}

.header_menu-menu ul li {
    display: block;
}

.header_menu-menu ul li a {
    position: relative;
    color: white;
}

.header_menu-menu > ul {
    display: inline-block;
    width: 100%;
    height: 100%;
}

@media (min-width:992px) {
    .header_menu-menu > ul {
        width: 100vw;
    }
}

.header_menu-menu > ul > li {
    position: relative;
    border-bottom: 1px solid rgb(255, 255, 255, 0.2);
    overflow: hidden;
    font-size: 2.2rem;
    line-height: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (min-width:768px) {
    .header_menu-menu > ul > li {
        font-size: 2.5rem;
    }
}

@media (min-width:992px) {
    .header_menu-menu > ul > li {
        font-size: 1.5rem;
    }
}

@media (min-width:1200px) {
    .header_menu-menu > ul > li {
        font-size: 1vw;
    }
}

.header_menu-menu > ul > li:hover {
    color: white;
}

.header_menu-menu > ul > li:hover:after {
    opacity: 0.5;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header_menu-menu > ul > li:hover>a {
    font-family: LibreBaskerville;
    font-family: var(--fontSecondary);
    color: white;
}

.header_menu-menu > ul > li:hover>a span {
    position: relative;
    bottom: -4px;
    line-height: .8;
}

.header_menu-menu > ul > li:hover>a:after {
    background-image: url(../assets/images/icons/Icon_Arrow.svg);
}

.header_menu-menu > ul > li:before {
    position: absolute;
    top: 43px;
    left: 20px;
    font-size: 1.3rem;
}

@media (min-width:768px) {
    .header_menu-menu > ul > li:before {
        top: 40px;
        font-size: 1.6rem;
        line-height: 3.2rem;
    }
}

@media (min-width:992px) {
    .header_menu-menu > ul > li:before {
        top: 56px;
        left: 40px;
        font-size: 2.1rem;
        line-height: 3.6rem;
    }
}

@media (min-width:1200px) {
    .header_menu-menu > ul > li:before {
        top: 67px;
        left: 50px;
    }
}

@media (min-width:1600px) {
    .header_menu-menu > ul > li:before {
        top: 67px;
        left: 70px;
    }
}

.header_menu-menu > ul > li:after {
    content: "";
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: black;
    -webkit-transition: -webkit-transform .5s cubic-bezier(.075,.82,.165,1);
    transition: -webkit-transform .5s cubic-bezier(.075,.82,.165,1);
    transition: transform .5s cubic-bezier(.075,.82,.165,1);
    transition: transform .5s cubic-bezier(.075,.82,.165,1) ,-webkit-transform .5s cubic-bezier(.075,.82,.165,1);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.header_menu-menu > ul > li>a {
    display: block;
    position: relative;
    padding: 35px 35px 35px 55px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (min-width:768px) {
    .header_menu-menu > ul > li>a {
        margin-bottom: 0;
        border-bottom: none;
    }
}

@media (min-width:992px) {
    .header_menu-menu > ul > li>a {
        padding: 45px 50px;
    }
}

@media (min-width:1200px) {
    .header_menu-menu > ul > li>a {
        padding: 55px 70px;
    }
}

.header_menu-menu > ul > li>a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 37px;
    right: 20px;
    width: 25px;
    height: 25px;
    background-image: url(../assets/images/icons/Icon_Arrow_Mint.svg);
    background-size: 100% auto;
}

@media (min-width:768px) {
    .header_menu-menu > ul > li>a:after {
        top: 33px;
        width: 33px;
        height: 33px;
    }
}

@media (min-width:992px) {
    .header_menu-menu > ul > li>a:after {
        top: 50px;
        right: 40px;
        width: 41px;
        height: 41px;
    }
}

@media (min-width:1200px) {
    .header_menu-menu > ul > li>a:after {
        top: 54px;
        right: 50px;
    }
}

@media (min-width:1600px) {
    .header_menu-menu > ul > li>a:after {
        top: 54px;
        right: 70px;
    }
}

@media (min-width:992px) {
    .header_menu-menu > ul > li>a span {
        display: inline-block;
        position: relative;
        bottom: 0;
        padding-left: 130px;
    }
}

@media (min-width:1600px) {
    .header_menu-menu > ul > li>a span {
        padding-left: 230px;
    }
}

.header_menu-menu > ul ul.sub-menu {
    display: none;
}

.header_menu-text {
    padding: 80px 20px 0;
}

@media (min-width:992px) {
    .header_menu-text {
        position: absolute;
        right: 70px;
        bottom: 80px;
        width: 25%;
        padding: 0;
    }
}

@media (min-width:1600px) {
    .header_menu-text {
        right: 70px;
        bottom: 80px;
        width: 25%;
    }
}

body.search-active {
    overflow: hidden;
}

.header_searchPop {
    z-index: 1111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdf3ed;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.header_searchPop.show-search {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.header_searchPop-main {
    padding: 5vh 5vw;
}

@media (max-width:767px) {
    .header_searchPop-main {
        padding: 5vh 15px;
        max-height: 99vh;
        overflow-y: scroll;
    }
}

@media (min-width:768px) {
    .header_searchPop-main {
        padding: 0 5vw;
    }
}

@media (max-width:767px) {
    .header_searchPop-main .innerblock-spacing {
        padding-top: 130px;
    }
}

@media (min-width:768px) {
    .header_searchPop-form {
        padding: 0 15px;
    }
}

@media (min-width:1600px) {
    .header_searchPop-form {
        padding: 0 3.5vw;
    }
}

.header_searchPop-form form {
    margin-bottom: 30px;
    border-bottom: 3px solid #1171A8;
    border-bottom: 3px solid var(--primaryColor);
}

@media (min-width:768px) {
    .header_searchPop-form form {
        border-bottom: 8px solid #1171A8;
        border-bottom: 8px solid var(--primaryColor);
    }
}

.header_searchPop-form input {
    width: 100%;
    border: none;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 3rem;
    outline: none;
    color: #1171A8;
    color: var(--primaryColor);
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width:576px) {
    .header_searchPop-form input {
        font-size: 4rem;
    }
}

@media (min-width:768px) {
    .header_searchPop-form input {
        font-size: 6rem;
    }
}

@media (min-width:1200px) {
    .header_searchPop-form input {
        font-size: 9rem;
    }
}

.header_searchPop-form input::-webkit-input-placeholder {
    color: #1171A8;
    color: var(--primaryColor);
}

.header_searchPop-form--msg .search-found,
.header_searchPop-form--msg .search-none {
    display: none;
}

.header_searchPop-form--msg .search-pills {
    margin-top: 30px;
    padding-left: 0;
    list-style: none;
}

@media (min-width:992px) {
    .header_searchPop-form--msg .search-pills {
        margin-top: 50px;
    }
}

@media (min-width:1600px) {
    .header_searchPop-form--msg .search-pills {
        margin-top: 70px;
    }
}

.header_searchPop-form--msg .search-pills li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.header_searchPop-form--msg .search-pills li span {
    display: inline-block;
    padding: 10px;
}

.header_searchPop-results {
    margin-top: 60px;
    max-height: none;
    overflow-y: scroll;
}

@media (min-width:768px) {
    .header_searchPop-results {
        max-height: 50vh;
    }
}

@media (min-width:1200px) {
    .header_searchPop-results {
        margin-top: 100px;
        max-height: 50vh;
    }
}

@media (min-width:1600px) {
    .header_searchPop-results {
        padding: 0 calc(3.5vw - 15px);
    }
}

.header_searchPop-results > .row {
    margin: 0;
}

@media (min-width:768px) {
    .header_searchPop-results > .row {
        padding-bottom: 150px;
    }
}

.header_searchPop--item {
    margin-top: 3vh;
    padding: 0;
}

@media (min-width:768px) {
    .header_searchPop--item {
        padding: 0 15px;
    }
}

@media (min-width:992px) {
    .header_searchPop--item:nth-child(odd) {
        padding-right: 5vw;
    }
}

@media (min-width:992px) {
    .header_searchPop--item:nth-child(2n) {
        padding-left: 5vw;
    }
}

.header_searchPop--item .inner {
    height: 100%;
    padding-bottom: 3.5vh;
    border-bottom: 2px solid #1171A8;
    border-bottom: 2px solid var(--primaryColor);
}

.header_searchPop--item h3 a {
    color: #1171A8;
    color: var(--primaryColor);
}

.header_searchPop--item .href {
    font-size: 1.6rem;
    line-height: 1;
}

.header_searchPop--item .href a {
    color: #1171A8;
    color: var(--fontColor);
}

.header_searchPop-close {
    position: absolute;
    top: 4vh;
    right: 4vw;
    color: #1171A8;
    color: var(--brandColor);
    cursor: pointer;
}

@media (min-width:1600px) {
    .header_searchPop-close {
        right: 3.2vw;
    }
}

.header_searchPop-close img,
.header_searchPop-close svg {
    width: 30px;
    height: auto;
}

@media (min-width:1200px) {
    .header_searchPop-close img,
    .header_searchPop-close svg {
        width: 51px;
    }
}

.footer_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
    position: relative;
    flex-flow: row wrap;
    align-items: center;
    color: #c0e9e8;
    background-color: #0c1728;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
}

.footer_main > div {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

.footer_main h2 {
    color: #1171A8;
    color: var(--primaryColor);
}

.footer_main h2 a {
    text-decoration: underline;
}

.footer_main a {
    color: #c0e9e8;
}

.footer_main-top {
    padding-top: 40px;
    padding-bottom: 70px;
}

@media (min-width:768px) {
    .footer_main-top {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}

@media (min-width:992px) {
    .footer_main-top {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}

@media (min-width:1200px) {
    .footer_main-top {
        padding-top: 50px;
        padding-bottom: 100px;
    }
}

@media (min-width:1600px) {
    .footer_main-top {
        padding-top: 70px;
        padding-bottom: 140px;
    }
}

.footer_main-top--item {
    padding-bottom: 30px;
}

@media (min-width:768px) {
    .footer_main-top--item {
        padding-bottom: 0;
    }
}

.footer_main-top--item:last-of-type {
    padding-bottom: 0;
}

.footer_main-top--item a {
    text-decoration: underline;
}

.footer_main-btm {
    border-top: 1px solid #c0e9e8;
}

.footer_main-btm--item {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #c0e9e8;
}

@media (min-width:768px) {
    .footer_main-btm--item {
        border-right: 1px solid #c0e9e8;
        border-bottom: none;
    }
}

@media (min-width:992px) {
    .footer_main-btm--item {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (min-width:1200px) {
    .footer_main-btm--item {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (min-width:1600px) {
    .footer_main-btm--item {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.footer_main-btm--item:last-of-type {
    border-right: none;
    border-bottom: none;
}

body .gform_wrapper {
    margin: 0;
}

body .gform_wrapper h2 {
    margin-top: 7rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    color: #1171A8;
    color: var(--primaryColor);
}

body .gform_wrapper .top_label div.ginput_container {
    margin-top: 0!important;
}

body .gform_wrapper .gform_fields {
    grid-row-gap: 0!important;
    grid-column-gap: 0!important;
    border-bottom: 1px solid #1171A8;
}

body .gform_wrapper .gform_fields .gfield {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: 0;
    padding: 15px 0;
    border-top: 1px solid #1171A8;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield {
        padding: 20px 0;
    }
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield {
        padding: 25px 0;
    }
}

body .gform_wrapper .gform_fields .gfield > label {
    flex: 110px;
    margin-bottom: 0;
    padding-left: 10px;
    max-width: 110px;
    font-weight: 400;
    -webkit-box-flex: 110px;
    -ms-flex: 110px;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield > label {
        padding-left: 20px;
    }
}

body .gform_wrapper .gform_fields .gfield > .ginput_container {
    flex: 1;
    line-height: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}

@media (min-width:641px) {
    body .gform_wrapper .gform_fields .gfield.gfield--width-half {
        border-right: 1px solid #1171A8;
    }
}

@media (min-width:641px) {
    body .gform_wrapper .gform_fields .gfield.gfield--width-half.field-right {
        border-right: none;
    }
}

body .gform_wrapper .gform_fields .gfield.spacer {
    margin-bottom: 0;
}

@media (max-width:767px) {
    body .gform_wrapper .gform_fields .gfield.spacer {
        display: none;
    }
}

body .gform_wrapper .gform_fields .gfield.gfield_html {
    margin-bottom: 0;
}

body .gform_wrapper .gform_fields .gfield.textarea {
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

body .gform_wrapper .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    -webkit-appearance: none;
    width: 100%;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 0;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.6rem;
    font-weight: 400;
    font-weight: var(--fontWeight);
    line-height: 2rem;
    outline: none;
    color: #000;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
        font-size: 2.1rem;
        line-height: 3.6rem;
    }
}

body .gform_wrapper .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder,
body .gform_wrapper .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder {
    color: #000;
}

body .gform_wrapper .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder,
body .gform_wrapper .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder,
body .gform_wrapper .gform_fields .gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder {
    color: #000;
}

body .gform_wrapper .gform_fields .gfield textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 60px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 0;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.6rem;
    font-weight: 400;
    font-weight: var(--fontWeight);
    line-height: 2rem;
    outline: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    resize: vertical;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield textarea {
        height: 36px;
        font-size: 2.1rem;
        line-height: 3.6rem;
    }
}

body .gform_wrapper .gform_fields .gfield textarea.large {
    height: 60px;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield textarea.large {
        height: 36px;
    }
}

body .gform_wrapper .gform_fields .gfield.gform_hidden {
    display: none!important;
}

body .gform_wrapper .gform_fields .gfield legend,
body .gform_wrapper .gform_fields .gfield legend.gfield_label {
    margin-bottom: 18px;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 2.6rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield legend,
    body .gform_wrapper .gform_fields .gfield legend.gfield_label {
        font-size: 3.8rem;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield legend,
    body .gform_wrapper .gform_fields .gfield legend.gfield_label {
        font-size: 4.8rem;
    }
}

body .gform_wrapper .gform_fields .gfield .gfield_radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield .gfield_radio {
        justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
    }
}

body .gform_wrapper .gform_fields .gfield .gfield_radio .gchoice {
    flex: 0 1 auto;
    margin: 0 9px 15px 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield .gfield_radio .gchoice {
        margin: 0 9px 15px;
    }
}

body .gform_wrapper .gform_fields .gfield .gfield_radio .gchoice input.gfield-choice-input {
    display: none;
}

body .gform_wrapper .gform_fields .gfield .gfield_radio .gchoice label {
    display: block;
    padding: 5px 15px;
    max-width: none;
    border: 4px solid #fdf3ed;
    border-radius: 50px;
    text-align: center;
    text-align: left;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 2.6rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield .gfield_radio .gchoice label {
        padding: 9px 24px;
        border: 6px solid #fdf3ed;
        text-align: center;
        font-size: 3.8rem;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield .gfield_radio .gchoice label {
        font-size: 4.8rem;
    }
}

body .gform_wrapper .gform_fields .gfield .gfield_radio .gchoice input:checked + label {
    background-color: #fdf3ed;
}

body .gform_wrapper .gform_fields .gfield .gfield_select,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select {
    -webkit-appearance: none;
    width: 100%;
    height: auto;
    padding: 0 0 0 25px;
    min-height: 47px;
    border: none;
    border-radius: 40px;
    font-size: inherit;
    font-size: 1.6rem;
    font-weight: 400;
    font-weight: var(--fontWeight);
    line-height: 4.7rem;
    outline: none;
    color: #1171A8;
    color: var(--fontColor);
    background: transparent;
    background: #fdf3ed;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select,
    body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select {
        min-height: 61px;
        font-weight: 600;
        line-height: 5.9rem;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select,
    body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select {
        padding-top: 19px;
        min-height: 77px;
        line-height: 7.5rem;
    }
}

@media (max-width:767px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select {
        background-image: url(../assets/images/icons/arrow-down-black-icon.svg);
        background-position: 93% 20px;
        background-repeat: no-repeat;
        background-size: 15px auto;
    }
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container {
    width: 100%!important;
    font-size: inherit;
    outline: none;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-single {
    height: auto;
    padding: 12px 0 0 25px;
    min-height: 61px;
    border: none;
    border-radius: 40px;
    font-size: inherit;
    font-weight: 400;
    font-weight: var(--fontWeight);
    line-height: 5.9rem;
    color: #1171A8;
    color: var(--fontColor);
    background: transparent;
    background: #fdf3ed;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single,
    body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-single {
        padding-top: 18px;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single,
    body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-single {
        padding-top: 23px;
        min-height: 77px;
        line-height: 7.5rem;
    }
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single span,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-single span {
    font-size: 2.4rem;
    line-height: 3.4rem;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single > div,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm>select+div.chosen-container .chosen-single>div {
    top: 0;
    width: 40px;
    border-left: none;
    text-align: center;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single > div b,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm>select+div.chosen-container .chosen-single>div b {
    top: 0!important;
    background: none!important;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single > div b:after,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm>select+div.chosen-container .chosen-single>div b:after {
    content: "\f107";
    display: block;
    position: relative;
    top: 9px;
    left: 0;
    width: 15px;
    height: 15px;
    font-family: FLibreBaskerville;
    font-family: var(--fontIcons);
    font-size: 24px;
    font-weight: 300;
    font-weight: var(--fontWeightLight);
    color: #616569;
    background-image: none;
}

@media (min-width:576px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single > div b:after,
    body .gform_wrapper .gform_fields .gfield .gfield_time_ampm>select+div.chosen-container .chosen-single>div b:after {
        top: 17px;
    }
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single > div b:after,
    body .gform_wrapper .gform_fields .gfield .gfield_time_ampm>select+div.chosen-container .chosen-single>div b:after {
        top: 9px;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-single > div b:after,
    body .gform_wrapper .gform_fields .gfield .gfield_time_ampm>select+div.chosen-container .chosen-single>div b:after {
        top: 2px;
    }
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop {
    z-index: 100;
    margin-top: 0;
    padding: 16px 0;
    border: none;
    border-radius: 40px;
    overflow: hidden;
    list-style: none;
    color: #1171A8;
    color: var(--fontColor);
    background-color: #fff;
    background-color: var(--white);
    -webkit-box-shadow: none;
    box-shadow: none;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop .chosen-search,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop .chosen-search {
    display: none;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop ul.chosen-results,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop ul.chosen-results {
    margin: 0;
    padding: 0;
    max-height: 215px;
    border-radius: 5px;
    overflow-y: scroll;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop ul.chosen-results li,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop ul.chosen-results li {
    padding: 16px 25px;
    border-bottom: 1px solid hsla(0,0%,100%,.7);
    font-size: 2.4rem;
    font-weight: 300;
    font-weight: var(--fontWeightLight);
    line-height: 3.4rem;
    color: #1171A8;
    color: var(--fontColor);
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop ul.chosen-results li.result-selected,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop ul.chosen-results li.result-selected {
    border-bottom: 1px solid #fff;
    color: #1171A8;
    color: var(--fontColor);
    background: transparent;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop ul.chosen-results li.highlighted,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop ul.chosen-results li.highlighted {
    color: #1171A8;
    color: var(--fontColor);
    background: #f1f1f1;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop ul.chosen-results li.gf_placeholder,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop ul.chosen-results li.gf_placeholder {
    display: none;
}

body .gform_wrapper .gform_fields .gfield .gfield_select + div.chosen-container .chosen-drop ul.chosen-results li:last-of-type,
body .gform_wrapper .gform_fields .gfield .gfield_time_ampm > select+div.chosen-container .chosen-drop ul.chosen-results li:last-of-type {
    border-bottom: none;
}

body .gform_wrapper .gform_fields .gfield .chosen-container-active .chosen-single {
    border: 1px solid silver;
}

body .gform_wrapper .gform_fields .gfield .chosen-container-multi {
    -webkit-appearance: none;
    width: 100%;
    padding-left: 0;
    min-height: 61px;
    border: 1px solid transparent;
    border-radius: 40px;
    font-size: 2.4rem;
    font-weight: 400;
    font-weight: var(--fontWeight);
    line-height: 3.4rem;
    outline: none;
    color: #000;
    background-color: #fdf3ed;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield .chosen-container-multi {
        min-height: 77px;
    }
}

body .gform_wrapper .gform_fields .gfield .chosen-container-multi.chosen-container-active {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

body .gform_wrapper .gform_fields .gfield .chosen-container-multi.chosen-container-active ul.chosen-choices {
    -webkit-box-shadow: none;
    box-shadow: none;
}

body .gform_wrapper .gform_fields .gfield .chosen-container-multi ul.chosen-choices {
    border: none;
    background-color: transparent;
}

body .gform_wrapper .gform_fields .gfield .chosen-container-multi ul.chosen-choices .search-choice {
    margin: 3px 0 3px 12px;
    padding: 2px 20px 0 5px;
    border: 1px solid #fff;
    border-radius: 24px;
    font-size: 1.8rem;
    line-height: inherit;
    color: #1171A8;
    color: var(--primaryColor);
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

body .gform_wrapper .gform_fields .gfield .chosen-container-multi .chosen-drop .chosen-results .result-selected {
    display: none;
}

body .gform_wrapper .gform_fields .gfield.field-select {
    display: block;
    text-align: left;
}

@media (max-width:767px) {
    body .gform_wrapper .gform_fields .gfield.field-select {
        margin-bottom: 25px;
    }
}

body .gform_wrapper .gform_fields .gfield.field-select label {
    position: relative;
    top: auto;
    left: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.4rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-select label {
        font-size: 1.6rem;
    }
}

body .gform_wrapper .gform_fields .gfield.field-select .ginput_container {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

@media (max-width:767px) {
    body .gform_wrapper .gform_fields .gfield.field-showlabel {
        margin-bottom: 25px;
    }
}

body .gform_wrapper .gform_fields .gfield.field-showlabel label {
    position: relative;
    top: auto;
    left: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.4rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-showlabel label {
        font-size: 1.6rem;
    }
}

body .gform_wrapper .gform_fields .gfield.field-showlabel input {
    padding-top: 0!important;
}

@media (max-width:767px) {
    body .gform_wrapper .gform_fields .gfield.field-datesplit {
        margin-bottom: 25px;
    }
}

body .gform_wrapper .gform_fields .gfield.field-datesplit legend {
    position: relative;
    top: auto;
    left: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.4rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-datesplit legend {
        font-size: 1.6rem;
    }
}

@media (max-width:767px) {
    body .gform_wrapper .gform_fields .gfield.field-date {
        margin-bottom: 25px;
    }
}

body .gform_wrapper .gform_fields .gfield.field-date label {
    position: relative;
    top: auto;
    left: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.4rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-date label {
        font-size: 1.6rem;
    }
}

body .gform_wrapper .gform_fields .gfield.field-date input {
    padding-top: 0!important;
}

body .gform_wrapper .gform_fields .gfield.field-multi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
}

@media (max-width:767px) {
    body .gform_wrapper .gform_fields .gfield.field-multi {
        margin-bottom: 25px;
    }
}

body .gform_wrapper .gform_fields .gfield.field-multi label {
    position: relative;
    top: auto;
    left: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 1.4rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-multi label {
        font-size: 1.6rem;
    }
}

body .gform_wrapper .gform_fields .gfield.field-multi .ginput_container {
    flex: 0 0 100%;
    align-self: end;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -ms-flex-item-align: end;
}

body .gform_wrapper .gform_fields .gfield.field-multi select {
    padding-top: 18px;
}

@supports (-webkit-text-size-adjust:none) and (not(-ms-ime-align:auto)) and (not(-moz-appearance:none)) {
    body .gform_wrapper .gform_fields .gfield.field-multi select {
        padding-top: 0;
    }
}

body .gform_wrapper .gform_fields .gfield.field-multi .chosen-choices {
    padding: 0;
}

body .gform_wrapper .gform_fields .gfield.field-multi .chosen-choices .search-field:after {
    content: "\f107";
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 15px;
    height: 15px;
    font-family: LibreBaskerville;
    font-family: var(--fontIcons);
    font-size: 24px;
    font-weight: 300;
    font-weight: var(--fontWeightLight);
    color: #616569;
    background-image: none;
}

body .gform_wrapper .gform_fields .gfield.field-upload {
    text-align: center;
}

body .gform_wrapper .gform_fields .gfield.field-upload label {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    margin-bottom: 18px;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 2.6rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-upload label {
        font-size: 3.8rem;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield.field-upload label {
        font-size: 4.8rem;
    }
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container > input[type=file] {
    display: inline-block;
    text-align: center;
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container > input[type=file]::-webkit-file-upload-button {
    visibility: hidden;
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container > input[type=file]:before {
    content: "Choose file";
    display: inline-block;
    padding: 9px 10px;
    border: 6px solid #fdf3ed;
    border-radius: 50px;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 2.6rem;
    line-height: 1.1;
    white-space: nowrap;
    outline: none;
    color: #1171A8;
    color: var(--primaryColor);
    background: transparent;
    cursor: pointer;
    -webkit-user-select: none;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container > input[type=file]:before {
        font-size: 3.8rem;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container > input[type=file]:before {
        font-size: 4.8rem;
    }
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container > input[type=file]:hover:before {
    border-color: #fff;
    background-color: #fff;
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container > input[type=file]:active:before {
    background-color: #fdf3ed;
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container .gform_fileupload_multifile .gform_drop_area {
    padding: 20px;
    border-color: #fdf3ed;
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container .gform_fileupload_multifile button.gform_button_select_files {
    padding: 9px 24px;
    border: 6px solid #fdf3ed;
    border-radius: 50px;
    text-transform: lowercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    font-size: 2.6rem;
    line-height: 1.1;
    color: #1171A8;
    color: var(--primaryColor);
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container .gform_fileupload_multifile button.gform_button_select_files {
        font-size: 3.8rem;
    }
}

@media (min-width:1200px) {
    body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container .gform_fileupload_multifile button.gform_button_select_files {
        font-size: 4.8rem;
    }
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container .gform_fileupload_multifile + .gform_fileupload_rules {
    display: none;
}

body .gform_wrapper .gform_fields .gfield.field-upload .ginput_container .validation_message {
    background-color: transparent;
}

body .gform_wrapper .gform_fields .gsection {
    padding-top: 7.5vh;
    border: none;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gsection {
        padding-top: 0;
    }
}

body .gform_wrapper .gform_fields .gsection .gsection_title {
    display: none;
}

body .gform_wrapper .gform_fields .ginput_complex {
    width: 100%;
}

body .gform_wrapper .gform_fields .ginput_complex .ginput_container_date {
    width: 100%;
    max-width: 32%;
    min-width: 80px;
}

@media (min-width:576px) {
    body .gform_wrapper .gform_fields .ginput_complex .ginput_container_date {
        max-width: 30%;
        min-width: 110px;
    }
}

body .gform_wrapper .gform_fields .ginput_complex .ginput_container_date input {
    padding: 0 15px!important;
    text-align: center;
}

body .gform_wrapper .gform_fields .ginput_complex .ginput_container_date.gfield_date_year {
    min-width: 120px;
}

@media (min-width:576px) {
    body .gform_wrapper .gform_fields .ginput_complex .ginput_container_date.gfield_date_year {
        max-width: 35%;
        min-width: 130px;
    }
}

body .gform_wrapper .gform_fields .ginput_complex .ginput_container_time {
    max-width: 94px;
    min-width: 94px;
}

@media (min-width:576px) {
    body .gform_wrapper .gform_fields .ginput_complex .ginput_container_time {
        max-width: 80px;
        min-width: 80px;
    }
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .ginput_complex .ginput_container_time {
        max-width: 100px;
        min-width: 100px;
    }
}

body .gform_wrapper .gform_fields .ginput_complex .ginput_container_time input {
    padding: 0 15px!important;
    text-align: center;
}

body .gform_wrapper .gform_fields .ginput_complex .ginput_container_time .hour_minute_colon {
    line-height: 6rem;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .ginput_complex .ginput_container_time .hour_minute_colon {
        line-height: 8rem;
    }
}

body .gform_wrapper .gform_fields .gfield_html,
body .gform_wrapper .gform_fields .gfield_html > div,
body .gform_wrapper .gform_fields .gfield_html > p {
    padding: 0 0 2.5vh;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_fields .gfield_html > div,
    body .gform_wrapper .gform_fields .gfield_html > p {
        padding: 0 10vw 2.5vh;
    }
}

body .gform_wrapper .gform_fields .gfield_html hr {
    padding-right: 0;
    padding-left: 0;
}

body .gform_wrapper .gform_fields .gfield_html .spacer {
    height: 100px;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield_html .spacer {
        height: 200px;
    }
}

@media (min-width:1600px) {
    body .gform_wrapper .gform_fields .gfield_html .spacer {
        height: 300px;
    }
}

body .gform_wrapper .gform_fields .gfield_html .spacer-half {
    height: 50px;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield_html .spacer-half {
        height: 100px;
    }
}

@media (min-width:1600px) {
    body .gform_wrapper .gform_fields .gfield_html .spacer-half {
        height: 150px;
    }
}

body .gform_wrapper .gform_fields .gfield_html .spacer-quarter {
    height: 25px;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_fields .gfield_html .spacer-quarter {
        height: 50px;
    }
}

@media (min-width:1600px) {
    body .gform_wrapper .gform_fields .gfield_html .spacer-quarter {
        height: 75px;
    }
}

body .gform_wrapper .gform_fields hr {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

@media (min-width:1600px) {
    body .gform_wrapper .gform_fields hr {
        margin-bottom: 60px;
        padding-bottom: 30px;
    }
}

body .gform_wrapper.gform_validation_error .gform_validation_errors {
    display: none;
}

body .gform_wrapper.gform_validation_error .gfield_required {
    color: rgba(58,58,57,.45);
}

body .gform_wrapper.gform_validation_error .gform_fields .gfield.gfield_error {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: inherit!important;
    max-width: 100%!important;
    border-bottom: none;
    background-color: transparent;
}

body .gform_wrapper.gform_validation_error .gform_fields .gfield.gfield_error .validation_message {
    display: none;
    padding: 0;
    font-weight: 600;
    font-weight: var(--fontWeightSemi);
    color: #c02b0a;
}

body .gform_wrapper.gform_validation_error .gform_fields .gfield.gfield_error .gfield_label,
body .gform_wrapper.gform_validation_error .gform_fields .gfield.gfield_error .ginput_container {
    margin-top: 0;
    color: #c02b0a;
}

body .gform_wrapper.gform_validation_error .gform_fields .gfield.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) ,
body .gform_wrapper.gform_validation_error .gform_fields .gfield.gfield_error textarea {
    border: none;
}

body .gform_wrapper.gform_validation_error .gform_body .gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: 100%!important;
}

body .gform_wrapper .gform_footer {
    position: relative;
    width: 100%;
    margin: 25px 0 0!important;
    padding: 0!important;
    border-top: 1px solid #1171A8;
    border-bottom: 1px solid #1171A8;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_footer {
        text-align: right;
    }
}

@media (min-width:992px) {
    body .gform_wrapper .gform_footer {
        width: 50%;
        margin-left: auto!important;
    }
}

body .gform_wrapper .gform_footer img#gform_ajax_spinner_5 {
    display: block;
    padding-top: 20px;
    max-width: 130px;
}

body .gform_wrapper .gform_footer input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    margin-bottom: 0;
    padding: 7px 15px;
    border: none;
    text-align: left;
    text-transform: uppercase;
    font-family: LibreBaskerville;
    font-family: var(--fontHeadings);
    color: #1171A8;
    color: var(--fontColor);
    background: transparent;
    cursor: pointer;
}

@media (min-width:992px) {
    body .gform_wrapper .gform_footer input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        padding: 20px 15px;
    }
}

body .gform_wrapper .gform_footer:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 15px;
    width: 25px;
    height: 25px;
    background-image: url(../assets/images/icons/Icon_Arrow.svg);
    background-size: 100% auto;
}

@media (min-width:768px) {
    body .gform_wrapper .gform_footer:after {
        width: 33px;
        height: 33px;
    }
}

@media (min-width:992px) {
    body .gform_wrapper .gform_footer:after {
        width: 41px;
        height: 41px;
    }
}

.gform_confirmation_message {
    padding: 0 5vw;
    color: #1171A8;
    color: var(--primaryColor);
}

@media (min-width:1600px) {
    .gform_confirmation_message {
        padding: 0 15vw;
    }
}

.gform_confirmation_message h1,
.gform_confirmation_message h2,
.gform_confirmation_message h3,
.gform_confirmation_message h4,
.gform_confirmation_message h5,
.gform_confirmation_message h6 {
    color: #1171A8;
    color: var(--primaryColor);
}

.blockHero {
    position: relative;
    padding: 0;
    min-height: 70vh;
}

@media (min-width:768px) {
    .blockHero {
        min-height: 100vh;
    }
}

.blockHero-overlay {
    z-index: 2;
}

.blockHero-holder,
.blockHero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blockHero-holder {
    z-index: 1;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.blockHero-holder img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.block {
    z-index: 1;
    position: relative;
    padding: 0vh 0;
}

@media (min-width:576px) {
    .block {
        padding: 0vh 0;
    }
}

@media (min-width:992px) {
    .block {
        padding: 0vh 0;
    }
}

.block.spacingTop--half {
    padding-top: 5vh;
}

.block.spacingTop--none {
    padding-top: 0;
}

.block.spacingBtm--half {
    padding-bottom: 5vh;
}

.block.spacingBtm--none {
    padding-bottom: 0;
}

    .block.height-100 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        min-height: 100vh;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }

@media (min-width:768px) {
.block.height-100 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    min-height: 100vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
}
}

@media (min-width:768px) {
    .block.height-100 .block-inner,
    .block.height-100 .blockHero-inner {
        width: 100%;
    }
}

.block.height-100 .block-cover {
    align-self: stretch;
    width: 100%;
    -ms-flex-item-align: stretch;
}

.block.height-100 .block-cover > img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.block .innerblock-100 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

@media (min-width:768px) {
    .block .innerblock-100 {
        align-items: flex-end;
        padding: 10vh 0;
        min-height: 100vh;
        -webkit-box-align: end;
        -ms-flex-align: end;
    }
}

@media (min-width:992px) {
    .block .innerblock-100 {
        padding: 15vh 0;
    }
}

.block .innerblock-100 .innerblock-padding {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

.block .innerblock-100 .innerblock-padding.padbtm-0 {
    padding-bottom: 0;
}

@media (min-width:768px) {
    .block .innerblock-100 .innerblock-padding.right-text {
        padding-left: 5vw;
    }
}

@media (min-width:1600px) {
    .block .innerblock-100 .innerblock-padding.right-text {
        padding-right: 15vw;
    }
}

@media (min-width:768px) {
    .block .innerblock-100 .innerblock-padding.left-text {
        padding-right: 5vw;
    }
}

@media (min-width:1600px) {
    .block .innerblock-100 .innerblock-padding.left-text {
        padding-left: 15vw;
    }
}

@media (min-width:768px) {
    .innerblock-padding {
        padding: 0 5vw;
    }
}

.innerblock-spacing {
    padding-top: 50px;
}

@media (min-width:576px) {
    .innerblock-spacing {
        padding-top: 100px;
    }
}

@media (min-width:768px) {
    .innerblock-spacing {
        padding-top: 180px;
    }
}

@media (min-width:992px) {
    .innerblock-spacing {
        padding-top: 210px;
    }
}

@media (min-width:1200px) {
    .innerblock-spacing {
        padding-top: 250px;
    }
}

@media (min-width:1600px) {
    .innerblock-spacing {
        padding-top: 300px;
    }
}

.object-cover,
.object-cover > .inner {
    height: 100%;
}

.object-cover > .inner > * {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-person,
.single-project {
    background-color: #fff;
}

.single-person .header_main,
.single-person footer,
.single-project .header_main,
.single-project footer {
    display: none;
}

.block_singleOur {
    padding: 10px;
}

@media (min-width:576px) {
    .block_singleOur {
        padding: 20px;
    }
}

@media (min-width:768px) {
    .block_singleOur {
        padding: 55px;
    }
}

@media (min-width:992px) {
    .block_singleOur {
        padding: 70px;
    }
}

@media (min-width:1200px) {
    .block_singleOur {
        padding: 90px;
    }
}

@media (min-width:1600px) {
    .block_singleOur {
        padding: 120px;
    }
}

@media (min-width:768px) {
    .block_singleOur-cont {
        align-self: stretch;
        padding-right: 0;
        padding-left: 20px;
        -ms-flex-item-align: stretch;
    }
}

@media (min-width:768px) {
    .block_singleOur-cont .inner {
        height: 100%;
        border-top: 1px solid #1171A8;
        border-bottom: 1px solid #1171A8;
    }
}

.block_singleOur--title {
    padding: 20px 0;
    border-bottom: 1px solid #1171A8;
}

@media (min-width:992px) {
    .block_singleOur--title {
        padding: 30px 0;
    }
}

@media (min-width:1600px) {
    .block_singleOur--title {
        padding: 40px 0;
    }
}

.block_singleOur--title h2 {
    margin: 0;
    text-transform: uppercase;
}

@media (max-width:767px) {
    .block_singleOur--title h2 {
        padding-top: 2rem;
        font-size: 3.2rem;
        line-height: 4.5rem;
    }
}

.block_singleOur--subtitle {
    padding-top: 20px;
}

@media (min-width:992px) {
    .block_singleOur--subtitle {
        padding-top: 30px;
    }
}

@media (min-width:1200px) {
    .block_singleOur--subtitle {
        padding-top: 40px;
    }
}

@media (min-width:1600px) {
    .block_singleOur--subtitle {
        padding-top: 50px;
    }
}

.block_singleOur--subtitle .subtitle {
    font-family: LibreBaskerville;
    font-family: var(--fontSecondary);
    font-style: italic;
}

.block_singleOur--text {
    padding-bottom: 20px;
}

@media (min-width:992px) {
    .block_singleOur--text {
        padding-bottom: 30px;
    }
}

@media (min-width:1200px) {
    .block_singleOur--text {
        padding-bottom: 40px;
    }
}

@media (min-width:1600px) {
    .block_singleOur--text {
        padding-bottom: 50px;
    }
}

@media (min-width:768px) {
    .block_singleOur-image {
        order: -1;
        padding-left: 0;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
    }
}

.block_singleOur-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

@media (max-width:767px) {
    .mfp-iframe-holder {
        padding: 0;
    }
}

.mfp-iframe-holder .mfp-content {
    height: 100vh;
    max-width: 100%;
}

@media (min-width:576px) {
    .mfp-iframe-holder .mfp-content {
        height: 90vh;
        max-width: 95%;
    }
}

@media (min-width:768px) {
    .mfp-iframe-holder .mfp-content {
        max-width: 75%;
    }
}

@media (min-width:992px) {
    .mfp-iframe-holder .mfp-content {
        height: 80vh;
    }
}

@media (min-width:1200px) {
    .mfp-iframe-holder .mfp-content {
        height: auto;
        max-width: 75%;
    }
}

@media (min-width:1600px) {
    .mfp-iframe-scaler {
        padding-top: 63.25%;
    }
}

.mfp-iframe-scaler iframe {
    border: none;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mfp-iframe-holder .mfp-close {
    top: 0;
    width: auto;
    height: auto;
    padding: 10px;
    font-size: 50px;
    color: #000;
}

.blockCard_news h3 a {
    text-decoration: none;
    color: #1171A8;
    color: var(--primaryColor);
    -webkit-transition: none;
    transition: none;
}

.blockCard_news figure {
    display: block;
    margin: 0 0 2rem;
    padding: 0;
}

@media (min-width:992px) {
    .blockCard_news figure {
        margin-bottom: 3rem;
    }
}

@media (min-width:1600px) {
    .blockCard_news figure {
        margin-bottom: 4rem;
    }
}

.blockCard_news figure a {
    display: block;
}

.blockCard_news figure img {
    display: block;
    width: 100%;
    max-width: none;
}

.blockCard_news-content .date {
    margin-bottom: 10px;
    color: #fff;
}

@media (min-width:768px) {
    .blockCard_news-content .date {
        margin-bottom: 15px;
    }
}

.blockCard_news-content .date .date-wrap {
    margin-right: 6px;
    padding-right: 10px;
}

.blockCard_news-content .date .tag-wrap .tag i {
    margin: 0 5px;
}

.blockCard_news-content--btn {
    margin-top: 20px;
}

.blockCard_news.related .blockCard_news-content .date {
    color: #1171A8;
    color: var(--primaryColor);
}

.block_404 {
    padding: 0;
}

.block_404-inner {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
}

/*# sourceMappingURL=style.min.css.map */
