@charset "UTF-8";

/*************************************************************************************
Filename: _theMagicGrid.scss
Description: We talk about positioning and gutter.
Version: 1.01
Author: Kimmich DigitalMedia 2018
**************************************************************************************/
/*Reset*/
/*************************************************************************************
http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain) "Edited by Thomas 2016"
**************************************************************************************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* Removes the gap beyond an image (keep an eye on it! wrap it in a span if it doesn't center) */
span {
    display: inline-block;
}

img {
    display: block;
    margin: 0 auto;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

/*Mixins and Variables*/
/*************************************************************************************
Mixins (https://web-design-weekly.com/2013/05/12/handy-sass-mixins/) and Variables
**************************************************************************************/
/*** Box-Sizing ***/
/*** Clearfixing ***/
/*** Breakpoints Mobile First /Based on user default browser settings ***/
/************* The special gutter: 
We're using this, when padding and margin are "unequal" declarable, not having all the same values.
For standard gutter, use the variable to be found in the _variables.scss
***************/
/*Variables*/
/*Typography*/
/*************************************************************************************
Filename: typography.scss
Description: All the Typography stuff
**************************************************************************************/
/*** Font-Size Calc ***/
/*** Special Typo we use xsmall, small, medium, large and x-large for indicating ranges ***/
/*

To use:

font-size: $mod_xsmall-lower$mod_xsmall-lower*$mod_xsmall-lower*$mod_xsmall-lower*$mod_xsmall-lower *1rem;
@include fluid-type($min_width, $max_width, $mod_xsmall-lower*$mod_xsmall-lower*$mod_xsmall-lower *$min_font, $mod_xsmall-upper*$mod_xsmall-upper*$mod_xsmall-upper *$min_font);

*/
/*

To use:

font-size: $mod_small-lower$mod_small-lower*$mod_small-lower*$mod_small-lower*$mod_small-lower *1rem;
@include fluid-type($min_width, $max_width, $mod_small-lower*$mod_small-lower*$mod_small-lower *$min_font, $mod_small-upper*$mod_small-upper*$mod_small-upper *$min_font);

*/
/*

To use:

font-size: $mod_medium-lower$mod_medium-lower*$mod_medium-lower*$mod_medium-lower*$mod_medium-lower *1rem;
@include fluid-type($min_width, $max_width, $mod_medium-lower*$mod_medium-lower*$mod_medium-lower *$min_font, $mod_medium-upper*$mod_medium-upper*$mod_medium-upper *$min_font);

*/
/*

To use:

font-size: $mod_large-lower$mod_large-lower*$mod_large-lower*$mod_large-lower*$mod_large-lower *1rem;
@include fluid-type($min_width, $max_width, $mod_large-lower*$mod_large-lower*$mod_large-lower *$min_font, $mod_large-upper*$mod_large-upper*$mod_large-upper *$min_font);

*/
/*

To use:

font-size: $mod_xlarge-lower$mod_xlarge-lower*$mod_xlarge-lower*$mod_xlarge-lower*$mod_xlarge-lower *1rem;
@include fluid-type($min_width, $max_width, $mod_xlarge-lower*$mod_xlarge-lower*$mod_xlarge-lower *$min_font, $mod_xlarge-upper*$mod_xlarge-upper*$mod_xlarge-upper *$min_font);

*/
/*

To use:

font-size: $mod_xxlarge-lower$mod_xxlarge-lower*$mod_xxlarge-lower*$mod_xxlarge-lower*$mod_xxlarge-lower *1rem;
@include fluid-type($min_width, $max_width, $mod_xxlarge-lower*$mod_xxlarge-lower*$mod_xxlarge-lower *$min_font, $mod_xxlarge-upper*$mod_xxlarge-upper*$mod_xxlarge-upper *$min_font);

*/
/*** The Trick with the adaptive Typography ***/
html {
    font-family: sans-serif;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -.025rem;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

html {
    font-size: 13px;
}

@media screen and (min-width: 600px) {
    html {
        font-size: calc(13px + 9 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    html {
        font-size: 22px;
    }
}

body {
    text-rendering: optimizelegibility;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-text-size-adjust: none;
    -moz-font-smoothing: antialiased;
    -ms-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-text-size-adjust: none;
    -ms-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    color: #616161;
    font-style: normal;
    margin: 0;
}

p {
    margin-top: 0px;
    font-size: 1.075 1.3354691406rem;
}

p {
    font-size: 16.149859375px;
}

@media screen and (min-width: 600px) {
    p {
        font-size: calc(16.149859375px + 2.35990625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    p {
        font-size: 18.509765625px;
    }
}

p.small {
    font-size: 75%;
}

.smaller-75 {
    font-size: 75%;
}

.flow-text {
    font-size: 1.125 1.6018066406rem;
}

.flow-text {
    font-size: 18.509765625px;
}

@media screen and (min-width: 600px) {
    .flow-text {
        font-size: calc(18.509765625px + 8.43496875 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .flow-text {
        font-size: 26.944734375px;
    }
}

/*************************************************************************************
Headings
**************************************************************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-column-span: all;
    column-span: all;
    font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: inherit;
}

h1.display-4 {
    font-size: 1.825 11.0930628906rem;
    font-weight: 900;
    font-style: inherit;
    line-height: 1.5;
    letter-spacing: -.04rem;
}

h1.display-4 {
    font-size: 79.019078125px;
}

@media screen and (min-width: 600px) {
    h1.display-4 {
        font-size: calc(79.019078125px + 64.17775 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    h1.display-4 {
        font-size: 143.196828125px;
    }
}

h1 {
    font-size: 1.475 4.7333441406rem;
}

h1 {
    font-size: 41.717609375px;
}

@media screen and (min-width: 600px) {
    h1 {
        font-size: calc(41.717609375px + 34.098390625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    h1 {
        font-size: 75.816px;
    }
}

h2 {
    font-size: 1.275 2.6426566406rem;
}

h2 {
    font-size: 26.944734375px;
}

@media screen and (min-width: 600px) {
    h2 {
        font-size: calc(26.944734375px + 14.772875 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    h2 {
        font-size: 41.717609375px;
    }
}

h3 {
    font-size: 1.125 1.6018066406rem;
}

h3 {
    font-size: 18.509765625px;
}

@media screen and (min-width: 600px) {
    h3 {
        font-size: calc(18.509765625px + 8.43496875 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    h3 {
        font-size: 26.944734375px;
    }
}

h4 {
    font-size: 1.125 1.6018066406rem;
}

h4 {
    font-size: 18.509765625px;
}

@media screen and (min-width: 600px) {
    h4 {
        font-size: calc(18.509765625px + 8.43496875 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    h4 {
        font-size: 26.944734375px;
    }
}

/* Let's try to solve text-align by classes */
.tmg__text-justifyLeft {
    text-align: left;
}

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

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

.tmg__text-text-shad-1 {
    text-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* A default copyright line */
.tmg__copyright {
    font-family: Georgia,Palatino,Times,serif;
    font-size: 1.025 1.1038128906rem;
    text-align: center;
    margin-bottom: 0 !important;
}

.tmg__copyright {
    font-size: 13.999578125px;
}

@media screen and (min-width: 600px) {
    .tmg__copyright {
        font-size: calc(13.999578125px + 2.15028125 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .tmg__copyright {
        font-size: 16.149859375px;
    }
}

/*Elements*/
/*************************************************************************************
Filename: _flexbasics.scss
Verion 1.0
Description: Contains the basic elements for wrapping content and creating the structure.
/**************************************************************************************/
.tmg__area {
    margin-left: auto;
    margin-right: auto;
}

.tmg__area--width {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 37.5em) {
    .tmg__area--width {
        width: 95%;
    }
}

@media (min-width: 56.25em) {
    .tmg__area--width {
        width: 90%;
    }
}

@media (min-width: 75em) {
    .tmg__area--width {
        width: 85%;
    }
}

@media (min-width: 100em) {
    .tmg__area--width {
        width: 75%;
    }
}

.tmg__module--Flex {
    display: flex;
    flex-wrap: wrap;
}

.tmg__module--Flex > * {
    flex: 1 1 auto;

    /* Default for IE10 bug */
}

.tmg--fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.tmg--fixed-spacer {
    padding-top: 50px;
}

@media (min-width: 75em) {
    .tmg--fixed-spacer {
        padding-top: 67px;
    }
}

.tmg--min-height {
    min-height: 25vh;
}

.tmg--Flex {
    display: flex;
    flex-wrap: wrap;
}

.tmg--Flex > * {
    flex: 1 1 auto;

    /* Default for IE10 bug */
}

.tmg--center > * {
    margin-left: auto;
    margin-right: auto;
}

.pg-empty-placeholder {
    min-height: 25vh;
}

/*Make em Flexbox*/
/*************************************************************************************
Filename: _flexbox.scss
Description: The Flexbox snippet. Based on http://francisco.io/flexpoint/;
additional information: https://css-tricks.com/almanac/properties/f/flex/
**************************************************************************************/
.tmg-one > * {
    width: 100%;
}

.tmg-two > * {
    width: 50%;
}

.tmg-three > * {
    width: 33.33333%;
}

.tmg-four > * {
    width: 25%;
}

.tmg-five > * {
    width: 20%;
}

.tmg-six > * {
    width: 16.66666%;
}

.tmg-seven > * {
    width: 14.28571%;
}

.tmg-eight > * {
    width: 12.5%;
}

.tmg-nine > * {
    width: 11.11111%;
}

.tmg-ten > * {
    width: 10%;
}

.tmg-eleven > * {
    width: 9.09091%;
}

.tmg-twelve > * {
    width: 8.33333%;
}

@media all and (min-width: 500px) {
    .tmg-one-500 > * {
        width: 100%;
    }

    .tmg-two-500 > * {
        width: 50%;
    }

    .tmg-three-500 > * {
        width: 33.33333%;
    }

    .tmg-four-500 > * {
        width: 25%;
    }

    .tmg-five-500 > * {
        width: 20%;
    }

    .tmg-six-500 > * {
        width: 16.66666%;
    }

    .tmg-seven-500 > * {
        width: 14.28571%;
    }

    .tmg-eight-500 > * {
        width: 12.5%;
    }

    .tmg-nine-500 > * {
        width: 11.11111%;
    }

    .tmg-ten-500 > * {
        width: 10%;
    }

    .tmg-eleven-500 > * {
        width: 9.09091%;
    }

    .tmg-twelve-500 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 600px) {
    .tmg-one-600 > * {
        width: 100%;
    }

    .tmg-two-600 > * {
        width: 50%;
    }

    .tmg-three-600 > * {
        width: 33.33333%;
    }

    .tmg-four-600 > * {
        width: 25%;
    }

    .tmg-five-600 > * {
        width: 20%;
    }

    .tmg-six-600 > * {
        width: 16.66666%;
    }

    .tmg-seven-600 > * {
        width: 14.28571%;
    }

    .tmg-eight-600 > * {
        width: 12.5%;
    }

    .tmg-nine-600 > * {
        width: 11.11111%;
    }

    .tmg-ten-600 > * {
        width: 10%;
    }

    .tmg-eleven-600 > * {
        width: 9.09091%;
    }

    .tmg-twelve-600 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 700px) {
    .tmg-one-700 > * {
        width: 100%;
    }

    .tmg-two-700 > * {
        width: 50%;
    }

    .tmg-three-700 > * {
        width: 33.33333%;
    }

    .tmg-four-700 > * {
        width: 25%;
    }

    .tmg-five-700 > * {
        width: 20%;
    }

    .tmg-six-700 > * {
        width: 16.66666%;
    }

    .tmg-seven-700 > * {
        width: 14.28571%;
    }

    .tmg-eight-700 > * {
        width: 12.5%;
    }

    .tmg-nine-700 > * {
        width: 11.11111%;
    }

    .tmg-ten-700 > * {
        width: 10%;
    }

    .tmg-eleven-700 > * {
        width: 9.09091%;
    }

    .tmg-twelve-700 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 800px) {
    .tmg-one-800 > * {
        width: 100%;
    }

    .tmg-two-800 > * {
        width: 50%;
    }

    .tmg-three-800 > * {
        width: 33.33333%;
    }

    .tmg-four-800 > * {
        width: 25%;
    }

    .tmg-five-800 > * {
        width: 20%;
    }

    .tmg-six-800 > * {
        width: 16.66666%;
    }

    .tmg-seven-800 > * {
        width: 14.28571%;
    }

    .tmg-eight-800 > * {
        width: 12.5%;
    }

    .tmg-nine-800 > * {
        width: 11.11111%;
    }

    .tmg-ten-800 > * {
        width: 10%;
    }

    .tmg-eleven-800 > * {
        width: 9.09091%;
    }

    .tmg-twelve-800 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 900px) {
    .tmg-one-900 > * {
        width: 100%;
    }

    .tmg-two-900 > * {
        width: 50%;
    }

    .tmg-three-900 > * {
        width: 33.33333%;
    }

    .tmg-four-900 > * {
        width: 25%;
    }

    .tmg-five-900 > * {
        width: 20%;
    }

    .tmg-six-900 > * {
        width: 16.66666%;
    }

    .tmg-seven-900 > * {
        width: 14.28571%;
    }

    .tmg-eight-900 > * {
        width: 12.5%;
    }

    .tmg-nine-900 > * {
        width: 11.11111%;
    }

    .tmg-ten-900 > * {
        width: 10%;
    }

    .tmg-eleven-900 > * {
        width: 9.09091%;
    }

    .tmg-twelve-900 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1000px) {
    .tmg-one-1000 > * {
        width: 100%;
    }

    .tmg-two-1000 > * {
        width: 50%;
    }

    .tmg-three-1000 > * {
        width: 33.33333%;
    }

    .tmg-four-1000 > * {
        width: 25%;
    }

    .tmg-five-1000 > * {
        width: 20%;
    }

    .tmg-six-1000 > * {
        width: 16.66666%;
    }

    .tmg-seven-1000 > * {
        width: 14.28571%;
    }

    .tmg-eight-1000 > * {
        width: 12.5%;
    }

    .tmg-nine-1000 > * {
        width: 11.11111%;
    }

    .tmg-ten-1000 > * {
        width: 10%;
    }

    .tmg-eleven-1000 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1000 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1100px) {
    .tmg-one-1100 > * {
        width: 100%;
    }

    .tmg-two-1100 > * {
        width: 50%;
    }

    .tmg-three-1100 > * {
        width: 33.33333%;
    }

    .tmg-four-1100 > * {
        width: 25%;
    }

    .tmg-five-1100 > * {
        width: 20%;
    }

    .tmg-six-1100 > * {
        width: 16.66666%;
    }

    .tmg-seven-1100 > * {
        width: 14.28571%;
    }

    .tmg-eight-1100 > * {
        width: 12.5%;
    }

    .tmg-nine-1100 > * {
        width: 11.11111%;
    }

    .tmg-ten-1100 > * {
        width: 10%;
    }

    .tmg-eleven-1100 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1100 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1200px) {
    .tmg-one-1200 > * {
        width: 100%;
    }

    .tmg-two-1200 > * {
        width: 50%;
    }

    .tmg-three-1200 > * {
        width: 33.33333%;
    }

    .tmg-four-1200 > * {
        width: 25%;
    }

    .tmg-five-1200 > * {
        width: 20%;
    }

    .tmg-six-1200 > * {
        width: 16.66666%;
    }

    .tmg-seven-1200 > * {
        width: 14.28571%;
    }

    .tmg-eight-1200 > * {
        width: 12.5%;
    }

    .tmg-nine-1200 > * {
        width: 11.11111%;
    }

    .tmg-ten-1200 > * {
        width: 10%;
    }

    .tmg-eleven-1200 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1200 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1300px) {
    .tmg-one-1300 > * {
        width: 100%;
    }

    .tmg-two-1300 > * {
        width: 50%;
    }

    .tmg-three-1300 > * {
        width: 33.33333%;
    }

    .tmg-four-1300 > * {
        width: 25%;
    }

    .tmg-five-1300 > * {
        width: 20%;
    }

    .tmg-six-1300 > * {
        width: 16.66666%;
    }

    .tmg-seven-1300 > * {
        width: 14.28571%;
    }

    .tmg-eight-1300 > * {
        width: 12.5%;
    }

    .tmg-nine-1300 > * {
        width: 11.11111%;
    }

    .tmg-ten-1300 > * {
        width: 10%;
    }

    .tmg-eleven-1300 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1300 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1400px) {
    .tmg-one-1400 > * {
        width: 100%;
    }

    .tmg-two-1400 > * {
        width: 50%;
    }

    .tmg-three-1400 > * {
        width: 33.33333%;
    }

    .tmg-four-1400 > * {
        width: 25%;
    }

    .tmg-five-1400 > * {
        width: 20%;
    }

    .tmg-six-1400 > * {
        width: 16.66666%;
    }

    .tmg-seven-1400 > * {
        width: 14.28571%;
    }

    .tmg-eight-1400 > * {
        width: 12.5%;
    }

    .tmg-nine-1400 > * {
        width: 11.11111%;
    }

    .tmg-ten-1400 > * {
        width: 10%;
    }

    .tmg-eleven-1400 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1400 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1500px) {
    .tmg-one-1500 > * {
        width: 100%;
    }

    .tmg-two-1500 > * {
        width: 50%;
    }

    .tmg-three-1500 > * {
        width: 33.33333%;
    }

    .tmg-four-1500 > * {
        width: 25%;
    }

    .tmg-five-1500 > * {
        width: 20%;
    }

    .tmg-six-1500 > * {
        width: 16.66666%;
    }

    .tmg-seven-1500 > * {
        width: 14.28571%;
    }

    .tmg-eight-1500 > * {
        width: 12.5%;
    }

    .tmg-nine-1500 > * {
        width: 11.11111%;
    }

    .tmg-ten-1500 > * {
        width: 10%;
    }

    .tmg-eleven-1500 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1500 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1600px) {
    .tmg-one-1600 > * {
        width: 100%;
    }

    .tmg-two-1600 > * {
        width: 50%;
    }

    .tmg-three-1600 > * {
        width: 33.33333%;
    }

    .tmg-four-1600 > * {
        width: 25%;
    }

    .tmg-five-1600 > * {
        width: 20%;
    }

    .tmg-six-1600 > * {
        width: 16.66666%;
    }

    .tmg-seven-1600 > * {
        width: 14.28571%;
    }

    .tmg-eight-1600 > * {
        width: 12.5%;
    }

    .tmg-nine-1600 > * {
        width: 11.11111%;
    }

    .tmg-ten-1600 > * {
        width: 10%;
    }

    .tmg-eleven-1600 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1600 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1700px) {
    .tmg-one-1700 > * {
        width: 100%;
    }

    .tmg-two-1700 > * {
        width: 50%;
    }

    .tmg-three-1700 > * {
        width: 33.33333%;
    }

    .tmg-four-1700 > * {
        width: 25%;
    }

    .tmg-five-1700 > * {
        width: 20%;
    }

    .tmg-six-1700 > * {
        width: 16.66666%;
    }

    .tmg-seven-1700 > * {
        width: 14.28571%;
    }

    .tmg-eight-1700 > * {
        width: 12.5%;
    }

    .tmg-nine-1700 > * {
        width: 11.11111%;
    }

    .tmg-ten-1700 > * {
        width: 10%;
    }

    .tmg-eleven-1700 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1700 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1800px) {
    .tmg-one-1800 > * {
        width: 100%;
    }

    .tmg-two-1800 > * {
        width: 50%;
    }

    .tmg-three-1800 > * {
        width: 33.33333%;
    }

    .tmg-four-1800 > * {
        width: 25%;
    }

    .tmg-five-1800 > * {
        width: 20%;
    }

    .tmg-six-1800 > * {
        width: 16.66666%;
    }

    .tmg-seven-1800 > * {
        width: 14.28571%;
    }

    .tmg-eight-1800 > * {
        width: 12.5%;
    }

    .tmg-nine-1800 > * {
        width: 11.11111%;
    }

    .tmg-ten-1800 > * {
        width: 10%;
    }

    .tmg-eleven-1800 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1800 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 1900px) {
    .tmg-one-1900 > * {
        width: 100%;
    }

    .tmg-two-1900 > * {
        width: 50%;
    }

    .tmg-three-1900 > * {
        width: 33.33333%;
    }

    .tmg-four-1900 > * {
        width: 25%;
    }

    .tmg-five-1900 > * {
        width: 20%;
    }

    .tmg-six-1900 > * {
        width: 16.66666%;
    }

    .tmg-seven-1900 > * {
        width: 14.28571%;
    }

    .tmg-eight-1900 > * {
        width: 12.5%;
    }

    .tmg-nine-1900 > * {
        width: 11.11111%;
    }

    .tmg-ten-1900 > * {
        width: 10%;
    }

    .tmg-eleven-1900 > * {
        width: 9.09091%;
    }

    .tmg-twelve-1900 > * {
        width: 8.33333%;
    }
}

@media all and (min-width: 2000px) {
    .tmg-one-2000 > * {
        width: 100%;
    }

    .tmg-two-2000 > * {
        width: 50%;
    }

    .tmg-three-2000 > * {
        width: 33.33333%;
    }

    .tmg-four-2000 > * {
        width: 25%;
    }

    .tmg-five-2000 > * {
        width: 20%;
    }

    .tmg-six-2000 > * {
        width: 16.66666%;
    }

    .tmg-seven-2000 > * {
        width: 14.28571%;
    }

    .tmg-eight-2000 > * {
        width: 12.5%;
    }

    .tmg-nine-2000 > * {
        width: 11.11111%;
    }

    .tmg-ten-2000 > * {
        width: 10%;
    }

    .tmg-eleven-2000 > * {
        width: 9.09091%;
    }

    .tmg-twelve-2000 > * {
        width: 8.33333%;
    }
}

.tmg-full {
    width: 100%;
}

.tmg-half {
    width: 50%;
}

.tmg-third {
    width: 33.33333%;
}

.tmg-two-third {
    width: 66.66666%;
}

.tmg-fourth {
    width: 25%;
}

.tmg-three-fourth {
    width: 75%;
}

.tmg-fifth {
    width: 20%;
}

.tmg-two-fifth {
    width: 40%;
}

.tmg-three-fifth {
    width: 60%;
}

.tmg-four-fifth {
    width: 80%;
}

.tmg-sixth {
    width: 16.66666%;
}

@media all and (min-width: 500px) {
    .tmg-full-500 {
        width: 100%;
    }

    .tmg-half-500 {
        width: 50%;
    }

    .tmg-third-500 {
        width: 33.33333%;
    }

    .tmg-two-third-500 {
        width: 66.66666%;
    }

    .tmg-fourth-500 {
        width: 25%;
    }

    .tmg-three-fourth-500 {
        width: 75%;
    }

    .tmg-fifth-500 {
        width: 20%;
    }

    .tmg-two-fifth-500 {
        width: 40%;
    }

    .tmg-three-fifth-500 {
        width: 60%;
    }

    .tmg-four-fifth-500 {
        width: 80%;
    }

    .tmg-sixth-500 {
        width: 16.66666%;
    }
}

@media all and (min-width: 600px) {
    .tmg-full-600 {
        width: 100%;
    }

    .tmg-half-600 {
        width: 50%;
    }

    .tmg-third-600 {
        width: 33.33333%;
    }

    .tmg-two-third-600 {
        width: 66.66666%;
    }

    .tmg-fourth-600 {
        width: 25%;
    }

    .tmg-three-fourth-600 {
        width: 75%;
    }

    .tmg-fifth-600 {
        width: 20%;
    }

    .tmg-two-fifth-600 {
        width: 40%;
    }

    .tmg-three-fifth-600 {
        width: 60%;
    }

    .tmg-four-fifth-600 {
        width: 80%;
    }

    .tmg-sixth-600 {
        width: 16.66666%;
    }
}

@media all and (min-width: 700px) {
    .tmg-full-700 {
        width: 100%;
    }

    .tmg-half-700 {
        width: 50%;
    }

    .tmg-third-700 {
        width: 33.33333%;
    }

    .tmg-two-third-700 {
        width: 66.66666%;
    }

    .tmg-fourth-700 {
        width: 25%;
    }

    .tmg-three-fourth-700 {
        width: 75%;
    }

    .tmg-fifth-700 {
        width: 20%;
    }

    .tmg-two-fifth-700 {
        width: 40%;
    }

    .tmg-three-fifth-700 {
        width: 60%;
    }

    .tmg-four-fifth-700 {
        width: 80%;
    }

    .tmg-sixth-700 {
        width: 16.66666%;
    }
}

@media all and (min-width: 800px) {
    .tmg-full-800 {
        width: 100%;
    }

    .tmg-half-800 {
        width: 50%;
    }

    .tmg-third-800 {
        width: 33.33333%;
    }

    .tmg-two-third-800 {
        width: 66.66666%;
    }

    .tmg-fourth-800 {
        width: 25%;
    }

    .tmg-three-fourth-800 {
        width: 75%;
    }

    .tmg-fifth-800 {
        width: 20%;
    }

    .tmg-two-fifth-800 {
        width: 40%;
    }

    .tmg-three-fifth-800 {
        width: 60%;
    }

    .tmg-four-fifth-800 {
        width: 80%;
    }

    .tmg-sixth-800 {
        width: 16.66666%;
    }
}

@media all and (min-width: 900px) {
    .tmg-full-900 {
        width: 100%;
    }

    .tmg-half-900 {
        width: 50%;
    }

    .tmg-third-900 {
        width: 33.33333%;
    }

    .tmg-two-third-900 {
        width: 66.66666%;
    }

    .tmg-fourth-900 {
        width: 25%;
    }

    .tmg-three-fourth-900 {
        width: 75%;
    }

    .tmg-fifth-900 {
        width: 20%;
    }

    .tmg-two-fifth-900 {
        width: 40%;
    }

    .tmg-three-fifth-900 {
        width: 60%;
    }

    .tmg-four-fifth-900 {
        width: 80%;
    }

    .tmg-sixth-900 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1000px) {
    .tmg-full-1000 {
        width: 100%;
    }

    .tmg-half-1000 {
        width: 50%;
    }

    .tmg-third-1000 {
        width: 33.33333%;
    }

    .tmg-two-third-1000 {
        width: 66.66666%;
    }

    .tmg-fourth-1000 {
        width: 25%;
    }

    .tmg-three-fourth-1000 {
        width: 75%;
    }

    .tmg-fifth-1000 {
        width: 20%;
    }

    .tmg-two-fifth-1000 {
        width: 40%;
    }

    .tmg-three-fifth-1000 {
        width: 60%;
    }

    .tmg-four-fifth-1000 {
        width: 80%;
    }

    .tmg-sixth-1000 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1100px) {
    .tmg-full-1100 {
        width: 100%;
    }

    .tmg-half-1100 {
        width: 50%;
    }

    .tmg-third-1100 {
        width: 33.33333%;
    }

    .tmg-two-third-1100 {
        width: 66.66666%;
    }

    .tmg-fourth-1100 {
        width: 25%;
    }

    .tmg-three-fourth-1100 {
        width: 75%;
    }

    .tmg-fifth-1100 {
        width: 20%;
    }

    .tmg-two-fifth-1100 {
        width: 40%;
    }

    .tmg-three-fifth-1100 {
        width: 60%;
    }

    .tmg-four-fifth-1100 {
        width: 80%;
    }

    .tmg-sixth-1100 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1200px) {
    .tmg-full-1200 {
        width: 100%;
    }

    .tmg-half-1200 {
        width: 50%;
    }

    .tmg-third-1200 {
        width: 33.33333%;
    }

    .tmg-two-third-1200 {
        width: 66.66666%;
    }

    .tmg-fourth-1200 {
        width: 25%;
    }

    .tmg-three-fourth-1200 {
        width: 75%;
    }

    .tmg-fifth-1200 {
        width: 20%;
    }

    .tmg-two-fifth-1200 {
        width: 40%;
    }

    .tmg-three-fifth-1200 {
        width: 60%;
    }

    .tmg-four-fifth-1200 {
        width: 80%;
    }

    .tmg-sixth-1200 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1300px) {
    .tmg-full-1300 {
        width: 100%;
    }

    .tmg-half-1300 {
        width: 50%;
    }

    .tmg-third-1300 {
        width: 33.33333%;
    }

    .tmg-two-third-1300 {
        width: 66.66666%;
    }

    .tmg-fourth-1300 {
        width: 25%;
    }

    .tmg-three-fourth-1300 {
        width: 75%;
    }

    .tmg-fifth-1300 {
        width: 20%;
    }

    .tmg-two-fifth-1300 {
        width: 40%;
    }

    .tmg-three-fifth-1300 {
        width: 60%;
    }

    .tmg-four-fifth-1300 {
        width: 80%;
    }

    .tmg-sixth-1300 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1400px) {
    .tmg-full-1400 {
        width: 100%;
    }

    .tmg-half-1400 {
        width: 50%;
    }

    .tmg-third-1400 {
        width: 33.33333%;
    }

    .tmg-two-third-1400 {
        width: 66.66666%;
    }

    .tmg-fourth-1400 {
        width: 25%;
    }

    .tmg-three-fourth-1400 {
        width: 75%;
    }

    .tmg-fifth-1400 {
        width: 20%;
    }

    .tmg-two-fifth-1400 {
        width: 40%;
    }

    .tmg-three-fifth-1400 {
        width: 60%;
    }

    .tmg-four-fifth-1400 {
        width: 80%;
    }

    .tmg-sixth-1400 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1500px) {
    .tmg-full-1500 {
        width: 100%;
    }

    .tmg-half-1500 {
        width: 50%;
    }

    .tmg-third-1500 {
        width: 33.33333%;
    }

    .tmg-two-third-1500 {
        width: 66.66666%;
    }

    .tmg-fourth-1500 {
        width: 25%;
    }

    .tmg-three-fourth-1500 {
        width: 75%;
    }

    .tmg-fifth-1500 {
        width: 20%;
    }

    .tmg-two-fifth-1500 {
        width: 40%;
    }

    .tmg-three-fifth-1500 {
        width: 60%;
    }

    .tmg-four-fifth-1500 {
        width: 80%;
    }

    .tmg-sixth-1500 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1600px) {
    .tmg-full-1600 {
        width: 100%;
    }

    .tmg-half-1600 {
        width: 50%;
    }

    .tmg-third-1600 {
        width: 33.33333%;
    }

    .tmg-two-third-1600 {
        width: 66.66666%;
    }

    .tmg-fourth-1600 {
        width: 25%;
    }

    .tmg-three-fourth-1600 {
        width: 75%;
    }

    .tmg-fifth-1600 {
        width: 20%;
    }

    .tmg-two-fifth-1600 {
        width: 40%;
    }

    .tmg-three-fifth-1600 {
        width: 60%;
    }

    .tmg-four-fifth-1600 {
        width: 80%;
    }

    .tmg-sixth-1600 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1700px) {
    .tmg-full-1700 {
        width: 100%;
    }

    .tmg-half-1700 {
        width: 50%;
    }

    .tmg-third-1700 {
        width: 33.33333%;
    }

    .tmg-two-third-1700 {
        width: 66.66666%;
    }

    .tmg-fourth-1700 {
        width: 25%;
    }

    .tmg-three-fourth-1700 {
        width: 75%;
    }

    .tmg-fifth-1700 {
        width: 20%;
    }

    .tmg-two-fifth-1700 {
        width: 40%;
    }

    .tmg-three-fifth-1700 {
        width: 60%;
    }

    .tmg-four-fifth-1700 {
        width: 80%;
    }

    .tmg-sixth-1700 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1800px) {
    .tmg-full-1800 {
        width: 100%;
    }

    .tmg-half-1800 {
        width: 50%;
    }

    .tmg-third-1800 {
        width: 33.33333%;
    }

    .tmg-two-third-1800 {
        width: 66.66666%;
    }

    .tmg-fourth-1800 {
        width: 25%;
    }

    .tmg-three-fourth-1800 {
        width: 75%;
    }

    .tmg-fifth-1800 {
        width: 20%;
    }

    .tmg-two-fifth-1800 {
        width: 40%;
    }

    .tmg-three-fifth-1800 {
        width: 60%;
    }

    .tmg-four-fifth-1800 {
        width: 80%;
    }

    .tmg-sixth-1800 {
        width: 16.66666%;
    }
}

@media all and (min-width: 1900px) {
    .tmg-full-1900 {
        width: 100%;
    }

    .tmg-half-1900 {
        width: 50%;
    }

    .tmg-third-1900 {
        width: 33.33333%;
    }

    .tmg-two-third-1900 {
        width: 66.66666%;
    }

    .tmg-fourth-1900 {
        width: 25%;
    }

    .tmg-three-fourth-1900 {
        width: 75%;
    }

    .tmg-fifth-1900 {
        width: 20%;
    }

    .tmg-two-fifth-1900 {
        width: 40%;
    }

    .tmg-three-fifth-1900 {
        width: 60%;
    }

    .tmg-four-fifth-1900 {
        width: 80%;
    }

    .tmg-sixth-1900 {
        width: 16.66666%;
    }
}

@media all and (min-width: 2000px) {
    .tmg-full-2000 {
        width: 100%;
    }

    .tmg-half-2000 {
        width: 50%;
    }

    .tmg-third-2000 {
        width: 33.33333%;
    }

    .tmg-two-third-2000 {
        width: 66.66666%;
    }

    .tmg-fourth-2000 {
        width: 25%;
    }

    .tmg-three-fourth-2000 {
        width: 75%;
    }

    .tmg-fifth-2000 {
        width: 20%;
    }

    .tmg-two-fifth-2000 {
        width: 40%;
    }

    .tmg-three-fifth-2000 {
        width: 60%;
    }

    .tmg-four-fifth-2000 {
        width: 80%;
    }

    .tmg-sixth-2000 {
        width: 16.66666%;
    }
}

.tmg-off-half {
    margin-left: 50%;
}

.tmg-off-third {
    margin-left: 33.33333%;
}

.tmg-off-two-third {
    margin-left: 66.66666%;
}

.tmg-off-fourth {
    margin-left: 25%;
}

.tmg-off-three-fourth {
    margin-left: 75%;
}

.tmg-off-fifth {
    margin-left: 20%;
}

.tmg-off-two-fifth {
    margin-left: 40%;
}

.tmg-off-three-fifth {
    margin-left: 60%;
}

.tmg-off-four-fifth {
    margin-left: 80%;
}

.tmg-off-sixth {
    margin-left: 16.66666%;
}

.tmg-off-none {
    margin-left: 0;
}

@media all and (min-width: 500px) {
    .tmg-off-full-500 {
        margin-left: 100%;
    }

    .tmg-off-half-500 {
        margin-left: 50%;
    }

    .tmg-off-third-500 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-500 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-500 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-500 {
        margin-left: 75%;
    }

    .tmg-off-fifth-500 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-500 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-500 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-500 {
        margin-left: 80%;
    }

    .tmg-off-sixth-500 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-500 {
        margin-left: 0;
    }
}

@media all and (min-width: 600px) {
    .tmg-off-full-600 {
        margin-left: 100%;
    }

    .tmg-off-half-600 {
        margin-left: 50%;
    }

    .tmg-off-third-600 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-600 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-600 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-600 {
        margin-left: 75%;
    }

    .tmg-off-fifth-600 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-600 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-600 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-600 {
        margin-left: 80%;
    }

    .tmg-off-sixth-600 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-600 {
        margin-left: 0;
    }
}

@media all and (min-width: 700px) {
    .tmg-off-full-700 {
        margin-left: 100%;
    }

    .tmg-off-half-700 {
        margin-left: 50%;
    }

    .tmg-off-third-700 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-700 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-700 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-700 {
        margin-left: 75%;
    }

    .tmg-off-fifth-700 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-700 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-700 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-700 {
        margin-left: 80%;
    }

    .tmg-off-sixth-700 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-700 {
        margin-left: 0;
    }
}

@media all and (min-width: 800px) {
    .tmg-off-full-800 {
        margin-left: 100%;
    }

    .tmg-off-half-800 {
        margin-left: 50%;
    }

    .tmg-off-third-800 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-800 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-800 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-800 {
        margin-left: 75%;
    }

    .tmg-off-fifth-800 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-800 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-800 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-800 {
        margin-left: 80%;
    }

    .tmg-off-sixth-800 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-800 {
        margin-left: 0;
    }
}

@media all and (min-width: 900px) {
    .tmg-off-full-900 {
        margin-left: 100%;
    }

    .tmg-off-half-900 {
        margin-left: 50%;
    }

    .tmg-off-third-900 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-900 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-900 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-900 {
        margin-left: 75%;
    }

    .tmg-off-fifth-900 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-900 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-900 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-900 {
        margin-left: 80%;
    }

    .tmg-off-sixth-900 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-900 {
        margin-left: 0;
    }
}

@media all and (min-width: 1000px) {
    .tmg-off-full-1000 {
        margin-left: 100%;
    }

    .tmg-off-half-1000 {
        margin-left: 50%;
    }

    .tmg-off-third-1000 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1000 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1000 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1000 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1000 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1000 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1000 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1000 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1000 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1000 {
        margin-left: 0;
    }
}

@media all and (min-width: 1100px) {
    .tmg-off-full-1100 {
        margin-left: 100%;
    }

    .tmg-off-half-1100 {
        margin-left: 50%;
    }

    .tmg-off-third-1100 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1100 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1100 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1100 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1100 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1100 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1100 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1100 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1100 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1100 {
        margin-left: 0;
    }
}

@media all and (min-width: 1200px) {
    .tmg-off-full-1200 {
        margin-left: 100%;
    }

    .tmg-off-half-1200 {
        margin-left: 50%;
    }

    .tmg-off-third-1200 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1200 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1200 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1200 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1200 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1200 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1200 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1200 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1200 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1200 {
        margin-left: 0;
    }
}

@media all and (min-width: 1300px) {
    .tmg-off-full-1300 {
        margin-left: 100%;
    }

    .tmg-off-half-1300 {
        margin-left: 50%;
    }

    .tmg-off-third-1300 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1300 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1300 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1300 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1300 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1300 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1300 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1300 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1300 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1300 {
        margin-left: 0;
    }
}

@media all and (min-width: 1400px) {
    .tmg-off-full-1400 {
        margin-left: 100%;
    }

    .tmg-off-half-1400 {
        margin-left: 50%;
    }

    .tmg-off-third-1400 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1400 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1400 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1400 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1400 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1400 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1400 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1400 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1400 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1400 {
        margin-left: 0;
    }
}

@media all and (min-width: 1500px) {
    .tmg-off-full-1500 {
        margin-left: 100%;
    }

    .tmg-off-half-1500 {
        margin-left: 50%;
    }

    .tmg-off-third-1500 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1500 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1500 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1500 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1500 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1500 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1500 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1500 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1500 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1500 {
        margin-left: 0;
    }
}

@media all and (min-width: 1600px) {
    .tmg-off-full-1600 {
        margin-left: 100%;
    }

    .tmg-off-half-1600 {
        margin-left: 50%;
    }

    .tmg-off-third-1600 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1600 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1600 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1600 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1600 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1600 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1600 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1600 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1600 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1600 {
        margin-left: 0;
    }
}

@media all and (min-width: 1700px) {
    .tmg-off-full-1700 {
        margin-left: 100%;
    }

    .tmg-off-half-1700 {
        margin-left: 50%;
    }

    .tmg-off-third-1700 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1700 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1700 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1700 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1700 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1700 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1700 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1700 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1700 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1700 {
        margin-left: 0;
    }
}

@media all and (min-width: 1800px) {
    .tmg-off-full-1800 {
        margin-left: 100%;
    }

    .tmg-off-half-1800 {
        margin-left: 50%;
    }

    .tmg-off-third-1800 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1800 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1800 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1800 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1800 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1800 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1800 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1800 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1800 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1800 {
        margin-left: 0;
    }
}

@media all and (min-width: 1900px) {
    .tmg-off-full-1900 {
        margin-left: 100%;
    }

    .tmg-off-half-1900 {
        margin-left: 50%;
    }

    .tmg-off-third-1900 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-1900 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-1900 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-1900 {
        margin-left: 75%;
    }

    .tmg-off-fifth-1900 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-1900 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-1900 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-1900 {
        margin-left: 80%;
    }

    .tmg-off-sixth-1900 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-1900 {
        margin-left: 0;
    }
}

@media all and (min-width: 2000px) {
    .tmg-off-full-2000 {
        margin-left: 100%;
    }

    .tmg-off-half-2000 {
        margin-left: 50%;
    }

    .tmg-off-third-2000 {
        margin-left: 33.33333%;
    }

    .tmg-off-two-third-2000 {
        margin-left: 66.66666%;
    }

    .tmg-off-fourth-2000 {
        margin-left: 25%;
    }

    .tmg-off-three-fourth-2000 {
        margin-left: 75%;
    }

    .tmg-off-fifth-2000 {
        margin-left: 20%;
    }

    .tmg-off-two-fifth-2000 {
        margin-left: 40%;
    }

    .tmg-off-three-fifth-2000 {
        margin-left: 60%;
    }

    .tmg-off-four-fifth-2000 {
        margin-left: 80%;
    }

    .tmg-off-sixth-2000 {
        margin-left: 16.66666%;
    }

    .tmg-off-none-2000 {
        margin-left: 0;
    }
}

/*Spacing (Gutter)*/
/*************************************************************************************
Filename: _gutter.scss
Description: The Gutter snippet - we talk about padding and margin
Padding = inner and Margin = outer
It should be read as: theGrid-Element--Property-specific
Use the %-selectors as: .inner-test {@extend %grid-inner-tb-1;}
They won't show up in the compiled style-sheet
**************************************************************************************/
/***** The Inner Grid (Padding) *****/
.tmg--inner-0 {
    padding: 0 !important;
}

.tmg--inner-1 {
    padding: 10px;
}

@media (min-width: 75em) {
    .tmg--inner-1 {
        padding: 20px;
    }
}

.tmg--inner-2 {
    padding: 20px;
}

@media (min-width: 75em) {
    .tmg--inner-2 {
        padding: 40px;
    }
}

.tmg--inner-4 {
    padding: 40px;
}

@media (min-width: 75em) {
    .tmg--inner-4 {
        padding: 80px;
    }
}

.tmg--inner-tb-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 75em) {
    .tmg--inner-tb-1 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.tmg--inner-tb-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 75em) {
    .tmg--inner-tb-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.tmg--inner-t-1 {
    padding-top: 10px;
}

@media (min-width: 75em) {
    .tmg--inner-t-1 {
        padding-top: 20px;
    }
}

.tmg--inner-t-2 {
    padding-top: 20px;
}

@media (min-width: 75em) {
    .tmg--inner-t-2 {
        padding-top: 40px;
    }
}

.tmg--inner-b-1 {
    padding-bottom: 10px;
}

@media (min-width: 75em) {
    .tmg--inner-b-1 {
        padding-bottom: 20px;
    }
}

.tmg--inner-b-2 {
    padding-bottom: 20px;
}

@media (min-width: 75em) {
    .tmg--inner-b-2 {
        padding-bottom: 40px;
    }
}

.tmg--inner-lr-1 {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 75em) {
    .tmg--inner-lr-1 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.tmg--inner-lr-2 {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 75em) {
    .tmg--inner-lr-2 {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.tmg--inner-l-1 {
    padding-left: 10px;
}

@media (min-width: 75em) {
    .tmg--inner-l-1 {
        padding-left: 20px;
    }
}

.tmg--inner-l-2 {
    padding-left: 20px;
}

@media (min-width: 75em) {
    .tmg--inner-l-2 {
        padding-left: 40px;
    }
}

.tmg--inner-r-1 {
    padding-right: 10px;
}

@media (min-width: 75em) {
    .tmg--inner-r-1 {
        padding-right: 20px;
    }
}

.tmg--inner-r-2 {
    padding-right: 20px;
}

@media (min-width: 75em) {
    .tmg--inner-r-2 {
        padding-right: 40px;
    }
}

/***** The Outer Grid (Margin) *****/
.tmg--outer-h1 {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-h1 {
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 20px;
    }
}

.tmg--outer-1 {
    margin: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-1 {
        margin: 20px;
    }
}

.tmg--outer-2 {
    margin: 20px;
}

@media (min-width: 75em) {
    .tmg--outer-2 {
        margin: 40px;
    }
}

.tmg--outer-4 {
    margin: 40px;
}

@media (min-width: 75em) {
    .tmg--outer-4 {
        margin: 80px;
    }
}

/* Margin top and bottom */
.tmg--outer-tb-1 {
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-tb-1 {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Margin top and bottom twice */
.tmg--outer-tb-2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 75em) {
    .tmg--outer-tb-2 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/* Margin left and right */
.tmg--outer-lr-1 {
    margin-left: 10px;
    margin-right: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-lr-1 {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Margin left and right twice */
.tmg--outer-lr-2 {
    margin-left: 20px;
    margin-right: 20px;
}

@media (min-width: 75em) {
    .tmg--outer-lr-2 {
        margin-left: 40px;
        margin-right: 40px;
    }
}

/* Margin left */
.tmg--outer-l-1 {
    margin-left: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-l-1 {
        margin-left: 20px;
    }
}

/* Margin left twice */
.tmg--outer-l-2 {
    margin-left: 20px;
}

@media (min-width: 75em) {
    .tmg--outer-l-2 {
        margin-left: 40px;
    }
}

/* Margin Right */
.tmg--outer-r-1 {
    margin-right: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-r-1 {
        margin-right: 20px;
    }
}

/* Margin left twice */
.tmg--outer-r-2 {
    margin-right: 20px;
}

@media (min-width: 75em) {
    .tmg--outer-r-2 {
        margin-right: 40px;
    }
}

/* Margin top */
.tmg--outer-t-1 {
    margin-top: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-t-1 {
        margin-top: 20px;
    }
}

/* Margin top twice */
.tmg--outer-t-2 {
    margin-top: 20px;
}

@media (min-width: 75em) {
    .tmg--outer-t-2 {
        margin-top: 40px;
    }
}

/* Margin bottom */
.tmg--outer-b-1 {
    margin-bottom: 10px;
}

@media (min-width: 75em) {
    .tmg--outer-b-1 {
        margin-bottom: 20px;
    }
}

/* Margin bottom - twice */
.tmg--outer-b-2 {
    margin-bottom: 20px;
}

@media (min-width: 75em) {
    .tmg--outer-b-2 {
        margin-bottom: 40px;
    }
}

/*Images*/
/*************************************************************************************
Filename: _fleximage.scss
Description: The Flex-Image snippet.
**************************************************************************************/
img,
video {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.tG__img-bg-basic {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.tG-elem-img-bg {
    min-height: 33vh;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

@media (min-width: 75em) {
    .tG-elem-img-bg {
        min-height: 66vh;
    }
}

.tG-elem-img-bg--tl {
    min-height: 40vh;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}

@media (min-width: 75em) {
    .tG-elem-img-bg--tl {
        min-height: 45vh;
    }
}

.tG-elem-img-bg--tb {
    min-height: 25vh;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
}

@media (min-width: 75em) {
    .tG-elem-img-bg--tb {
        min-height: 25vh;
    }
}

.tG-elem-img-bg--hero {
    min-height: 25vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (min-width: 75em) {
    .tG-elem-img-bg--hero {
        min-height: 35vh;
    }
}

.tG-elem-img-bg--hero-bottom {
    min-height: 25vh;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

@media (min-width: 75em) {
    .tG-elem-img-bg--hero-bottom {
        min-height: 35vh;
    }
}

img.tG-border-white {
    border: 3px solid white;
}

/*Color*/
/*************************************************************************************
Filename: color.scss
Description: It is google material design 
Google Color Palette defined: http://www.google.com/design/spec/style/color.html
**************************************************************************************/
.materialize-red {
    background-color: #e51c23 !important;
}

.materialize-red-text {
    color: #e51c23 !important;
}

.materialize-red.lighten-5 {
    background-color: #fdeaeb !important;
}

.materialize-red-text.text-lighten-5 {
    color: #fdeaeb !important;
}

.materialize-red.lighten-4,
.mean-container-light .materialize-red.mean-bar,
.mean-container-light .materialize-red.mean-nav {
    background-color: #f8c1c3 !important;
}

.materialize-red-text.text-lighten-4 {
    color: #f8c1c3 !important;
}

.materialize-red.lighten-3 {
    background-color: #f3989b !important;
}

.materialize-red-text.text-lighten-3 {
    color: #f3989b !important;
}

.materialize-red.lighten-2 {
    background-color: #ee6e73 !important;
}

.materialize-red-text.text-lighten-2 {
    color: #ee6e73 !important;
}

.materialize-red.lighten-1 {
    background-color: #ea454b !important;
}

.materialize-red-text.text-lighten-1 {
    color: #ea454b !important;
}

.materialize-red.darken-1 {
    background-color: #d0181e !important;
}

.materialize-red-text.text-darken-1 {
    color: #d0181e !important;
}

.materialize-red.darken-2 {
    background-color: #b9151b !important;
}

.materialize-red-text.text-darken-2 {
    color: #b9151b !important;
}

.materialize-red.darken-3 {
    background-color: #a21318 !important;
}

.materialize-red-text.text-darken-3 {
    color: #a21318 !important;
}

.materialize-red.darken-4,
.magicnav--dark ul ul.materialize-red {
    background-color: #8b1014 !important;
}

.materialize-red-text.text-darken-4 {
    color: #8b1014 !important;
}

.red {
    background-color: #F44336 !important;
}

.red-text {
    color: #F44336 !important;
}

.red.lighten-5 {
    background-color: #FFEBEE !important;
}

.red-text.text-lighten-5 {
    color: #FFEBEE !important;
}

.red.lighten-4,
.mean-container-light .red.mean-bar,
.mean-container-light .red.mean-nav {
    background-color: #FFCDD2 !important;
}

.red-text.text-lighten-4 {
    color: #FFCDD2 !important;
}

.red.lighten-3 {
    background-color: #EF9A9A !important;
}

.red-text.text-lighten-3 {
    color: #EF9A9A !important;
}

.red.lighten-2 {
    background-color: #E57373 !important;
}

.red-text.text-lighten-2 {
    color: #E57373 !important;
}

.red.lighten-1 {
    background-color: #EF5350 !important;
}

.red-text.text-lighten-1 {
    color: #EF5350 !important;
}

.red.darken-1 {
    background-color: #E53935 !important;
}

.red-text.text-darken-1 {
    color: #E53935 !important;
}

.red.darken-2 {
    background-color: #D32F2F !important;
}

.red-text.text-darken-2 {
    color: #D32F2F !important;
}

.red.darken-3 {
    background-color: #C62828 !important;
}

.red-text.text-darken-3 {
    color: #C62828 !important;
}

.red.darken-4,
.magicnav--dark ul ul.red {
    background-color: #B71C1C !important;
}

.red-text.text-darken-4 {
    color: #B71C1C !important;
}

.red.accent-1 {
    background-color: #FF8A80 !important;
}

.red-text.text-accent-1 {
    color: #FF8A80 !important;
}

.red.accent-2 {
    background-color: #FF5252 !important;
}

.red-text.text-accent-2 {
    color: #FF5252 !important;
}

.red.accent-3 {
    background-color: #FF1744 !important;
}

.red-text.text-accent-3 {
    color: #FF1744 !important;
}

.red.accent-4 {
    background-color: #D50000 !important;
}

.red-text.text-accent-4 {
    color: #D50000 !important;
}

.pink {
    background-color: #e91e63 !important;
}

.pink-text {
    color: #e91e63 !important;
}

.pink.lighten-5 {
    background-color: #fce4ec !important;
}

.pink-text.text-lighten-5 {
    color: #fce4ec !important;
}

.pink.lighten-4,
.mean-container-light .pink.mean-bar,
.mean-container-light .pink.mean-nav {
    background-color: #f8bbd0 !important;
}

.pink-text.text-lighten-4 {
    color: #f8bbd0 !important;
}

.pink.lighten-3 {
    background-color: #f48fb1 !important;
}

.pink-text.text-lighten-3 {
    color: #f48fb1 !important;
}

.pink.lighten-2 {
    background-color: #f06292 !important;
}

.pink-text.text-lighten-2 {
    color: #f06292 !important;
}

.pink.lighten-1 {
    background-color: #ec407a !important;
}

.pink-text.text-lighten-1 {
    color: #ec407a !important;
}

.pink.darken-1 {
    background-color: #d81b60 !important;
}

.pink-text.text-darken-1 {
    color: #d81b60 !important;
}

.pink.darken-2 {
    background-color: #c2185b !important;
}

.pink-text.text-darken-2 {
    color: #c2185b !important;
}

.pink.darken-3 {
    background-color: #ad1457 !important;
}

.pink-text.text-darken-3 {
    color: #ad1457 !important;
}

.pink.darken-4,
.magicnav--dark ul ul.pink {
    background-color: #880e4f !important;
}

.pink-text.text-darken-4 {
    color: #880e4f !important;
}

.pink.accent-1 {
    background-color: #ff80ab !important;
}

.pink-text.text-accent-1 {
    color: #ff80ab !important;
}

.pink.accent-2 {
    background-color: #ff4081 !important;
}

.pink-text.text-accent-2 {
    color: #ff4081 !important;
}

.pink.accent-3 {
    background-color: #f50057 !important;
}

.pink-text.text-accent-3 {
    color: #f50057 !important;
}

.pink.accent-4 {
    background-color: #c51162 !important;
}

.pink-text.text-accent-4 {
    color: #c51162 !important;
}

.purple {
    background-color: #9c27b0 !important;
}

.purple-text {
    color: #9c27b0 !important;
}

.purple.lighten-5 {
    background-color: #f3e5f5 !important;
}

.purple-text.text-lighten-5 {
    color: #f3e5f5 !important;
}

.purple.lighten-4,
.mean-container-light .purple.mean-bar,
.mean-container-light .purple.mean-nav {
    background-color: #e1bee7 !important;
}

.purple-text.text-lighten-4 {
    color: #e1bee7 !important;
}

.purple.lighten-3 {
    background-color: #ce93d8 !important;
}

.purple-text.text-lighten-3 {
    color: #ce93d8 !important;
}

.purple.lighten-2 {
    background-color: #ba68c8 !important;
}

.purple-text.text-lighten-2 {
    color: #ba68c8 !important;
}

.purple.lighten-1 {
    background-color: #ab47bc !important;
}

.purple-text.text-lighten-1 {
    color: #ab47bc !important;
}

.purple.darken-1 {
    background-color: #8e24aa !important;
}

.purple-text.text-darken-1 {
    color: #8e24aa !important;
}

.purple.darken-2 {
    background-color: #7b1fa2 !important;
}

.purple-text.text-darken-2 {
    color: #7b1fa2 !important;
}

.purple.darken-3 {
    background-color: #6a1b9a !important;
}

.purple-text.text-darken-3 {
    color: #6a1b9a !important;
}

.purple.darken-4,
.magicnav--dark ul ul.purple {
    background-color: #4a148c !important;
}

.purple-text.text-darken-4 {
    color: #4a148c !important;
}

.purple.accent-1 {
    background-color: #ea80fc !important;
}

.purple-text.text-accent-1 {
    color: #ea80fc !important;
}

.purple.accent-2 {
    background-color: #e040fb !important;
}

.purple-text.text-accent-2 {
    color: #e040fb !important;
}

.purple.accent-3 {
    background-color: #d500f9 !important;
}

.purple-text.text-accent-3 {
    color: #d500f9 !important;
}

.purple.accent-4 {
    background-color: #aa00ff !important;
}

.purple-text.text-accent-4 {
    color: #aa00ff !important;
}

.deep-purple {
    background-color: #673ab7 !important;
}

.deep-purple-text {
    color: #673ab7 !important;
}

.deep-purple.lighten-5 {
    background-color: #ede7f6 !important;
}

.deep-purple-text.text-lighten-5 {
    color: #ede7f6 !important;
}

.deep-purple.lighten-4,
.mean-container-light .deep-purple.mean-bar,
.mean-container-light .deep-purple.mean-nav {
    background-color: #d1c4e9 !important;
}

.deep-purple-text.text-lighten-4 {
    color: #d1c4e9 !important;
}

.deep-purple.lighten-3 {
    background-color: #b39ddb !important;
}

.deep-purple-text.text-lighten-3 {
    color: #b39ddb !important;
}

.deep-purple.lighten-2 {
    background-color: #9575cd !important;
}

.deep-purple-text.text-lighten-2 {
    color: #9575cd !important;
}

.deep-purple.lighten-1 {
    background-color: #7e57c2 !important;
}

.deep-purple-text.text-lighten-1 {
    color: #7e57c2 !important;
}

.deep-purple.darken-1 {
    background-color: #5e35b1 !important;
}

.deep-purple-text.text-darken-1 {
    color: #5e35b1 !important;
}

.deep-purple.darken-2 {
    background-color: #512da8 !important;
}

.deep-purple-text.text-darken-2 {
    color: #512da8 !important;
}

.deep-purple.darken-3 {
    background-color: #4527a0 !important;
}

.deep-purple-text.text-darken-3 {
    color: #4527a0 !important;
}

.deep-purple.darken-4,
.magicnav--dark ul ul.deep-purple {
    background-color: #311b92 !important;
}

.deep-purple-text.text-darken-4 {
    color: #311b92 !important;
}

.deep-purple.accent-1 {
    background-color: #b388ff !important;
}

.deep-purple-text.text-accent-1 {
    color: #b388ff !important;
}

.deep-purple.accent-2 {
    background-color: #7c4dff !important;
}

.deep-purple-text.text-accent-2 {
    color: #7c4dff !important;
}

.deep-purple.accent-3 {
    background-color: #651fff !important;
}

.deep-purple-text.text-accent-3 {
    color: #651fff !important;
}

.deep-purple.accent-4 {
    background-color: #6200ea !important;
}

.deep-purple-text.text-accent-4 {
    color: #6200ea !important;
}

.indigo {
    background-color: #3f51b5 !important;
}

.indigo-text {
    color: #3f51b5 !important;
}

.indigo.lighten-5 {
    background-color: #e8eaf6 !important;
}

.indigo-text.text-lighten-5 {
    color: #e8eaf6 !important;
}

.indigo.lighten-4,
.mean-container-light .indigo.mean-bar,
.mean-container-light .indigo.mean-nav {
    background-color: #c5cae9 !important;
}

.indigo-text.text-lighten-4 {
    color: #c5cae9 !important;
}

.indigo.lighten-3 {
    background-color: #9fa8da !important;
}

.indigo-text.text-lighten-3 {
    color: #9fa8da !important;
}

.indigo.lighten-2 {
    background-color: #7986cb !important;
}

.indigo-text.text-lighten-2 {
    color: #7986cb !important;
}

.indigo.lighten-1 {
    background-color: #5c6bc0 !important;
}

.indigo-text.text-lighten-1 {
    color: #5c6bc0 !important;
}

.indigo.darken-1 {
    background-color: #3949ab !important;
}

.indigo-text.text-darken-1 {
    color: #3949ab !important;
}

.indigo.darken-2 {
    background-color: #303f9f !important;
}

.indigo-text.text-darken-2 {
    color: #303f9f !important;
}

.indigo.darken-3 {
    background-color: #283593 !important;
}

.indigo-text.text-darken-3 {
    color: #283593 !important;
}

.indigo.darken-4,
.magicnav--dark ul ul.indigo {
    background-color: #1a237e !important;
}

.indigo-text.text-darken-4 {
    color: #1a237e !important;
}

.indigo.accent-1 {
    background-color: #8c9eff !important;
}

.indigo-text.text-accent-1 {
    color: #8c9eff !important;
}

.indigo.accent-2 {
    background-color: #536dfe !important;
}

.indigo-text.text-accent-2 {
    color: #536dfe !important;
}

.indigo.accent-3 {
    background-color: #3d5afe !important;
}

.indigo-text.text-accent-3 {
    color: #3d5afe !important;
}

.indigo.accent-4 {
    background-color: #304ffe !important;
}

.indigo-text.text-accent-4 {
    color: #304ffe !important;
}

.blue {
    background-color: #2196F3 !important;
}

.blue-text {
    color: #2196F3 !important;
}

.blue.lighten-5 {
    background-color: #E3F2FD !important;
}

.blue-text.text-lighten-5 {
    color: #E3F2FD !important;
}

.blue.lighten-4,
.mean-container-light .blue.mean-bar,
.mean-container-light .blue.mean-nav {
    background-color: #BBDEFB !important;
}

.blue-text.text-lighten-4 {
    color: #BBDEFB !important;
}

.blue.lighten-3 {
    background-color: #90CAF9 !important;
}

.blue-text.text-lighten-3 {
    color: #90CAF9 !important;
}

.blue.lighten-2 {
    background-color: #64B5F6 !important;
}

.blue-text.text-lighten-2 {
    color: #64B5F6 !important;
}

.blue.lighten-1 {
    background-color: #42A5F5 !important;
}

.blue-text.text-lighten-1 {
    color: #42A5F5 !important;
}

.blue.darken-1 {
    background-color: #1E88E5 !important;
}

.blue-text.text-darken-1 {
    color: #1E88E5 !important;
}

.blue.darken-2 {
    background-color: #1976D2 !important;
}

.blue-text.text-darken-2 {
    color: #1976D2 !important;
}

.blue.darken-3 {
    background-color: #1565C0 !important;
}

.blue-text.text-darken-3 {
    color: #1565C0 !important;
}

.blue.darken-4,
.magicnav--dark ul ul.blue {
    background-color: #0D47A1 !important;
}

.blue-text.text-darken-4 {
    color: #0D47A1 !important;
}

.blue.accent-1 {
    background-color: #82B1FF !important;
}

.blue-text.text-accent-1 {
    color: #82B1FF !important;
}

.blue.accent-2 {
    background-color: #448AFF !important;
}

.blue-text.text-accent-2 {
    color: #448AFF !important;
}

.blue.accent-3 {
    background-color: #2979FF !important;
}

.blue-text.text-accent-3 {
    color: #2979FF !important;
}

.blue.accent-4 {
    background-color: #2962FF !important;
}

.blue-text.text-accent-4 {
    color: #2962FF !important;
}

.light-blue {
    background-color: #03a9f4 !important;
}

.light-blue-text {
    color: #03a9f4 !important;
}

.light-blue.lighten-5 {
    background-color: #e1f5fe !important;
}

.light-blue-text.text-lighten-5 {
    color: #e1f5fe !important;
}

.light-blue.lighten-4,
.mean-container-light .light-blue.mean-bar,
.mean-container-light .light-blue.mean-nav {
    background-color: #b3e5fc !important;
}

.light-blue-text.text-lighten-4 {
    color: #b3e5fc !important;
}

.light-blue.lighten-3 {
    background-color: #81d4fa !important;
}

.light-blue-text.text-lighten-3 {
    color: #81d4fa !important;
}

.light-blue.lighten-2 {
    background-color: #4fc3f7 !important;
}

.light-blue-text.text-lighten-2 {
    color: #4fc3f7 !important;
}

.light-blue.lighten-1 {
    background-color: #29b6f6 !important;
}

.light-blue-text.text-lighten-1 {
    color: #29b6f6 !important;
}

.light-blue.darken-1 {
    background-color: #039be5 !important;
}

.light-blue-text.text-darken-1 {
    color: #039be5 !important;
}

.light-blue.darken-2 {
    background-color: #0288d1 !important;
}

.light-blue-text.text-darken-2 {
    color: #0288d1 !important;
}

.light-blue.darken-3 {
    background-color: #0277bd !important;
}

.light-blue-text.text-darken-3 {
    color: #0277bd !important;
}

.light-blue.darken-4,
.magicnav--dark ul ul.light-blue {
    background-color: #01579b !important;
}

.light-blue-text.text-darken-4 {
    color: #01579b !important;
}

.light-blue.accent-1 {
    background-color: #80d8ff !important;
}

.light-blue-text.text-accent-1 {
    color: #80d8ff !important;
}

.light-blue.accent-2 {
    background-color: #40c4ff !important;
}

.light-blue-text.text-accent-2 {
    color: #40c4ff !important;
}

.light-blue.accent-3 {
    background-color: #00b0ff !important;
}

.light-blue-text.text-accent-3 {
    color: #00b0ff !important;
}

.light-blue.accent-4 {
    background-color: #0091ea !important;
}

.light-blue-text.text-accent-4 {
    color: #0091ea !important;
}

.cyan {
    background-color: #00bcd4 !important;
}

.cyan-text {
    color: #00bcd4 !important;
}

.cyan.lighten-5 {
    background-color: #e0f7fa !important;
}

.cyan-text.text-lighten-5 {
    color: #e0f7fa !important;
}

.cyan.lighten-4,
.mean-container-light .cyan.mean-bar,
.mean-container-light .cyan.mean-nav {
    background-color: #b2ebf2 !important;
}

.cyan-text.text-lighten-4 {
    color: #b2ebf2 !important;
}

.cyan.lighten-3 {
    background-color: #80deea !important;
}

.cyan-text.text-lighten-3 {
    color: #80deea !important;
}

.cyan.lighten-2 {
    background-color: #4dd0e1 !important;
}

.cyan-text.text-lighten-2 {
    color: #4dd0e1 !important;
}

.cyan.lighten-1 {
    background-color: #26c6da !important;
}

.cyan-text.text-lighten-1 {
    color: #26c6da !important;
}

.cyan.darken-1 {
    background-color: #00acc1 !important;
}

.cyan-text.text-darken-1 {
    color: #00acc1 !important;
}

.cyan.darken-2 {
    background-color: #0097a7 !important;
}

.cyan-text.text-darken-2 {
    color: #0097a7 !important;
}

.cyan.darken-3 {
    background-color: #00838f !important;
}

.cyan-text.text-darken-3 {
    color: #00838f !important;
}

.cyan.darken-4,
.magicnav--dark ul ul.cyan {
    background-color: #006064 !important;
}

.cyan-text.text-darken-4 {
    color: #006064 !important;
}

.cyan.accent-1 {
    background-color: #84ffff !important;
}

.cyan-text.text-accent-1 {
    color: #84ffff !important;
}

.cyan.accent-2 {
    background-color: #18ffff !important;
}

.cyan-text.text-accent-2 {
    color: #18ffff !important;
}

.cyan.accent-3 {
    background-color: #00e5ff !important;
}

.cyan-text.text-accent-3 {
    color: #00e5ff !important;
}

.cyan.accent-4 {
    background-color: #00b8d4 !important;
}

.cyan-text.text-accent-4 {
    color: #00b8d4 !important;
}

.teal {
    background-color: #009688 !important;
}

.teal-text {
    color: #009688 !important;
}

.teal.lighten-5 {
    background-color: #e0f2f1 !important;
}

.teal-text.text-lighten-5 {
    color: #e0f2f1 !important;
}

.teal.lighten-4,
.mean-container-light .teal.mean-bar,
.mean-container-light .teal.mean-nav {
    background-color: #b2dfdb !important;
}

.teal-text.text-lighten-4 {
    color: #b2dfdb !important;
}

.teal.lighten-3 {
    background-color: #80cbc4 !important;
}

.teal-text.text-lighten-3 {
    color: #80cbc4 !important;
}

.teal.lighten-2 {
    background-color: #4db6ac !important;
}

.teal-text.text-lighten-2 {
    color: #4db6ac !important;
}

.teal.lighten-1 {
    background-color: #26a69a !important;
}

.teal-text.text-lighten-1 {
    color: #26a69a !important;
}

.teal.darken-1 {
    background-color: #00897b !important;
}

.teal-text.text-darken-1 {
    color: #00897b !important;
}

.teal.darken-2 {
    background-color: #00796b !important;
}

.teal-text.text-darken-2 {
    color: #00796b !important;
}

.teal.darken-3 {
    background-color: #00695c !important;
}

.teal-text.text-darken-3 {
    color: #00695c !important;
}

.teal.darken-4,
.magicnav--dark ul ul.teal {
    background-color: #004d40 !important;
}

.teal-text.text-darken-4 {
    color: #004d40 !important;
}

.teal.accent-1 {
    background-color: #a7ffeb !important;
}

.teal-text.text-accent-1 {
    color: #a7ffeb !important;
}

.teal.accent-2 {
    background-color: #64ffda !important;
}

.teal-text.text-accent-2 {
    color: #64ffda !important;
}

.teal.accent-3 {
    background-color: #1de9b6 !important;
}

.teal-text.text-accent-3 {
    color: #1de9b6 !important;
}

.teal.accent-4 {
    background-color: #00bfa5 !important;
}

.teal-text.text-accent-4 {
    color: #00bfa5 !important;
}

.green {
    background-color: #4CAF50 !important;
}

.green-text {
    color: #4CAF50 !important;
}

.green.lighten-5 {
    background-color: #E8F5E9 !important;
}

.green-text.text-lighten-5 {
    color: #E8F5E9 !important;
}

.green.lighten-4,
.mean-container-light .green.mean-bar,
.mean-container-light .green.mean-nav {
    background-color: #C8E6C9 !important;
}

.green-text.text-lighten-4 {
    color: #C8E6C9 !important;
}

.green.lighten-3 {
    background-color: #A5D6A7 !important;
}

.green-text.text-lighten-3 {
    color: #A5D6A7 !important;
}

.green.lighten-2 {
    background-color: #81C784 !important;
}

.green-text.text-lighten-2 {
    color: #81C784 !important;
}

.green.lighten-1 {
    background-color: #66BB6A !important;
}

.green-text.text-lighten-1 {
    color: #66BB6A !important;
}

.green.darken-1 {
    background-color: #43A047 !important;
}

.green-text.text-darken-1 {
    color: #43A047 !important;
}

.green.darken-2 {
    background-color: #388E3C !important;
}

.green-text.text-darken-2 {
    color: #388E3C !important;
}

.green.darken-3 {
    background-color: #2E7D32 !important;
}

.green-text.text-darken-3 {
    color: #2E7D32 !important;
}

.green.darken-4,
.magicnav--dark ul ul.green {
    background-color: #1B5E20 !important;
}

.green-text.text-darken-4 {
    color: #1B5E20 !important;
}

.green.accent-1 {
    background-color: #B9F6CA !important;
}

.green-text.text-accent-1 {
    color: #B9F6CA !important;
}

.green.accent-2 {
    background-color: #69F0AE !important;
}

.green-text.text-accent-2 {
    color: #69F0AE !important;
}

.green.accent-3 {
    background-color: #00E676 !important;
}

.green-text.text-accent-3 {
    color: #00E676 !important;
}

.green.accent-4 {
    background-color: #00C853 !important;
}

.green-text.text-accent-4 {
    color: #00C853 !important;
}

.light-green {
    background-color: #8bc34a !important;
}

.light-green-text {
    color: #8bc34a !important;
}

.light-green.lighten-5 {
    background-color: #f1f8e9 !important;
}

.light-green-text.text-lighten-5 {
    color: #f1f8e9 !important;
}

.light-green.lighten-4,
.mean-container-light .light-green.mean-bar,
.mean-container-light .light-green.mean-nav {
    background-color: #dcedc8 !important;
}

.light-green-text.text-lighten-4 {
    color: #dcedc8 !important;
}

.light-green.lighten-3 {
    background-color: #c5e1a5 !important;
}

.light-green-text.text-lighten-3 {
    color: #c5e1a5 !important;
}

.light-green.lighten-2 {
    background-color: #aed581 !important;
}

.light-green-text.text-lighten-2 {
    color: #aed581 !important;
}

.light-green.lighten-1 {
    background-color: #9ccc65 !important;
}

.light-green-text.text-lighten-1 {
    color: #9ccc65 !important;
}

.light-green.darken-1 {
    background-color: #7cb342 !important;
}

.light-green-text.text-darken-1 {
    color: #7cb342 !important;
}

.light-green.darken-2 {
    background-color: #689f38 !important;
}

.light-green-text.text-darken-2 {
    color: #689f38 !important;
}

.light-green.darken-3 {
    background-color: #558b2f !important;
}

.light-green-text.text-darken-3 {
    color: #558b2f !important;
}

.light-green.darken-4,
.magicnav--dark ul ul.light-green {
    background-color: #33691e !important;
}

.light-green-text.text-darken-4 {
    color: #33691e !important;
}

.light-green.accent-1 {
    background-color: #ccff90 !important;
}

.light-green-text.text-accent-1 {
    color: #ccff90 !important;
}

.light-green.accent-2 {
    background-color: #b2ff59 !important;
}

.light-green-text.text-accent-2 {
    color: #b2ff59 !important;
}

.light-green.accent-3 {
    background-color: #76ff03 !important;
}

.light-green-text.text-accent-3 {
    color: #76ff03 !important;
}

.light-green.accent-4 {
    background-color: #64dd17 !important;
}

.light-green-text.text-accent-4 {
    color: #64dd17 !important;
}

.lime {
    background-color: #cddc39 !important;
}

.lime-text {
    color: #cddc39 !important;
}

.lime.lighten-5 {
    background-color: #f9fbe7 !important;
}

.lime-text.text-lighten-5 {
    color: #f9fbe7 !important;
}

.lime.lighten-4,
.mean-container-light .lime.mean-bar,
.mean-container-light .lime.mean-nav {
    background-color: #f0f4c3 !important;
}

.lime-text.text-lighten-4 {
    color: #f0f4c3 !important;
}

.lime.lighten-3 {
    background-color: #e6ee9c !important;
}

.lime-text.text-lighten-3 {
    color: #e6ee9c !important;
}

.lime.lighten-2 {
    background-color: #dce775 !important;
}

.lime-text.text-lighten-2 {
    color: #dce775 !important;
}

.lime.lighten-1 {
    background-color: #d4e157 !important;
}

.lime-text.text-lighten-1 {
    color: #d4e157 !important;
}

.lime.darken-1 {
    background-color: #c0ca33 !important;
}

.lime-text.text-darken-1 {
    color: #c0ca33 !important;
}

.lime.darken-2 {
    background-color: #afb42b !important;
}

.lime-text.text-darken-2 {
    color: #afb42b !important;
}

.lime.darken-3 {
    background-color: #9e9d24 !important;
}

.lime-text.text-darken-3 {
    color: #9e9d24 !important;
}

.lime.darken-4,
.magicnav--dark ul ul.lime {
    background-color: #827717 !important;
}

.lime-text.text-darken-4 {
    color: #827717 !important;
}

.lime.accent-1 {
    background-color: #f4ff81 !important;
}

.lime-text.text-accent-1 {
    color: #f4ff81 !important;
}

.lime.accent-2 {
    background-color: #eeff41 !important;
}

.lime-text.text-accent-2 {
    color: #eeff41 !important;
}

.lime.accent-3 {
    background-color: #c6ff00 !important;
}

.lime-text.text-accent-3 {
    color: #c6ff00 !important;
}

.lime.accent-4 {
    background-color: #aeea00 !important;
}

.lime-text.text-accent-4 {
    color: #aeea00 !important;
}

.yellow {
    background-color: #ffeb3b !important;
}

.yellow-text {
    color: #ffeb3b !important;
}

.yellow.lighten-5 {
    background-color: #fffde7 !important;
}

.yellow-text.text-lighten-5 {
    color: #fffde7 !important;
}

.yellow.lighten-4,
.mean-container-light .yellow.mean-bar,
.mean-container-light .yellow.mean-nav {
    background-color: #fff9c4 !important;
}

.yellow-text.text-lighten-4 {
    color: #fff9c4 !important;
}

.yellow.lighten-3 {
    background-color: #fff59d !important;
}

.yellow-text.text-lighten-3 {
    color: #fff59d !important;
}

.yellow.lighten-2 {
    background-color: #fff176 !important;
}

.yellow-text.text-lighten-2 {
    color: #fff176 !important;
}

.yellow.lighten-1 {
    background-color: #ffee58 !important;
}

.yellow-text.text-lighten-1 {
    color: #ffee58 !important;
}

.yellow.darken-1 {
    background-color: #fdd835 !important;
}

.yellow-text.text-darken-1 {
    color: #fdd835 !important;
}

.yellow.darken-2 {
    background-color: #fbc02d !important;
}

.yellow-text.text-darken-2 {
    color: #fbc02d !important;
}

.yellow.darken-3 {
    background-color: #f9a825 !important;
}

.yellow-text.text-darken-3 {
    color: #f9a825 !important;
}

.yellow.darken-4,
.magicnav--dark ul ul.yellow {
    background-color: #f57f17 !important;
}

.yellow-text.text-darken-4 {
    color: #f57f17 !important;
}

.yellow.accent-1 {
    background-color: #ffff8d !important;
}

.yellow-text.text-accent-1 {
    color: #ffff8d !important;
}

.yellow.accent-2 {
    background-color: #ffff00 !important;
}

.yellow-text.text-accent-2 {
    color: #ffff00 !important;
}

.yellow.accent-3 {
    background-color: #ffea00 !important;
}

.yellow-text.text-accent-3 {
    color: #ffea00 !important;
}

.yellow.accent-4 {
    background-color: #ffd600 !important;
}

.yellow-text.text-accent-4 {
    color: #ffd600 !important;
}

.amber {
    background-color: #ffc107 !important;
}

.amber-text {
    color: #ffc107 !important;
}

.amber.lighten-5 {
    background-color: #fff8e1 !important;
}

.amber-text.text-lighten-5 {
    color: #fff8e1 !important;
}

.amber.lighten-4,
.mean-container-light .amber.mean-bar,
.mean-container-light .amber.mean-nav {
    background-color: #ffecb3 !important;
}

.amber-text.text-lighten-4 {
    color: #ffecb3 !important;
}

.amber.lighten-3 {
    background-color: #ffe082 !important;
}

.amber-text.text-lighten-3 {
    color: #ffe082 !important;
}

.amber.lighten-2 {
    background-color: #ffd54f !important;
}

.amber-text.text-lighten-2 {
    color: #ffd54f !important;
}

.amber.lighten-1 {
    background-color: #ffca28 !important;
}

.amber-text.text-lighten-1 {
    color: #ffca28 !important;
}

.amber.darken-1 {
    background-color: #ffb300 !important;
}

.amber-text.text-darken-1 {
    color: #ffb300 !important;
}

.amber.darken-2 {
    background-color: #ffa000 !important;
}

.amber-text.text-darken-2 {
    color: #ffa000 !important;
}

.amber.darken-3 {
    background-color: #ff8f00 !important;
}

.amber-text.text-darken-3 {
    color: #ff8f00 !important;
}

.amber.darken-4,
.magicnav--dark ul ul.amber {
    background-color: #ff6f00 !important;
}

.amber-text.text-darken-4 {
    color: #ff6f00 !important;
}

.amber.accent-1 {
    background-color: #ffe57f !important;
}

.amber-text.text-accent-1 {
    color: #ffe57f !important;
}

.amber.accent-2 {
    background-color: #ffd740 !important;
}

.amber-text.text-accent-2 {
    color: #ffd740 !important;
}

.amber.accent-3 {
    background-color: #ffc400 !important;
}

.amber-text.text-accent-3 {
    color: #ffc400 !important;
}

.amber.accent-4 {
    background-color: #ffab00 !important;
}

.amber-text.text-accent-4 {
    color: #ffab00 !important;
}

.orange {
    background-color: #ff9800 !important;
}

.orange-text {
    color: #ff9800 !important;
}

.orange.lighten-5 {
    background-color: #fff3e0 !important;
}

.orange-text.text-lighten-5 {
    color: #fff3e0 !important;
}

.orange.lighten-4,
.mean-container-light .orange.mean-bar,
.mean-container-light .orange.mean-nav {
    background-color: #ffe0b2 !important;
}

.orange-text.text-lighten-4 {
    color: #ffe0b2 !important;
}

.orange.lighten-3 {
    background-color: #ffcc80 !important;
}

.orange-text.text-lighten-3 {
    color: #ffcc80 !important;
}

.orange.lighten-2 {
    background-color: #ffb74d !important;
}

.orange-text.text-lighten-2 {
    color: #ffb74d !important;
}

.orange.lighten-1 {
    background-color: #ffa726 !important;
}

.orange-text.text-lighten-1 {
    color: #ffa726 !important;
}

.orange.darken-1 {
    background-color: #fb8c00 !important;
}

.orange-text.text-darken-1 {
    color: #fb8c00 !important;
}

.orange.darken-2 {
    background-color: #f57c00 !important;
}

.orange-text.text-darken-2 {
    color: #f57c00 !important;
}

.orange.darken-3 {
    background-color: #ef6c00 !important;
}

.orange-text.text-darken-3 {
    color: #ef6c00 !important;
}

.orange.darken-4,
.magicnav--dark ul ul.orange {
    background-color: #e65100 !important;
}

.orange-text.text-darken-4 {
    color: #e65100 !important;
}

.orange.accent-1 {
    background-color: #ffd180 !important;
}

.orange-text.text-accent-1 {
    color: #ffd180 !important;
}

.orange.accent-2 {
    background-color: #ffab40 !important;
}

.orange-text.text-accent-2 {
    color: #ffab40 !important;
}

.orange.accent-3 {
    background-color: #ff9100 !important;
}

.orange-text.text-accent-3 {
    color: #ff9100 !important;
}

.orange.accent-4 {
    background-color: #ff6d00 !important;
}

.orange-text.text-accent-4 {
    color: #ff6d00 !important;
}

.deep-orange {
    background-color: #ff5722 !important;
}

.deep-orange-text {
    color: #ff5722 !important;
}

.deep-orange.lighten-5 {
    background-color: #fbe9e7 !important;
}

.deep-orange-text.text-lighten-5 {
    color: #fbe9e7 !important;
}

.deep-orange.lighten-4,
.mean-container-light .deep-orange.mean-bar,
.mean-container-light .deep-orange.mean-nav {
    background-color: #ffccbc !important;
}

.deep-orange-text.text-lighten-4 {
    color: #ffccbc !important;
}

.deep-orange.lighten-3 {
    background-color: #ffab91 !important;
}

.deep-orange-text.text-lighten-3 {
    color: #ffab91 !important;
}

.deep-orange.lighten-2 {
    background-color: #ff8a65 !important;
}

.deep-orange-text.text-lighten-2 {
    color: #ff8a65 !important;
}

.deep-orange.lighten-1 {
    background-color: #ff7043 !important;
}

.deep-orange-text.text-lighten-1 {
    color: #ff7043 !important;
}

.deep-orange.darken-1 {
    background-color: #f4511e !important;
}

.deep-orange-text.text-darken-1 {
    color: #f4511e !important;
}

.deep-orange.darken-2 {
    background-color: #e64a19 !important;
}

.deep-orange-text.text-darken-2 {
    color: #e64a19 !important;
}

.deep-orange.darken-3 {
    background-color: #d84315 !important;
}

.deep-orange-text.text-darken-3 {
    color: #d84315 !important;
}

.deep-orange.darken-4,
.magicnav--dark ul ul.deep-orange {
    background-color: #bf360c !important;
}

.deep-orange-text.text-darken-4 {
    color: #bf360c !important;
}

.deep-orange.accent-1 {
    background-color: #ff9e80 !important;
}

.deep-orange-text.text-accent-1 {
    color: #ff9e80 !important;
}

.deep-orange.accent-2 {
    background-color: #ff6e40 !important;
}

.deep-orange-text.text-accent-2 {
    color: #ff6e40 !important;
}

.deep-orange.accent-3 {
    background-color: #ff3d00 !important;
}

.deep-orange-text.text-accent-3 {
    color: #ff3d00 !important;
}

.deep-orange.accent-4 {
    background-color: #dd2c00 !important;
}

.deep-orange-text.text-accent-4 {
    color: #dd2c00 !important;
}

.brown {
    background-color: #795548 !important;
}

.brown-text {
    color: #795548 !important;
}

.brown.lighten-5 {
    background-color: #efebe9 !important;
}

.brown-text.text-lighten-5 {
    color: #efebe9 !important;
}

.brown.lighten-4,
.mean-container-light .brown.mean-bar,
.mean-container-light .brown.mean-nav {
    background-color: #d7ccc8 !important;
}

.brown-text.text-lighten-4 {
    color: #d7ccc8 !important;
}

.brown.lighten-3 {
    background-color: #bcaaa4 !important;
}

.brown-text.text-lighten-3 {
    color: #bcaaa4 !important;
}

.brown.lighten-2 {
    background-color: #a1887f !important;
}

.brown-text.text-lighten-2 {
    color: #a1887f !important;
}

.brown.lighten-1 {
    background-color: #8d6e63 !important;
}

.brown-text.text-lighten-1 {
    color: #8d6e63 !important;
}

.brown.darken-1 {
    background-color: #6d4c41 !important;
}

.brown-text.text-darken-1 {
    color: #6d4c41 !important;
}

.brown.darken-2 {
    background-color: #5d4037 !important;
}

.brown-text.text-darken-2 {
    color: #5d4037 !important;
}

.brown.darken-3 {
    background-color: #4e342e !important;
}

.brown-text.text-darken-3 {
    color: #4e342e !important;
}

.brown.darken-4,
.magicnav--dark ul ul.brown {
    background-color: #3e2723 !important;
}

.brown-text.text-darken-4 {
    color: #3e2723 !important;
}

.brown.accent-1 {
    background-color: #9f9475 !important;
}

.brown-text.text-accent-1 {
    color: #9f9475 !important;
}

.blue-grey,
.mean-container-light .mean-bar,
.mean-container-light .mean-nav,
.magicnav--dark ul ul {
    background-color: #607d8b !important;
}

.blue-grey-text {
    color: #607d8b !important;
}

.blue-grey.lighten-5,
.mean-container-light .lighten-5.mean-bar,
.mean-container-light .lighten-5.mean-nav,
.magicnav--dark ul ul.lighten-5 {
    background-color: #eceff1 !important;
}

.blue-grey-text.text-lighten-5 {
    color: #eceff1 !important;
}

.blue-grey.lighten-4,
.mean-container-light .mean-bar,
.mean-container-light .mean-nav,
.magicnav--dark ul ul.lighten-4 {
    background-color: #cfd8dc !important;
}

.blue-grey-text.text-lighten-4 {
    color: #cfd8dc !important;
}

.blue-grey.lighten-3,
.mean-container-light .lighten-3.mean-bar,
.mean-container-light .lighten-3.mean-nav,
.magicnav--dark ul ul.lighten-3 {
    background-color: #b0bec5 !important;
}

.blue-grey-text.text-lighten-3 {
    color: #b0bec5 !important;
}

.blue-grey.lighten-2,
.mean-container-light .lighten-2.mean-bar,
.mean-container-light .lighten-2.mean-nav,
.magicnav--dark ul ul.lighten-2 {
    background-color: #90a4ae !important;
}

.blue-grey-text.text-lighten-2 {
    color: #90a4ae !important;
}

.blue-grey.lighten-1,
.mean-container-light .lighten-1.mean-bar,
.mean-container-light .lighten-1.mean-nav,
.magicnav--dark ul ul.lighten-1 {
    background-color: #78909c !important;
}

.blue-grey-text.text-lighten-1 {
    color: #78909c !important;
}

.blue-grey.darken-1,
.mean-container-light .darken-1.mean-bar,
.mean-container-light .darken-1.mean-nav,
.magicnav--dark ul ul.darken-1 {
    background-color: #546e7a !important;
}

.blue-grey-text.text-darken-1 {
    color: #546e7a !important;
}

.blue-grey.darken-2,
.mean-container-light .darken-2.mean-bar,
.mean-container-light .darken-2.mean-nav,
.magicnav--dark ul ul.darken-2 {
    background-color: #455a64 !important;
}

.blue-grey-text.text-darken-2 {
    color: #455a64 !important;
}

.blue-grey.darken-3,
.mean-container-light .darken-3.mean-bar,
.mean-container-light .darken-3.mean-nav,
.magicnav--dark ul ul.darken-3 {
    background-color: #37474f !important;
}

.blue-grey-text.text-darken-3 {
    color: #37474f !important;
}

.blue-grey.darken-4,
.mean-container-light .darken-4.mean-bar,
.mean-container-light .magicnav--dark ul ul.mean-bar,
.magicnav--dark ul .mean-container-light ul.mean-bar,
.mean-container-light .darken-4.mean-nav,
.mean-container-light .magicnav--dark ul ul.mean-nav,
.magicnav--dark ul .mean-container-light ul.mean-nav,
.magicnav--dark ul ul {
    background-color: #263238 !important;
}

.blue-grey-text.text-darken-4 {
    color: #263238 !important;
}

.grey {
    background-color: #9e9e9e !important;
}

.grey-text {
    color: #9e9e9e !important;
}

.grey.lighten-5 {
    background-color: #fafafa !important;
}

.grey-text.text-lighten-5 {
    color: #fafafa !important;
}

.grey.lighten-4,
.mean-container-light .grey.mean-bar,
.mean-container-light .grey.mean-nav {
    background-color: #f5f5f5 !important;
}

.grey-text.text-lighten-4 {
    color: #f5f5f5 !important;
}

.grey.lighten-3 {
    background-color: #eeeeee !important;
}

.grey-text.text-lighten-3 {
    color: #eeeeee !important;
}

.grey.lighten-2 {
    background-color: #e0e0e0 !important;
}

.grey-text.text-lighten-2 {
    color: #e0e0e0 !important;
}

.grey.lighten-1 {
    background-color: #bdbdbd !important;
}

.grey-text.text-lighten-1 {
    color: #bdbdbd !important;
}

.grey.darken-1 {
    background-color: #757575 !important;
}

.grey-text.text-darken-1 {
    color: #757575 !important;
}

.grey.darken-2 {
    background-color: #616161 !important;
}

.grey-text.text-darken-2 {
    color: #616161 !important;
}

.grey.darken-3 {
    background-color: #424242 !important;
}

.grey-text.text-darken-3 {
    color: #424242 !important;
}

.grey.darken-4,
.magicnav--dark ul ul.grey {
    background-color: #212121 !important;
}

.grey-text.text-darken-4 {
    color: #212121 !important;
}

.shades.black {
    background-color: #000000 !important;
}

.shades-text.text-black {
    color: #000000 !important;
}

.shades.white {
    background-color: #FFFFFF !important;
}

.shades-text.text-white {
    color: #FFFFFF !important;
}

.shades.transparent {
    background-color: transparent !important;
}

.shades-text.text-transparent {
    color: transparent !important;
}

.black {
    background-color: #000000 !important;
}

.black-text {
    color: #000000 !important;
}

.white {
    background-color: #FFFFFF !important;
}

.white-text {
    color: #FFFFFF !important;
}

.transparent {
    background-color: transparent !important;
}

.transparent-text {
    color: transparent !important;
}

/*Typography*/
.sitemap-if-dark-title {
    border-bottom: 1px solid #263238;
    display: block;
    font-size: 1.075 1.3354691406rem;
    line-height: 2.25;
    text-decoration: none;
}

.sitemap-if-dark-title {
    font-size: 16.149859375px;
}

@media screen and (min-width: 600px) {
    .sitemap-if-dark-title {
        font-size: calc(16.149859375px + 2.35990625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .sitemap-if-dark-title {
        font-size: 18.509765625px;
    }
}

.sitemap-if-dark a {
    border-bottom: 1px solid #263238;
    display: block;
    font-size: 1.075 1.3354691406rem;
    line-height: 2.25;
    text-decoration: none;
}

.sitemap-if-dark a {
    font-size: 16.149859375px;
}

@media screen and (min-width: 600px) {
    .sitemap-if-dark a {
        font-size: calc(16.149859375px + 2.35990625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .sitemap-if-dark a {
        font-size: 18.509765625px;
    }
}

.sitemap-if-dark a {
    color: #b0bec5;
}

.sitemap-if-dark a:visited {
    color: #546e7a;
}

.sitemap-if-dark a:hover {
    color: #ffc107;
}

.sitemap-if-dark a:active,
.sitemap-if-dark a:focus {
    color: teal;
}

.sitemap-if-dark a:hover {
    text-decoration: underline;
}

.sitemap-if-dark .fa-ul {
    padding-left: 0px !important;
    margin-left: 0px !important;
}

.sitemap-if-dark .fa-ul a {
    border-bottom: none;
    display: block;
    font-size: 1.075 1.3354691406rem;
    line-height: 2.25;
    text-decoration: none;
}

.sitemap-if-dark .fa-ul a {
    font-size: 16.149859375px;
}

@media screen and (min-width: 600px) {
    .sitemap-if-dark .fa-ul a {
        font-size: calc(16.149859375px + 2.35990625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .sitemap-if-dark .fa-ul a {
        font-size: 18.509765625px;
    }
}

.sitemap-if-dark .fa-ul a {
    color: #b0bec5;
}

.sitemap-if-dark .fa-ul a:visited {
    color: #546e7a;
}

.sitemap-if-dark .fa-ul a:hover {
    color: #ffc107;
}

.sitemap-if-dark .fa-ul a:active,
.sitemap-if-dark .fa-ul a:focus {
    color: teal;
}

.sitemap-if-dark .fa-ul a:hover {
    text-decoration: none;
}

.sitemap-if-light-title {
    border-bottom: 1px solid #263238;
    display: block;
    font-size: 1.075 1.3354691406rem;
    line-height: 2.25;
    text-decoration: none;
}

.sitemap-if-light-title {
    font-size: 16.149859375px;
}

@media screen and (min-width: 600px) {
    .sitemap-if-light-title {
        font-size: calc(16.149859375px + 2.35990625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .sitemap-if-light-title {
        font-size: 18.509765625px;
    }
}

.sitemap-if-light a {
    border-bottom: 1px solid #263238;
    display: block;
    font-size: 1.075 1.3354691406rem;
    line-height: 2.25;
    text-decoration: none;
}

.sitemap-if-light a {
    font-size: 16.149859375px;
}

@media screen and (min-width: 600px) {
    .sitemap-if-light a {
        font-size: calc(16.149859375px + 2.35990625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .sitemap-if-light a {
        font-size: 18.509765625px;
    }
}

.sitemap-if-light a {
    color: #546e7a;
}

.sitemap-if-light a:visited {
    color: #546e7a;
}

.sitemap-if-light a:hover {
    color: #388E3C;
}

.sitemap-if-light a:active,
.sitemap-if-light a:focus {
    color: #ef6c00;
}

.sitemap-if-light a:hover {
    text-decoration: underline;
}

.sitemap-if-light .fa-ul {
    padding-left: 0px !important;
    margin-left: 0px !important;
}

.sitemap-if-light .fa-ul a {
    border-bottom: none;
    display: block;
    font-size: 1.075 1.3354691406rem;
    line-height: 2.25;
    text-decoration: none;
}

.sitemap-if-light .fa-ul a {
    font-size: 16.149859375px;
}

@media screen and (min-width: 600px) {
    .sitemap-if-light .fa-ul a {
        font-size: calc(16.149859375px + 2.35990625 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .sitemap-if-light .fa-ul a {
        font-size: 18.509765625px;
    }
}

.sitemap-if-light .fa-ul a {
    color: #546e7a;
}

.sitemap-if-light .fa-ul a:visited {
    color: #546e7a;
}

.sitemap-if-light .fa-ul a:hover {
    color: #388E3C;
}

.sitemap-if-light .fa-ul a:active,
.sitemap-if-light .fa-ul a:focus {
    color: #ef6c00;
}

.sitemap-if-light .fa-ul a:hover {
    text-decoration: none;
}

/*Shadow*/
/*************************************************************************************
Filename: shadows.scss
Description: It is google material design 
**************************************************************************************/
/* Z-levels - Shadow */
.z-depth-0 {
    box-shadow: none !important;
}

.z-depth-1 {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.z-depth-1-half {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.z-depth-2 {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-3 {
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-4 {
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.z-depth-5 {
    box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

/* A Text Shadow*/
.z-text-depth-1,
.hero-section .hero-section-text {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 9px rgba(0, 0, 0, 0.12);
}

.z-text-depth-1-half {
    text-shadow: 0 5px 11px rgba(0, 0, 0, 0.18), 0 4px 15px rgba(0, 0, 0, 0.15);
}

/*Form*/
/*************************************************************************************
Filename: _forms.scss
Verion 1.0
Description: https://codepen.io/Kimmich-DigitalMedia/pen/GWVJjZ
/**************************************************************************************/
fieldset {
    margin: 0 0 3rem;
    padding: 0;
    border: none;
}

.form-radio,
.form-group {
    position: relative;
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
}

.form-inline > .form-group,
.form-inline > .btn {
    display: inline-block;
    margin-bottom: 0;
}

.form-help {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    color: #b3b2b2;
    font-size: 0.8rem;
}

.checkbox .form-help,
.form-radio .form-help,
.form-group .form-help {
    position: absolute;
    width: 100%;
}

.checkbox .form-help {
    position: relative;
    margin-bottom: 1rem;
}

.form-radio .form-help {
    padding-top: 0.25rem;
    margin-top: -1rem;
}

.form-group input {
    height: 1.9rem;
    color: white;
}

.form-group textarea {
    resize: none;
}

.form-group select {
    width: 100%;
    font-size: 1rem;
    height: 1.6rem;
    padding: 0.125rem 0.125rem 0.0625rem;
    margin-top: 20px;
    background: none;
    border: none;
    line-height: 1.6;
    box-shadow: none;
}

.form-group .control-label {
    position: absolute;
    top: 0.25rem;
    pointer-events: none;
    padding-left: 0.125rem;
    z-index: 1;
    color: #b3b2b2;
    font-size: 1rem;
    font-weight: normal;
    transition: all 0.28s ease;
}

.form-group .bar {
    position: relative;
    border-bottom: 0.0625rem solid #999;
    display: block;
}

.form-group .bar::before {
    content: '';
    height: 0.125rem;
    width: 0;
    left: 50%;
    bottom: -0.0625rem;
    position: absolute;
    background: #e65100;
    transition: left 0.28s ease, width 0.28s ease;
    z-index: 2;
}

.form-group input,
.form-group textarea {
    display: block;
    background: none;
    padding: 0.125rem 0.125rem 0.0625rem;
    font-size: 1rem;
    border-width: 0;
    border-color: transparent;
    line-height: 1.9;
    width: 100%;
    color: transparent;
    transition: all 0.28s ease;
    box-shadow: none;
}

.form-group input[type="file"] {
    line-height: 1;
}

.form-group input[type="file"] ~ .bar {
    display: none;
}

.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
    color: #333;
}

.form-group select ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group input:valid ~ .control-label,
.form-group input.form-file ~ .control-label,
.form-group input.has-value ~ .control-label,
.form-group textarea:focus ~ .control-label,
.form-group textarea:valid ~ .control-label,
.form-group textarea.form-file ~ .control-label,
.form-group textarea.has-value ~ .control-label {
    font-size: 0.8rem;
    color: #807f7f;
    top: -1rem;
    left: 0;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-group select:focus ~ .control-label,
.form-group input:focus ~ .control-label,
.form-group textarea:focus ~ .control-label {
    color: #e65100;
}

.form-group select:focus ~ .bar::before,
.form-group input:focus ~ .bar::before,
.form-group textarea:focus ~ .bar::before {
    width: 100%;
    left: 0;
}

.checkbox label,
.form-radio label {
    position: relative;
    cursor: pointer;
    padding-left: 2rem;
    text-align: left;
    color: #333;
    display: block;
}

.checkbox input,
.form-radio input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}

.radio {
    margin-bottom: 1rem;
}

.radio .helper {
    position: absolute;
    top: -0.25rem;
    left: -0.25rem;
    cursor: pointer;
    display: block;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #999;
}

.radio .helper::before,
.radio .helper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 0.25rem;
    width: 1rem;
    height: 1rem;
    transition: -webkit-transform 0.28s ease;
    transition: transform 0.28s ease;
    transition: transform 0.28s ease, -webkit-transform 0.28s ease;
    border-radius: 50%;
    border: 0.125rem solid currentColor;
}

.radio .helper::after {
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: #e65100;
    border-color: #e65100;
}

.radio label:hover .helper {
    color: #e65100;
}

.radio input:checked ~ .helper::after {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}

.radio input:checked ~ .helper::before {
    color: #e65100;
}

.checkbox {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.checkbox .helper {
    color: #999;
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    z-index: 0;
    border: 0.125rem solid currentColor;
    border-radius: 0.0625rem;
    transition: border-color 0.28s ease;
}

.checkbox .helper::before,
.checkbox .helper::after {
    position: absolute;
    height: 0;
    width: 0.2rem;
    background-color: #e65100;
    display: block;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 0.25rem;
    content: '';
    transition: opacity 0.28s ease, height 0s linear 0.28s;
    opacity: 0;
}

.checkbox .helper::before {
    top: 0.65rem;
    left: 0.38rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    box-shadow: 0 0 0 0.0625rem #fff;
}

.checkbox .helper::after {
    top: 0.3rem;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox label:hover .helper {
    color: #e65100;
}

.checkbox input:checked ~ .helper {
    color: #e65100;
}

.checkbox input:checked ~ .helper::after,
.checkbox input:checked ~ .helper::before {
    opacity: 1;
    transition: height 0.28s ease;
}

.checkbox input:checked ~ .helper::after {
    height: 0.5rem;
}

.checkbox input:checked ~ .helper::before {
    height: 1.2rem;
    transition-delay: 0.28s;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: 1rem;
}

.has-error .legend.legend,
.has-error.form-group .control-label.control-label {
    color: #d9534f;
}

.has-error.form-group .form-help,
.has-error.form-group .helper,
.has-error.checkbox .form-help,
.has-error.checkbox .helper,
.has-error.radio .form-help,
.has-error.radio .helper,
.has-error.form-radio .form-help,
.has-error.form-radio .helper {
    color: #d9534f;
}

.has-error .bar::before {
    background: #d9534f;
    left: 0;
    width: 100%;
}

.tmg--btn_submit {
    background: currentColor;
    border: 1px solid currentColor;
    border-radius: 4px;
    color: #ff6b1a;
    cursor: pointer;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 12.5px;
    margin-bottom: 12.5px;
    transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.tmg--btn_submit span {
    color: #fff;
    text-transform: uppercase;
    z-index: 1;
}

.tmg--btn_submit::before {
    content: '';
    position: absolute;
    background: #1a0900;
    border: 50vh solid #802d00;
    width: 30vh;
    height: 30vh;
    border-radius: 50%;
    display: block;
    top: 50%;
    left: 50%;
    z-index: 0;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}

.tmg--btn_submit:hover {
    color: #e65100;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.tmg--btn_submit:active::before,
.tmg--btn_submit:focus::before {
    transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
    transition: transform 1.12s ease, opacity 0.28s ease 0.364s;
    transition: transform 1.12s ease, opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.tmg--btn_submit:focus {
    outline: none;
}

.form-asterisk {
    color: orange;
}

.button {
    position: relative;
    background: currentColor;
    border: 1px solid currentColor;
    font-size: 1.1rem;
    color: #e65100;
    padding: 0.75rem 3rem;
    cursor: pointer;
    transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.button span {
    color: #fff;
    position: relative;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    background: #071017;
    border: 50vh solid #1d4567;
    width: 30vh;
    height: 30vh;
    border-radius: 50%;
    display: block;
    top: 50%;
    left: 50%;
    z-index: 0;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}

.button:hover {
    color: #337ab7;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.button:active::before,
.button:focus::before {
    transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
    transition: transform 1.12s ease, opacity 0.28s ease 0.364s;
    transition: transform 1.12s ease, opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.button:focus {
    outline: none;
}

/*Parallax*/
.hero-section,
.hero-section-inner {
    background-size: cover;
    height: 66vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-section-text {
    color: #fefefe;
}

/*Navigation*/
/* ------------------------------------------
  Back to top
--------------------------------------------- */
.back-to-top {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    cursor: pointer;
    opacity: 0;
    border-radius: 3px;
    -webkit-transform: translateZ(0);
    transition: all .4s;
}

.back-to-top .fa {
    vertical-align: middle;
}

.back-to-top:hover {
    background-color: #e51c23;
    color: #fff;
    opacity: 1;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}

/*************************************************************************************
Filename: _magicmenu.scss
Description: We put all the menu-stuff together.
Version: 1.0
Author: Kimmich DigitalMedia 2018
**************************************************************************************/
/*Meanmenu*/
/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */
/* hide the link until viewport size is reached */
a.meanmenu-reveal {
    display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: fixed;
    background-color: #263238;
    padding-top: 18px;
    min-height: 42px;
    z-index: 999999;
    font-weight: 700;
}

.mean-container a.meanmenu-reveal {
    width: 20px;
    height: 20px;
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #fff;
    height: 3px;
    margin-top: 3px;
}

.mean-container .mean-nav {
    float: left;
    width: 100%;
    background-color: #263238;
    margin-top: 44px;
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 1.5em 5%;
    margin: 0;
    text-align: left;
    color: #fff;
    border-top: 1px solid #383838;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.mean-container .mean-nav ul li li a {
    width: 80%;
    padding: 1.5em 10%;
    border-top: 1px solid #f1f1f1;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.75;
    filter: alpha(opacity=75);
    text-shadow: none !important;
    visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: none;
    margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 1.5em 15%;
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 1.5em 20%;
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1.5em 25%;
}

.mean-container .mean-nav ul li a:hover {
    background: #252525;
    background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 1px;
    width: 36px;
    padding: 12px !important;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border: none !important;
    border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: rgba(0, 0, 0, 0.9);
}

.mean-container .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar,
.mean-container .mean-bar * {
    box-sizing: content-box;
}

.mean-remove {
    display: none !important;
}

.mean-container .mean-nav ul li.current {
    background-color: #0c1923;
}

/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */
/* hide the link until viewport size is reached */
a.meanmenu-reveal {
    display: none;
}

/* when under viewport size, .mean-container-light-light is added to body */
.mean-container-light .mean-bar {
    float: left;
    width: 100%;
    position: fixed;
    padding-top: 18px;
    min-height: 42px;
    z-index: 999999;
    font-weight: 700;
}

/* THEME DEV Styles for Menu Close */
.mean-container-light a.meanmenu-reveal {
    width: 20px;
    height: 20px;
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
}

/* THEME DEV Styles for Menu Hamburger */
.mean-container-light a.meanmenu-reveal span {
    display: block;
    background: #fff;
    height: 3px;
    margin-top: 3px;
}

.mean-container-light .mean-nav {
    float: left;
    width: 100%;
    margin-top: 44px;
}

.mean-container-light .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
}

.mean-container-light .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
}

/* THEME DEV StylesS tyles for Menu Text */
.mean-container-light .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 1.5em 5%;
    margin: 0;
    text-align: left;
    color: #fff;
    border-top: 1px solid #383838;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.mean-container-light .mean-nav ul li li a {
    width: 80%;
    padding: 1.5em 10%;
    border-top: 1px solid #f1f1f1;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.75;
    filter: alpha(opacity=75);
    text-shadow: none !important;
    visibility: visible;
}

.mean-container-light .mean-nav ul li.mean-last a {
    border-bottom: none;
    margin-bottom: 0;
}

.mean-container-light .mean-nav ul li li li a {
    width: 70%;
    padding: 1.5em 15%;
}

.mean-container-light .mean-nav ul li li li li a {
    width: 60%;
    padding: 1.5em 20%;
}

.mean-container-light .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1.5em 25%;
}

.mean-container-light .mean-nav ul li a:hover {
    background: #252525;
    background: rgba(255, 255, 255, 0.1);
}

.mean-container-light .mean-nav ul li a.mean-expand {
    margin-top: 1px;
    width: 36px;
    padding: 12px !important;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border: none !important;
    border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.mean-container-light .mean-nav ul li a.mean-expand:hover {
    background: rgba(0, 0, 0, 0.9);
}

.mean-container-light .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container-light .mean-bar,
.mean-container-light .mean-bar * {
    box-sizing: content-box;
}

.mean-remove {
    display: none !important;
}

.mean-container-light .mean-nav ul li.current {
    background-color: #0c1923;
}

/*Themes*/
/* #######################################################################

	0.1d Plugin - MagicNav (based on Superfish)
    This one should be seen as the desktop menu.
    It has been specialized as a basic dark theme.

####################################################################### */
.magicnav--dark {
    background-color: #263238;
    text-align: center;
    z-index: 9999;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.025 1.1038128906rem;
}

.magicnav--dark {
    font-size: 13.999578125px;
}

@media screen and (min-width: 600px) {
    .magicnav--dark {
        font-size: calc(13.999578125px + 2.15028125 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .magicnav--dark {
        font-size: 16.149859375px;
    }
}

.magicnav--dark ul {
    list-style-type: none;
    cursor: pointer;
}

.magicnav--dark ul li {
    display: inline;
}

.magicnav--dark ul li a {
    padding: 20px;
    color: #fff;
}

.magicnav--dark ul li a:hover {
    color: #fff;
}

.magicnav--dark ul li a:active {
    color: #fff;
}

.magicnav--dark ul li:first-child {
    margin-left: 0;
}

.magicnav--dark ul li ul {
    display: none;
}

a,
a:hover {
    transition: color 0.25s ease-in;
}

.magicnav--dark ul ul {
    position: absolute;
    top: -999em;
    text-align: left;
    z-index: 3;
    margin-top: 62px;
}

.magicnav--dark ul ul ul {
    margin-top: 4px;
}

.magicnav--dark ul ul li {
    width: 100%;
    float: left;
    display: block;
    line-height: 1em;
}

.magicnav--dark ul li:hover {
    visibility: inherit;
    background: rgba(255, 255, 255, 0.1);
}

.magicnav--dark ul li,
.magicnav--dark ul a {
    position: relative;
    text-decoration: none;
}

/*Position of the dropdown container*/
.magicnav--dark ul li:hover ul,
.magicnav--dark li.sfHover ul {
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
}

.magicnav--dark ul li:hover ul li ul,
.magicnav--dark ul li.sfHover ul li ul {
    left: 13em;
}

.magicnav--dark ul li:hover ul ul {
    left: 12em;
}

.magicnav--dark ul li:hover li ul,
.magicnav--dark ul li.sfHover li ul {
    top: -999em;
}

.magicnav--dark ul li li:hover ul,
.magicnav--dark ul li li.sfHover ul {
    left: 7em;
    top: 0;
}

.magicnav--dark ul li li:hover li ul,
.magicnav--dark ul li li.sfHover li ul {
    top: -999em;
}

.magicnav--dark li.sfHover a {
    text-decoration: none;
}

.magicnav--dark ul ul li a,
.magicnav--dark li.sfHover li a {
    text-decoration: none;
    background: none;
}

.magicnav--dark ul li ul li a {
    text-decoration: none;
    display: block;
    float: left;
    width: 100%;
    background: none;
    border-bottom: none;
}

.magicnav--dark ul ul li:first-child a {
    border-top: none;
}

.magicnav--dark ul ul a:hover {
    text-decoration: none;
}

.sf-with-ul,
.sf-li {
    display: block;
    width: 100%;
}

nav ul li.current {
    background-color: inherit;
}

.nav-active {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 56.25em) {
    .nav-active {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

.sf-arrows .sf-with-ul {
    padding-right: 2.5em;
}

.sf-arrows .sf-with-ul:after {
    visibility: hidden;
}

@media screen and (min-width: 900px) {
    .sf-arrows .sf-with-ul:after {
        content: '';
        visibility: visible;
        position: absolute;
        top: 50%;
        right: 1em;
        margin-top: -3px;
        height: 0;
        width: 0;
        border: 5px solid transparent;
        border-top-color: #dFeEFF;
        border-top-color: rgba(255, 255, 255, 0.5);
    }
}

.sf-arrows > .sfHover > .sf-with-ul:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > li > .sf-with-ul:focus:after {
    border-top-color: #fff;
}

.sf-arrows ul .sf-with-ul:after {
    margin-top: -5px;
    margin-right: -3px;
    border-color: transparent transparent transparent #dFeEFF;
    border-left-color: rgba(255, 255, 255, 0.5);
}

.sf-arrows ul .sfHover > .sf-with-ul:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul li > .sf-with-ul:focus:after {
    border-left-color: #fff;
}

.tmg--nav {
    display: block;
    width: 100%;
}

/* #######################################################################

	0.1l Plugin - MagicNav (based on Superfish)
    This one should be seen as the desktop menu.
    It has been specialized as a basic light theme.

####################################################################### */
.magicnav--light {
    background-color: #ffffff;
    text-align: center;
    z-index: 9999;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.025 1.1038128906rem;
}

.magicnav--light {
    font-size: 13.999578125px;
}

@media screen and (min-width: 600px) {
    .magicnav--light {
        font-size: calc(13.999578125px + 2.15028125 * ((100vw - 600px) / 1000));
    }
}

@media screen and (min-width: 1600px) {
    .magicnav--light {
        font-size: 16.149859375px;
    }
}

.magicnav--light ul {
    list-style-type: none;
    cursor: pointer;
}

.magicnav--light ul li {
    display: inline;
}

.magicnav--light ul li a {
    padding: 20px;
    color: #263238;
}

.magicnav--light ul li a:hover {
    color: #263238;
}

.magicnav--light ul li a:active {
    color: #263238;
}

.magicnav--light ul li:first-child {
    margin-left: 0;
}

.magicnav--light ul li ul {
    display: none;
}

a,
a:hover {
    transition: color 0.25s ease-in;
}

.magicnav--light ul ul {
    position: absolute;
    top: -999em;
    text-align: left;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: 62px;
}

.magicnav--light ul ul ul {
    margin-top: 4px;
}

.magicnav--light ul ul li {
    width: 100%;
    float: left;
    display: block;
    line-height: 1em;
}

.magicnav--light ul li:hover {
    visibility: inherit;
    background: rgba(0, 0, 0, 0.05);
}

.magicnav--light ul li,
.magicnav--light ul a {
    position: relative;
    text-decoration: none;
}

/*Position of the dropdown container*/
.magicnav--light ul li:hover ul,
.magicnav--light li.sfHover ul {
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
}

.magicnav--light ul li:hover ul li ul,
.magicnav--light ul li.sfHover ul li ul {
    left: 13em;
}

.magicnav--light ul li:hover ul ul {
    left: 12em;
}

.magicnav--light ul li:hover li ul,
.magicnav--light ul li.sfHover li ul {
    top: -999em;
}

.magicnav--light ul li li:hover ul,
.magicnav--light ul li li.sfHover ul {
    left: 7em;
    top: 0;
}

.magicnav--light ul li li:hover li ul,
.magicnav--light ul li li.sfHover li ul {
    top: -999em;
}

.magicnav--light li.sfHover a {
    text-decoration: none;
}

.magicnav--light ul ul li a,
.magicnav--light li.sfHover li a {
    text-decoration: none;
    background: none;
}

.magicnav--light ul li ul li a {
    text-decoration: none;
    display: block;
    float: left;
    width: 100%;
    background: none;
    border-bottom: none;
}

.magicnav--light ul ul li:first-child a {
    border-top: none;
}

.magicnav--light ul ul a:hover {
    text-decoration: none;
}

.sf-with-ul,
.sf-li {
    display: block;
    width: 100%;
}

nav ul li.current {
    background-color: inherit;
}

.nav-active {
    background-color: rgba(127, 127, 127, 0.2);
}

@media (min-width: 56.25em) {
    .nav-active {
        background-color: rgba(127, 127, 127, 0.2);
    }
}

.sf-arrows .sf-with-ul {
    padding-right: 2.5em;
}

.sf-arrows .sf-with-ul:after {
    visibility: hidden;
}

@media screen and (min-width: 900px) {
    .sf-arrows .sf-with-ul:after {
        content: '';
        visibility: visible;
        position: absolute;
        top: 50%;
        right: 1em;
        margin-top: -3px;
        height: 0;
        width: 0;
        border: 5px solid transparent;
        border-top-color: #dFeEFF;
        border-top-color: rgba(255, 255, 255, 0.5);
    }
}

.sf-arrows > .sfHover > .sf-with-ul:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > li > .sf-with-ul:focus:after {
    border-top-color: #fff;
}

.sf-arrows ul .sf-with-ul:after {
    margin-top: -5px;
    margin-right: -3px;
    border-color: transparent transparent transparent #dFeEFF;
    border-left-color: rgba(255, 255, 255, 0.5);
}

.sf-arrows ul .sfHover > .sf-with-ul:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul li > .sf-with-ul:focus:after {
    border-left-color: #fff;
}

.tmg--nav {
    display: block;
    width: 100%;
}

/*Animate on speed*/
body[data-aos-duration='50'] [data-aos],
[data-aos][data-aos][data-aos-duration='50'] {
    transition-duration: 50ms;
}

body[data-aos-delay='50'] [data-aos],
[data-aos][data-aos][data-aos-delay='50'] {
    transition-delay: 0;
}

body[data-aos-delay='50'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='50'].aos-animate {
    transition-delay: 50ms;
}

body[data-aos-duration='100'] [data-aos],
[data-aos][data-aos][data-aos-duration='100'] {
    transition-duration: 100ms;
}

body[data-aos-delay='100'] [data-aos],
[data-aos][data-aos][data-aos-delay='100'] {
    transition-delay: 0;
}

body[data-aos-delay='100'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='100'].aos-animate {
    transition-delay: 100ms;
}

body[data-aos-duration='150'] [data-aos],
[data-aos][data-aos][data-aos-duration='150'] {
    transition-duration: 150ms;
}

body[data-aos-delay='150'] [data-aos],
[data-aos][data-aos][data-aos-delay='150'] {
    transition-delay: 0;
}

body[data-aos-delay='150'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='150'].aos-animate {
    transition-delay: 150ms;
}

body[data-aos-duration='200'] [data-aos],
[data-aos][data-aos][data-aos-duration='200'] {
    transition-duration: 200ms;
}

body[data-aos-delay='200'] [data-aos],
[data-aos][data-aos][data-aos-delay='200'] {
    transition-delay: 0;
}

body[data-aos-delay='200'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='200'].aos-animate {
    transition-delay: 200ms;
}

body[data-aos-duration='250'] [data-aos],
[data-aos][data-aos][data-aos-duration='250'] {
    transition-duration: 250ms;
}

body[data-aos-delay='250'] [data-aos],
[data-aos][data-aos][data-aos-delay='250'] {
    transition-delay: 0;
}

body[data-aos-delay='250'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='250'].aos-animate {
    transition-delay: 250ms;
}

body[data-aos-duration='300'] [data-aos],
[data-aos][data-aos][data-aos-duration='300'] {
    transition-duration: 300ms;
}

body[data-aos-delay='300'] [data-aos],
[data-aos][data-aos][data-aos-delay='300'] {
    transition-delay: 0;
}

body[data-aos-delay='300'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='300'].aos-animate {
    transition-delay: 300ms;
}

body[data-aos-duration='350'] [data-aos],
[data-aos][data-aos][data-aos-duration='350'] {
    transition-duration: 350ms;
}

body[data-aos-delay='350'] [data-aos],
[data-aos][data-aos][data-aos-delay='350'] {
    transition-delay: 0;
}

body[data-aos-delay='350'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='350'].aos-animate {
    transition-delay: 350ms;
}

body[data-aos-duration='400'] [data-aos],
[data-aos][data-aos][data-aos-duration='400'] {
    transition-duration: 400ms;
}

body[data-aos-delay='400'] [data-aos],
[data-aos][data-aos][data-aos-delay='400'] {
    transition-delay: 0;
}

body[data-aos-delay='400'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='400'].aos-animate {
    transition-delay: 400ms;
}

body[data-aos-duration='450'] [data-aos],
[data-aos][data-aos][data-aos-duration='450'] {
    transition-duration: 450ms;
}

body[data-aos-delay='450'] [data-aos],
[data-aos][data-aos][data-aos-delay='450'] {
    transition-delay: 0;
}

body[data-aos-delay='450'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='450'].aos-animate {
    transition-delay: 450ms;
}

body[data-aos-duration='500'] [data-aos],
[data-aos][data-aos][data-aos-duration='500'] {
    transition-duration: 500ms;
}

body[data-aos-delay='500'] [data-aos],
[data-aos][data-aos][data-aos-delay='500'] {
    transition-delay: 0;
}

body[data-aos-delay='500'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='500'].aos-animate {
    transition-delay: 500ms;
}

body[data-aos-duration='550'] [data-aos],
[data-aos][data-aos][data-aos-duration='550'] {
    transition-duration: 550ms;
}

body[data-aos-delay='550'] [data-aos],
[data-aos][data-aos][data-aos-delay='550'] {
    transition-delay: 0;
}

body[data-aos-delay='550'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='550'].aos-animate {
    transition-delay: 550ms;
}

body[data-aos-duration='600'] [data-aos],
[data-aos][data-aos][data-aos-duration='600'] {
    transition-duration: 600ms;
}

body[data-aos-delay='600'] [data-aos],
[data-aos][data-aos][data-aos-delay='600'] {
    transition-delay: 0;
}

body[data-aos-delay='600'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='600'].aos-animate {
    transition-delay: 600ms;
}

body[data-aos-duration='650'] [data-aos],
[data-aos][data-aos][data-aos-duration='650'] {
    transition-duration: 650ms;
}

body[data-aos-delay='650'] [data-aos],
[data-aos][data-aos][data-aos-delay='650'] {
    transition-delay: 0;
}

body[data-aos-delay='650'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='650'].aos-animate {
    transition-delay: 650ms;
}

body[data-aos-duration='700'] [data-aos],
[data-aos][data-aos][data-aos-duration='700'] {
    transition-duration: 700ms;
}

body[data-aos-delay='700'] [data-aos],
[data-aos][data-aos][data-aos-delay='700'] {
    transition-delay: 0;
}

body[data-aos-delay='700'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='700'].aos-animate {
    transition-delay: 700ms;
}

body[data-aos-duration='750'] [data-aos],
[data-aos][data-aos][data-aos-duration='750'] {
    transition-duration: 750ms;
}

body[data-aos-delay='750'] [data-aos],
[data-aos][data-aos][data-aos-delay='750'] {
    transition-delay: 0;
}

body[data-aos-delay='750'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='750'].aos-animate {
    transition-delay: 750ms;
}

body[data-aos-duration='800'] [data-aos],
[data-aos][data-aos][data-aos-duration='800'] {
    transition-duration: 800ms;
}

body[data-aos-delay='800'] [data-aos],
[data-aos][data-aos][data-aos-delay='800'] {
    transition-delay: 0;
}

body[data-aos-delay='800'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='800'].aos-animate {
    transition-delay: 800ms;
}

body[data-aos-duration='850'] [data-aos],
[data-aos][data-aos][data-aos-duration='850'] {
    transition-duration: 850ms;
}

body[data-aos-delay='850'] [data-aos],
[data-aos][data-aos][data-aos-delay='850'] {
    transition-delay: 0;
}

body[data-aos-delay='850'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='850'].aos-animate {
    transition-delay: 850ms;
}

body[data-aos-duration='900'] [data-aos],
[data-aos][data-aos][data-aos-duration='900'] {
    transition-duration: 900ms;
}

body[data-aos-delay='900'] [data-aos],
[data-aos][data-aos][data-aos-delay='900'] {
    transition-delay: 0;
}

body[data-aos-delay='900'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='900'].aos-animate {
    transition-delay: 900ms;
}

body[data-aos-duration='950'] [data-aos],
[data-aos][data-aos][data-aos-duration='950'] {
    transition-duration: 950ms;
}

body[data-aos-delay='950'] [data-aos],
[data-aos][data-aos][data-aos-delay='950'] {
    transition-delay: 0;
}

body[data-aos-delay='950'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='950'].aos-animate {
    transition-delay: 950ms;
}

body[data-aos-duration='1000'] [data-aos],
[data-aos][data-aos][data-aos-duration='1000'] {
    transition-duration: 1000ms;
}

body[data-aos-delay='1000'] [data-aos],
[data-aos][data-aos][data-aos-delay='1000'] {
    transition-delay: 0;
}

body[data-aos-delay='1000'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1000'].aos-animate {
    transition-delay: 1000ms;
}

body[data-aos-duration='1050'] [data-aos],
[data-aos][data-aos][data-aos-duration='1050'] {
    transition-duration: 1050ms;
}

body[data-aos-delay='1050'] [data-aos],
[data-aos][data-aos][data-aos-delay='1050'] {
    transition-delay: 0;
}

body[data-aos-delay='1050'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1050'].aos-animate {
    transition-delay: 1050ms;
}

body[data-aos-duration='1100'] [data-aos],
[data-aos][data-aos][data-aos-duration='1100'] {
    transition-duration: 1100ms;
}

body[data-aos-delay='1100'] [data-aos],
[data-aos][data-aos][data-aos-delay='1100'] {
    transition-delay: 0;
}

body[data-aos-delay='1100'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1100'].aos-animate {
    transition-delay: 1100ms;
}

body[data-aos-duration='1150'] [data-aos],
[data-aos][data-aos][data-aos-duration='1150'] {
    transition-duration: 1150ms;
}

body[data-aos-delay='1150'] [data-aos],
[data-aos][data-aos][data-aos-delay='1150'] {
    transition-delay: 0;
}

body[data-aos-delay='1150'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1150'].aos-animate {
    transition-delay: 1150ms;
}

body[data-aos-duration='1200'] [data-aos],
[data-aos][data-aos][data-aos-duration='1200'] {
    transition-duration: 1200ms;
}

body[data-aos-delay='1200'] [data-aos],
[data-aos][data-aos][data-aos-delay='1200'] {
    transition-delay: 0;
}

body[data-aos-delay='1200'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1200'].aos-animate {
    transition-delay: 1200ms;
}

body[data-aos-duration='1250'] [data-aos],
[data-aos][data-aos][data-aos-duration='1250'] {
    transition-duration: 1250ms;
}

body[data-aos-delay='1250'] [data-aos],
[data-aos][data-aos][data-aos-delay='1250'] {
    transition-delay: 0;
}

body[data-aos-delay='1250'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1250'].aos-animate {
    transition-delay: 1250ms;
}

body[data-aos-duration='1300'] [data-aos],
[data-aos][data-aos][data-aos-duration='1300'] {
    transition-duration: 1300ms;
}

body[data-aos-delay='1300'] [data-aos],
[data-aos][data-aos][data-aos-delay='1300'] {
    transition-delay: 0;
}

body[data-aos-delay='1300'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1300'].aos-animate {
    transition-delay: 1300ms;
}

body[data-aos-duration='1350'] [data-aos],
[data-aos][data-aos][data-aos-duration='1350'] {
    transition-duration: 1350ms;
}

body[data-aos-delay='1350'] [data-aos],
[data-aos][data-aos][data-aos-delay='1350'] {
    transition-delay: 0;
}

body[data-aos-delay='1350'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1350'].aos-animate {
    transition-delay: 1350ms;
}

body[data-aos-duration='1400'] [data-aos],
[data-aos][data-aos][data-aos-duration='1400'] {
    transition-duration: 1400ms;
}

body[data-aos-delay='1400'] [data-aos],
[data-aos][data-aos][data-aos-delay='1400'] {
    transition-delay: 0;
}

body[data-aos-delay='1400'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1400'].aos-animate {
    transition-delay: 1400ms;
}

body[data-aos-duration='1450'] [data-aos],
[data-aos][data-aos][data-aos-duration='1450'] {
    transition-duration: 1450ms;
}

body[data-aos-delay='1450'] [data-aos],
[data-aos][data-aos][data-aos-delay='1450'] {
    transition-delay: 0;
}

body[data-aos-delay='1450'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1450'].aos-animate {
    transition-delay: 1450ms;
}

body[data-aos-duration='1500'] [data-aos],
[data-aos][data-aos][data-aos-duration='1500'] {
    transition-duration: 1500ms;
}

body[data-aos-delay='1500'] [data-aos],
[data-aos][data-aos][data-aos-delay='1500'] {
    transition-delay: 0;
}

body[data-aos-delay='1500'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1500'].aos-animate {
    transition-delay: 1500ms;
}

body[data-aos-duration='1550'] [data-aos],
[data-aos][data-aos][data-aos-duration='1550'] {
    transition-duration: 1550ms;
}

body[data-aos-delay='1550'] [data-aos],
[data-aos][data-aos][data-aos-delay='1550'] {
    transition-delay: 0;
}

body[data-aos-delay='1550'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1550'].aos-animate {
    transition-delay: 1550ms;
}

body[data-aos-duration='1600'] [data-aos],
[data-aos][data-aos][data-aos-duration='1600'] {
    transition-duration: 1600ms;
}

body[data-aos-delay='1600'] [data-aos],
[data-aos][data-aos][data-aos-delay='1600'] {
    transition-delay: 0;
}

body[data-aos-delay='1600'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1600'].aos-animate {
    transition-delay: 1600ms;
}

body[data-aos-duration='1650'] [data-aos],
[data-aos][data-aos][data-aos-duration='1650'] {
    transition-duration: 1650ms;
}

body[data-aos-delay='1650'] [data-aos],
[data-aos][data-aos][data-aos-delay='1650'] {
    transition-delay: 0;
}

body[data-aos-delay='1650'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1650'].aos-animate {
    transition-delay: 1650ms;
}

body[data-aos-duration='1700'] [data-aos],
[data-aos][data-aos][data-aos-duration='1700'] {
    transition-duration: 1700ms;
}

body[data-aos-delay='1700'] [data-aos],
[data-aos][data-aos][data-aos-delay='1700'] {
    transition-delay: 0;
}

body[data-aos-delay='1700'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1700'].aos-animate {
    transition-delay: 1700ms;
}

body[data-aos-duration='1750'] [data-aos],
[data-aos][data-aos][data-aos-duration='1750'] {
    transition-duration: 1750ms;
}

body[data-aos-delay='1750'] [data-aos],
[data-aos][data-aos][data-aos-delay='1750'] {
    transition-delay: 0;
}

body[data-aos-delay='1750'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1750'].aos-animate {
    transition-delay: 1750ms;
}

body[data-aos-duration='1800'] [data-aos],
[data-aos][data-aos][data-aos-duration='1800'] {
    transition-duration: 1800ms;
}

body[data-aos-delay='1800'] [data-aos],
[data-aos][data-aos][data-aos-delay='1800'] {
    transition-delay: 0;
}

body[data-aos-delay='1800'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1800'].aos-animate {
    transition-delay: 1800ms;
}

body[data-aos-duration='1850'] [data-aos],
[data-aos][data-aos][data-aos-duration='1850'] {
    transition-duration: 1850ms;
}

body[data-aos-delay='1850'] [data-aos],
[data-aos][data-aos][data-aos-delay='1850'] {
    transition-delay: 0;
}

body[data-aos-delay='1850'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1850'].aos-animate {
    transition-delay: 1850ms;
}

body[data-aos-duration='1900'] [data-aos],
[data-aos][data-aos][data-aos-duration='1900'] {
    transition-duration: 1900ms;
}

body[data-aos-delay='1900'] [data-aos],
[data-aos][data-aos][data-aos-delay='1900'] {
    transition-delay: 0;
}

body[data-aos-delay='1900'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1900'].aos-animate {
    transition-delay: 1900ms;
}

body[data-aos-duration='1950'] [data-aos],
[data-aos][data-aos][data-aos-duration='1950'] {
    transition-duration: 1950ms;
}

body[data-aos-delay='1950'] [data-aos],
[data-aos][data-aos][data-aos-delay='1950'] {
    transition-delay: 0;
}

body[data-aos-delay='1950'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='1950'].aos-animate {
    transition-delay: 1950ms;
}

body[data-aos-duration='2000'] [data-aos],
[data-aos][data-aos][data-aos-duration='2000'] {
    transition-duration: 2000ms;
}

body[data-aos-delay='2000'] [data-aos],
[data-aos][data-aos][data-aos-delay='2000'] {
    transition-delay: 0;
}

body[data-aos-delay='2000'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2000'].aos-animate {
    transition-delay: 2000ms;
}

body[data-aos-duration='2050'] [data-aos],
[data-aos][data-aos][data-aos-duration='2050'] {
    transition-duration: 2050ms;
}

body[data-aos-delay='2050'] [data-aos],
[data-aos][data-aos][data-aos-delay='2050'] {
    transition-delay: 0;
}

body[data-aos-delay='2050'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2050'].aos-animate {
    transition-delay: 2050ms;
}

body[data-aos-duration='2100'] [data-aos],
[data-aos][data-aos][data-aos-duration='2100'] {
    transition-duration: 2100ms;
}

body[data-aos-delay='2100'] [data-aos],
[data-aos][data-aos][data-aos-delay='2100'] {
    transition-delay: 0;
}

body[data-aos-delay='2100'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2100'].aos-animate {
    transition-delay: 2100ms;
}

body[data-aos-duration='2150'] [data-aos],
[data-aos][data-aos][data-aos-duration='2150'] {
    transition-duration: 2150ms;
}

body[data-aos-delay='2150'] [data-aos],
[data-aos][data-aos][data-aos-delay='2150'] {
    transition-delay: 0;
}

body[data-aos-delay='2150'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2150'].aos-animate {
    transition-delay: 2150ms;
}

body[data-aos-duration='2200'] [data-aos],
[data-aos][data-aos][data-aos-duration='2200'] {
    transition-duration: 2200ms;
}

body[data-aos-delay='2200'] [data-aos],
[data-aos][data-aos][data-aos-delay='2200'] {
    transition-delay: 0;
}

body[data-aos-delay='2200'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2200'].aos-animate {
    transition-delay: 2200ms;
}

body[data-aos-duration='2250'] [data-aos],
[data-aos][data-aos][data-aos-duration='2250'] {
    transition-duration: 2250ms;
}

body[data-aos-delay='2250'] [data-aos],
[data-aos][data-aos][data-aos-delay='2250'] {
    transition-delay: 0;
}

body[data-aos-delay='2250'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2250'].aos-animate {
    transition-delay: 2250ms;
}

body[data-aos-duration='2300'] [data-aos],
[data-aos][data-aos][data-aos-duration='2300'] {
    transition-duration: 2300ms;
}

body[data-aos-delay='2300'] [data-aos],
[data-aos][data-aos][data-aos-delay='2300'] {
    transition-delay: 0;
}

body[data-aos-delay='2300'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2300'].aos-animate {
    transition-delay: 2300ms;
}

body[data-aos-duration='2350'] [data-aos],
[data-aos][data-aos][data-aos-duration='2350'] {
    transition-duration: 2350ms;
}

body[data-aos-delay='2350'] [data-aos],
[data-aos][data-aos][data-aos-delay='2350'] {
    transition-delay: 0;
}

body[data-aos-delay='2350'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2350'].aos-animate {
    transition-delay: 2350ms;
}

body[data-aos-duration='2400'] [data-aos],
[data-aos][data-aos][data-aos-duration='2400'] {
    transition-duration: 2400ms;
}

body[data-aos-delay='2400'] [data-aos],
[data-aos][data-aos][data-aos-delay='2400'] {
    transition-delay: 0;
}

body[data-aos-delay='2400'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2400'].aos-animate {
    transition-delay: 2400ms;
}

body[data-aos-duration='2450'] [data-aos],
[data-aos][data-aos][data-aos-duration='2450'] {
    transition-duration: 2450ms;
}

body[data-aos-delay='2450'] [data-aos],
[data-aos][data-aos][data-aos-delay='2450'] {
    transition-delay: 0;
}

body[data-aos-delay='2450'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2450'].aos-animate {
    transition-delay: 2450ms;
}

body[data-aos-duration='2500'] [data-aos],
[data-aos][data-aos][data-aos-duration='2500'] {
    transition-duration: 2500ms;
}

body[data-aos-delay='2500'] [data-aos],
[data-aos][data-aos][data-aos-delay='2500'] {
    transition-delay: 0;
}

body[data-aos-delay='2500'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2500'].aos-animate {
    transition-delay: 2500ms;
}

body[data-aos-duration='2550'] [data-aos],
[data-aos][data-aos][data-aos-duration='2550'] {
    transition-duration: 2550ms;
}

body[data-aos-delay='2550'] [data-aos],
[data-aos][data-aos][data-aos-delay='2550'] {
    transition-delay: 0;
}

body[data-aos-delay='2550'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2550'].aos-animate {
    transition-delay: 2550ms;
}

body[data-aos-duration='2600'] [data-aos],
[data-aos][data-aos][data-aos-duration='2600'] {
    transition-duration: 2600ms;
}

body[data-aos-delay='2600'] [data-aos],
[data-aos][data-aos][data-aos-delay='2600'] {
    transition-delay: 0;
}

body[data-aos-delay='2600'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2600'].aos-animate {
    transition-delay: 2600ms;
}

body[data-aos-duration='2650'] [data-aos],
[data-aos][data-aos][data-aos-duration='2650'] {
    transition-duration: 2650ms;
}

body[data-aos-delay='2650'] [data-aos],
[data-aos][data-aos][data-aos-delay='2650'] {
    transition-delay: 0;
}

body[data-aos-delay='2650'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2650'].aos-animate {
    transition-delay: 2650ms;
}

body[data-aos-duration='2700'] [data-aos],
[data-aos][data-aos][data-aos-duration='2700'] {
    transition-duration: 2700ms;
}

body[data-aos-delay='2700'] [data-aos],
[data-aos][data-aos][data-aos-delay='2700'] {
    transition-delay: 0;
}

body[data-aos-delay='2700'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2700'].aos-animate {
    transition-delay: 2700ms;
}

body[data-aos-duration='2750'] [data-aos],
[data-aos][data-aos][data-aos-duration='2750'] {
    transition-duration: 2750ms;
}

body[data-aos-delay='2750'] [data-aos],
[data-aos][data-aos][data-aos-delay='2750'] {
    transition-delay: 0;
}

body[data-aos-delay='2750'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2750'].aos-animate {
    transition-delay: 2750ms;
}

body[data-aos-duration='2800'] [data-aos],
[data-aos][data-aos][data-aos-duration='2800'] {
    transition-duration: 2800ms;
}

body[data-aos-delay='2800'] [data-aos],
[data-aos][data-aos][data-aos-delay='2800'] {
    transition-delay: 0;
}

body[data-aos-delay='2800'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2800'].aos-animate {
    transition-delay: 2800ms;
}

body[data-aos-duration='2850'] [data-aos],
[data-aos][data-aos][data-aos-duration='2850'] {
    transition-duration: 2850ms;
}

body[data-aos-delay='2850'] [data-aos],
[data-aos][data-aos][data-aos-delay='2850'] {
    transition-delay: 0;
}

body[data-aos-delay='2850'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2850'].aos-animate {
    transition-delay: 2850ms;
}

body[data-aos-duration='2900'] [data-aos],
[data-aos][data-aos][data-aos-duration='2900'] {
    transition-duration: 2900ms;
}

body[data-aos-delay='2900'] [data-aos],
[data-aos][data-aos][data-aos-delay='2900'] {
    transition-delay: 0;
}

body[data-aos-delay='2900'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2900'].aos-animate {
    transition-delay: 2900ms;
}

body[data-aos-duration='2950'] [data-aos],
[data-aos][data-aos][data-aos-duration='2950'] {
    transition-duration: 2950ms;
}

body[data-aos-delay='2950'] [data-aos],
[data-aos][data-aos][data-aos-delay='2950'] {
    transition-delay: 0;
}

body[data-aos-delay='2950'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='2950'].aos-animate {
    transition-delay: 2950ms;
}

body[data-aos-duration='3000'] [data-aos],
[data-aos][data-aos][data-aos-duration='3000'] {
    transition-duration: 3000ms;
}

body[data-aos-delay='3000'] [data-aos],
[data-aos][data-aos][data-aos-delay='3000'] {
    transition-delay: 0;
}

body[data-aos-delay='3000'] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay='3000'].aos-animate {
    transition-delay: 3000ms;
}

@media print {
    [data-aos] {
        display: block !important;
        opacity: 1 !important;
        -webkit-transform: translate(0) scale(1) !important;
        transform: translate(0) scale(1) !important;
    }
}

body[data-aos-easing="linear"] [data-aos],
[data-aos][data-aos][data-aos-easing="linear"] {
    transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

body[data-aos-easing="ease"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease"] {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body[data-aos-easing="ease-in"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in"] {
    transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}

body[data-aos-easing="ease-out"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-out"] {
    transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}

body[data-aos-easing="ease-in-out"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-out"] {
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

body[data-aos-easing="ease-in-back"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-back"] {
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

body[data-aos-easing="ease-out-back"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-out-back"] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body[data-aos-easing="ease-in-out-back"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-out-back"] {
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body[data-aos-easing="ease-in-sine"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-sine"] {
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

body[data-aos-easing="ease-out-sine"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-out-sine"] {
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

body[data-aos-easing="ease-in-out-sine"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-out-sine"] {
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

body[data-aos-easing="ease-in-quad"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-quad"] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-quad"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-out-quad"] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-quad"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-out-quad"] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing="ease-in-cubic"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-cubic"] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-cubic"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-out-cubic"] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-cubic"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-out-cubic"] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing="ease-in-quart"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-quart"] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-quart"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-out-quart"] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-quart"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-in-out-quart"] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/**
 * Fade animations:
 * fade
 * fade-up, fade-down, fade-left, fade-right
 * fade-up-right, fade-up-left, fade-down-right, fade-down-left
 */
[data-aos^='fade'][data-aos^='fade'] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

[data-aos^='fade'][data-aos^='fade'].aos-animate {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

[data-aos='fade-up'] {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
}

[data-aos='fade-down'] {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
}

[data-aos='fade-right'] {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
}

[data-aos='fade-left'] {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
}

[data-aos='fade-up-right'] {
    -webkit-transform: translate(-100px, 100px);
    transform: translate(-100px, 100px);
}

[data-aos='fade-up-left'] {
    -webkit-transform: translate(100px, 100px);
    transform: translate(100px, 100px);
}

[data-aos='fade-down-right'] {
    -webkit-transform: translate(-100px, -100px);
    transform: translate(-100px, -100px);
}

[data-aos='fade-down-left'] {
    -webkit-transform: translate(100px, -100px);
    transform: translate(100px, -100px);
}

/**
 * Zoom animations:
 * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
 * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
 */
[data-aos^='zoom'][data-aos^='zoom'] {
    opacity: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

[data-aos^='zoom'][data-aos^='zoom'].aos-animate {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}

[data-aos='zoom-in'] {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
}

[data-aos='zoom-in-up'] {
    -webkit-transform: translate(0, 100px) scale(0.6);
    transform: translate(0, 100px) scale(0.6);
}

[data-aos='zoom-in-down'] {
    -webkit-transform: translate(0, -100px) scale(0.6);
    transform: translate(0, -100px) scale(0.6);
}

[data-aos='zoom-in-right'] {
    -webkit-transform: translate(-100px, 0) scale(0.6);
    transform: translate(-100px, 0) scale(0.6);
}

[data-aos='zoom-in-left'] {
    -webkit-transform: translate(100px, 0) scale(0.6);
    transform: translate(100px, 0) scale(0.6);
}

[data-aos='zoom-out'] {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

[data-aos='zoom-out-up'] {
    -webkit-transform: translate(0, 100px) scale(1.2);
    transform: translate(0, 100px) scale(1.2);
}

[data-aos='zoom-out-down'] {
    -webkit-transform: translate(0, -100px) scale(1.2);
    transform: translate(0, -100px) scale(1.2);
}

[data-aos='zoom-out-right'] {
    -webkit-transform: translate(-100px, 0) scale(1.2);
    transform: translate(-100px, 0) scale(1.2);
}

[data-aos='zoom-out-left'] {
    -webkit-transform: translate(100px, 0) scale(1.2);
    transform: translate(100px, 0) scale(1.2);
}

/**
 * Slide animations
 */
[data-aos^='slide'][data-aos^='slide'] {
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

[data-aos^='slide'][data-aos^='slide'].aos-animate {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

[data-aos='slide-up'] {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

[data-aos='slide-down'] {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

[data-aos='slide-right'] {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

[data-aos='slide-left'] {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

/**
 * Flip animations:
 * flip-left, flip-right, flip-up, flip-down
 */
[data-aos^='flip'][data-aos^='flip'] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

[data-aos='flip-left'] {
    -webkit-transform: perspective(2500px) rotateY(-100deg);
    transform: perspective(2500px) rotateY(-100deg);
}

[data-aos='flip-left'].aos-animate {
    -webkit-transform: perspective(2500px) rotateY(0);
    transform: perspective(2500px) rotateY(0);
}

[data-aos='flip-right'] {
    -webkit-transform: perspective(2500px) rotateY(100deg);
    transform: perspective(2500px) rotateY(100deg);
}

[data-aos='flip-right'].aos-animate {
    -webkit-transform: perspective(2500px) rotateY(0);
    transform: perspective(2500px) rotateY(0);
}

[data-aos='flip-up'] {
    -webkit-transform: perspective(2500px) rotateX(-100deg);
    transform: perspective(2500px) rotateX(-100deg);
}

[data-aos='flip-up'].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
}

[data-aos='flip-down'] {
    -webkit-transform: perspective(2500px) rotateX(100deg);
    transform: perspective(2500px) rotateX(100deg);
}

[data-aos='flip-down'].aos-animate {
    -webkit-transform: perspective(2500px) rotateX(0);
    transform: perspective(2500px) rotateX(0);
}

/*table*/
.tmg-table {
    min-width: 100%;
    border-radius: 7.5px;
    overflow: hidden;
    font-weight: 400;
}

.tmg-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-color: #ddd;
}

.tmg-table th {
    display: none;
}

.tmg-table td {
    display: block;
}

.tmg-table td:first-child {
    padding-top: 10px;
}

.tmg-table td:last-child {
    padding-bottom: 10px;
}

.tmg-table td:before {
    content: attr(data-th) ": ";
    font-weight: 700;
    width: 7.5em;
    display: inline-block;
}

@media (min-width: 56.25em) {
    .tmg-table td:before {
        display: none;
    }
}

.tmg-table th,
.tmg-table td {
    text-align: left;
}

@media (min-width: 56.25em) {
    .tmg-table th,
    .tmg-table td {
        display: table-cell;
        padding: 5px 10px;
    }

    .tmg-table th:first-child,
    .tmg-table td:first-child {
        padding-left: 0;
    }

    .tmg-table th:last-child,
    .tmg-table td:last-child {
        padding-right: 0;
    }
}

.tmg-table th,
.tmg-table td {
    margin: 10px 20px;
}

@media (min-width: 56.25em) {
    .tmg-table th,
    .tmg-table td {
        padding: 20px !important;
    }
}

.tmg-table th,
.tmg-table td:before {
    color: #424242;
}

/*Slick Slider*/
/* Slider */
.slick-loading .slick-list {
    background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    src: url("../FONTs/slick.eot");
    src: url("../FONTs/slick.eot?#iefix") format("embedded-opentype"), url("../FONTs/slick.woff") format("woff"), url("../FONTs/slick.ttf") format("truetype"), url("../FONTs/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

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

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

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

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

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: black;
    opacity: 0.75;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*Waves*/
/*!
 * Waves v0.7.5
 * http://fian.my.id/Waves 
 * 
 * Copyright 2014-2016 Alfiana E. Sibuea and other contributors 
 * Released under the MIT license 
 * https://github.com/fians/Waves/blob/master/LICENSE 
 */
.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    transition: all 0.5s ease-out;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: scale(0) translate(0, 0);
    transform: scale(0) translate(0, 0);
    pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
    background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
}

.waves-effect.waves-classic .waves-ripple {
    background: rgba(0, 0, 0, 0.2);
}

.waves-effect.waves-classic.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
}

.waves-notransition {
    transition: none !important;
}

.waves-button,
.waves-circle {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    outline: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0);
    font-size: 1em;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    z-index: 1;
}

.waves-button {
    padding: 0.85em 1.1em;
    border-radius: 0.2em;
}

.waves-button-input {
    margin: 0;
    padding: 0.85em 1.1em;
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

.waves-input-wrapper.waves-button {
    padding: 0;
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
}

.waves-float {
    -webkit-mask-image: none;
    box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
    transition: all 300ms;
}

.waves-float:active {
    box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3);
}

.waves-block {
    display: block;
}

#colored-button .btn {
    color: #fff;
}

#colored-button a,
#colored-button a:hover {
    background: #01BCFF;
}

#colored-button button,
#colored-button button:hover {
    background: #1bb556;
}

#colored-button input,
#colored-button input:hover {
    background: #ff4f0f;
}