/* Grid System */

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

.container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
}

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

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

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

.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 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 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%;
}

.start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
}

.center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
}

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

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

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

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

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

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

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

@media only screen and (min-width: 48em) {
    .container {
        width: 49rem;
    }

    .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 {
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 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%;
    }

    .start-sm {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

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

    .end-sm {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

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

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

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

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

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

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

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

@media only screen and (min-width: 64em) {
    .container {
        width: 65rem;
    }

    .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 {
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 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%;
    }

    .start-md {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

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

    .end-md {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

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

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

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

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

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

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

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

@media only screen and (min-width: 75em) {
    .container {
        width: 76rem;
    }

    .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 {
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 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%;
    }

    .start-lg {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

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

    .end-lg {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

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

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

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

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

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

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

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


/* Wrapper */
.wrapper
{
    margin: 0 auto;
    width: 90%;
    max-width: 1270px;
    display: block;
    position: relative;
}

a, a:focus, a:hover
{
    text-decoration: none;
    outline: none;
    color: #0d7077;
}

.dark-bg a, 
.dark-bg a:focus, 
.dark-bg a:hover
{
    color: #B4F4DC;
}

.dark-bg a img
{
    filter: brightness(4);
}

.link
{
    display: inline-block;
    color: #0d7077;
    font-size: 18px;
    text-decoration: none;
    outline: none;
}

.link-dark
{
    display: inline-block;
    color: #35404F;
    font-size: 18px;
    text-decoration: underline;
    outline: none;
}

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

a.hover-underline
{
    position: relative;
}

a.hover-underline::after
{
    position: absolute;
    content: "";
    top: 18px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

a.hover-underline:hover::after
{
    width: 100%;
}


/* Margins */

.m-auto { margin: 0 auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }
.mt-6 { margin-top: 60px; }
.mt-7 { margin-top: 70px; }
.mt-8 { margin-top: 80px; }
.mt-9 { margin-top: 90px; }
.mt-10 { margin-top: 100px; }
.mt-15 { margin-top: 150px; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }
.mb-6 { margin-bottom: 60px; }
.mb-7 { margin-bottom: 70px; }
.mb-8 { margin-bottom: 80px; }
.mb-9 { margin-bottom: 90px; }
.mb-10 { margin-bottom: 100px; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 10px; }
.ml-2 { margin-left: 20px; }
.ml-3 { margin-left: 30px; }
.ml-4 { margin-left: 40px; }
.ml-5 { margin-left: 50px; }
.ml-6 { margin-left: 60px; }
.ml-7 { margin-left: 70px; }
.ml-8 { margin-left: 80px; }
.ml-9 { margin-left: 90px; }
.ml-10 { margin-left: 100px; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 10px; }
.mr-2 { margin-right: 20px; }
.mr-3 { margin-right: 30px; }
.mr-4 { margin-right: 40px; }
.mr-5 { margin-right: 50px; }
.mr-6 { margin-right: 60px; }
.mr-7 { margin-right: 70px; }
.mr-8 { margin-right: 80px; }
.mr-9 { margin-right: 90px; }
.mr-10 { margin-right: 100px; }


/* Padding */

.px-0 { padding-left: 0px; padding-right: 0px; }
.px-1 { padding-left: 10px; padding-right: 10px; }
.px-2 { padding-left: 20px; padding-right: 20px; }
.px-3 { padding-left: 30px; padding-right: 30px; }
.px-4 { padding-left: 40px; padding-right: 40px; }
.px-5 { padding-left: 50px; padding-right: 50px; }
.px-8 { padding-left: 80px; padding-right: 80px; }
.px-10 { padding-left: 100px; padding-right: 100px; }
.px-15 { padding-left: 150px; padding-right: 150px; }

.py-0 { padding-top: 0px; padding-bottom: 0px; }
.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }
.py-6 { padding-top: 60px; padding-bottom: 60px; }
.py-8 { padding-top: 80px; padding-bottom: 80px; }
.py-10 { padding-top: 100px; padding-bottom: 100px; }
.py-15 { padding-top: 150px; padding-bottom: 150px; }

.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0px !important; }
.pt-1 { padding-top: 10px !important; }
.pt-2 { padding-top: 20px !important; }
.pt-3 { padding-top: 30px !important; }
.pt-4 { padding-top: 40px !important; }
.pt-5 { padding-top: 50px !important; }
.pt-10 { padding-top: 100px !important; }

.pr-0 { padding-right: 0px !important; }
.pr-1 { padding-right: 10px !important; }
.pr-2 { padding-right: 20px !important; }
.pr-3 { padding-right: 30px !important; }
.pr-4 { padding-right: 40px !important; }
.pr-5 { padding-right: 50px !important; }

.pl-0 { padding-left: 0px !important; }
.pl-1 { padding-left: 10px !important; }
.pl-15 { padding-left: 15px !important; }
.pl-2 { padding-left: 20px !important; }
.pl-3 { padding-left: 30px !important; }
.pl-4 { padding-left: 40px !important; }
.pl-5 { padding-left: 50px !important; }

.pb-0 { padding-bottom: 0px !important; }
.pb-1 { padding-bottom: 10px !important; }
.pb-2 { padding-bottom: 20px !important; }
.pb-3 { padding-bottom: 30px !important; }
.pb-4 { padding-bottom: 40px !important; }
.pb-5 { padding-bottom: 50px !important; }
.pb-8 { padding-bottom: 80px !important; }
.pb-10 { padding-bottom: 100px !important; }

@media screen and ( max-width: 767px ) {
    .sm-m-auto { margin: 0 auto; }
    .sm-ml-auto { margin-left: auto; }
    .sm-mr-auto { margin-right: auto; }

    .sm-ml-0 { margin-left: 0; }
    .sm-mr-0 { margin-right: 0; }

    .sm-mlr-0 { margin-left: 0 !important; margin-right: 0 !important; }

    .sm-mt-0 { margin-top: 0px !important; }
    .sm-mt-1 { margin-top: 10px; }
    .sm-mt-2 { margin-top: 20px; }
    .sm-mt-3 { margin-top: 30px; }
    .sm-mt-4 { margin-top: 40px; }
    .sm-mt-5 { margin-top: 50px; }
    .sm-mt-6 { margin-top: 60px; }
    .sm-mt-7 { margin-top: 70px; }

    .sm-mr-0 { margin-right: 0px; }
    .sm-mr-1 { margin-right: 10px; }
    .sm-mr-2 { margin-right: 20px; }
    .sm-mr-3 { margin-right: 30px; }
    .sm-mr-4 { margin-right: 40px; }
    .sm-mr-5 { margin-right: 50px; }
    .sm-mr-6 { margin-right: 60px; }
    .sm-mr-7 { margin-right: 70px; }

    .sm-ml-0 { margin-left: 0px; }
    .sm-ml-1 { margin-left: 10px; }
    .sm-ml-2 { margin-left: 20px; }
    .sm-ml-3 { margin-left: 30px; }
    .sm-ml-4 { margin-left: 40px; }
    .sm-ml-5 { margin-left: 50px; }
    .sm-ml-6 { margin-left: 60px; }
    .sm-ml-7 { margin-left: 70px; }

    .sm-mb-0 { margin-bottom: 0px; }
    .sm-mb-1 { margin-bottom: 10px; }
    .sm-mb-2 { margin-bottom: 20px; }
    .sm-mb-3 { margin-bottom: 30px; }
    .sm-mb-4 { margin-bottom: 40px; }
    .sm-mb-5 { margin-bottom: 50px; }

    .sm-px-0 { padding: 0 0px; }
    .sm-px-1 { padding: 0 10px; }
    .sm-px-2 { padding: 0 20px; }
    .sm-px-3 { padding: 0 30px; }
    .sm-px-4 { padding: 0 40px; }
    .sm-px-5 { padding: 0 50px; }

    .sm-py-0 { padding: 0px 0; }
    .sm-py-1 { padding: 10px 0; }
    .sm-py-2 { padding: 20px 0; }
    .sm-py-3 { padding: 30px 0; }
    .sm-py-4 { padding: 40px 0; }
    .sm-py-5 { padding: 50px 0; }

    .sm-p-0 { padding: 0px; }
    .sm-p-1 { padding: 10px; }
    .sm-p-2 { padding: 20px; }
    .sm-p-3 { padding: 30px; }
    .sm-p-4 { padding: 40px; }
    .sm-p-5 { padding: 50px; }


    .sm-p-0 { padding: 0 !important; }
    .sm-pt-0 { padding-top: 0px !important; }
    .sm-pt-1 { padding-top: 10px !important; }
    .sm-pt-2 { padding-top: 20px !important; }
    .sm-pt-3 { padding-top: 30px !important; }
    .sm-pt-4 { padding-top: 40px !important; }
    .sm-pt-5 { padding-top: 50px !important; }

    .sm-pr-0 { padding-right: 0px !important; }
    .sm-pr-1 { padding-right: 10px !important; }
    .sm-pr-2 { padding-right: 20px !important; }
    
    .sm-pl-0 { padding-left: 0px !important; }
    .sm-pl-1 { padding-left: 10px !important; }
    .sm-pl-2 { padding-left: 20px !important; }
}


/* Font Style */

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-white { color: #fff !important;  }
.text-dark { color: #35404F !important;  }
.text-red { color: rgb(207, 55, 72); }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.opacity-75 { opacity: .75; }
.opacity-4 { opacity: .4; }

.white-bg { background-color: #fff; }
.dark-bg { background-color: #051F48; }
.blue-bg { background-color: #ECF9F7; }
.green-bg { background-color: var(--primary); }
.gray-bg { background-color: #F4F6F8; }

.half-bg-blue { position: relative; }
.half-bg-blue::before
{
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ECF9F7;
    z-index: -1;
}

p {
    font-size: 18px;
    color: #35404F;
    line-height: 28px;
    font-family: 'Mulish', sans-serif;
}

.mobile
{
    display: none;
}

@media screen and ( max-width: 767px ) {
    .sm-text-left{ text-align: left !important; }
    .sm-text-center { text-align: center !important; }
    .sm-text-right { text-align: right !important; }
    .sm-j-center { justify-content: center !important; }
}


/* Buttons */

.btn 
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    font-size: 15px;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn.outline-primary
{
    background: var(--primary);
    border: none;
    transition: 1s ease-in-out;
    position: relative;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
    transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}

    .btn.outline-primary svg
    {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        fill: none;
        stroke: var(--secondary);
        z-index: 10;
        /* transition: 0.9s ease-in-out; */
        stroke-dasharray: 0 480;
        stroke-dashoffset: 0;
        animation-name: stroke-fill;
        animation-duration: 6s;
        animation-delay: 4s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }
    
    .btn.outline-primary svg rect
    {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        stroke: var(--secondary);
        stroke-width: 2px;
    }

  
    /* .btn.outline-primary:hover svg 
    {
        stroke-dasharray: 490 490;
        stroke-dashoffset: -490;
    } */

    @keyframes stroke-fill {
        0% {
            stroke-dasharray: 0 480;
            stroke-dashoffset: 0;
        }
        20% {
            stroke-dasharray: 490 490;
            stroke-dashoffset: -490;
        }
        40% {
            stroke-dasharray: 0 480;
            stroke-dashoffset: 0;
        }
        100% {
            stroke-dasharray: 0 480;
            stroke-dashoffset: 0;
        }
    }
    
.btn.btn-primary,
.btn.btn--green
{
    background-color: var(--primary);
    color: #000C2D;
}


.btn.btn-primary:hover,
.btn.outline-primary:hover,
.btn.btn--green:hover
{
    box-shadow: 0px 10px 20px rgba(5, 31, 72, 0.1);
    background-color: #96E9CA;
}

.btn.btn-primary:focus,
.btn.btn--green:focus
{
    box-shadow: 0px 10px 20px rgba(5, 31, 72, 0.1);
    background-color: #7AD8B5;
}


.btn.btn-secondary
{
    background-color: var(--secondary);
    color: #fff;
}

.btn.btn-secondary:hover
{
    box-shadow: 0px 10px 20px rgba(5, 31, 72, 0.1);
    background-color: #082B61;
}

.btn.btn-secondary:focus
{
    box-shadow: 0px 10px 20px rgba(5, 31, 72, 0.1);
    background-color: #031736;
}

.btn.btn-white-outline
{
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn.btn-white-outline:hover
{
    background-color: #fff;
    color: var(--secondary);
}

.btn.btn-white
{
    background-color: #fff;
    color: #051F48;
}

.btn.btn-white:hover
{
    box-shadow: 0px 10px 20px rgba(5, 31, 72, 0.1);
}

.btn.btn-white:focus
{
    box-shadow: 0px 10px 20px rgba(5, 31, 72, 0.1);
    background-color: #E4E4E4;
}

.btn.btn-dark
{
    background-color: #000C2D;
    color: #fff;
}

/* Headings */

h1
{
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #000C2D;
}

h2.bigger
{
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #000C2D;
}

h1.gradient
{
    background: linear-gradient(78.32deg, #29688C 0%, #000C2D 32.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2
{
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #000C2D;
}

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


h2.subheading
{
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

h3
{
    font-size: 26px;
    line-height: 40px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #000C2D;
}

h4
{
    font-size: 24px;
    line-height: 35px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #000C2D;
}

h5
{
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #000C2D;
}

.no-list
{
    list-style: none;
}

.w-full
{
    width: 100% !important;
    max-width: 100% !important;
}

.divider
{
    display: flex;
    max-width: 160px;
    height: 5px;
    background-color: var(--primary);
}

.full-divider
{
    display: flex;
    max-width: 100%;
    height: 5px;
    background-color: var(--primary);
}

section
{
    width: 100%;
    display: block;
    position: relative;
}

.image-wrap
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
    
    .image-wrap > img
    {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .image-wrap.mockup
    {
        background-color: #ECF9F7;
    }


.flex
{
    display: flex;
    align-items: center;
}

.inline
{
    display: inline;
}

.flex-align-top
{
    align-items: flex-start
}

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

.flex-center
{
    justify-content: center;
}

.divider-8
{
    height: 80px;
    display: block;
}

.divider-16
{
    height: 160px;
    display: block;
}

.badge a
{
    display: inline-block;
    padding: 8px 11px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #051F48;
    font-weight: 500;
}

.badge.badge-blue a
{
    background-color: #ECF9F7;
}

/* List Styling */

ul.list.disc
{
    list-style: disc;
    list-style-position: inside;
}

ul.list li
{
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #35404F;
    margin-bottom: 20px;
}

ul.list li:last-child
{
    margin-bottom: 0;
}


ul.list-style-check
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

ul.list-style-check li
{
    display: grid;
    grid-template-columns: 0 1fr;
    grid-gap: 1.75em;
    align-items: start;
    margin-bottom: 20px;
    color: #000C2D;
}

ul.list-style-check li::before
{
    content: url(/wp-content/themes/climedo_v2/assets/images/check.svg);
    font-size: 1.25em;
}

@media only screen and (max-width: 1350px) {
    .divider-16
    {
        height: 100px;
    }

    h1
    {
        font-size: 36px;
        line-height: 50px;
    }

    h2
    {
        font-size: 26px;
        line-height: 36px;
    }

    h2.subheading
    {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 2px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
    }

    h3
    {
        font-size: 24px;
        line-height: 36px;
    }

    h4
    {
        font-size: 20px;
        line-height: 30px;
    }

    h5
    {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .divider-16
    {
        height: 80px;
    }

    .row > .col-xs-12
    {
        margin-top: 40px;
    }

    .row > .col-xs-12:first-child
    {
        margin-top: 0;
    }
    

}

@media only screen and (max-width: 400px) {

    .single-content h1,
    h1
    {
        font-size: 26px;
        line-height: 36px;
    }

    .single-content h2,
    h2
    {
        font-size: 22px;
        line-height: 30px;
    }

    h2.subheading
    {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 2px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
    }

    .single-content h3,
    h3
    {
        font-size: 20px;
        line-height: 30px;
    }

    .single-content h4,
    h4
    {
        font-size: 18px;
        line-height: 28px;
    }

    .single-content h5,
    h5
    {
        font-size: 16px;
        line-height: 26px;
    }
}

.notification
{
    padding: 30px 20px;
    background-color: rgb(180 244 220 / 50%);
}

    .notification p
    {
        color: #061e48;
    }