@charset "UTF-8";
/*  =============================================================================
    Import config
    * 1 Use this file for settings and variables
        (config settings are imported to each .scss file by webpack)
        (config variables can be exported to JS. see README for more info)
    ========================================================================== */
/*  ==========================================================================
    Configuration
    * Use this for all variables used in site/app
    ========================================================================== */
/*  =============================================================================
    Base
    ========================================================================== */
/*  =============================================================================
    Layout
    ========================================================================== */
/* =============================================================================
    Colors
   ========================================================================== */
/** General colors **/
/** Site specific color & shades **/
/** font colors **/
/** feedback colors (for form-feedback e.d.) **/
/* =============================================================================
    Font
   ========================================================================== */
/* =============================================================================
    Bootstrap config
    (required for bootstrap imports from npm package)
   ========================================================================== */
/* =============================================================================
    Variable exports
    (export all variables to webpack for use in js. See README for more info)
   ========================================================================== */
.c_title, .c_html-content > h1, .c_html-content > h2, .c_html-content > h3 {
  display: block;
  font-family: "Roboto Slab", serif;
  line-height: normal;
  font-weight: normal;
}

.c_title--size-1, .c_html-content > h1 {
  font-size: 1.875rem;
}

.c_title--size-2, .c_html-content > h2 {
  font-size: 1.625rem;
}

.c_title--size-3, .c_html-content > h3, .c_title--size-4, .c_title--size-5, .c_title--size-6 {
  font-size: 1.375rem;
}

.c_title--quote {
  font-family: "Ubuntu", sans-serif;
  font-style: italic;
  font-size: 1.875rem;
}

/*  ==========================================================================
    Default HTML component wrapper
    * Used to wrap html tags, p, ul, etc. from editors or imported data
    ========================================================================== */
.c_html-content * + h2 {
  margin-top: baseline(3);
}

.c_html-content * + h3 {
  margin-top: baseline(2);
}

.c_html-content > p:not(:last-child),
.c_html-content > ul:not(:last-child),
.c_html-content > ol:not(:last-child),
.c_html-content .c_title:not(:last-child), .c_html-content > h1:not(:last-child), .c_html-content > h2:not(:last-child), .c_html-content > h3:not(:last-child),
.c_html-content > .c_button:not(:last-child),
.c_html-content > .c_img:not(:last-child) {
  margin-bottom: baseline(1);
}

.c_html-content > ul li {
  display: block;
  position: relative;
  padding-left: 12px;
}

.c_html-content > ul li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #9e7d56;
  position: absolute;
  top: 0.65rem;
  left: 0;
}

.c_html-content > ol {
  counter-reset: ol;
}

.c_html-content > ol li {
  display: block;
  position: relative;
  padding-left: baseline(2) / 16pxrem;
}

.c_html-content > ol li ol {
  counter-reset: ol;
}

.c_html-content > ol li::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: #9e7d56;
  content: counters(ol, ".") "";
  counter-increment: ol;
  font-weight: bold;
}

/*  =============================================================================
    Bootstrap grid
    ========================================================================== */
/*  =============================================================================
    Import base
    ========================================================================== */
/*  ==========================================================================
    SCSS functions
    * Use this for all scss functions
    ========================================================================== */
/*  ==========================================================================
    SCSS mixins
    * Use this for all scss mixins
    ========================================================================== */
/* ----------
    only add hover when supported (not on touch devices)
    @include hover-supported() { cursor: pointer; ... }
---------- */
/* =============================================================================
   Meyer reset sheet
   ========================================================================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* =============================================================================
   Base
   ========================================================================== */
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  outline: none;
}

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 * 3. facebook bug not showing canvas in ie7/ie8 positon:relative weghalen
 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  min-height: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

/*
 * Prevent margin bug from nested div http://stackoverflow.com/questions/4015053/top-margin-inside-a-div-do-not-work
 */
body {
  margin: 0;
  height: 100%;
  width: 100%;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 */
::-moz-selection {
  text-shadow: none;
}

::selection {
  text-shadow: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*
 * The default box-model is set to “content-box” which means it does not include padding and borders into the width value.
 * The default box-sizing would make the width be 100% plus the padding but using border-box would include the padding in the width.
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * Use a more readable tab size (opinionated).
 */
:root {
  -moz-tab-size: 4;
  tab-size: 4;
}

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
main {
  display: block;
}

canvas,
video {
  display: inline-block;
}

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

/* =============================================================================
   Links
   ========================================================================== */
a {
  cursor: pointer;
  /* Improve readability when focused and hovered in all browsers: h5bp.com/h */
}

a:hover, a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  padding: 0;
}

/* Redeclare monospace font family: h5bp.com/j */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

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

small {
  font-size: 85%;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Forms
   ========================================================================== */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
  resize: none;
}

/**
 * disable arrows on field type number.
 */
form input[type='number']::-webkit-outer-spin-button,
form input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button[disabled],
input[disabled] {
  cursor: default;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/**
 * Make sure a unstyled radio&checkbox are visible
 * these default styles are reset by *{-webkit-appearance:none;} This causes the checkbox/radiobutton to be invisible..
 */
[type='checkbox'] {
  -webkit-appearance: checkbox;
}

[type='radio'] {
  -webkit-appearance: radio;
}

/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

html {
  font-size: 16px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  color: #0f0f0f;
}

body {
  line-height: 22px;
  background-color: #f4f2ed;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

a {
  color: #0f0f0f;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a:hover {
  color: #9e7d56;
}

/*  ==========================================================================
    Text selection
    * Remove text-shadow in selection highlight: h5bp.com/i
    ========================================================================== */
::-moz-selection {
  background: #9e7d56;
  color: #f4f2ed;
}

::selection {
  background: #9e7d56;
  color: #f4f2ed;
}

/*  ==========================================================================
    Placeholder color
    ========================================================================== */
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #0f0f0f;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #0f0f0f;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #0f0f0f;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #0f0f0f;
}

/*  ==========================================================================
    Helperclasses
    ========================================================================== */
/* Hide from both screenreaders and browsers: h5bp.com/u */
.h_hidden {
  display: none !important;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.h_visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Hide visually and from screenreaders, but maintain layout */
.h_invisible {
  visibility: hidden;
}

/* Contain floats: h5bp.com/q */
.h_clearfix::before, .h_clearfix::after {
  content: '';
  display: table;
}

.h_clearfix::after {
  clear: both;
}

/* Disable selection of text */
.h_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Disable wrapping of text */
.h_nowrap {
  white-space: nowrap;
}

/*  =============================================================================
    Components
    ========================================================================== */
/*  =============================================================================
    Print
    ========================================================================== */
@media print {
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
    * Don't show links for images, or javascript/internal links
    */
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
}

header {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f0f0f;
}

header div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/1.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

header svg {
  position: relative;
  display: block;
  width: 90%;
  max-width: 600px;
  height: auto;
}

header svg path {
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

footer {
  margin-top: auto;
  width: 100%;
  color: #f4f2ed;
  background-color: #3f3329;
  padding: 80px 0;
  color: #f4f2ed;
}

footer a {
  color: #f4f2ed;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 30px;
}

.main {
  padding: 30px 0;
}

.main h1 {
  margin-bottom: 20px;
}

.main h2,
.main h3 {
  margin-bottom: 10px;
}

.main p {
  margin-bottom: 10px;
}

.swiper-container {
  margin: 60px 0;
}

.swiper-container .swiper-button-next:after,
.swiper-container .swiper-button-prev:after {
  color: #f4f2ed;
}

.swiper-container img {
  width: 100%;
}
