Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zerostaticthemes/hugo-serif-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Austin <rob@jugglerdigital.com>2022-03-24 07:22:01 +0300
committerRobert Austin <rob@jugglerdigital.com>2022-03-24 07:22:01 +0300
commit4cac0afd79573148d440d4fe071dfe11cc851e0d (patch)
treead9a22f381c92648a750091eaf954c2678efe8f0
parent6dd911c35cc2c332e339ad416e3c29db3f916c4c (diff)
make fonts and colors editable in config.toml, update seo, update README
-rw-r--r--.gitignore1
-rw-r--r--README.md69
-rw-r--r--assets/scss/components/_call.scss2
-rw-r--r--assets/scss/components/_content.scss8
-rw-r--r--assets/scss/components/_intro.scss2
-rw-r--r--assets/scss/components/_strip.scss9
-rw-r--r--assets/scss/components/_type.scss2
-rwxr-xr-xassets/scss/style.scss16
-rw-r--r--exampleSite/.hugo_build.lock0
-rw-r--r--exampleSite/config.toml18
-rw-r--r--exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.content4715
-rw-r--r--exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.json1
-rw-r--r--exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.content12
-rw-r--r--exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.json1
-rw-r--r--layouts/_default/baseof.html3
-rw-r--r--layouts/partials/google-fonts.html8
-rw-r--r--layouts/partials/meta-tags.html9
17 files changed, 80 insertions, 4796 deletions
diff --git a/.gitignore b/.gitignore
index e07b19e..f388c5e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
node_modules
.idea
public
+resources
diff --git a/README.md b/README.md
index 0e0c3b6..a3c83a6 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,6 @@ Serif is a modern business theme for Hugo. It contains multiple content types an
[Live Demo](https://hugo-serif.netlify.app/) |
[Zerostatic Themes](https://www.zerostatic.io/)
-<a href="https://www.buymeacoffee.com/zerostatic" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
-
![Hugo Serif Theme screenshot](https://www.zerostatic.io/theme/hugo-serif/hugo-serif-screenshot.png)
## Features
@@ -146,35 +144,36 @@ You can edit the logo from the `config.toml`
### Fonts
-This theme uses Google fonts. You can change the font snippet in `layouts/partials/google-fonts.html` and then update font variable in `scss/style.scss`
+This theme uses Google fonts. You can change the google font in the `config.toml` - These fonts are injected into the `style.scss` as SCSS variables.
-```scss
-// scss/style.scss
+```toml
+# config.toml
-// Fonts
-$font-family-base: Helvetica, Arial, sans-serif, -apple-system;
-$font-family-heading: 'Playfair Display', serif, -apple-system;
+ [params.fonts]
+ # sets the google font link in layouts/partials/google-fonts.html
+ google_fonts = 'https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Source+Sans+Pro:wght@400;700&display=swap'
+ heading = "Playfair Display"
+ base = "Source Sans Pro"
```
### Colors
-You can edit the themes primary, secondary and neutral colors in `scss/style.scss`. To override the bootstrap colors simply edit `scss/_bootstrap-variables.scss`
+You can edit the themes main colors in the `config.toml`. These colors are injected into the `style.scss` as SCSS variables.
-```scss
-// scss/style.scss
+```toml
+#config.toml
-// Colors
-$primary: #f24088;
-$secondary: #f88379;
-$black: #2f2f41;
-$white: #ffffff;
-$white-offset: #f6f7ff;
-$steel: #5C5A5A;
+ [params.colors]
+ primary = "#f24088"
+ black = "#2f2f41"
+ white = "#ffffff"
+ white_offset = "#f6f7ff"
+ grey = "#5C5A5A"
```
-### Hero Image
+### Intro Image
-List pages such as the homepage, services and team can have a Hero image.
+List pages such as the homepage, services and team can have a Intro image.
```yml
# content/_index.md
@@ -187,7 +186,7 @@ intro_image_hide_on_mobile: true
While this themes default content uses illustrations, its easy to change the image to a photo and it will still look great.
-the front-matter field `intro_image_absolute: true` let's illustrations "break out" (in CSS terms, it uses `position: absolute`) of the grid and is an intended stylistic effect. When using photos or normal images it's recommended to set this to false and the photo will align with the grid. See `content/team/_index.md` for an example.
+the front-matter field `intro_image_absolute: true` let's illustrations "break out" (in CSS terms, it uses `position: absolute`) of the grid and is an intended stylistic effect. When using photos or normal images it's recommended to set this field to false and the photo will align with the grid. See `content/team/_index.md` for an example.
### Google Analytics
@@ -206,24 +205,19 @@ Put your Google Analytics ID in the `google_analytics_id` field in the `config.t
### Meta tags
-A pages `title`, `description` and `image` front-matter fields are used to generate the pages title and meta tags.
-
-By default a pages `<title>` is generated from the front-matter `title` and site title set in `config.toml`
-
-```
- <title>{{ block "title" . }}{{ if .Params.meta_title }}{{ .Params.meta_title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}{{ end }}</title>
-```
+A pages `<title>` is generated from the front-matter `title` and the site title set in `config.toml`. You can override the `<title>` on any page by using the `meta_title` field in the front-matter. See `content/_index.md` for an example.
-You can override the `<title>` on any page by using the `meta_title` field in the front-matter. See `content/_index.md` for an example.
+The meta description field is generated from the front-matter `description`
-Set your twitter info to ensure twitter social previews work correctly.
+OG meta data for Facebook and Twitter is also generated.
```toml
- # config.toml
+# config.toml
[params.seo]
meta_twitter_site = "@zerostaticio"
meta_twitter_creator = "@zerostaticio"
+ meta_og_image = "https://www.zerostatic.io/theme/hugo-serif/hugo-serif-screenshot.png"
```
## Extras
@@ -241,11 +235,14 @@ Set your twitter info to ensure twitter social previews work correctly.
### Other Hugo Themes by Zerostatic
-- [Hugo Whisper](https://github.com/zerostaticthemes/hugo-whisper-theme)
-- [Hugo Serif](https://github.com/zerostaticthemes/hugo-serif-theme)
-- [Hugo Winston](https://github.com/zerostaticthemes/hugo-winston-theme)
-- [Hugo Advance](https://www.zerostatic.io/theme/hugo-advance/)
-- [Hugo Paradigm](https://www.zerostatic.io/theme/hugo-paradigm/)
+
+- [Hugo Hero](https://github.com/zerostaticthemes/hugo-serif-theme) - Free: business theme
+- [Hugo Whisper](https://github.com/zerostaticthemes/hugo-whisper-theme) - Free: documentation theme
+- [Hugo Winston](https://github.com/zerostaticthemes/hugo-winston-theme) Free:- blog theme
+- [Hugo Advance](https://www.zerostatic.io/theme/hugo-advance/) Premium: advanced multi page business and marketing theme
+- [Hugo Paradigm](https://www.zerostatic.io/theme/hugo-paradigm/) Premium: landing page / site builder theme
🇦🇺 **Made in Australia** by Robert Austin - leave a star mate!
+
+<a href="https://www.buymeacoffee.com/zerostatic" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
diff --git a/assets/scss/components/_call.scss b/assets/scss/components/_call.scss
index e941f95..11b967e 100644
--- a/assets/scss/components/_call.scss
+++ b/assets/scss/components/_call.scss
@@ -41,7 +41,7 @@
font-weight: bold;
}
svg {
- fill: lighten($secondary, 40%);
+ fill: lighten($primary, 40%);
position: absolute;
bottom: -9px;
right: 0;
diff --git a/assets/scss/components/_content.scss b/assets/scss/components/_content.scss
index c807be8..1cb56e0 100644
--- a/assets/scss/components/_content.scss
+++ b/assets/scss/components/_content.scss
@@ -17,7 +17,7 @@
p {
font-family: $font-family-base;
line-height: 1.56;
- color: $steel;
+ color: $grey;
}
h1 {
font-family: $font-family-base;
@@ -59,7 +59,7 @@
margin-bottom: 5px;
line-height: 1.56;
margin-left: 20px;
- color: $steel;
+ color: $grey;
}
hr {
border: none;
@@ -87,7 +87,7 @@
}
blockquote {
padding: 0 1em;
- color: $steel;
- border-left: .25em solid $secondary;
+ color: $grey;
+ border-left: .25em solid $primary;
}
}
diff --git a/assets/scss/components/_intro.scss b/assets/scss/components/_intro.scss
index 932e599..11fbefe 100644
--- a/assets/scss/components/_intro.scss
+++ b/assets/scss/components/_intro.scss
@@ -34,7 +34,7 @@
font-size: 1.2rem;
font-weight: light;
line-height: 1.5;
- color: $steel;
+ color: $grey;
@include media-breakpoint-up(md) {
width: 80%;
}
diff --git a/assets/scss/components/_strip.scss b/assets/scss/components/_strip.scss
index 8b05066..cc3e800 100644
--- a/assets/scss/components/_strip.scss
+++ b/assets/scss/components/_strip.scss
@@ -16,18 +16,9 @@
transform: skewY(-5deg);
}
}
-.strip-primary-gradient {
- background-image: linear-gradient(to right, $primary, $secondary);
-}
-.strip-primary-gradient-top-bottom {
- background-image: linear-gradient(to bottom, $primary, $secondary);
-}
.strip-primary {
background-color: $primary;
}
-.strip-secondary {
- background-color: $secondary;
-}
.strip-diagonal-right {
margin-top: -100px;
diff --git a/assets/scss/components/_type.scss b/assets/scss/components/_type.scss
index 5e771d5..fba5e39 100644
--- a/assets/scss/components/_type.scss
+++ b/assets/scss/components/_type.scss
@@ -3,7 +3,7 @@ a {
}
p {
line-height: 26px;
- color: $steel;
+ color: $grey;
font-family: $font-family-base;
margin-bottom: 20px;
}
diff --git a/assets/scss/style.scss b/assets/scss/style.scss
index 1c6e088..7f3a068 100755
--- a/assets/scss/style.scss
+++ b/assets/scss/style.scss
@@ -1,15 +1,13 @@
// Colors
-$primary: #f24088;
-$secondary: #f88379;
-$black: #2f2f41;
-$white: #ffffff;
-$white-offset: #f6f7ff;
-$steel: #5C5A5A;
+$primary: {{ .Site.Params.colors.primary | default "#f24088" }};
+$black: {{ .Site.Params.colors.black | default "#2f2f41" }};
+$white: {{ .Site.Params.colors.white | default "#ffffff" }};
+$white-offset: {{ .Site.Params.colors.white_offset | default "#f6f7ff" }};
+$grey: {{ .Site.Params.colors.grey | default "#5C5A5A" }};
// Fonts
-// Google fonts are added in `layouts/partials/google-fonts.html`
-$font-family-base: Helvetica, Arial, sans-serif, -apple-system;
-$font-family-heading: 'Playfair Display', serif, -apple-system;
+$font-family-base: {{ .Site.Params.fonts.base }}, Helvetica, Arial, sans-serif, -apple-system;
+$font-family-heading: {{ .Site.Params.fonts.heading }}, serif, -apple-system;
// Links
$link-color: $primary;
diff --git a/exampleSite/.hugo_build.lock b/exampleSite/.hugo_build.lock
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/exampleSite/.hugo_build.lock
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 0fee602..e976c7e 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,4 +1,4 @@
-baseURL = "www.example.com"
+baseURL = "https://example.com"
languageCode = "en-us"
title = "Hugo Serif Theme"
themesDir = "../.."
@@ -10,7 +10,7 @@ theme = "hugo-serif-theme"
min = "0.55.0"
[params]
- # In most cases you will only want to use either one of these. If you have Google Analytics included in your GTM tags don't put your GA ID here. Otherwise your data might be useless.
+ # In most cases you will only want to set the google_analytics_id OR the google_tag_manager_id. If you have Google Analytics included in your GTM tags don't put your GA ID here. Otherwise your data might be useless.
google_analytics_id = ""
google_tag_manager_id = ""
@@ -25,9 +25,23 @@ theme = "hugo-serif-theme"
desktop_height = "36px"
alt = "Serif - A Hugo Business Theme"
+ [params.fonts]
+ # sets the google font link in layouts/partials/google-fonts.html
+ google_fonts = 'https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Source+Sans+Pro:wght@400;700&display=swap'
+ heading = "Playfair Display"
+ base = "Source Sans Pro"
+
+ [params.colors]
+ primary = "#f24088"
+ black = "#2f2f41"
+ white = "#ffffff"
+ white_offset = "#f6f7ff"
+ grey = "#5C5A5A"
+
[params.seo]
meta_twitter_site = "@zerostaticio"
meta_twitter_creator = "@zerostaticio"
+ meta_og_image = "https://www.zerostatic.io/theme/hugo-serif/hugo-serif-screenshot.png"
[params.team]
summary_large_truncate = 120 # How many characters to include in the summary of the team bios (large layout) before truncating
diff --git a/exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.content b/exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.content
deleted file mode 100644
index 51b51ad..0000000
--- a/exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.content
+++ /dev/null
@@ -1,4715 +0,0 @@
-/*!
- * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)
- * Copyright 2011-2019 The Bootstrap Authors
- * Copyright 2011-2019 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
- */
-*,
-*::before,
-*::after {
- box-sizing: border-box; }
-
-html {
- font-family: sans-serif;
- line-height: 1.15;
- -webkit-text-size-adjust: 100%;
- -webkit-tap-highlight-color: rgba(47, 47, 65, 0); }
-
-article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
- display: block; }
-
-body {
- margin: 0;
- font-family: Helvetica, Arial, sans-serif, -apple-system;
- font-size: 1rem;
- font-weight: 400;
- line-height: 1.5;
- color: #212529;
- text-align: left;
- background-color: #ffffff; }
-
-[tabindex="-1"]:focus:not(:focus-visible) {
- outline: 0 !important; }
-
-hr {
- box-sizing: content-box;
- height: 0;
- overflow: visible; }
-
-h1, h2, h3, h4, h5, h6 {
- margin-top: 0;
- margin-bottom: 0.5rem; }
-
-p {
- margin-top: 0;
- margin-bottom: 1rem; }
-
-abbr[title],
-abbr[data-original-title] {
- text-decoration: underline;
- text-decoration: underline dotted;
- cursor: help;
- border-bottom: 0;
- text-decoration-skip-ink: none; }
-
-address {
- margin-bottom: 1rem;
- font-style: normal;
- line-height: inherit; }
-
-ol,
-ul,
-dl {
- margin-top: 0;
- margin-bottom: 1rem; }
-
-ol ol,
-ul ul,
-ol ul,
-ul ol {
- margin-bottom: 0; }
-
-dt {
- font-weight: 700; }
-
-dd {
- margin-bottom: .5rem;
- margin-left: 0; }
-
-blockquote {
- margin: 0 0 1rem; }
-
-b,
-strong {
- font-weight: bolder; }
-
-small {
- font-size: 80%; }
-
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline; }
-
-sub {
- bottom: -.25em; }
-
-sup {
- top: -.5em; }
-
-a {
- color: #f24088;
- text-decoration: none;
- background-color: transparent; }
- a:hover {
- color: #d70f60;
- text-decoration: underline; }
-
-a:not([href]) {
- color: inherit;
- text-decoration: none; }
- a:not([href]):hover {
- color: inherit;
- text-decoration: none; }
-
-pre,
-code,
-kbd,
-samp {
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
- font-size: 1em; }
-
-pre {
- margin-top: 0;
- margin-bottom: 1rem;
- overflow: auto; }
-
-figure {
- margin: 0 0 1rem; }
-
-img {
- vertical-align: middle;
- border-style: none; }
-
-svg {
- overflow: hidden;
- vertical-align: middle; }
-
-table {
- border-collapse: collapse; }
-
-caption {
- padding-top: 0.75rem;
- padding-bottom: 0.75rem;
- color: #6c757d;
- text-align: left;
- caption-side: bottom; }
-
-th {
- text-align: inherit; }
-
-label {
- display: inline-block;
- margin-bottom: 0.5rem; }
-
-button {
- border-radius: 0; }
-
-button:focus {
- outline: 1px dotted;
- outline: 5px auto -webkit-focus-ring-color; }
-
-input,
-button,
-select,
-optgroup,
-textarea {
- margin: 0;
- font-family: inherit;
- font-size: inherit;
- line-height: inherit; }
-
-button,
-input {
- overflow: visible; }
-
-button,
-select {
- text-transform: none; }
-
-select {
- word-wrap: normal; }
-
-button,
-[type="button"],
-[type="reset"],
-[type="submit"] {
- -webkit-appearance: button; }
-
-button:not(:disabled),
-[type="button"]:not(:disabled),
-[type="reset"]:not(:disabled),
-[type="submit"]:not(:disabled) {
- cursor: pointer; }
-
-button::-moz-focus-inner,
-[type="button"]::-moz-focus-inner,
-[type="reset"]::-moz-focus-inner,
-[type="submit"]::-moz-focus-inner {
- padding: 0;
- border-style: none; }
-
-input[type="radio"],
-input[type="checkbox"] {
- box-sizing: border-box;
- padding: 0; }
-
-input[type="date"],
-input[type="time"],
-input[type="datetime-local"],
-input[type="month"] {
- -webkit-appearance: listbox; }
-
-textarea {
- overflow: auto;
- resize: vertical; }
-
-fieldset {
- min-width: 0;
- padding: 0;
- margin: 0;
- border: 0; }
-
-legend {
- display: block;
- width: 100%;
- max-width: 100%;
- padding: 0;
- margin-bottom: .5rem;
- font-size: 1.5rem;
- line-height: inherit;
- color: inherit;
- white-space: normal; }
-
-progress {
- vertical-align: baseline; }
-
-[type="number"]::-webkit-inner-spin-button,
-[type="number"]::-webkit-outer-spin-button {
- height: auto; }
-
-[type="search"] {
- outline-offset: -2px;
- -webkit-appearance: none; }
-
-[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none; }
-
-::-webkit-file-upload-button {
- font: inherit;
- -webkit-appearance: button; }
-
-output {
- display: inline-block; }
-
-summary {
- display: list-item;
- cursor: pointer; }
-
-template {
- display: none; }
-
-[hidden] {
- display: none !important; }
-
-/*!
- * Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
- * Copyright 2011-2019 The Bootstrap Authors
- * Copyright 2011-2019 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-html {
- box-sizing: border-box;
- -ms-overflow-style: scrollbar; }
-
-*,
-*::before,
-*::after {
- box-sizing: inherit; }
-
-.container {
- width: 100%;
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto; }
- @media (min-width: 576px) {
- .container {
- max-width: 566px; } }
- @media (min-width: 768px) {
- .container {
- max-width: 740px; } }
- @media (min-width: 992px) {
- .container {
- max-width: 960px; } }
- @media (min-width: 1300px) {
- .container {
- max-width: 1140px; } }
-.container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
- width: 100%;
- padding-right: 15px;
- padding-left: 15px;
- margin-right: auto;
- margin-left: auto; }
-
-@media (min-width: 576px) {
- .container-sm, .container {
- max-width: 566px; } }
-
-@media (min-width: 768px) {
- .container-md, .container-sm, .container {
- max-width: 740px; } }
-
-@media (min-width: 992px) {
- .container-lg, .container-md, .container-sm, .container {
- max-width: 960px; } }
-
-@media (min-width: 1300px) {
- .container-xl, .container-lg, .container-md, .container-sm, .container {
- max-width: 1140px; } }
-
-.row {
- display: flex;
- flex-wrap: wrap;
- margin-right: -15px;
- margin-left: -15px; }
-
-.no-gutters {
- margin-right: 0;
- margin-left: 0; }
- .no-gutters > .col,
- .no-gutters > [class*="col-"] {
- padding-right: 0;
- padding-left: 0; }
-
-.col-xl,
-.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
-.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
-.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
-.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
-.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
- position: relative;
- width: 100%;
- padding-right: 15px;
- padding-left: 15px; }
-
-.col {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
-
-.row-cols-1 > * {
- flex: 0 0 100%;
- max-width: 100%; }
-
-.row-cols-2 > * {
- flex: 0 0 50%;
- max-width: 50%; }
-
-.row-cols-3 > * {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
-
-.row-cols-4 > * {
- flex: 0 0 25%;
- max-width: 25%; }
-
-.row-cols-5 > * {
- flex: 0 0 20%;
- max-width: 20%; }
-
-.row-cols-6 > * {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
-
-.col-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%; }
-
-.col-1 {
- flex: 0 0 8.33333333%;
- max-width: 8.33333333%; }
-
-.col-2 {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
-
-.col-3 {
- flex: 0 0 25%;
- max-width: 25%; }
-
-.col-4 {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
-
-.col-5 {
- flex: 0 0 41.66666667%;
- max-width: 41.66666667%; }
-
-.col-6 {
- flex: 0 0 50%;
- max-width: 50%; }
-
-.col-7 {
- flex: 0 0 58.33333333%;
- max-width: 58.33333333%; }
-
-.col-8 {
- flex: 0 0 66.66666667%;
- max-width: 66.66666667%; }
-
-.col-9 {
- flex: 0 0 75%;
- max-width: 75%; }
-
-.col-10 {
- flex: 0 0 83.33333333%;
- max-width: 83.33333333%; }
-
-.col-11 {
- flex: 0 0 91.66666667%;
- max-width: 91.66666667%; }
-
-.col-12 {
- flex: 0 0 100%;
- max-width: 100%; }
-
-.order-first {
- order: -1; }
-
-.order-last {
- order: 13; }
-
-.order-0 {
- order: 0; }
-
-.order-1 {
- order: 1; }
-
-.order-2 {
- order: 2; }
-
-.order-3 {
- order: 3; }
-
-.order-4 {
- order: 4; }
-
-.order-5 {
- order: 5; }
-
-.order-6 {
- order: 6; }
-
-.order-7 {
- order: 7; }
-
-.order-8 {
- order: 8; }
-
-.order-9 {
- order: 9; }
-
-.order-10 {
- order: 10; }
-
-.order-11 {
- order: 11; }
-
-.order-12 {
- order: 12; }
-
-.offset-1 {
- margin-left: 8.33333333%; }
-
-.offset-2 {
- margin-left: 16.66666667%; }
-
-.offset-3 {
- margin-left: 25%; }
-
-.offset-4 {
- margin-left: 33.33333333%; }
-
-.offset-5 {
- margin-left: 41.66666667%; }
-
-.offset-6 {
- margin-left: 50%; }
-
-.offset-7 {
- margin-left: 58.33333333%; }
-
-.offset-8 {
- margin-left: 66.66666667%; }
-
-.offset-9 {
- margin-left: 75%; }
-
-.offset-10 {
- margin-left: 83.33333333%; }
-
-.offset-11 {
- margin-left: 91.66666667%; }
-
-@media (min-width: 576px) {
- .col-sm {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
- .row-cols-sm-1 > * {
- flex: 0 0 100%;
- max-width: 100%; }
- .row-cols-sm-2 > * {
- flex: 0 0 50%;
- max-width: 50%; }
- .row-cols-sm-3 > * {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .row-cols-sm-4 > * {
- flex: 0 0 25%;
- max-width: 25%; }
- .row-cols-sm-5 > * {
- flex: 0 0 20%;
- max-width: 20%; }
- .row-cols-sm-6 > * {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-sm-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%; }
- .col-sm-1 {
- flex: 0 0 8.33333333%;
- max-width: 8.33333333%; }
- .col-sm-2 {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-sm-3 {
- flex: 0 0 25%;
- max-width: 25%; }
- .col-sm-4 {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .col-sm-5 {
- flex: 0 0 41.66666667%;
- max-width: 41.66666667%; }
- .col-sm-6 {
- flex: 0 0 50%;
- max-width: 50%; }
- .col-sm-7 {
- flex: 0 0 58.33333333%;
- max-width: 58.33333333%; }
- .col-sm-8 {
- flex: 0 0 66.66666667%;
- max-width: 66.66666667%; }
- .col-sm-9 {
- flex: 0 0 75%;
- max-width: 75%; }
- .col-sm-10 {
- flex: 0 0 83.33333333%;
- max-width: 83.33333333%; }
- .col-sm-11 {
- flex: 0 0 91.66666667%;
- max-width: 91.66666667%; }
- .col-sm-12 {
- flex: 0 0 100%;
- max-width: 100%; }
- .order-sm-first {
- order: -1; }
- .order-sm-last {
- order: 13; }
- .order-sm-0 {
- order: 0; }
- .order-sm-1 {
- order: 1; }
- .order-sm-2 {
- order: 2; }
- .order-sm-3 {
- order: 3; }
- .order-sm-4 {
- order: 4; }
- .order-sm-5 {
- order: 5; }
- .order-sm-6 {
- order: 6; }
- .order-sm-7 {
- order: 7; }
- .order-sm-8 {
- order: 8; }
- .order-sm-9 {
- order: 9; }
- .order-sm-10 {
- order: 10; }
- .order-sm-11 {
- order: 11; }
- .order-sm-12 {
- order: 12; }
- .offset-sm-0 {
- margin-left: 0; }
- .offset-sm-1 {
- margin-left: 8.33333333%; }
- .offset-sm-2 {
- margin-left: 16.66666667%; }
- .offset-sm-3 {
- margin-left: 25%; }
- .offset-sm-4 {
- margin-left: 33.33333333%; }
- .offset-sm-5 {
- margin-left: 41.66666667%; }
- .offset-sm-6 {
- margin-left: 50%; }
- .offset-sm-7 {
- margin-left: 58.33333333%; }
- .offset-sm-8 {
- margin-left: 66.66666667%; }
- .offset-sm-9 {
- margin-left: 75%; }
- .offset-sm-10 {
- margin-left: 83.33333333%; }
- .offset-sm-11 {
- margin-left: 91.66666667%; } }
-
-@media (min-width: 768px) {
- .col-md {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
- .row-cols-md-1 > * {
- flex: 0 0 100%;
- max-width: 100%; }
- .row-cols-md-2 > * {
- flex: 0 0 50%;
- max-width: 50%; }
- .row-cols-md-3 > * {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .row-cols-md-4 > * {
- flex: 0 0 25%;
- max-width: 25%; }
- .row-cols-md-5 > * {
- flex: 0 0 20%;
- max-width: 20%; }
- .row-cols-md-6 > * {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-md-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%; }
- .col-md-1 {
- flex: 0 0 8.33333333%;
- max-width: 8.33333333%; }
- .col-md-2 {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-md-3 {
- flex: 0 0 25%;
- max-width: 25%; }
- .col-md-4 {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .col-md-5 {
- flex: 0 0 41.66666667%;
- max-width: 41.66666667%; }
- .col-md-6 {
- flex: 0 0 50%;
- max-width: 50%; }
- .col-md-7 {
- flex: 0 0 58.33333333%;
- max-width: 58.33333333%; }
- .col-md-8 {
- flex: 0 0 66.66666667%;
- max-width: 66.66666667%; }
- .col-md-9 {
- flex: 0 0 75%;
- max-width: 75%; }
- .col-md-10 {
- flex: 0 0 83.33333333%;
- max-width: 83.33333333%; }
- .col-md-11 {
- flex: 0 0 91.66666667%;
- max-width: 91.66666667%; }
- .col-md-12 {
- flex: 0 0 100%;
- max-width: 100%; }
- .order-md-first {
- order: -1; }
- .order-md-last {
- order: 13; }
- .order-md-0 {
- order: 0; }
- .order-md-1 {
- order: 1; }
- .order-md-2 {
- order: 2; }
- .order-md-3 {
- order: 3; }
- .order-md-4 {
- order: 4; }
- .order-md-5 {
- order: 5; }
- .order-md-6 {
- order: 6; }
- .order-md-7 {
- order: 7; }
- .order-md-8 {
- order: 8; }
- .order-md-9 {
- order: 9; }
- .order-md-10 {
- order: 10; }
- .order-md-11 {
- order: 11; }
- .order-md-12 {
- order: 12; }
- .offset-md-0 {
- margin-left: 0; }
- .offset-md-1 {
- margin-left: 8.33333333%; }
- .offset-md-2 {
- margin-left: 16.66666667%; }
- .offset-md-3 {
- margin-left: 25%; }
- .offset-md-4 {
- margin-left: 33.33333333%; }
- .offset-md-5 {
- margin-left: 41.66666667%; }
- .offset-md-6 {
- margin-left: 50%; }
- .offset-md-7 {
- margin-left: 58.33333333%; }
- .offset-md-8 {
- margin-left: 66.66666667%; }
- .offset-md-9 {
- margin-left: 75%; }
- .offset-md-10 {
- margin-left: 83.33333333%; }
- .offset-md-11 {
- margin-left: 91.66666667%; } }
-
-@media (min-width: 992px) {
- .col-lg {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
- .row-cols-lg-1 > * {
- flex: 0 0 100%;
- max-width: 100%; }
- .row-cols-lg-2 > * {
- flex: 0 0 50%;
- max-width: 50%; }
- .row-cols-lg-3 > * {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .row-cols-lg-4 > * {
- flex: 0 0 25%;
- max-width: 25%; }
- .row-cols-lg-5 > * {
- flex: 0 0 20%;
- max-width: 20%; }
- .row-cols-lg-6 > * {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-lg-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%; }
- .col-lg-1 {
- flex: 0 0 8.33333333%;
- max-width: 8.33333333%; }
- .col-lg-2 {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-lg-3 {
- flex: 0 0 25%;
- max-width: 25%; }
- .col-lg-4 {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .col-lg-5 {
- flex: 0 0 41.66666667%;
- max-width: 41.66666667%; }
- .col-lg-6 {
- flex: 0 0 50%;
- max-width: 50%; }
- .col-lg-7 {
- flex: 0 0 58.33333333%;
- max-width: 58.33333333%; }
- .col-lg-8 {
- flex: 0 0 66.66666667%;
- max-width: 66.66666667%; }
- .col-lg-9 {
- flex: 0 0 75%;
- max-width: 75%; }
- .col-lg-10 {
- flex: 0 0 83.33333333%;
- max-width: 83.33333333%; }
- .col-lg-11 {
- flex: 0 0 91.66666667%;
- max-width: 91.66666667%; }
- .col-lg-12 {
- flex: 0 0 100%;
- max-width: 100%; }
- .order-lg-first {
- order: -1; }
- .order-lg-last {
- order: 13; }
- .order-lg-0 {
- order: 0; }
- .order-lg-1 {
- order: 1; }
- .order-lg-2 {
- order: 2; }
- .order-lg-3 {
- order: 3; }
- .order-lg-4 {
- order: 4; }
- .order-lg-5 {
- order: 5; }
- .order-lg-6 {
- order: 6; }
- .order-lg-7 {
- order: 7; }
- .order-lg-8 {
- order: 8; }
- .order-lg-9 {
- order: 9; }
- .order-lg-10 {
- order: 10; }
- .order-lg-11 {
- order: 11; }
- .order-lg-12 {
- order: 12; }
- .offset-lg-0 {
- margin-left: 0; }
- .offset-lg-1 {
- margin-left: 8.33333333%; }
- .offset-lg-2 {
- margin-left: 16.66666667%; }
- .offset-lg-3 {
- margin-left: 25%; }
- .offset-lg-4 {
- margin-left: 33.33333333%; }
- .offset-lg-5 {
- margin-left: 41.66666667%; }
- .offset-lg-6 {
- margin-left: 50%; }
- .offset-lg-7 {
- margin-left: 58.33333333%; }
- .offset-lg-8 {
- margin-left: 66.66666667%; }
- .offset-lg-9 {
- margin-left: 75%; }
- .offset-lg-10 {
- margin-left: 83.33333333%; }
- .offset-lg-11 {
- margin-left: 91.66666667%; } }
-
-@media (min-width: 1300px) {
- .col-xl {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%; }
- .row-cols-xl-1 > * {
- flex: 0 0 100%;
- max-width: 100%; }
- .row-cols-xl-2 > * {
- flex: 0 0 50%;
- max-width: 50%; }
- .row-cols-xl-3 > * {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .row-cols-xl-4 > * {
- flex: 0 0 25%;
- max-width: 25%; }
- .row-cols-xl-5 > * {
- flex: 0 0 20%;
- max-width: 20%; }
- .row-cols-xl-6 > * {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-xl-auto {
- flex: 0 0 auto;
- width: auto;
- max-width: 100%; }
- .col-xl-1 {
- flex: 0 0 8.33333333%;
- max-width: 8.33333333%; }
- .col-xl-2 {
- flex: 0 0 16.66666667%;
- max-width: 16.66666667%; }
- .col-xl-3 {
- flex: 0 0 25%;
- max-width: 25%; }
- .col-xl-4 {
- flex: 0 0 33.33333333%;
- max-width: 33.33333333%; }
- .col-xl-5 {
- flex: 0 0 41.66666667%;
- max-width: 41.66666667%; }
- .col-xl-6 {
- flex: 0 0 50%;
- max-width: 50%; }
- .col-xl-7 {
- flex: 0 0 58.33333333%;
- max-width: 58.33333333%; }
- .col-xl-8 {
- flex: 0 0 66.66666667%;
- max-width: 66.66666667%; }
- .col-xl-9 {
- flex: 0 0 75%;
- max-width: 75%; }
- .col-xl-10 {
- flex: 0 0 83.33333333%;
- max-width: 83.33333333%; }
- .col-xl-11 {
- flex: 0 0 91.66666667%;
- max-width: 91.66666667%; }
- .col-xl-12 {
- flex: 0 0 100%;
- max-width: 100%; }
- .order-xl-first {
- order: -1; }
- .order-xl-last {
- order: 13; }
- .order-xl-0 {
- order: 0; }
- .order-xl-1 {
- order: 1; }
- .order-xl-2 {
- order: 2; }
- .order-xl-3 {
- order: 3; }
- .order-xl-4 {
- order: 4; }
- .order-xl-5 {
- order: 5; }
- .order-xl-6 {
- order: 6; }
- .order-xl-7 {
- order: 7; }
- .order-xl-8 {
- order: 8; }
- .order-xl-9 {
- order: 9; }
- .order-xl-10 {
- order: 10; }
- .order-xl-11 {
- order: 11; }
- .order-xl-12 {
- order: 12; }
- .offset-xl-0 {
- margin-left: 0; }
- .offset-xl-1 {
- margin-left: 8.33333333%; }
- .offset-xl-2 {
- margin-left: 16.66666667%; }
- .offset-xl-3 {
- margin-left: 25%; }
- .offset-xl-4 {
- margin-left: 33.33333333%; }
- .offset-xl-5 {
- margin-left: 41.66666667%; }
- .offset-xl-6 {
- margin-left: 50%; }
- .offset-xl-7 {
- margin-left: 58.33333333%; }
- .offset-xl-8 {
- margin-left: 66.66666667%; }
- .offset-xl-9 {
- margin-left: 75%; }
- .offset-xl-10 {
- margin-left: 83.33333333%; }
- .offset-xl-11 {
- margin-left: 91.66666667%; } }
-
-.d-none {
- display: none !important; }
-
-.d-inline {
- display: inline !important; }
-
-.d-inline-block {
- display: inline-block !important; }
-
-.d-block {
- display: block !important; }
-
-.d-table {
- display: table !important; }
-
-.d-table-row {
- display: table-row !important; }
-
-.d-table-cell {
- display: table-cell !important; }
-
-.d-flex {
- display: flex !important; }
-
-.d-inline-flex {
- display: inline-flex !important; }
-
-@media (min-width: 576px) {
- .d-sm-none {
- display: none !important; }
- .d-sm-inline {
- display: inline !important; }
- .d-sm-inline-block {
- display: inline-block !important; }
- .d-sm-block {
- display: block !important; }
- .d-sm-table {
- display: table !important; }
- .d-sm-table-row {
- display: table-row !important; }
- .d-sm-table-cell {
- display: table-cell !important; }
- .d-sm-flex {
- display: flex !important; }
- .d-sm-inline-flex {
- display: inline-flex !important; } }
-
-@media (min-width: 768px) {
- .d-md-none {
- display: none !important; }
- .d-md-inline {
- display: inline !important; }
- .d-md-inline-block {
- display: inline-block !important; }
- .d-md-block {
- display: block !important; }
- .d-md-table {
- display: table !important; }
- .d-md-table-row {
- display: table-row !important; }
- .d-md-table-cell {
- display: table-cell !important; }
- .d-md-flex {
- display: flex !important; }
- .d-md-inline-flex {
- display: inline-flex !important; } }
-
-@media (min-width: 992px) {
- .d-lg-none {
- display: none !important; }
- .d-lg-inline {
- display: inline !important; }
- .d-lg-inline-block {
- display: inline-block !important; }
- .d-lg-block {
- display: block !important; }
- .d-lg-table {
- display: table !important; }
- .d-lg-table-row {
- display: table-row !important; }
- .d-lg-table-cell {
- display: table-cell !important; }
- .d-lg-flex {
- display: flex !important; }
- .d-lg-inline-flex {
- display: inline-flex !important; } }
-
-@media (min-width: 1300px) {
- .d-xl-none {
- display: none !important; }
- .d-xl-inline {
- display: inline !important; }
- .d-xl-inline-block {
- display: inline-block !important; }
- .d-xl-block {
- display: block !important; }
- .d-xl-table {
- display: table !important; }
- .d-xl-table-row {
- display: table-row !important; }
- .d-xl-table-cell {
- display: table-cell !important; }
- .d-xl-flex {
- display: flex !important; }
- .d-xl-inline-flex {
- display: inline-flex !important; } }
-
-@media print {
- .d-print-none {
- display: none !important; }
- .d-print-inline {
- display: inline !important; }
- .d-print-inline-block {
- display: inline-block !important; }
- .d-print-block {
- display: block !important; }
- .d-print-table {
- display: table !important; }
- .d-print-table-row {
- display: table-row !important; }
- .d-print-table-cell {
- display: table-cell !important; }
- .d-print-flex {
- display: flex !important; }
- .d-print-inline-flex {
- display: inline-flex !important; } }
-
-.flex-row {
- flex-direction: row !important; }
-
-.flex-column {
- flex-direction: column !important; }
-
-.flex-row-reverse {
- flex-direction: row-reverse !important; }
-
-.flex-column-reverse {
- flex-direction: column-reverse !important; }
-
-.flex-wrap {
- flex-wrap: wrap !important; }
-
-.flex-nowrap {
- flex-wrap: nowrap !important; }
-
-.flex-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
-
-.flex-fill {
- flex: 1 1 auto !important; }
-
-.flex-grow-0 {
- flex-grow: 0 !important; }
-
-.flex-grow-1 {
- flex-grow: 1 !important; }
-
-.flex-shrink-0 {
- flex-shrink: 0 !important; }
-
-.flex-shrink-1 {
- flex-shrink: 1 !important; }
-
-.justify-content-start {
- justify-content: flex-start !important; }
-
-.justify-content-end {
- justify-content: flex-end !important; }
-
-.justify-content-center {
- justify-content: center !important; }
-
-.justify-content-between {
- justify-content: space-between !important; }
-
-.justify-content-around {
- justify-content: space-around !important; }
-
-.align-items-start {
- align-items: flex-start !important; }
-
-.align-items-end {
- align-items: flex-end !important; }
-
-.align-items-center {
- align-items: center !important; }
-
-.align-items-baseline {
- align-items: baseline !important; }
-
-.align-items-stretch {
- align-items: stretch !important; }
-
-.align-content-start {
- align-content: flex-start !important; }
-
-.align-content-end {
- align-content: flex-end !important; }
-
-.align-content-center {
- align-content: center !important; }
-
-.align-content-between {
- align-content: space-between !important; }
-
-.align-content-around {
- align-content: space-around !important; }
-
-.align-content-stretch {
- align-content: stretch !important; }
-
-.align-self-auto {
- align-self: auto !important; }
-
-.align-self-start {
- align-self: flex-start !important; }
-
-.align-self-end {
- align-self: flex-end !important; }
-
-.align-self-center {
- align-self: center !important; }
-
-.align-self-baseline {
- align-self: baseline !important; }
-
-.align-self-stretch {
- align-self: stretch !important; }
-
-@media (min-width: 576px) {
- .flex-sm-row {
- flex-direction: row !important; }
- .flex-sm-column {
- flex-direction: column !important; }
- .flex-sm-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-sm-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-sm-wrap {
- flex-wrap: wrap !important; }
- .flex-sm-nowrap {
- flex-wrap: nowrap !important; }
- .flex-sm-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-sm-fill {
- flex: 1 1 auto !important; }
- .flex-sm-grow-0 {
- flex-grow: 0 !important; }
- .flex-sm-grow-1 {
- flex-grow: 1 !important; }
- .flex-sm-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-sm-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-sm-start {
- justify-content: flex-start !important; }
- .justify-content-sm-end {
- justify-content: flex-end !important; }
- .justify-content-sm-center {
- justify-content: center !important; }
- .justify-content-sm-between {
- justify-content: space-between !important; }
- .justify-content-sm-around {
- justify-content: space-around !important; }
- .align-items-sm-start {
- align-items: flex-start !important; }
- .align-items-sm-end {
- align-items: flex-end !important; }
- .align-items-sm-center {
- align-items: center !important; }
- .align-items-sm-baseline {
- align-items: baseline !important; }
- .align-items-sm-stretch {
- align-items: stretch !important; }
- .align-content-sm-start {
- align-content: flex-start !important; }
- .align-content-sm-end {
- align-content: flex-end !important; }
- .align-content-sm-center {
- align-content: center !important; }
- .align-content-sm-between {
- align-content: space-between !important; }
- .align-content-sm-around {
- align-content: space-around !important; }
- .align-content-sm-stretch {
- align-content: stretch !important; }
- .align-self-sm-auto {
- align-self: auto !important; }
- .align-self-sm-start {
- align-self: flex-start !important; }
- .align-self-sm-end {
- align-self: flex-end !important; }
- .align-self-sm-center {
- align-self: center !important; }
- .align-self-sm-baseline {
- align-self: baseline !important; }
- .align-self-sm-stretch {
- align-self: stretch !important; } }
-
-@media (min-width: 768px) {
- .flex-md-row {
- flex-direction: row !important; }
- .flex-md-column {
- flex-direction: column !important; }
- .flex-md-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-md-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-md-wrap {
- flex-wrap: wrap !important; }
- .flex-md-nowrap {
- flex-wrap: nowrap !important; }
- .flex-md-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-md-fill {
- flex: 1 1 auto !important; }
- .flex-md-grow-0 {
- flex-grow: 0 !important; }
- .flex-md-grow-1 {
- flex-grow: 1 !important; }
- .flex-md-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-md-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-md-start {
- justify-content: flex-start !important; }
- .justify-content-md-end {
- justify-content: flex-end !important; }
- .justify-content-md-center {
- justify-content: center !important; }
- .justify-content-md-between {
- justify-content: space-between !important; }
- .justify-content-md-around {
- justify-content: space-around !important; }
- .align-items-md-start {
- align-items: flex-start !important; }
- .align-items-md-end {
- align-items: flex-end !important; }
- .align-items-md-center {
- align-items: center !important; }
- .align-items-md-baseline {
- align-items: baseline !important; }
- .align-items-md-stretch {
- align-items: stretch !important; }
- .align-content-md-start {
- align-content: flex-start !important; }
- .align-content-md-end {
- align-content: flex-end !important; }
- .align-content-md-center {
- align-content: center !important; }
- .align-content-md-between {
- align-content: space-between !important; }
- .align-content-md-around {
- align-content: space-around !important; }
- .align-content-md-stretch {
- align-content: stretch !important; }
- .align-self-md-auto {
- align-self: auto !important; }
- .align-self-md-start {
- align-self: flex-start !important; }
- .align-self-md-end {
- align-self: flex-end !important; }
- .align-self-md-center {
- align-self: center !important; }
- .align-self-md-baseline {
- align-self: baseline !important; }
- .align-self-md-stretch {
- align-self: stretch !important; } }
-
-@media (min-width: 992px) {
- .flex-lg-row {
- flex-direction: row !important; }
- .flex-lg-column {
- flex-direction: column !important; }
- .flex-lg-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-lg-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-lg-wrap {
- flex-wrap: wrap !important; }
- .flex-lg-nowrap {
- flex-wrap: nowrap !important; }
- .flex-lg-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-lg-fill {
- flex: 1 1 auto !important; }
- .flex-lg-grow-0 {
- flex-grow: 0 !important; }
- .flex-lg-grow-1 {
- flex-grow: 1 !important; }
- .flex-lg-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-lg-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-lg-start {
- justify-content: flex-start !important; }
- .justify-content-lg-end {
- justify-content: flex-end !important; }
- .justify-content-lg-center {
- justify-content: center !important; }
- .justify-content-lg-between {
- justify-content: space-between !important; }
- .justify-content-lg-around {
- justify-content: space-around !important; }
- .align-items-lg-start {
- align-items: flex-start !important; }
- .align-items-lg-end {
- align-items: flex-end !important; }
- .align-items-lg-center {
- align-items: center !important; }
- .align-items-lg-baseline {
- align-items: baseline !important; }
- .align-items-lg-stretch {
- align-items: stretch !important; }
- .align-content-lg-start {
- align-content: flex-start !important; }
- .align-content-lg-end {
- align-content: flex-end !important; }
- .align-content-lg-center {
- align-content: center !important; }
- .align-content-lg-between {
- align-content: space-between !important; }
- .align-content-lg-around {
- align-content: space-around !important; }
- .align-content-lg-stretch {
- align-content: stretch !important; }
- .align-self-lg-auto {
- align-self: auto !important; }
- .align-self-lg-start {
- align-self: flex-start !important; }
- .align-self-lg-end {
- align-self: flex-end !important; }
- .align-self-lg-center {
- align-self: center !important; }
- .align-self-lg-baseline {
- align-self: baseline !important; }
- .align-self-lg-stretch {
- align-self: stretch !important; } }
-
-@media (min-width: 1300px) {
- .flex-xl-row {
- flex-direction: row !important; }
- .flex-xl-column {
- flex-direction: column !important; }
- .flex-xl-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-xl-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-xl-wrap {
- flex-wrap: wrap !important; }
- .flex-xl-nowrap {
- flex-wrap: nowrap !important; }
- .flex-xl-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-xl-fill {
- flex: 1 1 auto !important; }
- .flex-xl-grow-0 {
- flex-grow: 0 !important; }
- .flex-xl-grow-1 {
- flex-grow: 1 !important; }
- .flex-xl-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-xl-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-xl-start {
- justify-content: flex-start !important; }
- .justify-content-xl-end {
- justify-content: flex-end !important; }
- .justify-content-xl-center {
- justify-content: center !important; }
- .justify-content-xl-between {
- justify-content: space-between !important; }
- .justify-content-xl-around {
- justify-content: space-around !important; }
- .align-items-xl-start {
- align-items: flex-start !important; }
- .align-items-xl-end {
- align-items: flex-end !important; }
- .align-items-xl-center {
- align-items: center !important; }
- .align-items-xl-baseline {
- align-items: baseline !important; }
- .align-items-xl-stretch {
- align-items: stretch !important; }
- .align-content-xl-start {
- align-content: flex-start !important; }
- .align-content-xl-end {
- align-content: flex-end !important; }
- .align-content-xl-center {
- align-content: center !important; }
- .align-content-xl-between {
- align-content: space-between !important; }
- .align-content-xl-around {
- align-content: space-around !important; }
- .align-content-xl-stretch {
- align-content: stretch !important; }
- .align-self-xl-auto {
- align-self: auto !important; }
- .align-self-xl-start {
- align-self: flex-start !important; }
- .align-self-xl-end {
- align-self: flex-end !important; }
- .align-self-xl-center {
- align-self: center !important; }
- .align-self-xl-baseline {
- align-self: baseline !important; }
- .align-self-xl-stretch {
- align-self: stretch !important; } }
-
-.m-0 {
- margin: 0 !important; }
-
-.mt-0,
-.my-0 {
- margin-top: 0 !important; }
-
-.mr-0,
-.mx-0 {
- margin-right: 0 !important; }
-
-.mb-0,
-.my-0 {
- margin-bottom: 0 !important; }
-
-.ml-0,
-.mx-0 {
- margin-left: 0 !important; }
-
-.m-1 {
- margin: 10px !important; }
-
-.mt-1,
-.my-1 {
- margin-top: 10px !important; }
-
-.mr-1,
-.mx-1 {
- margin-right: 10px !important; }
-
-.mb-1,
-.my-1 {
- margin-bottom: 10px !important; }
-
-.ml-1,
-.mx-1 {
- margin-left: 10px !important; }
-
-.m-2 {
- margin: 20px !important; }
-
-.mt-2,
-.my-2 {
- margin-top: 20px !important; }
-
-.mr-2,
-.mx-2 {
- margin-right: 20px !important; }
-
-.mb-2,
-.my-2 {
- margin-bottom: 20px !important; }
-
-.ml-2,
-.mx-2 {
- margin-left: 20px !important; }
-
-.m-3 {
- margin: 30px !important; }
-
-.mt-3,
-.my-3 {
- margin-top: 30px !important; }
-
-.mr-3,
-.mx-3 {
- margin-right: 30px !important; }
-
-.mb-3,
-.my-3 {
- margin-bottom: 30px !important; }
-
-.ml-3,
-.mx-3 {
- margin-left: 30px !important; }
-
-.m-4 {
- margin: 40px !important; }
-
-.mt-4,
-.my-4 {
- margin-top: 40px !important; }
-
-.mr-4,
-.mx-4 {
- margin-right: 40px !important; }
-
-.mb-4,
-.my-4 {
- margin-bottom: 40px !important; }
-
-.ml-4,
-.mx-4 {
- margin-left: 40px !important; }
-
-.m-5 {
- margin: 50px !important; }
-
-.mt-5,
-.my-5 {
- margin-top: 50px !important; }
-
-.mr-5,
-.mx-5 {
- margin-right: 50px !important; }
-
-.mb-5,
-.my-5 {
- margin-bottom: 50px !important; }
-
-.ml-5,
-.mx-5 {
- margin-left: 50px !important; }
-
-.m-6 {
- margin: 60px !important; }
-
-.mt-6,
-.my-6 {
- margin-top: 60px !important; }
-
-.mr-6,
-.mx-6 {
- margin-right: 60px !important; }
-
-.mb-6,
-.my-6 {
- margin-bottom: 60px !important; }
-
-.ml-6,
-.mx-6 {
- margin-left: 60px !important; }
-
-.m-7 {
- margin: 70px !important; }
-
-.mt-7,
-.my-7 {
- margin-top: 70px !important; }
-
-.mr-7,
-.mx-7 {
- margin-right: 70px !important; }
-
-.mb-7,
-.my-7 {
- margin-bottom: 70px !important; }
-
-.ml-7,
-.mx-7 {
- margin-left: 70px !important; }
-
-.m-8 {
- margin: 80px !important; }
-
-.mt-8,
-.my-8 {
- margin-top: 80px !important; }
-
-.mr-8,
-.mx-8 {
- margin-right: 80px !important; }
-
-.mb-8,
-.my-8 {
- margin-bottom: 80px !important; }
-
-.ml-8,
-.mx-8 {
- margin-left: 80px !important; }
-
-.m-9 {
- margin: 90px !important; }
-
-.mt-9,
-.my-9 {
- margin-top: 90px !important; }
-
-.mr-9,
-.mx-9 {
- margin-right: 90px !important; }
-
-.mb-9,
-.my-9 {
- margin-bottom: 90px !important; }
-
-.ml-9,
-.mx-9 {
- margin-left: 90px !important; }
-
-.m-10 {
- margin: 100px !important; }
-
-.mt-10,
-.my-10 {
- margin-top: 100px !important; }
-
-.mr-10,
-.mx-10 {
- margin-right: 100px !important; }
-
-.mb-10,
-.my-10 {
- margin-bottom: 100px !important; }
-
-.ml-10,
-.mx-10 {
- margin-left: 100px !important; }
-
-.p-0 {
- padding: 0 !important; }
-
-.pt-0,
-.py-0 {
- padding-top: 0 !important; }
-
-.pr-0,
-.px-0 {
- padding-right: 0 !important; }
-
-.pb-0,
-.py-0 {
- padding-bottom: 0 !important; }
-
-.pl-0,
-.px-0 {
- padding-left: 0 !important; }
-
-.p-1 {
- padding: 10px !important; }
-
-.pt-1,
-.py-1 {
- padding-top: 10px !important; }
-
-.pr-1,
-.px-1 {
- padding-right: 10px !important; }
-
-.pb-1,
-.py-1 {
- padding-bottom: 10px !important; }
-
-.pl-1,
-.px-1 {
- padding-left: 10px !important; }
-
-.p-2 {
- padding: 20px !important; }
-
-.pt-2,
-.py-2 {
- padding-top: 20px !important; }
-
-.pr-2,
-.px-2 {
- padding-right: 20px !important; }
-
-.pb-2,
-.py-2 {
- padding-bottom: 20px !important; }
-
-.pl-2,
-.px-2 {
- padding-left: 20px !important; }
-
-.p-3 {
- padding: 30px !important; }
-
-.pt-3,
-.py-3 {
- padding-top: 30px !important; }
-
-.pr-3,
-.px-3 {
- padding-right: 30px !important; }
-
-.pb-3,
-.py-3 {
- padding-bottom: 30px !important; }
-
-.pl-3,
-.px-3 {
- padding-left: 30px !important; }
-
-.p-4 {
- padding: 40px !important; }
-
-.pt-4,
-.py-4 {
- padding-top: 40px !important; }
-
-.pr-4,
-.px-4 {
- padding-right: 40px !important; }
-
-.pb-4,
-.py-4 {
- padding-bottom: 40px !important; }
-
-.pl-4,
-.px-4 {
- padding-left: 40px !important; }
-
-.p-5 {
- padding: 50px !important; }
-
-.pt-5,
-.py-5 {
- padding-top: 50px !important; }
-
-.pr-5,
-.px-5 {
- padding-right: 50px !important; }
-
-.pb-5,
-.py-5 {
- padding-bottom: 50px !important; }
-
-.pl-5,
-.px-5 {
- padding-left: 50px !important; }
-
-.p-6 {
- padding: 60px !important; }
-
-.pt-6,
-.py-6 {
- padding-top: 60px !important; }
-
-.pr-6,
-.px-6 {
- padding-right: 60px !important; }
-
-.pb-6,
-.py-6 {
- padding-bottom: 60px !important; }
-
-.pl-6,
-.px-6 {
- padding-left: 60px !important; }
-
-.p-7 {
- padding: 70px !important; }
-
-.pt-7,
-.py-7 {
- padding-top: 70px !important; }
-
-.pr-7,
-.px-7 {
- padding-right: 70px !important; }
-
-.pb-7,
-.py-7 {
- padding-bottom: 70px !important; }
-
-.pl-7,
-.px-7 {
- padding-left: 70px !important; }
-
-.p-8 {
- padding: 80px !important; }
-
-.pt-8,
-.py-8 {
- padding-top: 80px !important; }
-
-.pr-8,
-.px-8 {
- padding-right: 80px !important; }
-
-.pb-8,
-.py-8 {
- padding-bottom: 80px !important; }
-
-.pl-8,
-.px-8 {
- padding-left: 80px !important; }
-
-.p-9 {
- padding: 90px !important; }
-
-.pt-9,
-.py-9 {
- padding-top: 90px !important; }
-
-.pr-9,
-.px-9 {
- padding-right: 90px !important; }
-
-.pb-9,
-.py-9 {
- padding-bottom: 90px !important; }
-
-.pl-9,
-.px-9 {
- padding-left: 90px !important; }
-
-.p-10 {
- padding: 100px !important; }
-
-.pt-10,
-.py-10 {
- padding-top: 100px !important; }
-
-.pr-10,
-.px-10 {
- padding-right: 100px !important; }
-
-.pb-10,
-.py-10 {
- padding-bottom: 100px !important; }
-
-.pl-10,
-.px-10 {
- padding-left: 100px !important; }
-
-.m-n1 {
- margin: -10px !important; }
-
-.mt-n1,
-.my-n1 {
- margin-top: -10px !important; }
-
-.mr-n1,
-.mx-n1 {
- margin-right: -10px !important; }
-
-.mb-n1,
-.my-n1 {
- margin-bottom: -10px !important; }
-
-.ml-n1,
-.mx-n1 {
- margin-left: -10px !important; }
-
-.m-n2 {
- margin: -20px !important; }
-
-.mt-n2,
-.my-n2 {
- margin-top: -20px !important; }
-
-.mr-n2,
-.mx-n2 {
- margin-right: -20px !important; }
-
-.mb-n2,
-.my-n2 {
- margin-bottom: -20px !important; }
-
-.ml-n2,
-.mx-n2 {
- margin-left: -20px !important; }
-
-.m-n3 {
- margin: -30px !important; }
-
-.mt-n3,
-.my-n3 {
- margin-top: -30px !important; }
-
-.mr-n3,
-.mx-n3 {
- margin-right: -30px !important; }
-
-.mb-n3,
-.my-n3 {
- margin-bottom: -30px !important; }
-
-.ml-n3,
-.mx-n3 {
- margin-left: -30px !important; }
-
-.m-n4 {
- margin: -40px !important; }
-
-.mt-n4,
-.my-n4 {
- margin-top: -40px !important; }
-
-.mr-n4,
-.mx-n4 {
- margin-right: -40px !important; }
-
-.mb-n4,
-.my-n4 {
- margin-bottom: -40px !important; }
-
-.ml-n4,
-.mx-n4 {
- margin-left: -40px !important; }
-
-.m-n5 {
- margin: -50px !important; }
-
-.mt-n5,
-.my-n5 {
- margin-top: -50px !important; }
-
-.mr-n5,
-.mx-n5 {
- margin-right: -50px !important; }
-
-.mb-n5,
-.my-n5 {
- margin-bottom: -50px !important; }
-
-.ml-n5,
-.mx-n5 {
- margin-left: -50px !important; }
-
-.m-n6 {
- margin: -60px !important; }
-
-.mt-n6,
-.my-n6 {
- margin-top: -60px !important; }
-
-.mr-n6,
-.mx-n6 {
- margin-right: -60px !important; }
-
-.mb-n6,
-.my-n6 {
- margin-bottom: -60px !important; }
-
-.ml-n6,
-.mx-n6 {
- margin-left: -60px !important; }
-
-.m-n7 {
- margin: -70px !important; }
-
-.mt-n7,
-.my-n7 {
- margin-top: -70px !important; }
-
-.mr-n7,
-.mx-n7 {
- margin-right: -70px !important; }
-
-.mb-n7,
-.my-n7 {
- margin-bottom: -70px !important; }
-
-.ml-n7,
-.mx-n7 {
- margin-left: -70px !important; }
-
-.m-n8 {
- margin: -80px !important; }
-
-.mt-n8,
-.my-n8 {
- margin-top: -80px !important; }
-
-.mr-n8,
-.mx-n8 {
- margin-right: -80px !important; }
-
-.mb-n8,
-.my-n8 {
- margin-bottom: -80px !important; }
-
-.ml-n8,
-.mx-n8 {
- margin-left: -80px !important; }
-
-.m-n9 {
- margin: -90px !important; }
-
-.mt-n9,
-.my-n9 {
- margin-top: -90px !important; }
-
-.mr-n9,
-.mx-n9 {
- margin-right: -90px !important; }
-
-.mb-n9,
-.my-n9 {
- margin-bottom: -90px !important; }
-
-.ml-n9,
-.mx-n9 {
- margin-left: -90px !important; }
-
-.m-n10 {
- margin: -100px !important; }
-
-.mt-n10,
-.my-n10 {
- margin-top: -100px !important; }
-
-.mr-n10,
-.mx-n10 {
- margin-right: -100px !important; }
-
-.mb-n10,
-.my-n10 {
- margin-bottom: -100px !important; }
-
-.ml-n10,
-.mx-n10 {
- margin-left: -100px !important; }
-
-.m-auto {
- margin: auto !important; }
-
-.mt-auto,
-.my-auto {
- margin-top: auto !important; }
-
-.mr-auto,
-.mx-auto {
- margin-right: auto !important; }
-
-.mb-auto,
-.my-auto {
- margin-bottom: auto !important; }
-
-.ml-auto,
-.mx-auto {
- margin-left: auto !important; }
-
-@media (min-width: 576px) {
- .m-sm-0 {
- margin: 0 !important; }
- .mt-sm-0,
- .my-sm-0 {
- margin-top: 0 !important; }
- .mr-sm-0,
- .mx-sm-0 {
- margin-right: 0 !important; }
- .mb-sm-0,
- .my-sm-0 {
- margin-bottom: 0 !important; }
- .ml-sm-0,
- .mx-sm-0 {
- margin-left: 0 !important; }
- .m-sm-1 {
- margin: 10px !important; }
- .mt-sm-1,
- .my-sm-1 {
- margin-top: 10px !important; }
- .mr-sm-1,
- .mx-sm-1 {
- margin-right: 10px !important; }
- .mb-sm-1,
- .my-sm-1 {
- margin-bottom: 10px !important; }
- .ml-sm-1,
- .mx-sm-1 {
- margin-left: 10px !important; }
- .m-sm-2 {
- margin: 20px !important; }
- .mt-sm-2,
- .my-sm-2 {
- margin-top: 20px !important; }
- .mr-sm-2,
- .mx-sm-2 {
- margin-right: 20px !important; }
- .mb-sm-2,
- .my-sm-2 {
- margin-bottom: 20px !important; }
- .ml-sm-2,
- .mx-sm-2 {
- margin-left: 20px !important; }
- .m-sm-3 {
- margin: 30px !important; }
- .mt-sm-3,
- .my-sm-3 {
- margin-top: 30px !important; }
- .mr-sm-3,
- .mx-sm-3 {
- margin-right: 30px !important; }
- .mb-sm-3,
- .my-sm-3 {
- margin-bottom: 30px !important; }
- .ml-sm-3,
- .mx-sm-3 {
- margin-left: 30px !important; }
- .m-sm-4 {
- margin: 40px !important; }
- .mt-sm-4,
- .my-sm-4 {
- margin-top: 40px !important; }
- .mr-sm-4,
- .mx-sm-4 {
- margin-right: 40px !important; }
- .mb-sm-4,
- .my-sm-4 {
- margin-bottom: 40px !important; }
- .ml-sm-4,
- .mx-sm-4 {
- margin-left: 40px !important; }
- .m-sm-5 {
- margin: 50px !important; }
- .mt-sm-5,
- .my-sm-5 {
- margin-top: 50px !important; }
- .mr-sm-5,
- .mx-sm-5 {
- margin-right: 50px !important; }
- .mb-sm-5,
- .my-sm-5 {
- margin-bottom: 50px !important; }
- .ml-sm-5,
- .mx-sm-5 {
- margin-left: 50px !important; }
- .m-sm-6 {
- margin: 60px !important; }
- .mt-sm-6,
- .my-sm-6 {
- margin-top: 60px !important; }
- .mr-sm-6,
- .mx-sm-6 {
- margin-right: 60px !important; }
- .mb-sm-6,
- .my-sm-6 {
- margin-bottom: 60px !important; }
- .ml-sm-6,
- .mx-sm-6 {
- margin-left: 60px !important; }
- .m-sm-7 {
- margin: 70px !important; }
- .mt-sm-7,
- .my-sm-7 {
- margin-top: 70px !important; }
- .mr-sm-7,
- .mx-sm-7 {
- margin-right: 70px !important; }
- .mb-sm-7,
- .my-sm-7 {
- margin-bottom: 70px !important; }
- .ml-sm-7,
- .mx-sm-7 {
- margin-left: 70px !important; }
- .m-sm-8 {
- margin: 80px !important; }
- .mt-sm-8,
- .my-sm-8 {
- margin-top: 80px !important; }
- .mr-sm-8,
- .mx-sm-8 {
- margin-right: 80px !important; }
- .mb-sm-8,
- .my-sm-8 {
- margin-bottom: 80px !important; }
- .ml-sm-8,
- .mx-sm-8 {
- margin-left: 80px !important; }
- .m-sm-9 {
- margin: 90px !important; }
- .mt-sm-9,
- .my-sm-9 {
- margin-top: 90px !important; }
- .mr-sm-9,
- .mx-sm-9 {
- margin-right: 90px !important; }
- .mb-sm-9,
- .my-sm-9 {
- margin-bottom: 90px !important; }
- .ml-sm-9,
- .mx-sm-9 {
- margin-left: 90px !important; }
- .m-sm-10 {
- margin: 100px !important; }
- .mt-sm-10,
- .my-sm-10 {
- margin-top: 100px !important; }
- .mr-sm-10,
- .mx-sm-10 {
- margin-right: 100px !important; }
- .mb-sm-10,
- .my-sm-10 {
- margin-bottom: 100px !important; }
- .ml-sm-10,
- .mx-sm-10 {
- margin-left: 100px !important; }
- .p-sm-0 {
- padding: 0 !important; }
- .pt-sm-0,
- .py-sm-0 {
- padding-top: 0 !important; }
- .pr-sm-0,
- .px-sm-0 {
- padding-right: 0 !important; }
- .pb-sm-0,
- .py-sm-0 {
- padding-bottom: 0 !important; }
- .pl-sm-0,
- .px-sm-0 {
- padding-left: 0 !important; }
- .p-sm-1 {
- padding: 10px !important; }
- .pt-sm-1,
- .py-sm-1 {
- padding-top: 10px !important; }
- .pr-sm-1,
- .px-sm-1 {
- padding-right: 10px !important; }
- .pb-sm-1,
- .py-sm-1 {
- padding-bottom: 10px !important; }
- .pl-sm-1,
- .px-sm-1 {
- padding-left: 10px !important; }
- .p-sm-2 {
- padding: 20px !important; }
- .pt-sm-2,
- .py-sm-2 {
- padding-top: 20px !important; }
- .pr-sm-2,
- .px-sm-2 {
- padding-right: 20px !important; }
- .pb-sm-2,
- .py-sm-2 {
- padding-bottom: 20px !important; }
- .pl-sm-2,
- .px-sm-2 {
- padding-left: 20px !important; }
- .p-sm-3 {
- padding: 30px !important; }
- .pt-sm-3,
- .py-sm-3 {
- padding-top: 30px !important; }
- .pr-sm-3,
- .px-sm-3 {
- padding-right: 30px !important; }
- .pb-sm-3,
- .py-sm-3 {
- padding-bottom: 30px !important; }
- .pl-sm-3,
- .px-sm-3 {
- padding-left: 30px !important; }
- .p-sm-4 {
- padding: 40px !important; }
- .pt-sm-4,
- .py-sm-4 {
- padding-top: 40px !important; }
- .pr-sm-4,
- .px-sm-4 {
- padding-right: 40px !important; }
- .pb-sm-4,
- .py-sm-4 {
- padding-bottom: 40px !important; }
- .pl-sm-4,
- .px-sm-4 {
- padding-left: 40px !important; }
- .p-sm-5 {
- padding: 50px !important; }
- .pt-sm-5,
- .py-sm-5 {
- padding-top: 50px !important; }
- .pr-sm-5,
- .px-sm-5 {
- padding-right: 50px !important; }
- .pb-sm-5,
- .py-sm-5 {
- padding-bottom: 50px !important; }
- .pl-sm-5,
- .px-sm-5 {
- padding-left: 50px !important; }
- .p-sm-6 {
- padding: 60px !important; }
- .pt-sm-6,
- .py-sm-6 {
- padding-top: 60px !important; }
- .pr-sm-6,
- .px-sm-6 {
- padding-right: 60px !important; }
- .pb-sm-6,
- .py-sm-6 {
- padding-bottom: 60px !important; }
- .pl-sm-6,
- .px-sm-6 {
- padding-left: 60px !important; }
- .p-sm-7 {
- padding: 70px !important; }
- .pt-sm-7,
- .py-sm-7 {
- padding-top: 70px !important; }
- .pr-sm-7,
- .px-sm-7 {
- padding-right: 70px !important; }
- .pb-sm-7,
- .py-sm-7 {
- padding-bottom: 70px !important; }
- .pl-sm-7,
- .px-sm-7 {
- padding-left: 70px !important; }
- .p-sm-8 {
- padding: 80px !important; }
- .pt-sm-8,
- .py-sm-8 {
- padding-top: 80px !important; }
- .pr-sm-8,
- .px-sm-8 {
- padding-right: 80px !important; }
- .pb-sm-8,
- .py-sm-8 {
- padding-bottom: 80px !important; }
- .pl-sm-8,
- .px-sm-8 {
- padding-left: 80px !important; }
- .p-sm-9 {
- padding: 90px !important; }
- .pt-sm-9,
- .py-sm-9 {
- padding-top: 90px !important; }
- .pr-sm-9,
- .px-sm-9 {
- padding-right: 90px !important; }
- .pb-sm-9,
- .py-sm-9 {
- padding-bottom: 90px !important; }
- .pl-sm-9,
- .px-sm-9 {
- padding-left: 90px !important; }
- .p-sm-10 {
- padding: 100px !important; }
- .pt-sm-10,
- .py-sm-10 {
- padding-top: 100px !important; }
- .pr-sm-10,
- .px-sm-10 {
- padding-right: 100px !important; }
- .pb-sm-10,
- .py-sm-10 {
- padding-bottom: 100px !important; }
- .pl-sm-10,
- .px-sm-10 {
- padding-left: 100px !important; }
- .m-sm-n1 {
- margin: -10px !important; }
- .mt-sm-n1,
- .my-sm-n1 {
- margin-top: -10px !important; }
- .mr-sm-n1,
- .mx-sm-n1 {
- margin-right: -10px !important; }
- .mb-sm-n1,
- .my-sm-n1 {
- margin-bottom: -10px !important; }
- .ml-sm-n1,
- .mx-sm-n1 {
- margin-left: -10px !important; }
- .m-sm-n2 {
- margin: -20px !important; }
- .mt-sm-n2,
- .my-sm-n2 {
- margin-top: -20px !important; }
- .mr-sm-n2,
- .mx-sm-n2 {
- margin-right: -20px !important; }
- .mb-sm-n2,
- .my-sm-n2 {
- margin-bottom: -20px !important; }
- .ml-sm-n2,
- .mx-sm-n2 {
- margin-left: -20px !important; }
- .m-sm-n3 {
- margin: -30px !important; }
- .mt-sm-n3,
- .my-sm-n3 {
- margin-top: -30px !important; }
- .mr-sm-n3,
- .mx-sm-n3 {
- margin-right: -30px !important; }
- .mb-sm-n3,
- .my-sm-n3 {
- margin-bottom: -30px !important; }
- .ml-sm-n3,
- .mx-sm-n3 {
- margin-left: -30px !important; }
- .m-sm-n4 {
- margin: -40px !important; }
- .mt-sm-n4,
- .my-sm-n4 {
- margin-top: -40px !important; }
- .mr-sm-n4,
- .mx-sm-n4 {
- margin-right: -40px !important; }
- .mb-sm-n4,
- .my-sm-n4 {
- margin-bottom: -40px !important; }
- .ml-sm-n4,
- .mx-sm-n4 {
- margin-left: -40px !important; }
- .m-sm-n5 {
- margin: -50px !important; }
- .mt-sm-n5,
- .my-sm-n5 {
- margin-top: -50px !important; }
- .mr-sm-n5,
- .mx-sm-n5 {
- margin-right: -50px !important; }
- .mb-sm-n5,
- .my-sm-n5 {
- margin-bottom: -50px !important; }
- .ml-sm-n5,
- .mx-sm-n5 {
- margin-left: -50px !important; }
- .m-sm-n6 {
- margin: -60px !important; }
- .mt-sm-n6,
- .my-sm-n6 {
- margin-top: -60px !important; }
- .mr-sm-n6,
- .mx-sm-n6 {
- margin-right: -60px !important; }
- .mb-sm-n6,
- .my-sm-n6 {
- margin-bottom: -60px !important; }
- .ml-sm-n6,
- .mx-sm-n6 {
- margin-left: -60px !important; }
- .m-sm-n7 {
- margin: -70px !important; }
- .mt-sm-n7,
- .my-sm-n7 {
- margin-top: -70px !important; }
- .mr-sm-n7,
- .mx-sm-n7 {
- margin-right: -70px !important; }
- .mb-sm-n7,
- .my-sm-n7 {
- margin-bottom: -70px !important; }
- .ml-sm-n7,
- .mx-sm-n7 {
- margin-left: -70px !important; }
- .m-sm-n8 {
- margin: -80px !important; }
- .mt-sm-n8,
- .my-sm-n8 {
- margin-top: -80px !important; }
- .mr-sm-n8,
- .mx-sm-n8 {
- margin-right: -80px !important; }
- .mb-sm-n8,
- .my-sm-n8 {
- margin-bottom: -80px !important; }
- .ml-sm-n8,
- .mx-sm-n8 {
- margin-left: -80px !important; }
- .m-sm-n9 {
- margin: -90px !important; }
- .mt-sm-n9,
- .my-sm-n9 {
- margin-top: -90px !important; }
- .mr-sm-n9,
- .mx-sm-n9 {
- margin-right: -90px !important; }
- .mb-sm-n9,
- .my-sm-n9 {
- margin-bottom: -90px !important; }
- .ml-sm-n9,
- .mx-sm-n9 {
- margin-left: -90px !important; }
- .m-sm-n10 {
- margin: -100px !important; }
- .mt-sm-n10,
- .my-sm-n10 {
- margin-top: -100px !important; }
- .mr-sm-n10,
- .mx-sm-n10 {
- margin-right: -100px !important; }
- .mb-sm-n10,
- .my-sm-n10 {
- margin-bottom: -100px !important; }
- .ml-sm-n10,
- .mx-sm-n10 {
- margin-left: -100px !important; }
- .m-sm-auto {
- margin: auto !important; }
- .mt-sm-auto,
- .my-sm-auto {
- margin-top: auto !important; }
- .mr-sm-auto,
- .mx-sm-auto {
- margin-right: auto !important; }
- .mb-sm-auto,
- .my-sm-auto {
- margin-bottom: auto !important; }
- .ml-sm-auto,
- .mx-sm-auto {
- margin-left: auto !important; } }
-
-@media (min-width: 768px) {
- .m-md-0 {
- margin: 0 !important; }
- .mt-md-0,
- .my-md-0 {
- margin-top: 0 !important; }
- .mr-md-0,
- .mx-md-0 {
- margin-right: 0 !important; }
- .mb-md-0,
- .my-md-0 {
- margin-bottom: 0 !important; }
- .ml-md-0,
- .mx-md-0 {
- margin-left: 0 !important; }
- .m-md-1 {
- margin: 10px !important; }
- .mt-md-1,
- .my-md-1 {
- margin-top: 10px !important; }
- .mr-md-1,
- .mx-md-1 {
- margin-right: 10px !important; }
- .mb-md-1,
- .my-md-1 {
- margin-bottom: 10px !important; }
- .ml-md-1,
- .mx-md-1 {
- margin-left: 10px !important; }
- .m-md-2 {
- margin: 20px !important; }
- .mt-md-2,
- .my-md-2 {
- margin-top: 20px !important; }
- .mr-md-2,
- .mx-md-2 {
- margin-right: 20px !important; }
- .mb-md-2,
- .my-md-2 {
- margin-bottom: 20px !important; }
- .ml-md-2,
- .mx-md-2 {
- margin-left: 20px !important; }
- .m-md-3 {
- margin: 30px !important; }
- .mt-md-3,
- .my-md-3 {
- margin-top: 30px !important; }
- .mr-md-3,
- .mx-md-3 {
- margin-right: 30px !important; }
- .mb-md-3,
- .my-md-3 {
- margin-bottom: 30px !important; }
- .ml-md-3,
- .mx-md-3 {
- margin-left: 30px !important; }
- .m-md-4 {
- margin: 40px !important; }
- .mt-md-4,
- .my-md-4 {
- margin-top: 40px !important; }
- .mr-md-4,
- .mx-md-4 {
- margin-right: 40px !important; }
- .mb-md-4,
- .my-md-4 {
- margin-bottom: 40px !important; }
- .ml-md-4,
- .mx-md-4 {
- margin-left: 40px !important; }
- .m-md-5 {
- margin: 50px !important; }
- .mt-md-5,
- .my-md-5 {
- margin-top: 50px !important; }
- .mr-md-5,
- .mx-md-5 {
- margin-right: 50px !important; }
- .mb-md-5,
- .my-md-5 {
- margin-bottom: 50px !important; }
- .ml-md-5,
- .mx-md-5 {
- margin-left: 50px !important; }
- .m-md-6 {
- margin: 60px !important; }
- .mt-md-6,
- .my-md-6 {
- margin-top: 60px !important; }
- .mr-md-6,
- .mx-md-6 {
- margin-right: 60px !important; }
- .mb-md-6,
- .my-md-6 {
- margin-bottom: 60px !important; }
- .ml-md-6,
- .mx-md-6 {
- margin-left: 60px !important; }
- .m-md-7 {
- margin: 70px !important; }
- .mt-md-7,
- .my-md-7 {
- margin-top: 70px !important; }
- .mr-md-7,
- .mx-md-7 {
- margin-right: 70px !important; }
- .mb-md-7,
- .my-md-7 {
- margin-bottom: 70px !important; }
- .ml-md-7,
- .mx-md-7 {
- margin-left: 70px !important; }
- .m-md-8 {
- margin: 80px !important; }
- .mt-md-8,
- .my-md-8 {
- margin-top: 80px !important; }
- .mr-md-8,
- .mx-md-8 {
- margin-right: 80px !important; }
- .mb-md-8,
- .my-md-8 {
- margin-bottom: 80px !important; }
- .ml-md-8,
- .mx-md-8 {
- margin-left: 80px !important; }
- .m-md-9 {
- margin: 90px !important; }
- .mt-md-9,
- .my-md-9 {
- margin-top: 90px !important; }
- .mr-md-9,
- .mx-md-9 {
- margin-right: 90px !important; }
- .mb-md-9,
- .my-md-9 {
- margin-bottom: 90px !important; }
- .ml-md-9,
- .mx-md-9 {
- margin-left: 90px !important; }
- .m-md-10 {
- margin: 100px !important; }
- .mt-md-10,
- .my-md-10 {
- margin-top: 100px !important; }
- .mr-md-10,
- .mx-md-10 {
- margin-right: 100px !important; }
- .mb-md-10,
- .my-md-10 {
- margin-bottom: 100px !important; }
- .ml-md-10,
- .mx-md-10 {
- margin-left: 100px !important; }
- .p-md-0 {
- padding: 0 !important; }
- .pt-md-0,
- .py-md-0 {
- padding-top: 0 !important; }
- .pr-md-0,
- .px-md-0 {
- padding-right: 0 !important; }
- .pb-md-0,
- .py-md-0 {
- padding-bottom: 0 !important; }
- .pl-md-0,
- .px-md-0 {
- padding-left: 0 !important; }
- .p-md-1 {
- padding: 10px !important; }
- .pt-md-1,
- .py-md-1 {
- padding-top: 10px !important; }
- .pr-md-1,
- .px-md-1 {
- padding-right: 10px !important; }
- .pb-md-1,
- .py-md-1 {
- padding-bottom: 10px !important; }
- .pl-md-1,
- .px-md-1 {
- padding-left: 10px !important; }
- .p-md-2 {
- padding: 20px !important; }
- .pt-md-2,
- .py-md-2 {
- padding-top: 20px !important; }
- .pr-md-2,
- .px-md-2 {
- padding-right: 20px !important; }
- .pb-md-2,
- .py-md-2 {
- padding-bottom: 20px !important; }
- .pl-md-2,
- .px-md-2 {
- padding-left: 20px !important; }
- .p-md-3 {
- padding: 30px !important; }
- .pt-md-3,
- .py-md-3 {
- padding-top: 30px !important; }
- .pr-md-3,
- .px-md-3 {
- padding-right: 30px !important; }
- .pb-md-3,
- .py-md-3 {
- padding-bottom: 30px !important; }
- .pl-md-3,
- .px-md-3 {
- padding-left: 30px !important; }
- .p-md-4 {
- padding: 40px !important; }
- .pt-md-4,
- .py-md-4 {
- padding-top: 40px !important; }
- .pr-md-4,
- .px-md-4 {
- padding-right: 40px !important; }
- .pb-md-4,
- .py-md-4 {
- padding-bottom: 40px !important; }
- .pl-md-4,
- .px-md-4 {
- padding-left: 40px !important; }
- .p-md-5 {
- padding: 50px !important; }
- .pt-md-5,
- .py-md-5 {
- padding-top: 50px !important; }
- .pr-md-5,
- .px-md-5 {
- padding-right: 50px !important; }
- .pb-md-5,
- .py-md-5 {
- padding-bottom: 50px !important; }
- .pl-md-5,
- .px-md-5 {
- padding-left: 50px !important; }
- .p-md-6 {
- padding: 60px !important; }
- .pt-md-6,
- .py-md-6 {
- padding-top: 60px !important; }
- .pr-md-6,
- .px-md-6 {
- padding-right: 60px !important; }
- .pb-md-6,
- .py-md-6 {
- padding-bottom: 60px !important; }
- .pl-md-6,
- .px-md-6 {
- padding-left: 60px !important; }
- .p-md-7 {
- padding: 70px !important; }
- .pt-md-7,
- .py-md-7 {
- padding-top: 70px !important; }
- .pr-md-7,
- .px-md-7 {
- padding-right: 70px !important; }
- .pb-md-7,
- .py-md-7 {
- padding-bottom: 70px !important; }
- .pl-md-7,
- .px-md-7 {
- padding-left: 70px !important; }
- .p-md-8 {
- padding: 80px !important; }
- .pt-md-8,
- .py-md-8 {
- padding-top: 80px !important; }
- .pr-md-8,
- .px-md-8 {
- padding-right: 80px !important; }
- .pb-md-8,
- .py-md-8 {
- padding-bottom: 80px !important; }
- .pl-md-8,
- .px-md-8 {
- padding-left: 80px !important; }
- .p-md-9 {
- padding: 90px !important; }
- .pt-md-9,
- .py-md-9 {
- padding-top: 90px !important; }
- .pr-md-9,
- .px-md-9 {
- padding-right: 90px !important; }
- .pb-md-9,
- .py-md-9 {
- padding-bottom: 90px !important; }
- .pl-md-9,
- .px-md-9 {
- padding-left: 90px !important; }
- .p-md-10 {
- padding: 100px !important; }
- .pt-md-10,
- .py-md-10 {
- padding-top: 100px !important; }
- .pr-md-10,
- .px-md-10 {
- padding-right: 100px !important; }
- .pb-md-10,
- .py-md-10 {
- padding-bottom: 100px !important; }
- .pl-md-10,
- .px-md-10 {
- padding-left: 100px !important; }
- .m-md-n1 {
- margin: -10px !important; }
- .mt-md-n1,
- .my-md-n1 {
- margin-top: -10px !important; }
- .mr-md-n1,
- .mx-md-n1 {
- margin-right: -10px !important; }
- .mb-md-n1,
- .my-md-n1 {
- margin-bottom: -10px !important; }
- .ml-md-n1,
- .mx-md-n1 {
- margin-left: -10px !important; }
- .m-md-n2 {
- margin: -20px !important; }
- .mt-md-n2,
- .my-md-n2 {
- margin-top: -20px !important; }
- .mr-md-n2,
- .mx-md-n2 {
- margin-right: -20px !important; }
- .mb-md-n2,
- .my-md-n2 {
- margin-bottom: -20px !important; }
- .ml-md-n2,
- .mx-md-n2 {
- margin-left: -20px !important; }
- .m-md-n3 {
- margin: -30px !important; }
- .mt-md-n3,
- .my-md-n3 {
- margin-top: -30px !important; }
- .mr-md-n3,
- .mx-md-n3 {
- margin-right: -30px !important; }
- .mb-md-n3,
- .my-md-n3 {
- margin-bottom: -30px !important; }
- .ml-md-n3,
- .mx-md-n3 {
- margin-left: -30px !important; }
- .m-md-n4 {
- margin: -40px !important; }
- .mt-md-n4,
- .my-md-n4 {
- margin-top: -40px !important; }
- .mr-md-n4,
- .mx-md-n4 {
- margin-right: -40px !important; }
- .mb-md-n4,
- .my-md-n4 {
- margin-bottom: -40px !important; }
- .ml-md-n4,
- .mx-md-n4 {
- margin-left: -40px !important; }
- .m-md-n5 {
- margin: -50px !important; }
- .mt-md-n5,
- .my-md-n5 {
- margin-top: -50px !important; }
- .mr-md-n5,
- .mx-md-n5 {
- margin-right: -50px !important; }
- .mb-md-n5,
- .my-md-n5 {
- margin-bottom: -50px !important; }
- .ml-md-n5,
- .mx-md-n5 {
- margin-left: -50px !important; }
- .m-md-n6 {
- margin: -60px !important; }
- .mt-md-n6,
- .my-md-n6 {
- margin-top: -60px !important; }
- .mr-md-n6,
- .mx-md-n6 {
- margin-right: -60px !important; }
- .mb-md-n6,
- .my-md-n6 {
- margin-bottom: -60px !important; }
- .ml-md-n6,
- .mx-md-n6 {
- margin-left: -60px !important; }
- .m-md-n7 {
- margin: -70px !important; }
- .mt-md-n7,
- .my-md-n7 {
- margin-top: -70px !important; }
- .mr-md-n7,
- .mx-md-n7 {
- margin-right: -70px !important; }
- .mb-md-n7,
- .my-md-n7 {
- margin-bottom: -70px !important; }
- .ml-md-n7,
- .mx-md-n7 {
- margin-left: -70px !important; }
- .m-md-n8 {
- margin: -80px !important; }
- .mt-md-n8,
- .my-md-n8 {
- margin-top: -80px !important; }
- .mr-md-n8,
- .mx-md-n8 {
- margin-right: -80px !important; }
- .mb-md-n8,
- .my-md-n8 {
- margin-bottom: -80px !important; }
- .ml-md-n8,
- .mx-md-n8 {
- margin-left: -80px !important; }
- .m-md-n9 {
- margin: -90px !important; }
- .mt-md-n9,
- .my-md-n9 {
- margin-top: -90px !important; }
- .mr-md-n9,
- .mx-md-n9 {
- margin-right: -90px !important; }
- .mb-md-n9,
- .my-md-n9 {
- margin-bottom: -90px !important; }
- .ml-md-n9,
- .mx-md-n9 {
- margin-left: -90px !important; }
- .m-md-n10 {
- margin: -100px !important; }
- .mt-md-n10,
- .my-md-n10 {
- margin-top: -100px !important; }
- .mr-md-n10,
- .mx-md-n10 {
- margin-right: -100px !important; }
- .mb-md-n10,
- .my-md-n10 {
- margin-bottom: -100px !important; }
- .ml-md-n10,
- .mx-md-n10 {
- margin-left: -100px !important; }
- .m-md-auto {
- margin: auto !important; }
- .mt-md-auto,
- .my-md-auto {
- margin-top: auto !important; }
- .mr-md-auto,
- .mx-md-auto {
- margin-right: auto !important; }
- .mb-md-auto,
- .my-md-auto {
- margin-bottom: auto !important; }
- .ml-md-auto,
- .mx-md-auto {
- margin-left: auto !important; } }
-
-@media (min-width: 992px) {
- .m-lg-0 {
- margin: 0 !important; }
- .mt-lg-0,
- .my-lg-0 {
- margin-top: 0 !important; }
- .mr-lg-0,
- .mx-lg-0 {
- margin-right: 0 !important; }
- .mb-lg-0,
- .my-lg-0 {
- margin-bottom: 0 !important; }
- .ml-lg-0,
- .mx-lg-0 {
- margin-left: 0 !important; }
- .m-lg-1 {
- margin: 10px !important; }
- .mt-lg-1,
- .my-lg-1 {
- margin-top: 10px !important; }
- .mr-lg-1,
- .mx-lg-1 {
- margin-right: 10px !important; }
- .mb-lg-1,
- .my-lg-1 {
- margin-bottom: 10px !important; }
- .ml-lg-1,
- .mx-lg-1 {
- margin-left: 10px !important; }
- .m-lg-2 {
- margin: 20px !important; }
- .mt-lg-2,
- .my-lg-2 {
- margin-top: 20px !important; }
- .mr-lg-2,
- .mx-lg-2 {
- margin-right: 20px !important; }
- .mb-lg-2,
- .my-lg-2 {
- margin-bottom: 20px !important; }
- .ml-lg-2,
- .mx-lg-2 {
- margin-left: 20px !important; }
- .m-lg-3 {
- margin: 30px !important; }
- .mt-lg-3,
- .my-lg-3 {
- margin-top: 30px !important; }
- .mr-lg-3,
- .mx-lg-3 {
- margin-right: 30px !important; }
- .mb-lg-3,
- .my-lg-3 {
- margin-bottom: 30px !important; }
- .ml-lg-3,
- .mx-lg-3 {
- margin-left: 30px !important; }
- .m-lg-4 {
- margin: 40px !important; }
- .mt-lg-4,
- .my-lg-4 {
- margin-top: 40px !important; }
- .mr-lg-4,
- .mx-lg-4 {
- margin-right: 40px !important; }
- .mb-lg-4,
- .my-lg-4 {
- margin-bottom: 40px !important; }
- .ml-lg-4,
- .mx-lg-4 {
- margin-left: 40px !important; }
- .m-lg-5 {
- margin: 50px !important; }
- .mt-lg-5,
- .my-lg-5 {
- margin-top: 50px !important; }
- .mr-lg-5,
- .mx-lg-5 {
- margin-right: 50px !important; }
- .mb-lg-5,
- .my-lg-5 {
- margin-bottom: 50px !important; }
- .ml-lg-5,
- .mx-lg-5 {
- margin-left: 50px !important; }
- .m-lg-6 {
- margin: 60px !important; }
- .mt-lg-6,
- .my-lg-6 {
- margin-top: 60px !important; }
- .mr-lg-6,
- .mx-lg-6 {
- margin-right: 60px !important; }
- .mb-lg-6,
- .my-lg-6 {
- margin-bottom: 60px !important; }
- .ml-lg-6,
- .mx-lg-6 {
- margin-left: 60px !important; }
- .m-lg-7 {
- margin: 70px !important; }
- .mt-lg-7,
- .my-lg-7 {
- margin-top: 70px !important; }
- .mr-lg-7,
- .mx-lg-7 {
- margin-right: 70px !important; }
- .mb-lg-7,
- .my-lg-7 {
- margin-bottom: 70px !important; }
- .ml-lg-7,
- .mx-lg-7 {
- margin-left: 70px !important; }
- .m-lg-8 {
- margin: 80px !important; }
- .mt-lg-8,
- .my-lg-8 {
- margin-top: 80px !important; }
- .mr-lg-8,
- .mx-lg-8 {
- margin-right: 80px !important; }
- .mb-lg-8,
- .my-lg-8 {
- margin-bottom: 80px !important; }
- .ml-lg-8,
- .mx-lg-8 {
- margin-left: 80px !important; }
- .m-lg-9 {
- margin: 90px !important; }
- .mt-lg-9,
- .my-lg-9 {
- margin-top: 90px !important; }
- .mr-lg-9,
- .mx-lg-9 {
- margin-right: 90px !important; }
- .mb-lg-9,
- .my-lg-9 {
- margin-bottom: 90px !important; }
- .ml-lg-9,
- .mx-lg-9 {
- margin-left: 90px !important; }
- .m-lg-10 {
- margin: 100px !important; }
- .mt-lg-10,
- .my-lg-10 {
- margin-top: 100px !important; }
- .mr-lg-10,
- .mx-lg-10 {
- margin-right: 100px !important; }
- .mb-lg-10,
- .my-lg-10 {
- margin-bottom: 100px !important; }
- .ml-lg-10,
- .mx-lg-10 {
- margin-left: 100px !important; }
- .p-lg-0 {
- padding: 0 !important; }
- .pt-lg-0,
- .py-lg-0 {
- padding-top: 0 !important; }
- .pr-lg-0,
- .px-lg-0 {
- padding-right: 0 !important; }
- .pb-lg-0,
- .py-lg-0 {
- padding-bottom: 0 !important; }
- .pl-lg-0,
- .px-lg-0 {
- padding-left: 0 !important; }
- .p-lg-1 {
- padding: 10px !important; }
- .pt-lg-1,
- .py-lg-1 {
- padding-top: 10px !important; }
- .pr-lg-1,
- .px-lg-1 {
- padding-right: 10px !important; }
- .pb-lg-1,
- .py-lg-1 {
- padding-bottom: 10px !important; }
- .pl-lg-1,
- .px-lg-1 {
- padding-left: 10px !important; }
- .p-lg-2 {
- padding: 20px !important; }
- .pt-lg-2,
- .py-lg-2 {
- padding-top: 20px !important; }
- .pr-lg-2,
- .px-lg-2 {
- padding-right: 20px !important; }
- .pb-lg-2,
- .py-lg-2 {
- padding-bottom: 20px !important; }
- .pl-lg-2,
- .px-lg-2 {
- padding-left: 20px !important; }
- .p-lg-3 {
- padding: 30px !important; }
- .pt-lg-3,
- .py-lg-3 {
- padding-top: 30px !important; }
- .pr-lg-3,
- .px-lg-3 {
- padding-right: 30px !important; }
- .pb-lg-3,
- .py-lg-3 {
- padding-bottom: 30px !important; }
- .pl-lg-3,
- .px-lg-3 {
- padding-left: 30px !important; }
- .p-lg-4 {
- padding: 40px !important; }
- .pt-lg-4,
- .py-lg-4 {
- padding-top: 40px !important; }
- .pr-lg-4,
- .px-lg-4 {
- padding-right: 40px !important; }
- .pb-lg-4,
- .py-lg-4 {
- padding-bottom: 40px !important; }
- .pl-lg-4,
- .px-lg-4 {
- padding-left: 40px !important; }
- .p-lg-5 {
- padding: 50px !important; }
- .pt-lg-5,
- .py-lg-5 {
- padding-top: 50px !important; }
- .pr-lg-5,
- .px-lg-5 {
- padding-right: 50px !important; }
- .pb-lg-5,
- .py-lg-5 {
- padding-bottom: 50px !important; }
- .pl-lg-5,
- .px-lg-5 {
- padding-left: 50px !important; }
- .p-lg-6 {
- padding: 60px !important; }
- .pt-lg-6,
- .py-lg-6 {
- padding-top: 60px !important; }
- .pr-lg-6,
- .px-lg-6 {
- padding-right: 60px !important; }
- .pb-lg-6,
- .py-lg-6 {
- padding-bottom: 60px !important; }
- .pl-lg-6,
- .px-lg-6 {
- padding-left: 60px !important; }
- .p-lg-7 {
- padding: 70px !important; }
- .pt-lg-7,
- .py-lg-7 {
- padding-top: 70px !important; }
- .pr-lg-7,
- .px-lg-7 {
- padding-right: 70px !important; }
- .pb-lg-7,
- .py-lg-7 {
- padding-bottom: 70px !important; }
- .pl-lg-7,
- .px-lg-7 {
- padding-left: 70px !important; }
- .p-lg-8 {
- padding: 80px !important; }
- .pt-lg-8,
- .py-lg-8 {
- padding-top: 80px !important; }
- .pr-lg-8,
- .px-lg-8 {
- padding-right: 80px !important; }
- .pb-lg-8,
- .py-lg-8 {
- padding-bottom: 80px !important; }
- .pl-lg-8,
- .px-lg-8 {
- padding-left: 80px !important; }
- .p-lg-9 {
- padding: 90px !important; }
- .pt-lg-9,
- .py-lg-9 {
- padding-top: 90px !important; }
- .pr-lg-9,
- .px-lg-9 {
- padding-right: 90px !important; }
- .pb-lg-9,
- .py-lg-9 {
- padding-bottom: 90px !important; }
- .pl-lg-9,
- .px-lg-9 {
- padding-left: 90px !important; }
- .p-lg-10 {
- padding: 100px !important; }
- .pt-lg-10,
- .py-lg-10 {
- padding-top: 100px !important; }
- .pr-lg-10,
- .px-lg-10 {
- padding-right: 100px !important; }
- .pb-lg-10,
- .py-lg-10 {
- padding-bottom: 100px !important; }
- .pl-lg-10,
- .px-lg-10 {
- padding-left: 100px !important; }
- .m-lg-n1 {
- margin: -10px !important; }
- .mt-lg-n1,
- .my-lg-n1 {
- margin-top: -10px !important; }
- .mr-lg-n1,
- .mx-lg-n1 {
- margin-right: -10px !important; }
- .mb-lg-n1,
- .my-lg-n1 {
- margin-bottom: -10px !important; }
- .ml-lg-n1,
- .mx-lg-n1 {
- margin-left: -10px !important; }
- .m-lg-n2 {
- margin: -20px !important; }
- .mt-lg-n2,
- .my-lg-n2 {
- margin-top: -20px !important; }
- .mr-lg-n2,
- .mx-lg-n2 {
- margin-right: -20px !important; }
- .mb-lg-n2,
- .my-lg-n2 {
- margin-bottom: -20px !important; }
- .ml-lg-n2,
- .mx-lg-n2 {
- margin-left: -20px !important; }
- .m-lg-n3 {
- margin: -30px !important; }
- .mt-lg-n3,
- .my-lg-n3 {
- margin-top: -30px !important; }
- .mr-lg-n3,
- .mx-lg-n3 {
- margin-right: -30px !important; }
- .mb-lg-n3,
- .my-lg-n3 {
- margin-bottom: -30px !important; }
- .ml-lg-n3,
- .mx-lg-n3 {
- margin-left: -30px !important; }
- .m-lg-n4 {
- margin: -40px !important; }
- .mt-lg-n4,
- .my-lg-n4 {
- margin-top: -40px !important; }
- .mr-lg-n4,
- .mx-lg-n4 {
- margin-right: -40px !important; }
- .mb-lg-n4,
- .my-lg-n4 {
- margin-bottom: -40px !important; }
- .ml-lg-n4,
- .mx-lg-n4 {
- margin-left: -40px !important; }
- .m-lg-n5 {
- margin: -50px !important; }
- .mt-lg-n5,
- .my-lg-n5 {
- margin-top: -50px !important; }
- .mr-lg-n5,
- .mx-lg-n5 {
- margin-right: -50px !important; }
- .mb-lg-n5,
- .my-lg-n5 {
- margin-bottom: -50px !important; }
- .ml-lg-n5,
- .mx-lg-n5 {
- margin-left: -50px !important; }
- .m-lg-n6 {
- margin: -60px !important; }
- .mt-lg-n6,
- .my-lg-n6 {
- margin-top: -60px !important; }
- .mr-lg-n6,
- .mx-lg-n6 {
- margin-right: -60px !important; }
- .mb-lg-n6,
- .my-lg-n6 {
- margin-bottom: -60px !important; }
- .ml-lg-n6,
- .mx-lg-n6 {
- margin-left: -60px !important; }
- .m-lg-n7 {
- margin: -70px !important; }
- .mt-lg-n7,
- .my-lg-n7 {
- margin-top: -70px !important; }
- .mr-lg-n7,
- .mx-lg-n7 {
- margin-right: -70px !important; }
- .mb-lg-n7,
- .my-lg-n7 {
- margin-bottom: -70px !important; }
- .ml-lg-n7,
- .mx-lg-n7 {
- margin-left: -70px !important; }
- .m-lg-n8 {
- margin: -80px !important; }
- .mt-lg-n8,
- .my-lg-n8 {
- margin-top: -80px !important; }
- .mr-lg-n8,
- .mx-lg-n8 {
- margin-right: -80px !important; }
- .mb-lg-n8,
- .my-lg-n8 {
- margin-bottom: -80px !important; }
- .ml-lg-n8,
- .mx-lg-n8 {
- margin-left: -80px !important; }
- .m-lg-n9 {
- margin: -90px !important; }
- .mt-lg-n9,
- .my-lg-n9 {
- margin-top: -90px !important; }
- .mr-lg-n9,
- .mx-lg-n9 {
- margin-right: -90px !important; }
- .mb-lg-n9,
- .my-lg-n9 {
- margin-bottom: -90px !important; }
- .ml-lg-n9,
- .mx-lg-n9 {
- margin-left: -90px !important; }
- .m-lg-n10 {
- margin: -100px !important; }
- .mt-lg-n10,
- .my-lg-n10 {
- margin-top: -100px !important; }
- .mr-lg-n10,
- .mx-lg-n10 {
- margin-right: -100px !important; }
- .mb-lg-n10,
- .my-lg-n10 {
- margin-bottom: -100px !important; }
- .ml-lg-n10,
- .mx-lg-n10 {
- margin-left: -100px !important; }
- .m-lg-auto {
- margin: auto !important; }
- .mt-lg-auto,
- .my-lg-auto {
- margin-top: auto !important; }
- .mr-lg-auto,
- .mx-lg-auto {
- margin-right: auto !important; }
- .mb-lg-auto,
- .my-lg-auto {
- margin-bottom: auto !important; }
- .ml-lg-auto,
- .mx-lg-auto {
- margin-left: auto !important; } }
-
-@media (min-width: 1300px) {
- .m-xl-0 {
- margin: 0 !important; }
- .mt-xl-0,
- .my-xl-0 {
- margin-top: 0 !important; }
- .mr-xl-0,
- .mx-xl-0 {
- margin-right: 0 !important; }
- .mb-xl-0,
- .my-xl-0 {
- margin-bottom: 0 !important; }
- .ml-xl-0,
- .mx-xl-0 {
- margin-left: 0 !important; }
- .m-xl-1 {
- margin: 10px !important; }
- .mt-xl-1,
- .my-xl-1 {
- margin-top: 10px !important; }
- .mr-xl-1,
- .mx-xl-1 {
- margin-right: 10px !important; }
- .mb-xl-1,
- .my-xl-1 {
- margin-bottom: 10px !important; }
- .ml-xl-1,
- .mx-xl-1 {
- margin-left: 10px !important; }
- .m-xl-2 {
- margin: 20px !important; }
- .mt-xl-2,
- .my-xl-2 {
- margin-top: 20px !important; }
- .mr-xl-2,
- .mx-xl-2 {
- margin-right: 20px !important; }
- .mb-xl-2,
- .my-xl-2 {
- margin-bottom: 20px !important; }
- .ml-xl-2,
- .mx-xl-2 {
- margin-left: 20px !important; }
- .m-xl-3 {
- margin: 30px !important; }
- .mt-xl-3,
- .my-xl-3 {
- margin-top: 30px !important; }
- .mr-xl-3,
- .mx-xl-3 {
- margin-right: 30px !important; }
- .mb-xl-3,
- .my-xl-3 {
- margin-bottom: 30px !important; }
- .ml-xl-3,
- .mx-xl-3 {
- margin-left: 30px !important; }
- .m-xl-4 {
- margin: 40px !important; }
- .mt-xl-4,
- .my-xl-4 {
- margin-top: 40px !important; }
- .mr-xl-4,
- .mx-xl-4 {
- margin-right: 40px !important; }
- .mb-xl-4,
- .my-xl-4 {
- margin-bottom: 40px !important; }
- .ml-xl-4,
- .mx-xl-4 {
- margin-left: 40px !important; }
- .m-xl-5 {
- margin: 50px !important; }
- .mt-xl-5,
- .my-xl-5 {
- margin-top: 50px !important; }
- .mr-xl-5,
- .mx-xl-5 {
- margin-right: 50px !important; }
- .mb-xl-5,
- .my-xl-5 {
- margin-bottom: 50px !important; }
- .ml-xl-5,
- .mx-xl-5 {
- margin-left: 50px !important; }
- .m-xl-6 {
- margin: 60px !important; }
- .mt-xl-6,
- .my-xl-6 {
- margin-top: 60px !important; }
- .mr-xl-6,
- .mx-xl-6 {
- margin-right: 60px !important; }
- .mb-xl-6,
- .my-xl-6 {
- margin-bottom: 60px !important; }
- .ml-xl-6,
- .mx-xl-6 {
- margin-left: 60px !important; }
- .m-xl-7 {
- margin: 70px !important; }
- .mt-xl-7,
- .my-xl-7 {
- margin-top: 70px !important; }
- .mr-xl-7,
- .mx-xl-7 {
- margin-right: 70px !important; }
- .mb-xl-7,
- .my-xl-7 {
- margin-bottom: 70px !important; }
- .ml-xl-7,
- .mx-xl-7 {
- margin-left: 70px !important; }
- .m-xl-8 {
- margin: 80px !important; }
- .mt-xl-8,
- .my-xl-8 {
- margin-top: 80px !important; }
- .mr-xl-8,
- .mx-xl-8 {
- margin-right: 80px !important; }
- .mb-xl-8,
- .my-xl-8 {
- margin-bottom: 80px !important; }
- .ml-xl-8,
- .mx-xl-8 {
- margin-left: 80px !important; }
- .m-xl-9 {
- margin: 90px !important; }
- .mt-xl-9,
- .my-xl-9 {
- margin-top: 90px !important; }
- .mr-xl-9,
- .mx-xl-9 {
- margin-right: 90px !important; }
- .mb-xl-9,
- .my-xl-9 {
- margin-bottom: 90px !important; }
- .ml-xl-9,
- .mx-xl-9 {
- margin-left: 90px !important; }
- .m-xl-10 {
- margin: 100px !important; }
- .mt-xl-10,
- .my-xl-10 {
- margin-top: 100px !important; }
- .mr-xl-10,
- .mx-xl-10 {
- margin-right: 100px !important; }
- .mb-xl-10,
- .my-xl-10 {
- margin-bottom: 100px !important; }
- .ml-xl-10,
- .mx-xl-10 {
- margin-left: 100px !important; }
- .p-xl-0 {
- padding: 0 !important; }
- .pt-xl-0,
- .py-xl-0 {
- padding-top: 0 !important; }
- .pr-xl-0,
- .px-xl-0 {
- padding-right: 0 !important; }
- .pb-xl-0,
- .py-xl-0 {
- padding-bottom: 0 !important; }
- .pl-xl-0,
- .px-xl-0 {
- padding-left: 0 !important; }
- .p-xl-1 {
- padding: 10px !important; }
- .pt-xl-1,
- .py-xl-1 {
- padding-top: 10px !important; }
- .pr-xl-1,
- .px-xl-1 {
- padding-right: 10px !important; }
- .pb-xl-1,
- .py-xl-1 {
- padding-bottom: 10px !important; }
- .pl-xl-1,
- .px-xl-1 {
- padding-left: 10px !important; }
- .p-xl-2 {
- padding: 20px !important; }
- .pt-xl-2,
- .py-xl-2 {
- padding-top: 20px !important; }
- .pr-xl-2,
- .px-xl-2 {
- padding-right: 20px !important; }
- .pb-xl-2,
- .py-xl-2 {
- padding-bottom: 20px !important; }
- .pl-xl-2,
- .px-xl-2 {
- padding-left: 20px !important; }
- .p-xl-3 {
- padding: 30px !important; }
- .pt-xl-3,
- .py-xl-3 {
- padding-top: 30px !important; }
- .pr-xl-3,
- .px-xl-3 {
- padding-right: 30px !important; }
- .pb-xl-3,
- .py-xl-3 {
- padding-bottom: 30px !important; }
- .pl-xl-3,
- .px-xl-3 {
- padding-left: 30px !important; }
- .p-xl-4 {
- padding: 40px !important; }
- .pt-xl-4,
- .py-xl-4 {
- padding-top: 40px !important; }
- .pr-xl-4,
- .px-xl-4 {
- padding-right: 40px !important; }
- .pb-xl-4,
- .py-xl-4 {
- padding-bottom: 40px !important; }
- .pl-xl-4,
- .px-xl-4 {
- padding-left: 40px !important; }
- .p-xl-5 {
- padding: 50px !important; }
- .pt-xl-5,
- .py-xl-5 {
- padding-top: 50px !important; }
- .pr-xl-5,
- .px-xl-5 {
- padding-right: 50px !important; }
- .pb-xl-5,
- .py-xl-5 {
- padding-bottom: 50px !important; }
- .pl-xl-5,
- .px-xl-5 {
- padding-left: 50px !important; }
- .p-xl-6 {
- padding: 60px !important; }
- .pt-xl-6,
- .py-xl-6 {
- padding-top: 60px !important; }
- .pr-xl-6,
- .px-xl-6 {
- padding-right: 60px !important; }
- .pb-xl-6,
- .py-xl-6 {
- padding-bottom: 60px !important; }
- .pl-xl-6,
- .px-xl-6 {
- padding-left: 60px !important; }
- .p-xl-7 {
- padding: 70px !important; }
- .pt-xl-7,
- .py-xl-7 {
- padding-top: 70px !important; }
- .pr-xl-7,
- .px-xl-7 {
- padding-right: 70px !important; }
- .pb-xl-7,
- .py-xl-7 {
- padding-bottom: 70px !important; }
- .pl-xl-7,
- .px-xl-7 {
- padding-left: 70px !important; }
- .p-xl-8 {
- padding: 80px !important; }
- .pt-xl-8,
- .py-xl-8 {
- padding-top: 80px !important; }
- .pr-xl-8,
- .px-xl-8 {
- padding-right: 80px !important; }
- .pb-xl-8,
- .py-xl-8 {
- padding-bottom: 80px !important; }
- .pl-xl-8,
- .px-xl-8 {
- padding-left: 80px !important; }
- .p-xl-9 {
- padding: 90px !important; }
- .pt-xl-9,
- .py-xl-9 {
- padding-top: 90px !important; }
- .pr-xl-9,
- .px-xl-9 {
- padding-right: 90px !important; }
- .pb-xl-9,
- .py-xl-9 {
- padding-bottom: 90px !important; }
- .pl-xl-9,
- .px-xl-9 {
- padding-left: 90px !important; }
- .p-xl-10 {
- padding: 100px !important; }
- .pt-xl-10,
- .py-xl-10 {
- padding-top: 100px !important; }
- .pr-xl-10,
- .px-xl-10 {
- padding-right: 100px !important; }
- .pb-xl-10,
- .py-xl-10 {
- padding-bottom: 100px !important; }
- .pl-xl-10,
- .px-xl-10 {
- padding-left: 100px !important; }
- .m-xl-n1 {
- margin: -10px !important; }
- .mt-xl-n1,
- .my-xl-n1 {
- margin-top: -10px !important; }
- .mr-xl-n1,
- .mx-xl-n1 {
- margin-right: -10px !important; }
- .mb-xl-n1,
- .my-xl-n1 {
- margin-bottom: -10px !important; }
- .ml-xl-n1,
- .mx-xl-n1 {
- margin-left: -10px !important; }
- .m-xl-n2 {
- margin: -20px !important; }
- .mt-xl-n2,
- .my-xl-n2 {
- margin-top: -20px !important; }
- .mr-xl-n2,
- .mx-xl-n2 {
- margin-right: -20px !important; }
- .mb-xl-n2,
- .my-xl-n2 {
- margin-bottom: -20px !important; }
- .ml-xl-n2,
- .mx-xl-n2 {
- margin-left: -20px !important; }
- .m-xl-n3 {
- margin: -30px !important; }
- .mt-xl-n3,
- .my-xl-n3 {
- margin-top: -30px !important; }
- .mr-xl-n3,
- .mx-xl-n3 {
- margin-right: -30px !important; }
- .mb-xl-n3,
- .my-xl-n3 {
- margin-bottom: -30px !important; }
- .ml-xl-n3,
- .mx-xl-n3 {
- margin-left: -30px !important; }
- .m-xl-n4 {
- margin: -40px !important; }
- .mt-xl-n4,
- .my-xl-n4 {
- margin-top: -40px !important; }
- .mr-xl-n4,
- .mx-xl-n4 {
- margin-right: -40px !important; }
- .mb-xl-n4,
- .my-xl-n4 {
- margin-bottom: -40px !important; }
- .ml-xl-n4,
- .mx-xl-n4 {
- margin-left: -40px !important; }
- .m-xl-n5 {
- margin: -50px !important; }
- .mt-xl-n5,
- .my-xl-n5 {
- margin-top: -50px !important; }
- .mr-xl-n5,
- .mx-xl-n5 {
- margin-right: -50px !important; }
- .mb-xl-n5,
- .my-xl-n5 {
- margin-bottom: -50px !important; }
- .ml-xl-n5,
- .mx-xl-n5 {
- margin-left: -50px !important; }
- .m-xl-n6 {
- margin: -60px !important; }
- .mt-xl-n6,
- .my-xl-n6 {
- margin-top: -60px !important; }
- .mr-xl-n6,
- .mx-xl-n6 {
- margin-right: -60px !important; }
- .mb-xl-n6,
- .my-xl-n6 {
- margin-bottom: -60px !important; }
- .ml-xl-n6,
- .mx-xl-n6 {
- margin-left: -60px !important; }
- .m-xl-n7 {
- margin: -70px !important; }
- .mt-xl-n7,
- .my-xl-n7 {
- margin-top: -70px !important; }
- .mr-xl-n7,
- .mx-xl-n7 {
- margin-right: -70px !important; }
- .mb-xl-n7,
- .my-xl-n7 {
- margin-bottom: -70px !important; }
- .ml-xl-n7,
- .mx-xl-n7 {
- margin-left: -70px !important; }
- .m-xl-n8 {
- margin: -80px !important; }
- .mt-xl-n8,
- .my-xl-n8 {
- margin-top: -80px !important; }
- .mr-xl-n8,
- .mx-xl-n8 {
- margin-right: -80px !important; }
- .mb-xl-n8,
- .my-xl-n8 {
- margin-bottom: -80px !important; }
- .ml-xl-n8,
- .mx-xl-n8 {
- margin-left: -80px !important; }
- .m-xl-n9 {
- margin: -90px !important; }
- .mt-xl-n9,
- .my-xl-n9 {
- margin-top: -90px !important; }
- .mr-xl-n9,
- .mx-xl-n9 {
- margin-right: -90px !important; }
- .mb-xl-n9,
- .my-xl-n9 {
- margin-bottom: -90px !important; }
- .ml-xl-n9,
- .mx-xl-n9 {
- margin-left: -90px !important; }
- .m-xl-n10 {
- margin: -100px !important; }
- .mt-xl-n10,
- .my-xl-n10 {
- margin-top: -100px !important; }
- .mr-xl-n10,
- .mx-xl-n10 {
- margin-right: -100px !important; }
- .mb-xl-n10,
- .my-xl-n10 {
- margin-bottom: -100px !important; }
- .ml-xl-n10,
- .mx-xl-n10 {
- margin-left: -100px !important; }
- .m-xl-auto {
- margin: auto !important; }
- .mt-xl-auto,
- .my-xl-auto {
- margin-top: auto !important; }
- .mr-xl-auto,
- .mx-xl-auto {
- margin-right: auto !important; }
- .mb-xl-auto,
- .my-xl-auto {
- margin-bottom: auto !important; }
- .ml-xl-auto,
- .mx-xl-auto {
- margin-left: auto !important; } }
-
-/*!
- * Hamburgers
- * @description Tasty CSS-animated hamburgers
- * @author Jonathan Suh @jonsuh
- * @site https://jonsuh.com/hamburgers
- * @link https://github.com/jonsuh/hamburgers
- */
-.hamburger {
- padding: 15px 15px;
- display: inline-block;
- cursor: pointer;
- transition-property: opacity, filter;
- transition-duration: 0.15s;
- transition-timing-function: linear;
- font: inherit;
- color: inherit;
- text-transform: none;
- background-color: transparent;
- border: 0;
- margin: 0;
- overflow: visible; }
- .hamburger:hover {
- opacity: 0.7; }
- .hamburger.is-active:hover {
- opacity: 0.7; }
- .hamburger.is-active .hamburger-inner,
- .hamburger.is-active .hamburger-inner::before,
- .hamburger.is-active .hamburger-inner::after {
- background-color: #fff; }
-
-.hamburger-box {
- width: 36px;
- height: 23px;
- display: inline-block;
- position: relative; }
-
-.hamburger-inner {
- display: block;
- top: 50%;
- margin-top: -1.5px; }
- .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
- width: 36px;
- height: 3px;
- background-color: #f24088;
- border-radius: 3px;
- position: absolute;
- transition-property: transform;
- transition-duration: 0.15s;
- transition-timing-function: ease; }
- .hamburger-inner::before, .hamburger-inner::after {
- content: "";
- display: block; }
- .hamburger-inner::before {
- top: -10px; }
- .hamburger-inner::after {
- bottom: -10px; }
-
-/*
- * Slider
- */
-.hamburger--slider .hamburger-inner {
- top: 1.5px; }
- .hamburger--slider .hamburger-inner::before {
- top: 10px;
- transition-property: transform, opacity;
- transition-timing-function: ease;
- transition-duration: 0.15s; }
- .hamburger--slider .hamburger-inner::after {
- top: 20px; }
-
-.hamburger--slider.is-active .hamburger-inner {
- transform: translate3d(0, 10px, 0) rotate(45deg); }
- .hamburger--slider.is-active .hamburger-inner::before {
- transform: rotate(-45deg) translate3d(-5.14285714px, -7px, 0);
- opacity: 0; }
- .hamburger--slider.is-active .hamburger-inner::after {
- transform: translate3d(0, -20px, 0) rotate(-90deg); }
-
-a {
- color: #f24088; }
-
-p {
- line-height: 26px;
- color: #5C5A5A;
- font-family: Helvetica, Arial, sans-serif, -apple-system;
- margin-bottom: 20px; }
-
-h1 {
- font-size: 20px;
- font-family: "Playfair Display", serif, -apple-system;
- line-height: 1.2;
- margin-bottom: 20px; }
- @media (min-width: 768px) {
- h1 {
- font-size: 32px;
- line-height: 1.2; } }
-h2 {
- font-size: 24px;
- font-family: "Playfair Display", serif, -apple-system;
- line-height: 1.4;
- margin-bottom: 10px; }
- @media (min-width: 768px) {
- h2 {
- font-size: 26px;
- line-height: 1.4; } }
-h3 {
- font-size: 16px;
- line-height: 1.4; }
- @media (min-width: 768px) {
- h3 {
- font-size: 20px;
- line-height: 1.4; } }
-ul,
-ol {
- margin: 0;
- padding: 0; }
- ul li,
- ol li {
- padding: 0;
- margin: 0; }
-
-.page {
- display: flex;
- min-height: 100vh;
- flex-direction: column; }
- .page .wrapper {
- flex: 1 0 0; }
-
-.header {
- color: #f24088;
- background-color: #ffffff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #f6f7ff;
- padding: 10px 0px; }
- .header .container {
- display: flex;
- justify-content: space-between;
- align-items: center; }
- .header.header-absolute {
- position: absolute;
- z-index: 10;
- width: 100%; }
-
-.lock-scroll .header.header-absolute {
- position: static; }
-
-.footer {
- background: #f24088;
- padding-top: 15px;
- padding-bottom: 15px; }
- .footer .footer-inner {
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- align-items: flex-start; }
- @media (min-width: 576px) {
- .footer .footer-inner {
- justify-content: space-between;
- flex-direction: row;
- align-items: center; } }
- .footer .footer-title {
- color: #ffffff;
- font-size: 1.3rem;
- font-family: "Playfair Display", serif, -apple-system;
- font-weight: bold;
- margin-bottom: 10px; }
- @media (min-width: 576px) {
- .footer .footer-title {
- margin: 0; } }
- .footer ul {
- list-style: none;
- margin: 0;
- padding: 0; }
- .footer ul li {
- color: #ffffff;
- font-size: 1rem; }
- .footer ul li a {
- color: #ffffff;
- text-decoration: none;
- padding: 12px 14px 12px 0;
- display: block; }
- .footer ul li a:hover {
- text-decoration: underline; }
- .footer ul li.active a {
- font-weight: bold; }
- @media (min-width: 576px) {
- .footer ul {
- height: inherit;
- display: flex;
- list-style: none;
- margin: 0;
- padding: 0;
- align-items: center;
- justify-content: flex-end; }
- .footer ul li {
- list-style: none;
- margin-right: 10px; }
- .footer ul li:last-of-type {
- margin-right: 0; }
- .footer ul li a {
- display: inline-block;
- height: 40px;
- padding: 10px 8px 10px 8px; } }
-.sub-footer {
- background: #ef106a;
- color: #ffffff;
- padding-top: 15px;
- padding-bottom: 15px; }
- @media (min-width: 768px) {
- .sub-footer {
- padding-top: 10px;
- padding-bottom: 10px; } }
- .sub-footer .sub-footer-inner {
- display: flex;
- flex-direction: column;
- justify-content: space-between; }
- @media (min-width: 768px) {
- .sub-footer .sub-footer-inner {
- flex-direction: row; } }
- .sub-footer .copyright {
- margin-top: 10px;
- font-size: 14px; }
- .sub-footer .copyright a {
- font-weight: bold;
- color: inherit; }
- .sub-footer .social a:first-of-type {
- margin-left: -10px; }
-
-.logo {
- display: none; }
- @media (min-width: 576px) {
- .logo {
- display: block; } }
- .logo a {
- display: block; }
- .logo img {
- width: auto; }
-
-.logo-mobile {
- display: block; }
- @media (min-width: 576px) {
- .logo-mobile {
- display: none; } }
- .logo-mobile a {
- display: block; }
- .logo-mobile img {
- width: auto; }
-
-.main-menu {
- display: none; }
- @media (min-width: 768px) {
- .main-menu {
- display: block; } }
- .main-menu > ul {
- display: flex;
- align-items: center;
- justify-content: flex-start; }
- .main-menu > ul > li {
- list-style: none;
- font-size: 1rem; }
- .main-menu > ul > li > a {
- padding: 10px 12px 10px 12px;
- display: inline-block;
- font-weight: normal;
- text-decoration: none;
- color: #f24088; }
- .main-menu > ul > li > a:hover {
- text-decoration: underline; }
- .main-menu > ul > li.active > a {
- font-weight: bold;
- text-decoration: none; }
- .main-menu > ul > li.active > a:hover {
- text-decoration: none;
- transition: all 225ms ease-in 0s; }
-
-.main-menu-mobile {
- position: fixed;
- background: #f24088;
- top: 0;
- left: 0;
- width: 100%;
- height: 100vh;
- opacity: 0;
- visibility: hidden;
- transition: opacity 0.35s, visibility 0.35s, height 0.35s;
- overflow: hidden;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column; }
- .main-menu-mobile.open {
- opacity: 0.9;
- visibility: visible;
- height: 100%;
- z-index: 20; }
- .main-menu-mobile.open li {
- animation: fadeInRight 0.5s ease forwards;
- animation-delay: 0.35s; }
- .main-menu-mobile.open li:nth-of-type(2) {
- animation-delay: 0.4s; }
- .main-menu-mobile.open li:nth-of-type(3) {
- animation-delay: 0.45s; }
- .main-menu-mobile.open li:nth-of-type(4) {
- animation-delay: 0.5s; }
- .main-menu-mobile.open li:nth-of-type(5) {
- animation-delay: 0.55s; }
- .main-menu-mobile.open li:nth-of-type(6) {
- animation-delay: 0.6s; }
- .main-menu-mobile ul {
- font-size: 30px;
- font-family: "Playfair Display", serif, -apple-system;
- text-align: center;
- list-style: none;
- padding: 0;
- margin: 0;
- flex: 0; }
- .main-menu-mobile ul li {
- display: block;
- position: relative;
- opacity: 0;
- padding: 10px; }
- .main-menu-mobile ul li a {
- display: block;
- position: relative;
- color: #ffffff;
- text-decoration: none;
- overflow: hidden; }
- .main-menu-mobile ul li a:hover {
- opacity: 0.8; }
-
-@keyframes fadeInRight {
- 0% {
- opacity: 0;
- left: 20%; }
- 100% {
- opacity: 1;
- left: 0; } }
-
-.lock-scroll {
- overflow: hidden; }
-
-.hamburger {
- padding: 10px 0 10px 10px;
- outline: none;
- z-index: 30;
- cursor: pointer; }
- @media (min-width: 768px) {
- .hamburger {
- display: none; } }
- .hamburger:focus {
- outline: none; }
- .hamburger .hamburger-inner,
- .hamburger .hamburger-inner::before,
- .hamburger .hamburger-inner::after {
- background: #f24088; }
- .hamburger .hamburger-inner::after {
- width: 18px;
- right: 0; }
- .hamburger.is-active .hamburger-inner::after {
- width: inherit;
- right: unset; }
-
-.button {
- white-space: nowrap;
- display: inline-block;
- height: 40px;
- line-height: 40px;
- padding: 0 14px;
- background: #f24088;
- border-radius: 4px;
- font-size: 14px;
- font-weight: normal;
- text-transform: uppercase;
- letter-spacing: 0.025em;
- color: #ffffff;
- text-decoration: none;
- -webkit-transition: all 0.15s ease;
- transition: all 0.15s ease; }
- .button:hover {
- color: #ffffff;
- background-color: #f570a6;
- transform: translateY(-1px);
- text-decoration: none; }
-
-.call {
- position: relative;
- overflow: hidden;
- background-color: #f6f7ff;
- border-radius: 4px;
- width: 100%;
- display: flex;
- align-items: center;
- flex-direction: row;
- flex-wrap: wrap;
- z-index: 2; }
- @media (min-width: 576px) {
- .call {
- align-items: center;
- flex-direction: row;
- flex-wrap: wrap; } }
- .call .call-box-top {
- flex: 1 0 auto;
- padding: 20px; }
- .call .call-box-bottom {
- flex: auto;
- padding: 20px;
- border-top: 1px solid #dde0ff; }
- @media (min-width: 576px) {
- .call .call-box-bottom {
- flex: 0 0 auto;
- border: none; } }
- .call .call-name {
- font-size: 1.1rem;
- font-weight: bold; }
- .call .call-phone {
- margin-bottom: 5px; }
- .call strong {
- font-weight: bold; }
- .call svg {
- fill: white;
- position: absolute;
- bottom: -9px;
- right: 0;
- width: 100px;
- height: 100px; }
- @media (min-width: 576px) {
- .call svg {
- width: 120px;
- height: 120px; } }
-.title {
- color: #2f2f41;
- font-size: 48px;
- line-height: 1.2; }
- @media (min-width: 992px) {
- .title {
- font-size: 50px; } }
-.content a {
- text-decoration: underline; }
-
-.content img {
- max-width: 100%;
- height: auto;
- margin-top: 20px;
- margin-bottom: 20px; }
-
-.content strong {
- font-width: bold; }
-
-.content em {
- font-style: italic; }
-
-.content p {
- font-family: Helvetica, Arial, sans-serif, -apple-system;
- line-height: 1.56;
- color: #5C5A5A; }
-
-.content h1 {
- font-family: Helvetica, Arial, sans-serif, -apple-system;
- font-size: 34px;
- line-height: 1.26;
- font-weight: normal;
- margin-top: 30px;
- margin-bottom: 20px; }
-
-.content h2 {
- font-family: Helvetica, Arial, sans-serif, -apple-system;
- font-size: 26px;
- font-weight: normal;
- line-height: 1.4;
- margin-top: 30px; }
-
-.content h3 {
- font-family: Helvetica, Arial, sans-serif, -apple-system;
- font-size: 20px;
- line-height: 1.4;
- font-weight: normal;
- margin-top: 30px; }
-
-.content ul,
-.content ol {
- margin-bottom: 20px; }
- .content ul ul,
- .content ul ol,
- .content ol ul,
- .content ol ol {
- margin-bottom: 0; }
-
-.content ul {
- list-style: disc; }
-
-.content ol {
- list-style: decimal; }
-
-.content li {
- margin-bottom: 5px;
- line-height: 1.56;
- margin-left: 20px;
- color: #5C5A5A; }
-
-.content hr {
- border: none;
- border-bottom: 1px solid #f6f7ff; }
-
-.content table {
- width: 100%;
- margin-top: 30px;
- margin-bottom: 30px; }
- .content table th,
- .content table td {
- padding: 5px;
- vertical-align: top;
- border-top: 1px solid #f6f7ff; }
- .content table thead th {
- vertical-align: bottom;
- border-bottom: 1px solid #f6f7ff;
- text-align: left;
- font-weight: bold; }
- .content table tbody + tbody {
- border-top: 1px solid #f6f7ff; }
-
-.content blockquote {
- padding: 0 1em;
- color: #5C5A5A;
- border-left: 0.25em solid #f88379; }
-
-.intro {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding-top: 60px;
- padding-bottom: 60px;
- overflow: hidden; }
- @media (min-width: 768px) {
- .intro {
- padding-top: 140px;
- padding-bottom: 140px; } }
- .intro h1 {
- color: #2f2f41;
- font-size: 42px;
- font-weight: bold;
- line-height: 1.2; }
- @media (min-width: 768px) {
- .intro h1 {
- width: 80%;
- font-size: 48px; } }
- @media (min-width: 992px) {
- .intro h1 {
- font-size: 50px; } }
- .intro h2 {
- width: 80%;
- font-size: 1.2rem;
- line-height: 1.4;
- margin-bottom: 30px;
- color: #2f2f41;
- font-family: Helvetica, Arial, sans-serif, -apple-system; }
- .intro p {
- font-size: 1.2rem;
- font-weight: light;
- line-height: 1.5;
- color: #5C5A5A; }
- @media (min-width: 768px) {
- .intro p {
- width: 80%; } }
-.intro-small {
- padding-top: 100px;
- padding-bottom: 30px; }
-
-.intro-image {
- width: 100%;
- height: auto;
- margin-top: -40px; }
-
-.intro-image-absolute {
- max-width: none;
- padding: 0;
- margin-bottom: 30px; }
- @media (min-width: 768px) {
- .intro-image-absolute {
- position: absolute;
- bottom: -50px;
- left: -50px;
- width: 700px; } }
- @media (min-width: 992px) {
- .intro-image-absolute {
- bottom: -60px;
- left: -60px;
- width: 800px; } }
- @media (min-width: 1300px) {
- .intro-image-absolute {
- bottom: -100px;
- left: -70px;
- width: 850px; } }
-.intro-image-hide-mobile {
- display: none; }
- @media (min-width: 768px) {
- .intro-image-hide-mobile {
- display: block; } }
-.strip {
- background: white;
- background-repeat: no-repeat; }
-
-.strip-white {
- background-color: white; }
-
-.strip-grey {
- background-color: #f6f7ff; }
-
-.strip-diagonal {
- transform: skewY(5deg);
- padding-bottom: 50px;
- margin-bottom: 65px; }
- .strip-diagonal > div {
- transform: skewY(-5deg); }
-
-.strip-primary-gradient {
- background-image: linear-gradient(to right, #f24088, #f88379); }
-
-.strip-primary-gradient-top-bottom {
- background-image: linear-gradient(to bottom, #f24088, #f88379); }
-
-.strip-primary {
- background-color: #f24088; }
-
-.strip-secondary {
- background-color: #f88379; }
-
-.strip-diagonal-right {
- margin-top: -100px;
- transform: skewY(-5deg);
- padding-bottom: 100px; }
- .strip-diagonal-right > div {
- transform: skewY(5deg); }
-
-.strip-diagonal-left {
- margin-top: -100px;
- transform: skewY(5deg);
- padding-bottom: 100px; }
- .strip-diagonal-left > div {
- transform: skewY(-5deg); }
-
-.strip-bg-contain {
- background-size: contain; }
-
-.strip-bg-cover {
- background-size: cover; }
-
-.feature {
- height: 100%;
- border: 1px solid #f6f7ff;
- border-radius: 3px;
- padding: 20px;
- background-color: #ffffff;
- display: flex;
- align-items: center;
- flex-direction: column;
- text-align: center; }
- .feature .feature-image {
- flex: 0 0 auto;
- width: 80px;
- height: 80px;
- display: flex;
- margin-bottom: 20px;
- text-align: center; }
- .feature img {
- width: 100%;
- height: auto; }
- .feature .feature-content {
- margin-bottom: 0;
- margin-top: auto; }
-
-.social {
- display: block; }
- .social img {
- width: 20px;
- height: 20px; }
- .social a {
- padding: 10px;
- display: inline-block; }
- .social a:hover {
- opacity: 0.8; }
-
-.team-summary {
- display: flex;
- flex-wrap: wrap;
- flex-direction: row; }
- .team-summary .team-image {
- height: 60px;
- width: 60px;
- margin-right: 10px;
- border-radius: 50%;
- overflow: hidden; }
- .team-summary .team-image img {
- width: 60px;
- height: auto; }
- .team-summary .team-meta {
- flex: 1; }
- .team-summary .team-meta h2 {
- margin: 0;
- font-size: 22px;
- font-weight: normal; }
- .team-summary .team-meta p {
- color: #2f2f41;
- text-transform: uppercase;
- margin: 0;
- font-size: 12px;
- font-weight: 500; }
- .team-summary .team-content {
- margin-top: 20px;
- flex: 1 0 100%; }
-
-.team-summary-large {
- background-color: #f6f7ff;
- padding: 30px;
- border-radius: 3px; }
- .team-summary-large .team-image {
- height: 90px;
- width: 90px;
- margin-right: 20px;
- border-radius: 50%;
- overflow: hidden; }
- .team-summary-large .team-image img {
- width: 90px;
- height: auto; }
-
-.page-services-single .content > p:first-of-type {
- font-size: 1.6rem;
- line-height: 1.4;
- margin-bottom: 40px;
- font-weight: regular;
- color: #686868; }
-
-body {
- font-size: 16px;
- line-height: 1.2;
- font-family: Helvetica, Arial, sans-serif, -apple-system; }
- @media (min-width: 768px) {
- body {
- font-size: 16px;
- line-height: 1.3; } }
-
-/*# sourceMappingURL=style.css.map */ \ No newline at end of file
diff --git a/exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.json b/exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.json
deleted file mode 100644
index 28c014b..0000000
--- a/exampleSite/resources/_gen/assets/scss/scss/style.scss_bcb603c6c6d8658ecadd27900cde73da.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Target":"css/style.css","MediaType":"text/css","Data":{}} \ No newline at end of file
diff --git a/exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.content b/exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.content
deleted file mode 100644
index 64a3984..0000000
--- a/exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.content
+++ /dev/null
@@ -1,12 +0,0 @@
-/*!* Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)
-* Copyright 2011-2019 The Bootstrap Authors
-* Copyright 2011-2019 Twitter, Inc.
-* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
-* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)*/*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:Helvetica,Arial,sans-serif,-apple-system;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#f24088;text-decoration:none;background-color:transparent}a:hover{color:#d70f60;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,liberation mono,courier new,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}/*!* Bootstrap Grid v4.4.1 (https://getbootstrap.com/)
-* Copyright 2011-2019 The Bootstrap Authors
-* Copyright 2011-2019 Twitter, Inc.
-* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*/html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,*::before,*::after{box-sizing:inherit}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container{max-width:566px}}@media(min-width:768px){.container{max-width:740px}}@media(min-width:992px){.container{max-width:960px}}@media(min-width:1300px){.container{max-width:1140px}}.container-fluid,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container-sm,.container{max-width:566px}}@media(min-width:768px){.container-md,.container-sm,.container{max-width:740px}}@media(min-width:992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width:1300px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-xl,.col-xl-auto,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg,.col-lg-auto,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md,.col-md-auto,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm,.col-sm-auto,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1,.col,.col-auto,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width:1300px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media(min-width:1300px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media(min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media(min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media(min-width:1300px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:10px!important}.mt-1,.my-1{margin-top:10px!important}.mr-1,.mx-1{margin-right:10px!important}.mb-1,.my-1{margin-bottom:10px!important}.ml-1,.mx-1{margin-left:10px!important}.m-2{margin:20px!important}.mt-2,.my-2{margin-top:20px!important}.mr-2,.mx-2{margin-right:20px!important}.mb-2,.my-2{margin-bottom:20px!important}.ml-2,.mx-2{margin-left:20px!important}.m-3{margin:30px!important}.mt-3,.my-3{margin-top:30px!important}.mr-3,.mx-3{margin-right:30px!important}.mb-3,.my-3{margin-bottom:30px!important}.ml-3,.mx-3{margin-left:30px!important}.m-4{margin:40px!important}.mt-4,.my-4{margin-top:40px!important}.mr-4,.mx-4{margin-right:40px!important}.mb-4,.my-4{margin-bottom:40px!important}.ml-4,.mx-4{margin-left:40px!important}.m-5{margin:50px!important}.mt-5,.my-5{margin-top:50px!important}.mr-5,.mx-5{margin-right:50px!important}.mb-5,.my-5{margin-bottom:50px!important}.ml-5,.mx-5{margin-left:50px!important}.m-6{margin:60px!important}.mt-6,.my-6{margin-top:60px!important}.mr-6,.mx-6{margin-right:60px!important}.mb-6,.my-6{margin-bottom:60px!important}.ml-6,.mx-6{margin-left:60px!important}.m-7{margin:70px!important}.mt-7,.my-7{margin-top:70px!important}.mr-7,.mx-7{margin-right:70px!important}.mb-7,.my-7{margin-bottom:70px!important}.ml-7,.mx-7{margin-left:70px!important}.m-8{margin:80px!important}.mt-8,.my-8{margin-top:80px!important}.mr-8,.mx-8{margin-right:80px!important}.mb-8,.my-8{margin-bottom:80px!important}.ml-8,.mx-8{margin-left:80px!important}.m-9{margin:90px!important}.mt-9,.my-9{margin-top:90px!important}.mr-9,.mx-9{margin-right:90px!important}.mb-9,.my-9{margin-bottom:90px!important}.ml-9,.mx-9{margin-left:90px!important}.m-10{margin:100px!important}.mt-10,.my-10{margin-top:100px!important}.mr-10,.mx-10{margin-right:100px!important}.mb-10,.my-10{margin-bottom:100px!important}.ml-10,.mx-10{margin-left:100px!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:10px!important}.pt-1,.py-1{padding-top:10px!important}.pr-1,.px-1{padding-right:10px!important}.pb-1,.py-1{padding-bottom:10px!important}.pl-1,.px-1{padding-left:10px!important}.p-2{padding:20px!important}.pt-2,.py-2{padding-top:20px!important}.pr-2,.px-2{padding-right:20px!important}.pb-2,.py-2{padding-bottom:20px!important}.pl-2,.px-2{padding-left:20px!important}.p-3{padding:30px!important}.pt-3,.py-3{padding-top:30px!important}.pr-3,.px-3{padding-right:30px!important}.pb-3,.py-3{padding-bottom:30px!important}.pl-3,.px-3{padding-left:30px!important}.p-4{padding:40px!important}.pt-4,.py-4{padding-top:40px!important}.pr-4,.px-4{padding-right:40px!important}.pb-4,.py-4{padding-bottom:40px!important}.pl-4,.px-4{padding-left:40px!important}.p-5{padding:50px!important}.pt-5,.py-5{padding-top:50px!important}.pr-5,.px-5{padding-right:50px!important}.pb-5,.py-5{padding-bottom:50px!important}.pl-5,.px-5{padding-left:50px!important}.p-6{padding:60px!important}.pt-6,.py-6{padding-top:60px!important}.pr-6,.px-6{padding-right:60px!important}.pb-6,.py-6{padding-bottom:60px!important}.pl-6,.px-6{padding-left:60px!important}.p-7{padding:70px!important}.pt-7,.py-7{padding-top:70px!important}.pr-7,.px-7{padding-right:70px!important}.pb-7,.py-7{padding-bottom:70px!important}.pl-7,.px-7{padding-left:70px!important}.p-8{padding:80px!important}.pt-8,.py-8{padding-top:80px!important}.pr-8,.px-8{padding-right:80px!important}.pb-8,.py-8{padding-bottom:80px!important}.pl-8,.px-8{padding-left:80px!important}.p-9{padding:90px!important}.pt-9,.py-9{padding-top:90px!important}.pr-9,.px-9{padding-right:90px!important}.pb-9,.py-9{padding-bottom:90px!important}.pl-9,.px-9{padding-left:90px!important}.p-10{padding:100px!important}.pt-10,.py-10{padding-top:100px!important}.pr-10,.px-10{padding-right:100px!important}.pb-10,.py-10{padding-bottom:100px!important}.pl-10,.px-10{padding-left:100px!important}.m-n1{margin:-10px!important}.mt-n1,.my-n1{margin-top:-10px!important}.mr-n1,.mx-n1{margin-right:-10px!important}.mb-n1,.my-n1{margin-bottom:-10px!important}.ml-n1,.mx-n1{margin-left:-10px!important}.m-n2{margin:-20px!important}.mt-n2,.my-n2{margin-top:-20px!important}.mr-n2,.mx-n2{margin-right:-20px!important}.mb-n2,.my-n2{margin-bottom:-20px!important}.ml-n2,.mx-n2{margin-left:-20px!important}.m-n3{margin:-30px!important}.mt-n3,.my-n3{margin-top:-30px!important}.mr-n3,.mx-n3{margin-right:-30px!important}.mb-n3,.my-n3{margin-bottom:-30px!important}.ml-n3,.mx-n3{margin-left:-30px!important}.m-n4{margin:-40px!important}.mt-n4,.my-n4{margin-top:-40px!important}.mr-n4,.mx-n4{margin-right:-40px!important}.mb-n4,.my-n4{margin-bottom:-40px!important}.ml-n4,.mx-n4{margin-left:-40px!important}.m-n5{margin:-50px!important}.mt-n5,.my-n5{margin-top:-50px!important}.mr-n5,.mx-n5{margin-right:-50px!important}.mb-n5,.my-n5{margin-bottom:-50px!important}.ml-n5,.mx-n5{margin-left:-50px!important}.m-n6{margin:-60px!important}.mt-n6,.my-n6{margin-top:-60px!important}.mr-n6,.mx-n6{margin-right:-60px!important}.mb-n6,.my-n6{margin-bottom:-60px!important}.ml-n6,.mx-n6{margin-left:-60px!important}.m-n7{margin:-70px!important}.mt-n7,.my-n7{margin-top:-70px!important}.mr-n7,.mx-n7{margin-right:-70px!important}.mb-n7,.my-n7{margin-bottom:-70px!important}.ml-n7,.mx-n7{margin-left:-70px!important}.m-n8{margin:-80px!important}.mt-n8,.my-n8{margin-top:-80px!important}.mr-n8,.mx-n8{margin-right:-80px!important}.mb-n8,.my-n8{margin-bottom:-80px!important}.ml-n8,.mx-n8{margin-left:-80px!important}.m-n9{margin:-90px!important}.mt-n9,.my-n9{margin-top:-90px!important}.mr-n9,.mx-n9{margin-right:-90px!important}.mb-n9,.my-n9{margin-bottom:-90px!important}.ml-n9,.mx-n9{margin-left:-90px!important}.m-n10{margin:-100px!important}.mt-n10,.my-n10{margin-top:-100px!important}.mr-n10,.mx-n10{margin-right:-100px!important}.mb-n10,.my-n10{margin-bottom:-100px!important}.ml-n10,.mx-n10{margin-left:-100px!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:10px!important}.mt-sm-1,.my-sm-1{margin-top:10px!important}.mr-sm-1,.mx-sm-1{margin-right:10px!important}.mb-sm-1,.my-sm-1{margin-bottom:10px!important}.ml-sm-1,.mx-sm-1{margin-left:10px!important}.m-sm-2{margin:20px!important}.mt-sm-2,.my-sm-2{margin-top:20px!important}.mr-sm-2,.mx-sm-2{margin-right:20px!important}.mb-sm-2,.my-sm-2{margin-bottom:20px!important}.ml-sm-2,.mx-sm-2{margin-left:20px!important}.m-sm-3{margin:30px!important}.mt-sm-3,.my-sm-3{margin-top:30px!important}.mr-sm-3,.mx-sm-3{margin-right:30px!important}.mb-sm-3,.my-sm-3{margin-bottom:30px!important}.ml-sm-3,.mx-sm-3{margin-left:30px!important}.m-sm-4{margin:40px!important}.mt-sm-4,.my-sm-4{margin-top:40px!important}.mr-sm-4,.mx-sm-4{margin-right:40px!important}.mb-sm-4,.my-sm-4{margin-bottom:40px!important}.ml-sm-4,.mx-sm-4{margin-left:40px!important}.m-sm-5{margin:50px!important}.mt-sm-5,.my-sm-5{margin-top:50px!important}.mr-sm-5,.mx-sm-5{margin-right:50px!important}.mb-sm-5,.my-sm-5{margin-bottom:50px!important}.ml-sm-5,.mx-sm-5{margin-left:50px!important}.m-sm-6{margin:60px!important}.mt-sm-6,.my-sm-6{margin-top:60px!important}.mr-sm-6,.mx-sm-6{margin-right:60px!important}.mb-sm-6,.my-sm-6{margin-bottom:60px!important}.ml-sm-6,.mx-sm-6{margin-left:60px!important}.m-sm-7{margin:70px!important}.mt-sm-7,.my-sm-7{margin-top:70px!important}.mr-sm-7,.mx-sm-7{margin-right:70px!important}.mb-sm-7,.my-sm-7{margin-bottom:70px!important}.ml-sm-7,.mx-sm-7{margin-left:70px!important}.m-sm-8{margin:80px!important}.mt-sm-8,.my-sm-8{margin-top:80px!important}.mr-sm-8,.mx-sm-8{margin-right:80px!important}.mb-sm-8,.my-sm-8{margin-bottom:80px!important}.ml-sm-8,.mx-sm-8{margin-left:80px!important}.m-sm-9{margin:90px!important}.mt-sm-9,.my-sm-9{margin-top:90px!important}.mr-sm-9,.mx-sm-9{margin-right:90px!important}.mb-sm-9,.my-sm-9{margin-bottom:90px!important}.ml-sm-9,.mx-sm-9{margin-left:90px!important}.m-sm-10{margin:100px!important}.mt-sm-10,.my-sm-10{margin-top:100px!important}.mr-sm-10,.mx-sm-10{margin-right:100px!important}.mb-sm-10,.my-sm-10{margin-bottom:100px!important}.ml-sm-10,.mx-sm-10{margin-left:100px!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:10px!important}.pt-sm-1,.py-sm-1{padding-top:10px!important}.pr-sm-1,.px-sm-1{padding-right:10px!important}.pb-sm-1,.py-sm-1{padding-bottom:10px!important}.pl-sm-1,.px-sm-1{padding-left:10px!important}.p-sm-2{padding:20px!important}.pt-sm-2,.py-sm-2{padding-top:20px!important}.pr-sm-2,.px-sm-2{padding-right:20px!important}.pb-sm-2,.py-sm-2{padding-bottom:20px!important}.pl-sm-2,.px-sm-2{padding-left:20px!important}.p-sm-3{padding:30px!important}.pt-sm-3,.py-sm-3{padding-top:30px!important}.pr-sm-3,.px-sm-3{padding-right:30px!important}.pb-sm-3,.py-sm-3{padding-bottom:30px!important}.pl-sm-3,.px-sm-3{padding-left:30px!important}.p-sm-4{padding:40px!important}.pt-sm-4,.py-sm-4{padding-top:40px!important}.pr-sm-4,.px-sm-4{padding-right:40px!important}.pb-sm-4,.py-sm-4{padding-bottom:40px!important}.pl-sm-4,.px-sm-4{padding-left:40px!important}.p-sm-5{padding:50px!important}.pt-sm-5,.py-sm-5{padding-top:50px!important}.pr-sm-5,.px-sm-5{padding-right:50px!important}.pb-sm-5,.py-sm-5{padding-bottom:50px!important}.pl-sm-5,.px-sm-5{padding-left:50px!important}.p-sm-6{padding:60px!important}.pt-sm-6,.py-sm-6{padding-top:60px!important}.pr-sm-6,.px-sm-6{padding-right:60px!important}.pb-sm-6,.py-sm-6{padding-bottom:60px!important}.pl-sm-6,.px-sm-6{padding-left:60px!important}.p-sm-7{padding:70px!important}.pt-sm-7,.py-sm-7{padding-top:70px!important}.pr-sm-7,.px-sm-7{padding-right:70px!important}.pb-sm-7,.py-sm-7{padding-bottom:70px!important}.pl-sm-7,.px-sm-7{padding-left:70px!important}.p-sm-8{padding:80px!important}.pt-sm-8,.py-sm-8{padding-top:80px!important}.pr-sm-8,.px-sm-8{padding-right:80px!important}.pb-sm-8,.py-sm-8{padding-bottom:80px!important}.pl-sm-8,.px-sm-8{padding-left:80px!important}.p-sm-9{padding:90px!important}.pt-sm-9,.py-sm-9{padding-top:90px!important}.pr-sm-9,.px-sm-9{padding-right:90px!important}.pb-sm-9,.py-sm-9{padding-bottom:90px!important}.pl-sm-9,.px-sm-9{padding-left:90px!important}.p-sm-10{padding:100px!important}.pt-sm-10,.py-sm-10{padding-top:100px!important}.pr-sm-10,.px-sm-10{padding-right:100px!important}.pb-sm-10,.py-sm-10{padding-bottom:100px!important}.pl-sm-10,.px-sm-10{padding-left:100px!important}.m-sm-n1{margin:-10px!important}.mt-sm-n1,.my-sm-n1{margin-top:-10px!important}.mr-sm-n1,.mx-sm-n1{margin-right:-10px!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-10px!important}.ml-sm-n1,.mx-sm-n1{margin-left:-10px!important}.m-sm-n2{margin:-20px!important}.mt-sm-n2,.my-sm-n2{margin-top:-20px!important}.mr-sm-n2,.mx-sm-n2{margin-right:-20px!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-20px!important}.ml-sm-n2,.mx-sm-n2{margin-left:-20px!important}.m-sm-n3{margin:-30px!important}.mt-sm-n3,.my-sm-n3{margin-top:-30px!important}.mr-sm-n3,.mx-sm-n3{margin-right:-30px!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-30px!important}.ml-sm-n3,.mx-sm-n3{margin-left:-30px!important}.m-sm-n4{margin:-40px!important}.mt-sm-n4,.my-sm-n4{margin-top:-40px!important}.mr-sm-n4,.mx-sm-n4{margin-right:-40px!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-40px!important}.ml-sm-n4,.mx-sm-n4{margin-left:-40px!important}.m-sm-n5{margin:-50px!important}.mt-sm-n5,.my-sm-n5{margin-top:-50px!important}.mr-sm-n5,.mx-sm-n5{margin-right:-50px!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-50px!important}.ml-sm-n5,.mx-sm-n5{margin-left:-50px!important}.m-sm-n6{margin:-60px!important}.mt-sm-n6,.my-sm-n6{margin-top:-60px!important}.mr-sm-n6,.mx-sm-n6{margin-right:-60px!important}.mb-sm-n6,.my-sm-n6{margin-bottom:-60px!important}.ml-sm-n6,.mx-sm-n6{margin-left:-60px!important}.m-sm-n7{margin:-70px!important}.mt-sm-n7,.my-sm-n7{margin-top:-70px!important}.mr-sm-n7,.mx-sm-n7{margin-right:-70px!important}.mb-sm-n7,.my-sm-n7{margin-bottom:-70px!important}.ml-sm-n7,.mx-sm-n7{margin-left:-70px!important}.m-sm-n8{margin:-80px!important}.mt-sm-n8,.my-sm-n8{margin-top:-80px!important}.mr-sm-n8,.mx-sm-n8{margin-right:-80px!important}.mb-sm-n8,.my-sm-n8{margin-bottom:-80px!important}.ml-sm-n8,.mx-sm-n8{margin-left:-80px!important}.m-sm-n9{margin:-90px!important}.mt-sm-n9,.my-sm-n9{margin-top:-90px!important}.mr-sm-n9,.mx-sm-n9{margin-right:-90px!important}.mb-sm-n9,.my-sm-n9{margin-bottom:-90px!important}.ml-sm-n9,.mx-sm-n9{margin-left:-90px!important}.m-sm-n10{margin:-100px!important}.mt-sm-n10,.my-sm-n10{margin-top:-100px!important}.mr-sm-n10,.mx-sm-n10{margin-right:-100px!important}.mb-sm-n10,.my-sm-n10{margin-bottom:-100px!important}.ml-sm-n10,.mx-sm-n10{margin-left:-100px!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:10px!important}.mt-md-1,.my-md-1{margin-top:10px!important}.mr-md-1,.mx-md-1{margin-right:10px!important}.mb-md-1,.my-md-1{margin-bottom:10px!important}.ml-md-1,.mx-md-1{margin-left:10px!important}.m-md-2{margin:20px!important}.mt-md-2,.my-md-2{margin-top:20px!important}.mr-md-2,.mx-md-2{margin-right:20px!important}.mb-md-2,.my-md-2{margin-bottom:20px!important}.ml-md-2,.mx-md-2{margin-left:20px!important}.m-md-3{margin:30px!important}.mt-md-3,.my-md-3{margin-top:30px!important}.mr-md-3,.mx-md-3{margin-right:30px!important}.mb-md-3,.my-md-3{margin-bottom:30px!important}.ml-md-3,.mx-md-3{margin-left:30px!important}.m-md-4{margin:40px!important}.mt-md-4,.my-md-4{margin-top:40px!important}.mr-md-4,.mx-md-4{margin-right:40px!important}.mb-md-4,.my-md-4{margin-bottom:40px!important}.ml-md-4,.mx-md-4{margin-left:40px!important}.m-md-5{margin:50px!important}.mt-md-5,.my-md-5{margin-top:50px!important}.mr-md-5,.mx-md-5{margin-right:50px!important}.mb-md-5,.my-md-5{margin-bottom:50px!important}.ml-md-5,.mx-md-5{margin-left:50px!important}.m-md-6{margin:60px!important}.mt-md-6,.my-md-6{margin-top:60px!important}.mr-md-6,.mx-md-6{margin-right:60px!important}.mb-md-6,.my-md-6{margin-bottom:60px!important}.ml-md-6,.mx-md-6{margin-left:60px!important}.m-md-7{margin:70px!important}.mt-md-7,.my-md-7{margin-top:70px!important}.mr-md-7,.mx-md-7{margin-right:70px!important}.mb-md-7,.my-md-7{margin-bottom:70px!important}.ml-md-7,.mx-md-7{margin-left:70px!important}.m-md-8{margin:80px!important}.mt-md-8,.my-md-8{margin-top:80px!important}.mr-md-8,.mx-md-8{margin-right:80px!important}.mb-md-8,.my-md-8{margin-bottom:80px!important}.ml-md-8,.mx-md-8{margin-left:80px!important}.m-md-9{margin:90px!important}.mt-md-9,.my-md-9{margin-top:90px!important}.mr-md-9,.mx-md-9{margin-right:90px!important}.mb-md-9,.my-md-9{margin-bottom:90px!important}.ml-md-9,.mx-md-9{margin-left:90px!important}.m-md-10{margin:100px!important}.mt-md-10,.my-md-10{margin-top:100px!important}.mr-md-10,.mx-md-10{margin-right:100px!important}.mb-md-10,.my-md-10{margin-bottom:100px!important}.ml-md-10,.mx-md-10{margin-left:100px!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:10px!important}.pt-md-1,.py-md-1{padding-top:10px!important}.pr-md-1,.px-md-1{padding-right:10px!important}.pb-md-1,.py-md-1{padding-bottom:10px!important}.pl-md-1,.px-md-1{padding-left:10px!important}.p-md-2{padding:20px!important}.pt-md-2,.py-md-2{padding-top:20px!important}.pr-md-2,.px-md-2{padding-right:20px!important}.pb-md-2,.py-md-2{padding-bottom:20px!important}.pl-md-2,.px-md-2{padding-left:20px!important}.p-md-3{padding:30px!important}.pt-md-3,.py-md-3{padding-top:30px!important}.pr-md-3,.px-md-3{padding-right:30px!important}.pb-md-3,.py-md-3{padding-bottom:30px!important}.pl-md-3,.px-md-3{padding-left:30px!important}.p-md-4{padding:40px!important}.pt-md-4,.py-md-4{padding-top:40px!important}.pr-md-4,.px-md-4{padding-right:40px!important}.pb-md-4,.py-md-4{padding-bottom:40px!important}.pl-md-4,.px-md-4{padding-left:40px!important}.p-md-5{padding:50px!important}.pt-md-5,.py-md-5{padding-top:50px!important}.pr-md-5,.px-md-5{padding-right:50px!important}.pb-md-5,.py-md-5{padding-bottom:50px!important}.pl-md-5,.px-md-5{padding-left:50px!important}.p-md-6{padding:60px!important}.pt-md-6,.py-md-6{padding-top:60px!important}.pr-md-6,.px-md-6{padding-right:60px!important}.pb-md-6,.py-md-6{padding-bottom:60px!important}.pl-md-6,.px-md-6{padding-left:60px!important}.p-md-7{padding:70px!important}.pt-md-7,.py-md-7{padding-top:70px!important}.pr-md-7,.px-md-7{padding-right:70px!important}.pb-md-7,.py-md-7{padding-bottom:70px!important}.pl-md-7,.px-md-7{padding-left:70px!important}.p-md-8{padding:80px!important}.pt-md-8,.py-md-8{padding-top:80px!important}.pr-md-8,.px-md-8{padding-right:80px!important}.pb-md-8,.py-md-8{padding-bottom:80px!important}.pl-md-8,.px-md-8{padding-left:80px!important}.p-md-9{padding:90px!important}.pt-md-9,.py-md-9{padding-top:90px!important}.pr-md-9,.px-md-9{padding-right:90px!important}.pb-md-9,.py-md-9{padding-bottom:90px!important}.pl-md-9,.px-md-9{padding-left:90px!important}.p-md-10{padding:100px!important}.pt-md-10,.py-md-10{padding-top:100px!important}.pr-md-10,.px-md-10{padding-right:100px!important}.pb-md-10,.py-md-10{padding-bottom:100px!important}.pl-md-10,.px-md-10{padding-left:100px!important}.m-md-n1{margin:-10px!important}.mt-md-n1,.my-md-n1{margin-top:-10px!important}.mr-md-n1,.mx-md-n1{margin-right:-10px!important}.mb-md-n1,.my-md-n1{margin-bottom:-10px!important}.ml-md-n1,.mx-md-n1{margin-left:-10px!important}.m-md-n2{margin:-20px!important}.mt-md-n2,.my-md-n2{margin-top:-20px!important}.mr-md-n2,.mx-md-n2{margin-right:-20px!important}.mb-md-n2,.my-md-n2{margin-bottom:-20px!important}.ml-md-n2,.mx-md-n2{margin-left:-20px!important}.m-md-n3{margin:-30px!important}.mt-md-n3,.my-md-n3{margin-top:-30px!important}.mr-md-n3,.mx-md-n3{margin-right:-30px!important}.mb-md-n3,.my-md-n3{margin-bottom:-30px!important}.ml-md-n3,.mx-md-n3{margin-left:-30px!important}.m-md-n4{margin:-40px!important}.mt-md-n4,.my-md-n4{margin-top:-40px!important}.mr-md-n4,.mx-md-n4{margin-right:-40px!important}.mb-md-n4,.my-md-n4{margin-bottom:-40px!important}.ml-md-n4,.mx-md-n4{margin-left:-40px!important}.m-md-n5{margin:-50px!important}.mt-md-n5,.my-md-n5{margin-top:-50px!important}.mr-md-n5,.mx-md-n5{margin-right:-50px!important}.mb-md-n5,.my-md-n5{margin-bottom:-50px!important}.ml-md-n5,.mx-md-n5{margin-left:-50px!important}.m-md-n6{margin:-60px!important}.mt-md-n6,.my-md-n6{margin-top:-60px!important}.mr-md-n6,.mx-md-n6{margin-right:-60px!important}.mb-md-n6,.my-md-n6{margin-bottom:-60px!important}.ml-md-n6,.mx-md-n6{margin-left:-60px!important}.m-md-n7{margin:-70px!important}.mt-md-n7,.my-md-n7{margin-top:-70px!important}.mr-md-n7,.mx-md-n7{margin-right:-70px!important}.mb-md-n7,.my-md-n7{margin-bottom:-70px!important}.ml-md-n7,.mx-md-n7{margin-left:-70px!important}.m-md-n8{margin:-80px!important}.mt-md-n8,.my-md-n8{margin-top:-80px!important}.mr-md-n8,.mx-md-n8{margin-right:-80px!important}.mb-md-n8,.my-md-n8{margin-bottom:-80px!important}.ml-md-n8,.mx-md-n8{margin-left:-80px!important}.m-md-n9{margin:-90px!important}.mt-md-n9,.my-md-n9{margin-top:-90px!important}.mr-md-n9,.mx-md-n9{margin-right:-90px!important}.mb-md-n9,.my-md-n9{margin-bottom:-90px!important}.ml-md-n9,.mx-md-n9{margin-left:-90px!important}.m-md-n10{margin:-100px!important}.mt-md-n10,.my-md-n10{margin-top:-100px!important}.mr-md-n10,.mx-md-n10{margin-right:-100px!important}.mb-md-n10,.my-md-n10{margin-bottom:-100px!important}.ml-md-n10,.mx-md-n10{margin-left:-100px!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:10px!important}.mt-lg-1,.my-lg-1{margin-top:10px!important}.mr-lg-1,.mx-lg-1{margin-right:10px!important}.mb-lg-1,.my-lg-1{margin-bottom:10px!important}.ml-lg-1,.mx-lg-1{margin-left:10px!important}.m-lg-2{margin:20px!important}.mt-lg-2,.my-lg-2{margin-top:20px!important}.mr-lg-2,.mx-lg-2{margin-right:20px!important}.mb-lg-2,.my-lg-2{margin-bottom:20px!important}.ml-lg-2,.mx-lg-2{margin-left:20px!important}.m-lg-3{margin:30px!important}.mt-lg-3,.my-lg-3{margin-top:30px!important}.mr-lg-3,.mx-lg-3{margin-right:30px!important}.mb-lg-3,.my-lg-3{margin-bottom:30px!important}.ml-lg-3,.mx-lg-3{margin-left:30px!important}.m-lg-4{margin:40px!important}.mt-lg-4,.my-lg-4{margin-top:40px!important}.mr-lg-4,.mx-lg-4{margin-right:40px!important}.mb-lg-4,.my-lg-4{margin-bottom:40px!important}.ml-lg-4,.mx-lg-4{margin-left:40px!important}.m-lg-5{margin:50px!important}.mt-lg-5,.my-lg-5{margin-top:50px!important}.mr-lg-5,.mx-lg-5{margin-right:50px!important}.mb-lg-5,.my-lg-5{margin-bottom:50px!important}.ml-lg-5,.mx-lg-5{margin-left:50px!important}.m-lg-6{margin:60px!important}.mt-lg-6,.my-lg-6{margin-top:60px!important}.mr-lg-6,.mx-lg-6{margin-right:60px!important}.mb-lg-6,.my-lg-6{margin-bottom:60px!important}.ml-lg-6,.mx-lg-6{margin-left:60px!important}.m-lg-7{margin:70px!important}.mt-lg-7,.my-lg-7{margin-top:70px!important}.mr-lg-7,.mx-lg-7{margin-right:70px!important}.mb-lg-7,.my-lg-7{margin-bottom:70px!important}.ml-lg-7,.mx-lg-7{margin-left:70px!important}.m-lg-8{margin:80px!important}.mt-lg-8,.my-lg-8{margin-top:80px!important}.mr-lg-8,.mx-lg-8{margin-right:80px!important}.mb-lg-8,.my-lg-8{margin-bottom:80px!important}.ml-lg-8,.mx-lg-8{margin-left:80px!important}.m-lg-9{margin:90px!important}.mt-lg-9,.my-lg-9{margin-top:90px!important}.mr-lg-9,.mx-lg-9{margin-right:90px!important}.mb-lg-9,.my-lg-9{margin-bottom:90px!important}.ml-lg-9,.mx-lg-9{margin-left:90px!important}.m-lg-10{margin:100px!important}.mt-lg-10,.my-lg-10{margin-top:100px!important}.mr-lg-10,.mx-lg-10{margin-right:100px!important}.mb-lg-10,.my-lg-10{margin-bottom:100px!important}.ml-lg-10,.mx-lg-10{margin-left:100px!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:10px!important}.pt-lg-1,.py-lg-1{padding-top:10px!important}.pr-lg-1,.px-lg-1{padding-right:10px!important}.pb-lg-1,.py-lg-1{padding-bottom:10px!important}.pl-lg-1,.px-lg-1{padding-left:10px!important}.p-lg-2{padding:20px!important}.pt-lg-2,.py-lg-2{padding-top:20px!important}.pr-lg-2,.px-lg-2{padding-right:20px!important}.pb-lg-2,.py-lg-2{padding-bottom:20px!important}.pl-lg-2,.px-lg-2{padding-left:20px!important}.p-lg-3{padding:30px!important}.pt-lg-3,.py-lg-3{padding-top:30px!important}.pr-lg-3,.px-lg-3{padding-right:30px!important}.pb-lg-3,.py-lg-3{padding-bottom:30px!important}.pl-lg-3,.px-lg-3{padding-left:30px!important}.p-lg-4{padding:40px!important}.pt-lg-4,.py-lg-4{padding-top:40px!important}.pr-lg-4,.px-lg-4{padding-right:40px!important}.pb-lg-4,.py-lg-4{padding-bottom:40px!important}.pl-lg-4,.px-lg-4{padding-left:40px!important}.p-lg-5{padding:50px!important}.pt-lg-5,.py-lg-5{padding-top:50px!important}.pr-lg-5,.px-lg-5{padding-right:50px!important}.pb-lg-5,.py-lg-5{padding-bottom:50px!important}.pl-lg-5,.px-lg-5{padding-left:50px!important}.p-lg-6{padding:60px!important}.pt-lg-6,.py-lg-6{padding-top:60px!important}.pr-lg-6,.px-lg-6{padding-right:60px!important}.pb-lg-6,.py-lg-6{padding-bottom:60px!important}.pl-lg-6,.px-lg-6{padding-left:60px!important}.p-lg-7{padding:70px!important}.pt-lg-7,.py-lg-7{padding-top:70px!important}.pr-lg-7,.px-lg-7{padding-right:70px!important}.pb-lg-7,.py-lg-7{padding-bottom:70px!important}.pl-lg-7,.px-lg-7{padding-left:70px!important}.p-lg-8{padding:80px!important}.pt-lg-8,.py-lg-8{padding-top:80px!important}.pr-lg-8,.px-lg-8{padding-right:80px!important}.pb-lg-8,.py-lg-8{padding-bottom:80px!important}.pl-lg-8,.px-lg-8{padding-left:80px!important}.p-lg-9{padding:90px!important}.pt-lg-9,.py-lg-9{padding-top:90px!important}.pr-lg-9,.px-lg-9{padding-right:90px!important}.pb-lg-9,.py-lg-9{padding-bottom:90px!important}.pl-lg-9,.px-lg-9{padding-left:90px!important}.p-lg-10{padding:100px!important}.pt-lg-10,.py-lg-10{padding-top:100px!important}.pr-lg-10,.px-lg-10{padding-right:100px!important}.pb-lg-10,.py-lg-10{padding-bottom:100px!important}.pl-lg-10,.px-lg-10{padding-left:100px!important}.m-lg-n1{margin:-10px!important}.mt-lg-n1,.my-lg-n1{margin-top:-10px!important}.mr-lg-n1,.mx-lg-n1{margin-right:-10px!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-10px!important}.ml-lg-n1,.mx-lg-n1{margin-left:-10px!important}.m-lg-n2{margin:-20px!important}.mt-lg-n2,.my-lg-n2{margin-top:-20px!important}.mr-lg-n2,.mx-lg-n2{margin-right:-20px!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-20px!important}.ml-lg-n2,.mx-lg-n2{margin-left:-20px!important}.m-lg-n3{margin:-30px!important}.mt-lg-n3,.my-lg-n3{margin-top:-30px!important}.mr-lg-n3,.mx-lg-n3{margin-right:-30px!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-30px!important}.ml-lg-n3,.mx-lg-n3{margin-left:-30px!important}.m-lg-n4{margin:-40px!important}.mt-lg-n4,.my-lg-n4{margin-top:-40px!important}.mr-lg-n4,.mx-lg-n4{margin-right:-40px!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-40px!important}.ml-lg-n4,.mx-lg-n4{margin-left:-40px!important}.m-lg-n5{margin:-50px!important}.mt-lg-n5,.my-lg-n5{margin-top:-50px!important}.mr-lg-n5,.mx-lg-n5{margin-right:-50px!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-50px!important}.ml-lg-n5,.mx-lg-n5{margin-left:-50px!important}.m-lg-n6{margin:-60px!important}.mt-lg-n6,.my-lg-n6{margin-top:-60px!important}.mr-lg-n6,.mx-lg-n6{margin-right:-60px!important}.mb-lg-n6,.my-lg-n6{margin-bottom:-60px!important}.ml-lg-n6,.mx-lg-n6{margin-left:-60px!important}.m-lg-n7{margin:-70px!important}.mt-lg-n7,.my-lg-n7{margin-top:-70px!important}.mr-lg-n7,.mx-lg-n7{margin-right:-70px!important}.mb-lg-n7,.my-lg-n7{margin-bottom:-70px!important}.ml-lg-n7,.mx-lg-n7{margin-left:-70px!important}.m-lg-n8{margin:-80px!important}.mt-lg-n8,.my-lg-n8{margin-top:-80px!important}.mr-lg-n8,.mx-lg-n8{margin-right:-80px!important}.mb-lg-n8,.my-lg-n8{margin-bottom:-80px!important}.ml-lg-n8,.mx-lg-n8{margin-left:-80px!important}.m-lg-n9{margin:-90px!important}.mt-lg-n9,.my-lg-n9{margin-top:-90px!important}.mr-lg-n9,.mx-lg-n9{margin-right:-90px!important}.mb-lg-n9,.my-lg-n9{margin-bottom:-90px!important}.ml-lg-n9,.mx-lg-n9{margin-left:-90px!important}.m-lg-n10{margin:-100px!important}.mt-lg-n10,.my-lg-n10{margin-top:-100px!important}.mr-lg-n10,.mx-lg-n10{margin-right:-100px!important}.mb-lg-n10,.my-lg-n10{margin-bottom:-100px!important}.ml-lg-n10,.mx-lg-n10{margin-left:-100px!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1300px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:10px!important}.mt-xl-1,.my-xl-1{margin-top:10px!important}.mr-xl-1,.mx-xl-1{margin-right:10px!important}.mb-xl-1,.my-xl-1{margin-bottom:10px!important}.ml-xl-1,.mx-xl-1{margin-left:10px!important}.m-xl-2{margin:20px!important}.mt-xl-2,.my-xl-2{margin-top:20px!important}.mr-xl-2,.mx-xl-2{margin-right:20px!important}.mb-xl-2,.my-xl-2{margin-bottom:20px!important}.ml-xl-2,.mx-xl-2{margin-left:20px!important}.m-xl-3{margin:30px!important}.mt-xl-3,.my-xl-3{margin-top:30px!important}.mr-xl-3,.mx-xl-3{margin-right:30px!important}.mb-xl-3,.my-xl-3{margin-bottom:30px!important}.ml-xl-3,.mx-xl-3{margin-left:30px!important}.m-xl-4{margin:40px!important}.mt-xl-4,.my-xl-4{margin-top:40px!important}.mr-xl-4,.mx-xl-4{margin-right:40px!important}.mb-xl-4,.my-xl-4{margin-bottom:40px!important}.ml-xl-4,.mx-xl-4{margin-left:40px!important}.m-xl-5{margin:50px!important}.mt-xl-5,.my-xl-5{margin-top:50px!important}.mr-xl-5,.mx-xl-5{margin-right:50px!important}.mb-xl-5,.my-xl-5{margin-bottom:50px!important}.ml-xl-5,.mx-xl-5{margin-left:50px!important}.m-xl-6{margin:60px!important}.mt-xl-6,.my-xl-6{margin-top:60px!important}.mr-xl-6,.mx-xl-6{margin-right:60px!important}.mb-xl-6,.my-xl-6{margin-bottom:60px!important}.ml-xl-6,.mx-xl-6{margin-left:60px!important}.m-xl-7{margin:70px!important}.mt-xl-7,.my-xl-7{margin-top:70px!important}.mr-xl-7,.mx-xl-7{margin-right:70px!important}.mb-xl-7,.my-xl-7{margin-bottom:70px!important}.ml-xl-7,.mx-xl-7{margin-left:70px!important}.m-xl-8{margin:80px!important}.mt-xl-8,.my-xl-8{margin-top:80px!important}.mr-xl-8,.mx-xl-8{margin-right:80px!important}.mb-xl-8,.my-xl-8{margin-bottom:80px!important}.ml-xl-8,.mx-xl-8{margin-left:80px!important}.m-xl-9{margin:90px!important}.mt-xl-9,.my-xl-9{margin-top:90px!important}.mr-xl-9,.mx-xl-9{margin-right:90px!important}.mb-xl-9,.my-xl-9{margin-bottom:90px!important}.ml-xl-9,.mx-xl-9{margin-left:90px!important}.m-xl-10{margin:100px!important}.mt-xl-10,.my-xl-10{margin-top:100px!important}.mr-xl-10,.mx-xl-10{margin-right:100px!important}.mb-xl-10,.my-xl-10{margin-bottom:100px!important}.ml-xl-10,.mx-xl-10{margin-left:100px!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:10px!important}.pt-xl-1,.py-xl-1{padding-top:10px!important}.pr-xl-1,.px-xl-1{padding-right:10px!important}.pb-xl-1,.py-xl-1{padding-bottom:10px!important}.pl-xl-1,.px-xl-1{padding-left:10px!important}.p-xl-2{padding:20px!important}.pt-xl-2,.py-xl-2{padding-top:20px!important}.pr-xl-2,.px-xl-2{padding-right:20px!important}.pb-xl-2,.py-xl-2{padding-bottom:20px!important}.pl-xl-2,.px-xl-2{padding-left:20px!important}.p-xl-3{padding:30px!important}.pt-xl-3,.py-xl-3{padding-top:30px!important}.pr-xl-3,.px-xl-3{padding-right:30px!important}.pb-xl-3,.py-xl-3{padding-bottom:30px!important}.pl-xl-3,.px-xl-3{padding-left:30px!important}.p-xl-4{padding:40px!important}.pt-xl-4,.py-xl-4{padding-top:40px!important}.pr-xl-4,.px-xl-4{padding-right:40px!important}.pb-xl-4,.py-xl-4{padding-bottom:40px!important}.pl-xl-4,.px-xl-4{padding-left:40px!important}.p-xl-5{padding:50px!important}.pt-xl-5,.py-xl-5{padding-top:50px!important}.pr-xl-5,.px-xl-5{padding-right:50px!important}.pb-xl-5,.py-xl-5{padding-bottom:50px!important}.pl-xl-5,.px-xl-5{padding-left:50px!important}.p-xl-6{padding:60px!important}.pt-xl-6,.py-xl-6{padding-top:60px!important}.pr-xl-6,.px-xl-6{padding-right:60px!important}.pb-xl-6,.py-xl-6{padding-bottom:60px!important}.pl-xl-6,.px-xl-6{padding-left:60px!important}.p-xl-7{padding:70px!important}.pt-xl-7,.py-xl-7{padding-top:70px!important}.pr-xl-7,.px-xl-7{padding-right:70px!important}.pb-xl-7,.py-xl-7{padding-bottom:70px!important}.pl-xl-7,.px-xl-7{padding-left:70px!important}.p-xl-8{padding:80px!important}.pt-xl-8,.py-xl-8{padding-top:80px!important}.pr-xl-8,.px-xl-8{padding-right:80px!important}.pb-xl-8,.py-xl-8{padding-bottom:80px!important}.pl-xl-8,.px-xl-8{padding-left:80px!important}.p-xl-9{padding:90px!important}.pt-xl-9,.py-xl-9{padding-top:90px!important}.pr-xl-9,.px-xl-9{padding-right:90px!important}.pb-xl-9,.py-xl-9{padding-bottom:90px!important}.pl-xl-9,.px-xl-9{padding-left:90px!important}.p-xl-10{padding:100px!important}.pt-xl-10,.py-xl-10{padding-top:100px!important}.pr-xl-10,.px-xl-10{padding-right:100px!important}.pb-xl-10,.py-xl-10{padding-bottom:100px!important}.pl-xl-10,.px-xl-10{padding-left:100px!important}.m-xl-n1{margin:-10px!important}.mt-xl-n1,.my-xl-n1{margin-top:-10px!important}.mr-xl-n1,.mx-xl-n1{margin-right:-10px!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-10px!important}.ml-xl-n1,.mx-xl-n1{margin-left:-10px!important}.m-xl-n2{margin:-20px!important}.mt-xl-n2,.my-xl-n2{margin-top:-20px!important}.mr-xl-n2,.mx-xl-n2{margin-right:-20px!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-20px!important}.ml-xl-n2,.mx-xl-n2{margin-left:-20px!important}.m-xl-n3{margin:-30px!important}.mt-xl-n3,.my-xl-n3{margin-top:-30px!important}.mr-xl-n3,.mx-xl-n3{margin-right:-30px!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-30px!important}.ml-xl-n3,.mx-xl-n3{margin-left:-30px!important}.m-xl-n4{margin:-40px!important}.mt-xl-n4,.my-xl-n4{margin-top:-40px!important}.mr-xl-n4,.mx-xl-n4{margin-right:-40px!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-40px!important}.ml-xl-n4,.mx-xl-n4{margin-left:-40px!important}.m-xl-n5{margin:-50px!important}.mt-xl-n5,.my-xl-n5{margin-top:-50px!important}.mr-xl-n5,.mx-xl-n5{margin-right:-50px!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-50px!important}.ml-xl-n5,.mx-xl-n5{margin-left:-50px!important}.m-xl-n6{margin:-60px!important}.mt-xl-n6,.my-xl-n6{margin-top:-60px!important}.mr-xl-n6,.mx-xl-n6{margin-right:-60px!important}.mb-xl-n6,.my-xl-n6{margin-bottom:-60px!important}.ml-xl-n6,.mx-xl-n6{margin-left:-60px!important}.m-xl-n7{margin:-70px!important}.mt-xl-n7,.my-xl-n7{margin-top:-70px!important}.mr-xl-n7,.mx-xl-n7{margin-right:-70px!important}.mb-xl-n7,.my-xl-n7{margin-bottom:-70px!important}.ml-xl-n7,.mx-xl-n7{margin-left:-70px!important}.m-xl-n8{margin:-80px!important}.mt-xl-n8,.my-xl-n8{margin-top:-80px!important}.mr-xl-n8,.mx-xl-n8{margin-right:-80px!important}.mb-xl-n8,.my-xl-n8{margin-bottom:-80px!important}.ml-xl-n8,.mx-xl-n8{margin-left:-80px!important}.m-xl-n9{margin:-90px!important}.mt-xl-n9,.my-xl-n9{margin-top:-90px!important}.mr-xl-n9,.mx-xl-n9{margin-right:-90px!important}.mb-xl-n9,.my-xl-n9{margin-bottom:-90px!important}.ml-xl-n9,.mx-xl-n9{margin-left:-90px!important}.m-xl-n10{margin:-100px!important}.mt-xl-n10,.my-xl-n10{margin-top:-100px!important}.mr-xl-n10,.mx-xl-n10{margin-right:-100px!important}.mb-xl-n10,.my-xl-n10{margin-bottom:-100px!important}.ml-xl-n10,.mx-xl-n10{margin-left:-100px!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}/*!* Hamburgers
-* @description Tasty CSS-animated hamburgers
-* @author Jonathan Suh @jonsuh
-* @site https://jonsuh.com/hamburgers
-* @link https://github.com/jonsuh/hamburgers*/.hamburger{padding:15px;display:inline-block;cursor:pointer;transition-property:opacity,filter;transition-duration:.15s;transition-timing-function:linear;font:inherit;color:inherit;text-transform:none;background-color:transparent;border:0;margin:0;overflow:visible}.hamburger:hover{opacity:.7}.hamburger.is-active:hover{opacity:.7}.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner::before,.hamburger.is-active .hamburger-inner::after{background-color:#fff}.hamburger-box{width:36px;height:23px;display:inline-block;position:relative}.hamburger-inner{display:block;top:50%;margin-top:-1.5px}.hamburger-inner,.hamburger-inner::before,.hamburger-inner::after{width:36px;height:3px;background-color:#f24088;border-radius:3px;position:absolute;transition-property:transform;transition-duration:.15s;transition-timing-function:ease}.hamburger-inner::before,.hamburger-inner::after{content:"";display:block}.hamburger-inner::before{top:-10px}.hamburger-inner::after{bottom:-10px}.hamburger--slider .hamburger-inner{top:1.5px}.hamburger--slider .hamburger-inner::before{top:10px;transition-property:transform,opacity;transition-timing-function:ease;transition-duration:.15s}.hamburger--slider .hamburger-inner::after{top:20px}.hamburger--slider.is-active .hamburger-inner{transform:translate3d(0,10px,0)rotate(45deg)}.hamburger--slider.is-active .hamburger-inner::before{transform:rotate(-45deg)translate3d(-5.14285714px,-7px,0);opacity:0}.hamburger--slider.is-active .hamburger-inner::after{transform:translate3d(0,-20px,0)rotate(-90deg)}a{color:#f24088}p{line-height:26px;color:#5c5a5a;font-family:Helvetica,Arial,sans-serif,-apple-system;margin-bottom:20px}h1{font-size:20px;font-family:playfair display,serif,-apple-system;line-height:1.2;margin-bottom:20px}@media(min-width:768px){h1{font-size:32px;line-height:1.2}}h2{font-size:24px;font-family:playfair display,serif,-apple-system;line-height:1.4;margin-bottom:10px}@media(min-width:768px){h2{font-size:26px;line-height:1.4}}h3{font-size:16px;line-height:1.4}@media(min-width:768px){h3{font-size:20px;line-height:1.4}}ul,ol{margin:0;padding:0}ul li,ol li{padding:0;margin:0}.page{display:flex;min-height:100vh;flex-direction:column}.page .wrapper{flex:1 0 0}.header{color:#f24088;background-color:#fff;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #f6f7ff;padding:10px 0}.header .container{display:flex;justify-content:space-between;align-items:center}.header.header-absolute{position:absolute;z-index:10;width:100%}.lock-scroll .header.header-absolute{position:static}.footer{background:#f24088;padding-top:15px;padding-bottom:15px}.footer .footer-inner{display:flex;justify-content:space-between;flex-direction:column;align-items:flex-start}@media(min-width:576px){.footer .footer-inner{justify-content:space-between;flex-direction:row;align-items:center}}.footer .footer-title{color:#fff;font-size:1.3rem;font-family:playfair display,serif,-apple-system;font-weight:700;margin-bottom:10px}@media(min-width:576px){.footer .footer-title{margin:0}}.footer ul{list-style:none;margin:0;padding:0}.footer ul li{color:#fff;font-size:1rem}.footer ul li a{color:#fff;text-decoration:none;padding:12px 14px 12px 0;display:block}.footer ul li a:hover{text-decoration:underline}.footer ul li.active a{font-weight:700}@media(min-width:576px){.footer ul{height:inherit;display:flex;list-style:none;margin:0;padding:0;align-items:center;justify-content:flex-end}.footer ul li{list-style:none;margin-right:10px}.footer ul li:last-of-type{margin-right:0}.footer ul li a{display:inline-block;height:40px;padding:10px 8px}}.sub-footer{background:#ef106a;color:#fff;padding-top:15px;padding-bottom:15px}@media(min-width:768px){.sub-footer{padding-top:10px;padding-bottom:10px}}.sub-footer .sub-footer-inner{display:flex;flex-direction:column;justify-content:space-between}@media(min-width:768px){.sub-footer .sub-footer-inner{flex-direction:row}}.sub-footer .copyright{margin-top:10px;font-size:14px}.sub-footer .copyright a{font-weight:700;color:inherit}.sub-footer .social a:first-of-type{margin-left:-10px}.logo{display:none}@media(min-width:576px){.logo{display:block}}.logo a{display:block}.logo img{width:auto}.logo-mobile{display:block}@media(min-width:576px){.logo-mobile{display:none}}.logo-mobile a{display:block}.logo-mobile img{width:auto}.main-menu{display:none}@media(min-width:768px){.main-menu{display:block}}.main-menu>ul{display:flex;align-items:center;justify-content:flex-start}.main-menu>ul>li{list-style:none;font-size:1rem}.main-menu>ul>li>a{padding:10px 12px;display:inline-block;font-weight:400;text-decoration:none;color:#f24088}.main-menu>ul>li>a:hover{text-decoration:underline}.main-menu>ul>li.active>a{font-weight:700;text-decoration:none}.main-menu>ul>li.active>a:hover{text-decoration:none;transition:all 225ms ease-in 0s}.main-menu-mobile{position:fixed;background:#f24088;top:0;left:0;width:100%;height:100vh;opacity:0;visibility:hidden;transition:opacity .35s,visibility .35s,height .35s;overflow:hidden;display:flex;justify-content:center;align-items:center;flex-direction:column}.main-menu-mobile.open{opacity:.9;visibility:visible;height:100%;z-index:20}.main-menu-mobile.open li{animation:fadeInRight .5s ease forwards;animation-delay:.35s}.main-menu-mobile.open li:nth-of-type(2){animation-delay:.4s}.main-menu-mobile.open li:nth-of-type(3){animation-delay:.45s}.main-menu-mobile.open li:nth-of-type(4){animation-delay:.5s}.main-menu-mobile.open li:nth-of-type(5){animation-delay:.55s}.main-menu-mobile.open li:nth-of-type(6){animation-delay:.6s}.main-menu-mobile ul{font-size:30px;font-family:playfair display,serif,-apple-system;text-align:center;list-style:none;padding:0;margin:0;flex:0}.main-menu-mobile ul li{display:block;position:relative;opacity:0;padding:10px}.main-menu-mobile ul li a{display:block;position:relative;color:#fff;text-decoration:none;overflow:hidden}.main-menu-mobile ul li a:hover{opacity:.8}@keyframes fadeInRight{0%{opacity:0;left:20%}100%{opacity:1;left:0}}.lock-scroll{overflow:hidden}.hamburger{padding:10px 0 10px 10px;outline:none;z-index:30;cursor:pointer}@media(min-width:768px){.hamburger{display:none}}.hamburger:focus{outline:none}.hamburger .hamburger-inner,.hamburger .hamburger-inner::before,.hamburger .hamburger-inner::after{background:#f24088}.hamburger .hamburger-inner::after{width:18px;right:0}.hamburger.is-active .hamburger-inner::after{width:inherit;right:unset}.button{white-space:nowrap;display:inline-block;height:40px;line-height:40px;padding:0 14px;background:#f24088;border-radius:4px;font-size:14px;font-weight:400;text-transform:uppercase;letter-spacing:.025em;color:#fff;text-decoration:none;-webkit-transition:all .15s ease;transition:all .15s ease}.button:hover{color:#fff;background-color:#f570a6;transform:translateY(-1px);text-decoration:none}.call{position:relative;overflow:hidden;background-color:#f6f7ff;border-radius:4px;width:100%;display:flex;align-items:center;flex-direction:row;flex-wrap:wrap;z-index:2}@media(min-width:576px){.call{align-items:center;flex-direction:row;flex-wrap:wrap}}.call .call-box-top{flex:1 0 auto;padding:20px}.call .call-box-bottom{flex:auto;padding:20px;border-top:1px solid #dde0ff}@media(min-width:576px){.call .call-box-bottom{flex:0 0 auto;border:none}}.call .call-name{font-size:1.1rem;font-weight:700}.call .call-phone{margin-bottom:5px}.call strong{font-weight:700}.call svg{fill:#fff;position:absolute;bottom:-9px;right:0;width:100px;height:100px}@media(min-width:576px){.call svg{width:120px;height:120px}}.title{color:#2f2f41;font-size:48px;line-height:1.2}@media(min-width:992px){.title{font-size:50px}}.content a{text-decoration:underline}.content img{max-width:100%;height:auto;margin-top:20px;margin-bottom:20px}.content strong{font-width:bold}.content em{font-style:italic}.content p{font-family:Helvetica,Arial,sans-serif,-apple-system;line-height:1.56;color:#5c5a5a}.content h1{font-family:Helvetica,Arial,sans-serif,-apple-system;font-size:34px;line-height:1.26;font-weight:400;margin-top:30px;margin-bottom:20px}.content h2{font-family:Helvetica,Arial,sans-serif,-apple-system;font-size:26px;font-weight:400;line-height:1.4;margin-top:30px}.content h3{font-family:Helvetica,Arial,sans-serif,-apple-system;font-size:20px;line-height:1.4;font-weight:400;margin-top:30px}.content ul,.content ol{margin-bottom:20px}.content ul ul,.content ul ol,.content ol ul,.content ol ol{margin-bottom:0}.content ul{list-style:disc}.content ol{list-style:decimal}.content li{margin-bottom:5px;line-height:1.56;margin-left:20px;color:#5c5a5a}.content hr{border:none;border-bottom:1px solid #f6f7ff}.content table{width:100%;margin-top:30px;margin-bottom:30px}.content table th,.content table td{padding:5px;vertical-align:top;border-top:1px solid #f6f7ff}.content table thead th{vertical-align:bottom;border-bottom:1px solid #f6f7ff;text-align:left;font-weight:700}.content table tbody+tbody{border-top:1px solid #f6f7ff}.content blockquote{padding:0 1em;color:#5c5a5a;border-left:.25em solid #f88379}.intro{display:flex;justify-content:flex-start;align-items:center;padding-top:60px;padding-bottom:60px;overflow:hidden}@media(min-width:768px){.intro{padding-top:140px;padding-bottom:140px}}.intro h1{color:#2f2f41;font-size:42px;font-weight:700;line-height:1.2}@media(min-width:768px){.intro h1{width:80%;font-size:48px}}@media(min-width:992px){.intro h1{font-size:50px}}.intro h2{width:80%;font-size:1.2rem;line-height:1.4;margin-bottom:30px;color:#2f2f41;font-family:Helvetica,Arial,sans-serif,-apple-system}.intro p{font-size:1.2rem;font-weight:light;line-height:1.5;color:#5c5a5a}@media(min-width:768px){.intro p{width:80%}}.intro-small{padding-top:100px;padding-bottom:30px}.intro-image{width:100%;height:auto;margin-top:-40px}.intro-image-absolute{max-width:none;padding:0;margin-bottom:30px}@media(min-width:768px){.intro-image-absolute{position:absolute;bottom:-50px;left:-50px;width:700px}}@media(min-width:992px){.intro-image-absolute{bottom:-60px;left:-60px;width:800px}}@media(min-width:1300px){.intro-image-absolute{bottom:-100px;left:-70px;width:850px}}.intro-image-hide-mobile{display:none}@media(min-width:768px){.intro-image-hide-mobile{display:block}}.strip{background:#fff;background-repeat:no-repeat}.strip-white{background-color:#fff}.strip-grey{background-color:#f6f7ff}.strip-diagonal{transform:skewY(5deg);padding-bottom:50px;margin-bottom:65px}.strip-diagonal>div{transform:skewY(-5deg)}.strip-primary-gradient{background-image:linear-gradient(to right,#f24088,#f88379)}.strip-primary-gradient-top-bottom{background-image:linear-gradient(to bottom,#f24088,#f88379)}.strip-primary{background-color:#f24088}.strip-secondary{background-color:#f88379}.strip-diagonal-right{margin-top:-100px;transform:skewY(-5deg);padding-bottom:100px}.strip-diagonal-right>div{transform:skewY(5deg)}.strip-diagonal-left{margin-top:-100px;transform:skewY(5deg);padding-bottom:100px}.strip-diagonal-left>div{transform:skewY(-5deg)}.strip-bg-contain{background-size:contain}.strip-bg-cover{background-size:cover}.feature{height:100%;border:1px solid #f6f7ff;border-radius:3px;padding:20px;background-color:#fff;display:flex;align-items:center;flex-direction:column;text-align:center}.feature .feature-image{flex:0 0 auto;width:80px;height:80px;display:flex;margin-bottom:20px;text-align:center}.feature img{width:100%;height:auto}.feature .feature-content{margin-bottom:0;margin-top:auto}.social{display:block}.social img{width:20px;height:20px}.social a{padding:10px;display:inline-block}.social a:hover{opacity:.8}.team-summary{display:flex;flex-wrap:wrap;flex-direction:row}.team-summary .team-image{height:60px;width:60px;margin-right:10px;border-radius:50%;overflow:hidden}.team-summary .team-image img{width:60px;height:auto}.team-summary .team-meta{flex:1}.team-summary .team-meta h2{margin:0;font-size:22px;font-weight:400}.team-summary .team-meta p{color:#2f2f41;text-transform:uppercase;margin:0;font-size:12px;font-weight:500}.team-summary .team-content{margin-top:20px;flex:1 0 100%}.team-summary-large{background-color:#f6f7ff;padding:30px;border-radius:3px}.team-summary-large .team-image{height:90px;width:90px;margin-right:20px;border-radius:50%;overflow:hidden}.team-summary-large .team-image img{width:90px;height:auto}.page-services-single .content>p:first-of-type{font-size:1.6rem;line-height:1.4;margin-bottom:40px;font-weight:regular;color:#686868}body{font-size:16px;line-height:1.2;font-family:Helvetica,Arial,sans-serif,-apple-system}@media(min-width:768px){body{font-size:16px;line-height:1.3}} \ No newline at end of file
diff --git a/exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.json b/exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.json
deleted file mode 100644
index 0eb0d51..0000000
--- a/exampleSite/resources/_gen/assets/scss/www.example.com/scss/style.scss_953250851a1795a33f24521b79ead981.json
+++ /dev/null
@@ -1 +0,0 @@
-{"Target":"css/style.min.b1243fb15ae1d6c6f4ce7e9a9f811ccaa1eb0c68b733a20f6f0f554d3093ce05.css","MediaType":"text/css","Data":{"Integrity":"sha256-sSQ/sVrh1sb0zn6an4EcyqHrDGi3M6IPbw9VTTCTzgU="}} \ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 4de6dfb..90b2e77 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -7,6 +7,7 @@
<title>{{ block "title" . }}{{ if .Params.meta_title }}{{ .Params.meta_title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}{{ end }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="{{ "favicon-32x32.svg" | relURL }}">
+
{{ partial "google-fonts.html" . }}
<!-- CSS-->
@@ -25,7 +26,7 @@
{{ if .Params.meta_title }}<meta property="og:title" content="{{ .Params.meta_title }}"/>{{ else }}<meta property="og:title" content="{{ .Title }}"/>{{ end }}
<meta property="og:type" content="website"/>
<meta property="og:url" content="{{ .Permalink }}"/>
- {{ if .Params.image }}<meta property="og:image" content="{{ .Params.image | absURL }}"/>{{ end }}
+ {{ if .Params.image }}<meta property="og:image" content="{{ .Params.image | absURL }}"/>{{ else if .Site.Params.seo.meta_og_image }}<meta property="og:image" content="{{ .Site.Params.seo.meta_og_image | absURL }}"/>{{ end }}
{{ if .Params.description }}<meta property="og:description" content="{{ .Params.description }}"/>{{ end }}
<meta name="twitter:card" content="summary"/>
{{ if .Site.Params.seo.meta_twitter_site }}<meta name="twitter:site" content="{{ .Site.Params.seo.meta_twitter_site }}"/>{{ end }}
diff --git a/layouts/partials/google-fonts.html b/layouts/partials/google-fonts.html
index 85a5c6b..410a0f6 100644
--- a/layouts/partials/google-fonts.html
+++ b/layouts/partials/google-fonts.html
@@ -1,3 +1,5 @@
-<link rel="preconnect" href="https://fonts.googleapis.com">
-<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
-<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet"> \ No newline at end of file
+{{ with .Site.Params.fonts }}
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="{{ .google_fonts }}" rel="stylesheet">
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/meta-tags.html b/layouts/partials/meta-tags.html
new file mode 100644
index 0000000..aa33d06
--- /dev/null
+++ b/layouts/partials/meta-tags.html
@@ -0,0 +1,9 @@
+{{ if .Params.description }}<meta name="description" content="{{ .Params.description }}"/>{{ end }}
+{{ if .Params.meta_title }}<meta property="og:title" content="{{ .Params.meta_title }}"/>{{ else }}<meta property="og:title" content="{{ .Title }}"/>{{ end }}
+<meta property="og:type" content="website"/>
+<meta property="og:url" content="{{ .Permalink }}"/>
+{{ if .Params.image }}<meta property="og:image" content="{{ .Params.image | absURL }}"/>{{ else if .Site.Params.seo.meta_og_image }}<meta property="og:image" content="{{ .Site.Params.seo.meta_og_image | absURL }}"/>{{ end }}
+{{ if .Params.description }}<meta property="og:description" content="{{ .Params.description }}"/>{{ end }}
+<meta name="twitter:card" content="summary"/>
+{{ if .Site.Params.seo.meta_twitter_site }}<meta name="twitter:site" content="{{ .Site.Params.seo.meta_twitter_site }}"/>{{ end }}
+{{ if .Site.Params.seo.meta_twitter_creator }}<meta name="twitter:creator" content="{{ .Site.Params.seo.meta_twitter_creator }}"/>{{ end }} \ No newline at end of file