@charset "UTF-8";
@font-face {
  font-family: "libre_caslon_textregular";
  src: url("/wp-content/themes/shackletons/fonts/librecaslontext-regular-webfont.woff2") format("woff2"), url("/wp-content/themes/shackletons/fonts/librecaslontext-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/wp-content/themes/shackletons/fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("/wp-content/themes/shackletons/fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/wp-content/themes/shackletons/fonts/Montserrat-Light.woff2") format("woff2"), url("/wp-content/themes/shackletons/fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/wp-content/themes/shackletons/fonts/Montserrat-Medium.woff2") format("woff2"), url("/wp-content/themes/shackletons/fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/wp-content/themes/shackletons/fonts/Montserrat-Regular.woff2") format("woff2"), url("/wp-content/themes/shackletons/fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 1. Configuration and helpers */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*
 * Mixin for easy media queries
 * @include bp(tablet) { SCSS here };
*/
/*
 * Mixin for micro clearfix
 * @include microclearfix;
*/
/*
 * Mixin for basic CSS triangles
 * @include triangle(up, #000, 50px)
*/
/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname');
 */
/*
* Currency
*/
/*
* Clearfix
*/
/*
* Respond To
*/
/*
* Ghost Vertical Align
*/
/*
* Truncate Text
*/
/*
* Animation
*/
/*
* Alerted
*/
@-webkit-keyframes alertMe {
  from {
    border-width: 3px;
    border-color: gold;
  }
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1);
  }
}
@-moz-keyframes alertMe {
  from {
    border-width: 3px;
    border-color: gold;
  }
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1);
  }
}
@keyframes alertMe {
  from {
    border-width: 3px;
    border-color: gold;
  }
  to {
    border-width: 0;
    border-color: rgba(255, 215, 0, 0.1);
  }
}
/*
* Resize Sprite - for resizing only a single image from a sprite
*
* params: $map = $<name>-sprites (ex. $icon-sprites)
*         $sprite = file name w/o file type ending (ex. globe)
          $percent = number (ex. 50)
*
* (if compass CSS3 mixins not included, uncomment the background-size row and comment the @include version)
*/
/*
* Resizes all images in a given sprite
* mixin courtesy of Wilker Lúcio https://gist.github.com/wilkerlucio/6442309
* params: $only = if you want to list specific files instead of regenerating every image (ex. globe, checkmark)
*/
/*
* HUI Tooltips
*/
/*
## Text-align justify
For perfectly aligned grids that don't rely on floating elements and difficult calculations

- http://www.barrelny.com/blog/text-align-justify-and-rwd/ */
/* 2. Vendors */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 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-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 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 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

/**
 * 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 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

/* 3. Base stuff */
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  margin: 0 !important;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  /* Font varient */
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  /* Smoothing */
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden !important;
  min-width: 100%;
}

html, body {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  color: #3C3C3B;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover, a:active, a:focus {
  color: #aaa !important;
  text-decoration: none;
  outline: none;
}
a:visited {
  color: inherit;
}

img {
  max-width: 100%;
}

@media (max-width: 1230px) {
  img {
    width: auto;
    height: auto;
  }
}
dl {
  margin: 20px 0;
}

b, strong {
  font-weight: 700;
}

p {
  margin-top: 0;
}

figure {
  margin: 0;
}

/**
 * Basic typography style for copy text
 */
body {
  color: #3C3C3B;
  font: normal 14px/1.2 "Montserrat", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "libre_caslon_textregular", serif;
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
}
h1 img, h1 span, h2 img, h2 span, h3 img, h3 span, h4 img, h4 span, h5 img, h5 span, h6 img, h6 span {
  display: inline-block;
  vertical-align: middle;
}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  margin-right: 10px;
}

h1, .h1 {
  font: 300 52px/0.9 "Montserrat", sans-serif;
  letter-spacing: -5px;
  text-transform: uppercase;
  color: #86888C;
}

h2, .h2, .childrens .children-title {
  font: normal 36px/1.1 "libre_caslon_textregular", serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 26px;
}

h5, .h5 {
  font-size: 22px;
}

h6, .h6 {
  font-size: 20px;
}

@media (max-width: 767px) {
  body {
    font: normal 14px/1.2 "Montserrat", sans-serif;
  }
  h1, .h1 {
    font-size: 40px;
    letter-spacing: -3px;
  }
  h2, .h2, .childrens .children-title {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  body {
    font: normal 14px/1.2 "Montserrat", sans-serif;
  }
  h1, .h1 {
    font-size: 34px;
  }
}
blockquote p {
  font: italic 37px/1.1 "libre_caslon_textregular", serif;
  color: #917376;
}
@media (max-width: 1023px) {
  blockquote p {
    font-size: 28px;
  }
}
blockquote footer p {
  font-family: "Montserrat", sans-serif !important;
  font-size: 23px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-style: normal;
  color: #3C3C3B;
  margin-bottom: 5px !important;
}
blockquote footer p + p {
  font-size: 14px;
}
blockquote p + footer p {
  font-size: 23px !important;
  text-transform: uppercase;
  margin-top: 20px;
  letter-spacing: -0.5px;
}
@media (max-width: 767px) {
  blockquote {
    margin-left: 0;
    margin-right: 0;
  }
}
blockquote footer + p {
  margin-top: 40px;
}

.clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clear {
  display: inline-block;
}

* html .clear {
  height: 1%;
}

.clear {
  display: block;
}

.wrap {
  max-width: 1230px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 15px; /* 3 */
  padding-right: 15px; /* 3 */
  width: 100%; /* 1 */
}

.content {
  max-width: 1200px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 15px; /* 3 */
  padding-right: 15px; /* 3 */
  width: 100%; /* 1 */
}

.small-content {
  max-width: 770px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  width: 100%; /* 1 */
}

.medium-content {
  max-width: 860px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  width: 100%; /* 1 */
}

.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

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

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

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

.width_auto {
  width: auto !important;
}

.inline {
  display: inline;
}

.block {
  display: block !important;
}

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

.hide {
  display: none;
}

.flex {
  display: flex;
}

.txt-xs {
  font-size: 12px !important;
  line-height: 1.8;
}

.txt-s {
  font-size: 13px !important;
  line-height: 1.4;
}

.txt-m {
  font-size: 14px !important;
  line-height: 1.4;
}

.txt-l {
  font-size: 16px !important;
  line-height: 1.4;
}

.txt-xl {
  font-size: 18px !important;
  line-height: 1.4;
}

.txt-xxl {
  font-size: 20px !important;
  line-height: 1.4;
}

.txt-light {
  font-weight: 300;
}

.txt-normal {
  font-weight: 400;
}

.txt-bold {
  font-weight: 700;
}

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

.txt-center-vertical {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.center-vertically {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.center-parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.txt-pink {
  color: #e4007f;
}

.txt-brown {
  color: #231815;
}

.txt-primary {
  color: #675F5D;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-primary {
  background-color: #675F5D !important;
}

.bg-second {
  background-color: #191919 !important;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.m-5 {
  margin: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.m-25 {
  margin: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.m-30 {
  margin: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.m-35 {
  margin: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.m-40 {
  margin: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.m-45 {
  margin: 45px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.m-50 {
  margin: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.p-5 {
  padding: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.no-m {
  margin: 0 !important;
}

.no-mt {
  margin-top: 0 !important;
}

.no-mr {
  margin-right: 0 !important;
}

.no-mb {
  margin-bottom: 0 !important;
}

.no-ml {
  margin-left: 0 !important;
}

.no-p {
  padding: 0 !important;
}

.no-pt {
  padding-top: 0 !important;
}

.no-pr {
  padding-right: 0 !important;
}

.no-pb {
  padding-bottom: 0 !important;
}

.no-pl {
  padding-left: 0 !important;
}

@media (max-width: 1200px) {
  .p-lg-5 {
    margin: 5px !important;
  }
  .pl-lg-5 {
    margin-top: 5px !important;
  }
  .pl-lg-5 {
    margin-right: 5px !important;
  }
  .pl-lg-5 {
    margin-bottom: 5px !important;
  }
  .pl-lg-5 {
    margin-left: 5px !important;
  }
  .p-lg-10 {
    margin: 10px !important;
  }
  .pl-lg-10 {
    margin-top: 10px !important;
  }
  .pl-lg-10 {
    margin-right: 10px !important;
  }
  .pl-lg-10 {
    margin-bottom: 10px !important;
  }
  .pl-lg-10 {
    margin-left: 10px !important;
  }
  .p-lg-15 {
    margin: 15px !important;
  }
  .pl-lg-15 {
    margin-top: 15px !important;
  }
  .pl-lg-15 {
    margin-right: 15px !important;
  }
  .pl-lg-15 {
    margin-bottom: 15px !important;
  }
  .pl-lg-15 {
    margin-left: 15px !important;
  }
  .p-lg-20 {
    margin: 20px !important;
  }
  .pl-lg-20 {
    margin-top: 20px !important;
  }
  .pl-lg-20 {
    margin-right: 20px !important;
  }
  .pl-lg-20 {
    margin-bottom: 20px !important;
  }
  .pl-lg-20 {
    margin-left: 20px !important;
  }
  .p-lg-25 {
    margin: 25px !important;
  }
  .pl-lg-25 {
    margin-top: 25px !important;
  }
  .pl-lg-25 {
    margin-right: 25px !important;
  }
  .pl-lg-25 {
    margin-bottom: 25px !important;
  }
  .pl-lg-25 {
    margin-left: 25px !important;
  }
  .p-lg-30 {
    margin: 30px !important;
  }
  .pl-lg-30 {
    margin-top: 30px !important;
  }
  .pl-lg-30 {
    margin-right: 30px !important;
  }
  .pl-lg-30 {
    margin-bottom: 30px !important;
  }
  .pl-lg-30 {
    margin-left: 30px !important;
  }
  .p-lg-35 {
    margin: 35px !important;
  }
  .pl-lg-35 {
    margin-top: 35px !important;
  }
  .pl-lg-35 {
    margin-right: 35px !important;
  }
  .pl-lg-35 {
    margin-bottom: 35px !important;
  }
  .pl-lg-35 {
    margin-left: 35px !important;
  }
  .p-lg-40 {
    margin: 40px !important;
  }
  .pl-lg-40 {
    margin-top: 40px !important;
  }
  .pl-lg-40 {
    margin-right: 40px !important;
  }
  .pl-lg-40 {
    margin-bottom: 40px !important;
  }
  .pl-lg-40 {
    margin-left: 40px !important;
  }
  .p-lg-45 {
    margin: 45px !important;
  }
  .pl-lg-45 {
    margin-top: 45px !important;
  }
  .pl-lg-45 {
    margin-right: 45px !important;
  }
  .pl-lg-45 {
    margin-bottom: 45px !important;
  }
  .pl-lg-45 {
    margin-left: 45px !important;
  }
  .p-lg-50 {
    margin: 50px !important;
  }
  .pl-lg-50 {
    margin-top: 50px !important;
  }
  .pl-lg-50 {
    margin-right: 50px !important;
  }
  .pl-lg-50 {
    margin-bottom: 50px !important;
  }
  .pl-lg-50 {
    margin-left: 50px !important;
  }
  .p-lg-5 {
    padding: 5px !important;
  }
  .pl-lg-5 {
    padding-top: 5px !important;
  }
  .pl-lg-5 {
    padding-right: 5px !important;
  }
  .pl-lg-5 {
    padding-bottom: 5px !important;
  }
  .pl-lg-5 {
    padding-left: 5px !important;
  }
  .p-lg-10 {
    padding: 10px !important;
  }
  .pl-lg-10 {
    padding-top: 10px !important;
  }
  .pl-lg-10 {
    padding-right: 10px !important;
  }
  .pl-lg-10 {
    padding-bottom: 10px !important;
  }
  .pl-lg-10 {
    padding-left: 10px !important;
  }
  .p-lg-15 {
    padding: 15px !important;
  }
  .pl-lg-15 {
    padding-top: 15px !important;
  }
  .pl-lg-15 {
    padding-right: 15px !important;
  }
  .pl-lg-15 {
    padding-bottom: 15px !important;
  }
  .pl-lg-15 {
    padding-left: 15px !important;
  }
  .p-lg-20 {
    padding: 20px !important;
  }
  .pl-lg-20 {
    padding-top: 20px !important;
  }
  .pl-lg-20 {
    padding-right: 20px !important;
  }
  .pl-lg-20 {
    padding-bottom: 20px !important;
  }
  .pl-lg-20 {
    padding-left: 20px !important;
  }
  .p-lg-25 {
    padding: 25px !important;
  }
  .pl-lg-25 {
    padding-top: 25px !important;
  }
  .pl-lg-25 {
    padding-right: 25px !important;
  }
  .pl-lg-25 {
    padding-bottom: 25px !important;
  }
  .pl-lg-25 {
    padding-left: 25px !important;
  }
  .p-lg-30 {
    padding: 30px !important;
  }
  .pl-lg-30 {
    padding-top: 30px !important;
  }
  .pl-lg-30 {
    padding-right: 30px !important;
  }
  .pl-lg-30 {
    padding-bottom: 30px !important;
  }
  .pl-lg-30 {
    padding-left: 30px !important;
  }
  .p-lg-35 {
    padding: 35px !important;
  }
  .pl-lg-35 {
    padding-top: 35px !important;
  }
  .pl-lg-35 {
    padding-right: 35px !important;
  }
  .pl-lg-35 {
    padding-bottom: 35px !important;
  }
  .pl-lg-35 {
    padding-left: 35px !important;
  }
  .p-lg-40 {
    padding: 40px !important;
  }
  .pl-lg-40 {
    padding-top: 40px !important;
  }
  .pl-lg-40 {
    padding-right: 40px !important;
  }
  .pl-lg-40 {
    padding-bottom: 40px !important;
  }
  .pl-lg-40 {
    padding-left: 40px !important;
  }
  .p-lg-45 {
    padding: 45px !important;
  }
  .pl-lg-45 {
    padding-top: 45px !important;
  }
  .pl-lg-45 {
    padding-right: 45px !important;
  }
  .pl-lg-45 {
    padding-bottom: 45px !important;
  }
  .pl-lg-45 {
    padding-left: 45px !important;
  }
  .p-lg-50 {
    padding: 50px !important;
  }
  .pl-lg-50 {
    padding-top: 50px !important;
  }
  .pl-lg-50 {
    padding-right: 50px !important;
  }
  .pl-lg-50 {
    padding-bottom: 50px !important;
  }
  .pl-lg-50 {
    padding-left: 50px !important;
  }
  .no-lg-p {
    margin: 0 !important;
  }
  .no-lg-pl {
    margin-top: 0 !important;
  }
  .no-lg-pl {
    margin-right: 0 !important;
  }
  .no-lg-pl {
    margin-bottom: 0 !important;
  }
  .no-lg-pl {
    margin-left: 0 !important;
  }
  .no-lg-p {
    padding: 0 !important;
  }
  .no-lg-pl {
    padding-top: 0 !important;
  }
  .no-lg-pl {
    padding-right: 0 !important;
  }
  .no-lg-pl {
    padding-bottom: 0 !important;
  }
  .no-lg-pl {
    padding-left: 0 !important;
  }
}
@media (max-width: 1024px) {
  .p-md-5 {
    margin: 5px !important;
  }
  .pl-md-5 {
    margin-top: 5px !important;
  }
  .pl-md-5 {
    margin-right: 5px !important;
  }
  .pl-md-5 {
    margin-bottom: 5px !important;
  }
  .pl-md-5 {
    margin-left: 5px !important;
  }
  .p-md-10 {
    margin: 10px !important;
  }
  .pl-md-10 {
    margin-top: 10px !important;
  }
  .pl-md-10 {
    margin-right: 10px !important;
  }
  .pl-md-10 {
    margin-bottom: 10px !important;
  }
  .pl-md-10 {
    margin-left: 10px !important;
  }
  .p-md-15 {
    margin: 15px !important;
  }
  .pl-md-15 {
    margin-top: 15px !important;
  }
  .pl-md-15 {
    margin-right: 15px !important;
  }
  .pl-md-15 {
    margin-bottom: 15px !important;
  }
  .pl-md-15 {
    margin-left: 15px !important;
  }
  .p-md-20 {
    margin: 20px !important;
  }
  .pl-md-20 {
    margin-top: 20px !important;
  }
  .pl-md-20 {
    margin-right: 20px !important;
  }
  .pl-md-20 {
    margin-bottom: 20px !important;
  }
  .pl-md-20 {
    margin-left: 20px !important;
  }
  .p-md-25 {
    margin: 25px !important;
  }
  .pl-md-25 {
    margin-top: 25px !important;
  }
  .pl-md-25 {
    margin-right: 25px !important;
  }
  .pl-md-25 {
    margin-bottom: 25px !important;
  }
  .pl-md-25 {
    margin-left: 25px !important;
  }
  .p-md-30 {
    margin: 30px !important;
  }
  .pl-md-30 {
    margin-top: 30px !important;
  }
  .pl-md-30 {
    margin-right: 30px !important;
  }
  .pl-md-30 {
    margin-bottom: 30px !important;
  }
  .pl-md-30 {
    margin-left: 30px !important;
  }
  .p-md-35 {
    margin: 35px !important;
  }
  .pl-md-35 {
    margin-top: 35px !important;
  }
  .pl-md-35 {
    margin-right: 35px !important;
  }
  .pl-md-35 {
    margin-bottom: 35px !important;
  }
  .pl-md-35 {
    margin-left: 35px !important;
  }
  .p-md-40 {
    margin: 40px !important;
  }
  .pl-md-40 {
    margin-top: 40px !important;
  }
  .pl-md-40 {
    margin-right: 40px !important;
  }
  .pl-md-40 {
    margin-bottom: 40px !important;
  }
  .pl-md-40 {
    margin-left: 40px !important;
  }
  .p-md-45 {
    margin: 45px !important;
  }
  .pl-md-45 {
    margin-top: 45px !important;
  }
  .pl-md-45 {
    margin-right: 45px !important;
  }
  .pl-md-45 {
    margin-bottom: 45px !important;
  }
  .pl-md-45 {
    margin-left: 45px !important;
  }
  .p-md-50 {
    margin: 50px !important;
  }
  .pl-md-50 {
    margin-top: 50px !important;
  }
  .pl-md-50 {
    margin-right: 50px !important;
  }
  .pl-md-50 {
    margin-bottom: 50px !important;
  }
  .pl-md-50 {
    margin-left: 50px !important;
  }
  .p-md-5 {
    padding: 5px !important;
  }
  .pl-md-5 {
    padding-top: 5px !important;
  }
  .pl-md-5 {
    padding-right: 5px !important;
  }
  .pl-md-5 {
    padding-bottom: 5px !important;
  }
  .pl-md-5 {
    padding-left: 5px !important;
  }
  .p-md-10 {
    padding: 10px !important;
  }
  .pl-md-10 {
    padding-top: 10px !important;
  }
  .pl-md-10 {
    padding-right: 10px !important;
  }
  .pl-md-10 {
    padding-bottom: 10px !important;
  }
  .pl-md-10 {
    padding-left: 10px !important;
  }
  .p-md-15 {
    padding: 15px !important;
  }
  .pl-md-15 {
    padding-top: 15px !important;
  }
  .pl-md-15 {
    padding-right: 15px !important;
  }
  .pl-md-15 {
    padding-bottom: 15px !important;
  }
  .pl-md-15 {
    padding-left: 15px !important;
  }
  .p-md-20 {
    padding: 20px !important;
  }
  .pl-md-20 {
    padding-top: 20px !important;
  }
  .pl-md-20 {
    padding-right: 20px !important;
  }
  .pl-md-20 {
    padding-bottom: 20px !important;
  }
  .pl-md-20 {
    padding-left: 20px !important;
  }
  .p-md-25 {
    padding: 25px !important;
  }
  .pl-md-25 {
    padding-top: 25px !important;
  }
  .pl-md-25 {
    padding-right: 25px !important;
  }
  .pl-md-25 {
    padding-bottom: 25px !important;
  }
  .pl-md-25 {
    padding-left: 25px !important;
  }
  .p-md-30 {
    padding: 30px !important;
  }
  .pl-md-30 {
    padding-top: 30px !important;
  }
  .pl-md-30 {
    padding-right: 30px !important;
  }
  .pl-md-30 {
    padding-bottom: 30px !important;
  }
  .pl-md-30 {
    padding-left: 30px !important;
  }
  .p-md-35 {
    padding: 35px !important;
  }
  .pl-md-35 {
    padding-top: 35px !important;
  }
  .pl-md-35 {
    padding-right: 35px !important;
  }
  .pl-md-35 {
    padding-bottom: 35px !important;
  }
  .pl-md-35 {
    padding-left: 35px !important;
  }
  .p-md-40 {
    padding: 40px !important;
  }
  .pl-md-40 {
    padding-top: 40px !important;
  }
  .pl-md-40 {
    padding-right: 40px !important;
  }
  .pl-md-40 {
    padding-bottom: 40px !important;
  }
  .pl-md-40 {
    padding-left: 40px !important;
  }
  .p-md-45 {
    padding: 45px !important;
  }
  .pl-md-45 {
    padding-top: 45px !important;
  }
  .pl-md-45 {
    padding-right: 45px !important;
  }
  .pl-md-45 {
    padding-bottom: 45px !important;
  }
  .pl-md-45 {
    padding-left: 45px !important;
  }
  .p-md-50 {
    padding: 50px !important;
  }
  .pl-md-50 {
    padding-top: 50px !important;
  }
  .pl-md-50 {
    padding-right: 50px !important;
  }
  .pl-md-50 {
    padding-bottom: 50px !important;
  }
  .pl-md-50 {
    padding-left: 50px !important;
  }
  .no-md-p {
    margin: 0 !important;
  }
  .no-md-pl {
    margin-top: 0 !important;
  }
  .no-md-pl {
    margin-right: 0 !important;
  }
  .no-md-pl {
    margin-bottom: 0 !important;
  }
  .no-md-pl {
    margin-left: 0 !important;
  }
  .no-md-p {
    padding: 0 !important;
  }
  .no-md-pl {
    padding-top: 0 !important;
  }
  .no-md-pl {
    padding-right: 0 !important;
  }
  .no-md-pl {
    padding-bottom: 0 !important;
  }
  .no-md-pl {
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .p-sm-5 {
    margin: 5px !important;
  }
  .pl-sm-5 {
    margin-top: 5px !important;
  }
  .pl-sm-5 {
    margin-right: 5px !important;
  }
  .pl-sm-5 {
    margin-bottom: 5px !important;
  }
  .pl-sm-5 {
    margin-left: 5px !important;
  }
  .p-sm-10 {
    margin: 10px !important;
  }
  .pl-sm-10 {
    margin-top: 10px !important;
  }
  .pl-sm-10 {
    margin-right: 10px !important;
  }
  .pl-sm-10 {
    margin-bottom: 10px !important;
  }
  .pl-sm-10 {
    margin-left: 10px !important;
  }
  .p-sm-15 {
    margin: 15px !important;
  }
  .pl-sm-15 {
    margin-top: 15px !important;
  }
  .pl-sm-15 {
    margin-right: 15px !important;
  }
  .pl-sm-15 {
    margin-bottom: 15px !important;
  }
  .pl-sm-15 {
    margin-left: 15px !important;
  }
  .p-sm-20 {
    margin: 20px !important;
  }
  .pl-sm-20 {
    margin-top: 20px !important;
  }
  .pl-sm-20 {
    margin-right: 20px !important;
  }
  .pl-sm-20 {
    margin-bottom: 20px !important;
  }
  .pl-sm-20 {
    margin-left: 20px !important;
  }
  .p-sm-25 {
    margin: 25px !important;
  }
  .pl-sm-25 {
    margin-top: 25px !important;
  }
  .pl-sm-25 {
    margin-right: 25px !important;
  }
  .pl-sm-25 {
    margin-bottom: 25px !important;
  }
  .pl-sm-25 {
    margin-left: 25px !important;
  }
  .p-sm-30 {
    margin: 30px !important;
  }
  .pl-sm-30 {
    margin-top: 30px !important;
  }
  .pl-sm-30 {
    margin-right: 30px !important;
  }
  .pl-sm-30 {
    margin-bottom: 30px !important;
  }
  .pl-sm-30 {
    margin-left: 30px !important;
  }
  .p-sm-35 {
    margin: 35px !important;
  }
  .pl-sm-35 {
    margin-top: 35px !important;
  }
  .pl-sm-35 {
    margin-right: 35px !important;
  }
  .pl-sm-35 {
    margin-bottom: 35px !important;
  }
  .pl-sm-35 {
    margin-left: 35px !important;
  }
  .p-sm-40 {
    margin: 40px !important;
  }
  .pl-sm-40 {
    margin-top: 40px !important;
  }
  .pl-sm-40 {
    margin-right: 40px !important;
  }
  .pl-sm-40 {
    margin-bottom: 40px !important;
  }
  .pl-sm-40 {
    margin-left: 40px !important;
  }
  .p-sm-45 {
    margin: 45px !important;
  }
  .pl-sm-45 {
    margin-top: 45px !important;
  }
  .pl-sm-45 {
    margin-right: 45px !important;
  }
  .pl-sm-45 {
    margin-bottom: 45px !important;
  }
  .pl-sm-45 {
    margin-left: 45px !important;
  }
  .p-sm-50 {
    margin: 50px !important;
  }
  .pl-sm-50 {
    margin-top: 50px !important;
  }
  .pl-sm-50 {
    margin-right: 50px !important;
  }
  .pl-sm-50 {
    margin-bottom: 50px !important;
  }
  .pl-sm-50 {
    margin-left: 50px !important;
  }
  .p-sm-5 {
    padding: 5px !important;
  }
  .pl-sm-5 {
    padding-top: 5px !important;
  }
  .pl-sm-5 {
    padding-right: 5px !important;
  }
  .pl-sm-5 {
    padding-bottom: 5px !important;
  }
  .pl-sm-5 {
    padding-left: 5px !important;
  }
  .p-sm-10 {
    padding: 10px !important;
  }
  .pl-sm-10 {
    padding-top: 10px !important;
  }
  .pl-sm-10 {
    padding-right: 10px !important;
  }
  .pl-sm-10 {
    padding-bottom: 10px !important;
  }
  .pl-sm-10 {
    padding-left: 10px !important;
  }
  .p-sm-15 {
    padding: 15px !important;
  }
  .pl-sm-15 {
    padding-top: 15px !important;
  }
  .pl-sm-15 {
    padding-right: 15px !important;
  }
  .pl-sm-15 {
    padding-bottom: 15px !important;
  }
  .pl-sm-15 {
    padding-left: 15px !important;
  }
  .p-sm-20 {
    padding: 20px !important;
  }
  .pl-sm-20 {
    padding-top: 20px !important;
  }
  .pl-sm-20 {
    padding-right: 20px !important;
  }
  .pl-sm-20 {
    padding-bottom: 20px !important;
  }
  .pl-sm-20 {
    padding-left: 20px !important;
  }
  .p-sm-25 {
    padding: 25px !important;
  }
  .pl-sm-25 {
    padding-top: 25px !important;
  }
  .pl-sm-25 {
    padding-right: 25px !important;
  }
  .pl-sm-25 {
    padding-bottom: 25px !important;
  }
  .pl-sm-25 {
    padding-left: 25px !important;
  }
  .p-sm-30 {
    padding: 30px !important;
  }
  .pl-sm-30 {
    padding-top: 30px !important;
  }
  .pl-sm-30 {
    padding-right: 30px !important;
  }
  .pl-sm-30 {
    padding-bottom: 30px !important;
  }
  .pl-sm-30 {
    padding-left: 30px !important;
  }
  .p-sm-35 {
    padding: 35px !important;
  }
  .pl-sm-35 {
    padding-top: 35px !important;
  }
  .pl-sm-35 {
    padding-right: 35px !important;
  }
  .pl-sm-35 {
    padding-bottom: 35px !important;
  }
  .pl-sm-35 {
    padding-left: 35px !important;
  }
  .p-sm-40 {
    padding: 40px !important;
  }
  .pl-sm-40 {
    padding-top: 40px !important;
  }
  .pl-sm-40 {
    padding-right: 40px !important;
  }
  .pl-sm-40 {
    padding-bottom: 40px !important;
  }
  .pl-sm-40 {
    padding-left: 40px !important;
  }
  .p-sm-45 {
    padding: 45px !important;
  }
  .pl-sm-45 {
    padding-top: 45px !important;
  }
  .pl-sm-45 {
    padding-right: 45px !important;
  }
  .pl-sm-45 {
    padding-bottom: 45px !important;
  }
  .pl-sm-45 {
    padding-left: 45px !important;
  }
  .p-sm-50 {
    padding: 50px !important;
  }
  .pl-sm-50 {
    padding-top: 50px !important;
  }
  .pl-sm-50 {
    padding-right: 50px !important;
  }
  .pl-sm-50 {
    padding-bottom: 50px !important;
  }
  .pl-sm-50 {
    padding-left: 50px !important;
  }
  .no-sm-p {
    margin: 0 !important;
  }
  .no-sm-pl {
    margin-top: 0 !important;
  }
  .no-sm-pl {
    margin-right: 0 !important;
  }
  .no-sm-pl {
    margin-bottom: 0 !important;
  }
  .no-sm-pl {
    margin-left: 0 !important;
  }
  .no-sm-p {
    padding: 0 !important;
  }
  .no-sm-pl {
    padding-top: 0 !important;
  }
  .no-sm-pl {
    padding-right: 0 !important;
  }
  .no-sm-pl {
    padding-bottom: 0 !important;
  }
  .no-sm-pl {
    padding-left: 0 !important;
  }
}
@media (max-width: 640px) {
  .p-xsm-5 {
    margin: 5px !important;
  }
  .pl-xsm-5 {
    margin-top: 5px !important;
  }
  .pl-xsm-5 {
    margin-right: 5px !important;
  }
  .pl-xsm-5 {
    margin-bottom: 5px !important;
  }
  .pl-xsm-5 {
    margin-left: 5px !important;
  }
  .p-xsm-10 {
    margin: 10px !important;
  }
  .pl-xsm-10 {
    margin-top: 10px !important;
  }
  .pl-xsm-10 {
    margin-right: 10px !important;
  }
  .pl-xsm-10 {
    margin-bottom: 10px !important;
  }
  .pl-xsm-10 {
    margin-left: 10px !important;
  }
  .p-xsm-15 {
    margin: 15px !important;
  }
  .pl-xsm-15 {
    margin-top: 15px !important;
  }
  .pl-xsm-15 {
    margin-right: 15px !important;
  }
  .pl-xsm-15 {
    margin-bottom: 15px !important;
  }
  .pl-xsm-15 {
    margin-left: 15px !important;
  }
  .p-xsm-20 {
    margin: 20px !important;
  }
  .pl-xsm-20 {
    margin-top: 20px !important;
  }
  .pl-xsm-20 {
    margin-right: 20px !important;
  }
  .pl-xsm-20 {
    margin-bottom: 20px !important;
  }
  .pl-xsm-20 {
    margin-left: 20px !important;
  }
  .p-xsm-25 {
    margin: 25px !important;
  }
  .pl-xsm-25 {
    margin-top: 25px !important;
  }
  .pl-xsm-25 {
    margin-right: 25px !important;
  }
  .pl-xsm-25 {
    margin-bottom: 25px !important;
  }
  .pl-xsm-25 {
    margin-left: 25px !important;
  }
  .p-xsm-30 {
    margin: 30px !important;
  }
  .pl-xsm-30 {
    margin-top: 30px !important;
  }
  .pl-xsm-30 {
    margin-right: 30px !important;
  }
  .pl-xsm-30 {
    margin-bottom: 30px !important;
  }
  .pl-xsm-30 {
    margin-left: 30px !important;
  }
  .p-xsm-35 {
    margin: 35px !important;
  }
  .pl-xsm-35 {
    margin-top: 35px !important;
  }
  .pl-xsm-35 {
    margin-right: 35px !important;
  }
  .pl-xsm-35 {
    margin-bottom: 35px !important;
  }
  .pl-xsm-35 {
    margin-left: 35px !important;
  }
  .p-xsm-40 {
    margin: 40px !important;
  }
  .pl-xsm-40 {
    margin-top: 40px !important;
  }
  .pl-xsm-40 {
    margin-right: 40px !important;
  }
  .pl-xsm-40 {
    margin-bottom: 40px !important;
  }
  .pl-xsm-40 {
    margin-left: 40px !important;
  }
  .p-xsm-45 {
    margin: 45px !important;
  }
  .pl-xsm-45 {
    margin-top: 45px !important;
  }
  .pl-xsm-45 {
    margin-right: 45px !important;
  }
  .pl-xsm-45 {
    margin-bottom: 45px !important;
  }
  .pl-xsm-45 {
    margin-left: 45px !important;
  }
  .p-xsm-50 {
    margin: 50px !important;
  }
  .pl-xsm-50 {
    margin-top: 50px !important;
  }
  .pl-xsm-50 {
    margin-right: 50px !important;
  }
  .pl-xsm-50 {
    margin-bottom: 50px !important;
  }
  .pl-xsm-50 {
    margin-left: 50px !important;
  }
  .p-xsm-5 {
    padding: 5px !important;
  }
  .pl-xsm-5 {
    padding-top: 5px !important;
  }
  .pl-xsm-5 {
    padding-right: 5px !important;
  }
  .pl-xsm-5 {
    padding-bottom: 5px !important;
  }
  .pl-xsm-5 {
    padding-left: 5px !important;
  }
  .p-xsm-10 {
    padding: 10px !important;
  }
  .pl-xsm-10 {
    padding-top: 10px !important;
  }
  .pl-xsm-10 {
    padding-right: 10px !important;
  }
  .pl-xsm-10 {
    padding-bottom: 10px !important;
  }
  .pl-xsm-10 {
    padding-left: 10px !important;
  }
  .p-xsm-15 {
    padding: 15px !important;
  }
  .pl-xsm-15 {
    padding-top: 15px !important;
  }
  .pl-xsm-15 {
    padding-right: 15px !important;
  }
  .pl-xsm-15 {
    padding-bottom: 15px !important;
  }
  .pl-xsm-15 {
    padding-left: 15px !important;
  }
  .p-xsm-20 {
    padding: 20px !important;
  }
  .pl-xsm-20 {
    padding-top: 20px !important;
  }
  .pl-xsm-20 {
    padding-right: 20px !important;
  }
  .pl-xsm-20 {
    padding-bottom: 20px !important;
  }
  .pl-xsm-20 {
    padding-left: 20px !important;
  }
  .p-xsm-25 {
    padding: 25px !important;
  }
  .pl-xsm-25 {
    padding-top: 25px !important;
  }
  .pl-xsm-25 {
    padding-right: 25px !important;
  }
  .pl-xsm-25 {
    padding-bottom: 25px !important;
  }
  .pl-xsm-25 {
    padding-left: 25px !important;
  }
  .p-xsm-30 {
    padding: 30px !important;
  }
  .pl-xsm-30 {
    padding-top: 30px !important;
  }
  .pl-xsm-30 {
    padding-right: 30px !important;
  }
  .pl-xsm-30 {
    padding-bottom: 30px !important;
  }
  .pl-xsm-30 {
    padding-left: 30px !important;
  }
  .p-xsm-35 {
    padding: 35px !important;
  }
  .pl-xsm-35 {
    padding-top: 35px !important;
  }
  .pl-xsm-35 {
    padding-right: 35px !important;
  }
  .pl-xsm-35 {
    padding-bottom: 35px !important;
  }
  .pl-xsm-35 {
    padding-left: 35px !important;
  }
  .p-xsm-40 {
    padding: 40px !important;
  }
  .pl-xsm-40 {
    padding-top: 40px !important;
  }
  .pl-xsm-40 {
    padding-right: 40px !important;
  }
  .pl-xsm-40 {
    padding-bottom: 40px !important;
  }
  .pl-xsm-40 {
    padding-left: 40px !important;
  }
  .p-xsm-45 {
    padding: 45px !important;
  }
  .pl-xsm-45 {
    padding-top: 45px !important;
  }
  .pl-xsm-45 {
    padding-right: 45px !important;
  }
  .pl-xsm-45 {
    padding-bottom: 45px !important;
  }
  .pl-xsm-45 {
    padding-left: 45px !important;
  }
  .p-xsm-50 {
    padding: 50px !important;
  }
  .pl-xsm-50 {
    padding-top: 50px !important;
  }
  .pl-xsm-50 {
    padding-right: 50px !important;
  }
  .pl-xsm-50 {
    padding-bottom: 50px !important;
  }
  .pl-xsm-50 {
    padding-left: 50px !important;
  }
  .no-xsm-p {
    margin: 0 !important;
  }
  .no-xsm-pl {
    margin-top: 0 !important;
  }
  .no-xsm-pl {
    margin-right: 0 !important;
  }
  .no-xsm-pl {
    margin-bottom: 0 !important;
  }
  .no-xsm-pl {
    margin-left: 0 !important;
  }
  .no-xsm-p {
    padding: 0 !important;
  }
  .no-xsm-pl {
    padding-top: 0 !important;
  }
  .no-xsm-pl {
    padding-right: 0 !important;
  }
  .no-xsm-pl {
    padding-bottom: 0 !important;
  }
  .no-xsm-pl {
    padding-left: 0 !important;
  }
}
@media (max-width: 480px) {
  .p-xs-5 {
    margin: 5px !important;
  }
  .pl-xs-5 {
    margin-top: 5px !important;
  }
  .pl-xs-5 {
    margin-right: 5px !important;
  }
  .pl-xs-5 {
    margin-bottom: 5px !important;
  }
  .pl-xs-5 {
    margin-left: 5px !important;
  }
  .p-xs-10 {
    margin: 10px !important;
  }
  .pl-xs-10 {
    margin-top: 10px !important;
  }
  .pl-xs-10 {
    margin-right: 10px !important;
  }
  .pl-xs-10 {
    margin-bottom: 10px !important;
  }
  .pl-xs-10 {
    margin-left: 10px !important;
  }
  .p-xs-15 {
    margin: 15px !important;
  }
  .pl-xs-15 {
    margin-top: 15px !important;
  }
  .pl-xs-15 {
    margin-right: 15px !important;
  }
  .pl-xs-15 {
    margin-bottom: 15px !important;
  }
  .pl-xs-15 {
    margin-left: 15px !important;
  }
  .p-xs-20 {
    margin: 20px !important;
  }
  .pl-xs-20 {
    margin-top: 20px !important;
  }
  .pl-xs-20 {
    margin-right: 20px !important;
  }
  .pl-xs-20 {
    margin-bottom: 20px !important;
  }
  .pl-xs-20 {
    margin-left: 20px !important;
  }
  .p-xs-25 {
    margin: 25px !important;
  }
  .pl-xs-25 {
    margin-top: 25px !important;
  }
  .pl-xs-25 {
    margin-right: 25px !important;
  }
  .pl-xs-25 {
    margin-bottom: 25px !important;
  }
  .pl-xs-25 {
    margin-left: 25px !important;
  }
  .p-xs-30 {
    margin: 30px !important;
  }
  .pl-xs-30 {
    margin-top: 30px !important;
  }
  .pl-xs-30 {
    margin-right: 30px !important;
  }
  .pl-xs-30 {
    margin-bottom: 30px !important;
  }
  .pl-xs-30 {
    margin-left: 30px !important;
  }
  .p-xs-35 {
    margin: 35px !important;
  }
  .pl-xs-35 {
    margin-top: 35px !important;
  }
  .pl-xs-35 {
    margin-right: 35px !important;
  }
  .pl-xs-35 {
    margin-bottom: 35px !important;
  }
  .pl-xs-35 {
    margin-left: 35px !important;
  }
  .p-xs-40 {
    margin: 40px !important;
  }
  .pl-xs-40 {
    margin-top: 40px !important;
  }
  .pl-xs-40 {
    margin-right: 40px !important;
  }
  .pl-xs-40 {
    margin-bottom: 40px !important;
  }
  .pl-xs-40 {
    margin-left: 40px !important;
  }
  .p-xs-45 {
    margin: 45px !important;
  }
  .pl-xs-45 {
    margin-top: 45px !important;
  }
  .pl-xs-45 {
    margin-right: 45px !important;
  }
  .pl-xs-45 {
    margin-bottom: 45px !important;
  }
  .pl-xs-45 {
    margin-left: 45px !important;
  }
  .p-xs-50 {
    margin: 50px !important;
  }
  .pl-xs-50 {
    margin-top: 50px !important;
  }
  .pl-xs-50 {
    margin-right: 50px !important;
  }
  .pl-xs-50 {
    margin-bottom: 50px !important;
  }
  .pl-xs-50 {
    margin-left: 50px !important;
  }
  .p-xs-5 {
    padding: 5px !important;
  }
  .pl-xs-5 {
    padding-top: 5px !important;
  }
  .pl-xs-5 {
    padding-right: 5px !important;
  }
  .pl-xs-5 {
    padding-bottom: 5px !important;
  }
  .pl-xs-5 {
    padding-left: 5px !important;
  }
  .p-xs-10 {
    padding: 10px !important;
  }
  .pl-xs-10 {
    padding-top: 10px !important;
  }
  .pl-xs-10 {
    padding-right: 10px !important;
  }
  .pl-xs-10 {
    padding-bottom: 10px !important;
  }
  .pl-xs-10 {
    padding-left: 10px !important;
  }
  .p-xs-15 {
    padding: 15px !important;
  }
  .pl-xs-15 {
    padding-top: 15px !important;
  }
  .pl-xs-15 {
    padding-right: 15px !important;
  }
  .pl-xs-15 {
    padding-bottom: 15px !important;
  }
  .pl-xs-15 {
    padding-left: 15px !important;
  }
  .p-xs-20 {
    padding: 20px !important;
  }
  .pl-xs-20 {
    padding-top: 20px !important;
  }
  .pl-xs-20 {
    padding-right: 20px !important;
  }
  .pl-xs-20 {
    padding-bottom: 20px !important;
  }
  .pl-xs-20 {
    padding-left: 20px !important;
  }
  .p-xs-25 {
    padding: 25px !important;
  }
  .pl-xs-25 {
    padding-top: 25px !important;
  }
  .pl-xs-25 {
    padding-right: 25px !important;
  }
  .pl-xs-25 {
    padding-bottom: 25px !important;
  }
  .pl-xs-25 {
    padding-left: 25px !important;
  }
  .p-xs-30 {
    padding: 30px !important;
  }
  .pl-xs-30 {
    padding-top: 30px !important;
  }
  .pl-xs-30 {
    padding-right: 30px !important;
  }
  .pl-xs-30 {
    padding-bottom: 30px !important;
  }
  .pl-xs-30 {
    padding-left: 30px !important;
  }
  .p-xs-35 {
    padding: 35px !important;
  }
  .pl-xs-35 {
    padding-top: 35px !important;
  }
  .pl-xs-35 {
    padding-right: 35px !important;
  }
  .pl-xs-35 {
    padding-bottom: 35px !important;
  }
  .pl-xs-35 {
    padding-left: 35px !important;
  }
  .p-xs-40 {
    padding: 40px !important;
  }
  .pl-xs-40 {
    padding-top: 40px !important;
  }
  .pl-xs-40 {
    padding-right: 40px !important;
  }
  .pl-xs-40 {
    padding-bottom: 40px !important;
  }
  .pl-xs-40 {
    padding-left: 40px !important;
  }
  .p-xs-45 {
    padding: 45px !important;
  }
  .pl-xs-45 {
    padding-top: 45px !important;
  }
  .pl-xs-45 {
    padding-right: 45px !important;
  }
  .pl-xs-45 {
    padding-bottom: 45px !important;
  }
  .pl-xs-45 {
    padding-left: 45px !important;
  }
  .p-xs-50 {
    padding: 50px !important;
  }
  .pl-xs-50 {
    padding-top: 50px !important;
  }
  .pl-xs-50 {
    padding-right: 50px !important;
  }
  .pl-xs-50 {
    padding-bottom: 50px !important;
  }
  .pl-xs-50 {
    padding-left: 50px !important;
  }
  .no-xs-p {
    margin: 0 !important;
  }
  .no-xs-pl {
    margin-top: 0 !important;
  }
  .no-xs-pl {
    margin-right: 0 !important;
  }
  .no-xs-pl {
    margin-bottom: 0 !important;
  }
  .no-xs-pl {
    margin-left: 0 !important;
  }
  .no-xs-p {
    padding: 0 !important;
  }
  .no-xs-pl {
    padding-top: 0 !important;
  }
  .no-xs-pl {
    padding-right: 0 !important;
  }
  .no-xs-pl {
    padding-bottom: 0 !important;
  }
  .no-xs-pl {
    padding-left: 0 !important;
  }
}
.p-lr-large {
  padding: 0 200px;
}

@media (max-width: 1023px) {
  .p-lr-large {
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .p-lr-large {
    padding: 0 50px;
  }
}
@media (max-width: 479px) {
  .p-lr-large {
    padding: 0 0;
  }
}
.img-responsive {
  width: auto;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 100%;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.min-width-120 {
  min-width: 120px;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .xs-center {
    clear: both !important;
    float: none !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .xs-block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.full-width {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.force-hidden {
  display: none !important;
}

.animation {
  opacity: 0;
}

.animation.visible {
  opacity: 1;
}

/*
    zoom-in-effect
*/
.img-box, .info-box {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-box img, .info-box img {
  display: block;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.img-box {
  position: relative;
}

.info-box {
  top: 0;
  left: 0;
  position: absolute;
}

.info-box .info-content {
  display: block;
  position: relative;
  padding: 2%;
  float: left;
  left: 50%;
  top: 50%;
  position: relative;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.zoom-in-effect {
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.zoom-in-effect .img-box, .zoom-in-effect .info-box {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.zoom-in-effect .img-box {
  z-index: 0;
}

.zoom-in-effect .info-box {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transform: translateZ(0) scale(2, 2);
  -moz-transform: translateZ(0) scale(2, 2);
  -ms-transform: translateZ(0) scale(2, 2);
  -o-transform: translateZ(0) scale(2, 2);
  transform: translateZ(0) scale(2, 2);
  filter: alpha(opacity=0);
  -wekbit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}

.zoom-in-effect:hover .img-box {
  -webkit-transform: translateZ(0) scale(1.1, 1.1);
  -moz-transform: translateZ(0) scale(1.1, 1.1);
  -ms-transform: translateZ(0) scale(1.1, 1.1);
  -o-transform: translateZ(0) scale(1.1, 1.1);
  transform: translateZ(0) scale(1.1, 1.1);
}

.zoom-in-effect:hover .info-box {
  -webkit-transform: translateZ(0) scale(1, 1);
  -moz-transform: translateZ(0) scale(1, 1);
  -ms-transform: translateZ(0) scale(1, 1);
  -o-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  filter: alpha(opacity=100);
  -wekbit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}

.zoom-image {
  display: block;
  overflow: hidden;
}
.zoom-image img {
  transition: transform 0.5s ease-out 0.1s;
  text-indent: -9999px;
  transform: translate3d(0, 0, 0);
}
.zoom-image:hover img, .zoom-image:active img, .zoom-image:focus img {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

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

.list-inline li {
  display: inline-block;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.column {
  vertical-align: baseline;
  padding-left: 15px;
  padding-right: 15px;
  float: left;
}

.column-1 {
  width: 8.3333333333%;
}

.column-2 {
  width: 16.6666666667%;
}

.column-3 {
  width: 25%;
}

.column-4 {
  width: 33.3333333333%;
}

.column-5 {
  width: 41.6666666667%;
}

.column-6 {
  width: 50%;
}

.column-7 {
  width: 58.3333333333%;
}

.column-8 {
  width: 66.6666666667%;
}

.column-9 {
  width: 75%;
}

.column-10 {
  width: 83.3333333333%;
}

.column-11 {
  width: 91.6666666667%;
}

.column-12 {
  width: 100%;
}

@media (max-width: 1199px) {
  .column-lg-1 {
    width: 8.3333333333%;
  }
  .column-lg-2 {
    width: 16.6666666667%;
  }
  .column-lg-3 {
    width: 25%;
  }
  .column-lg-4 {
    width: 33.3333333333%;
  }
  .column-lg-5 {
    width: 41.6666666667%;
  }
  .column-lg-6 {
    width: 50%;
  }
  .column-lg-7 {
    width: 58.3333333333%;
  }
  .column-lg-8 {
    width: 66.6666666667%;
  }
  .column-lg-9 {
    width: 75%;
  }
  .column-lg-10 {
    width: 83.3333333333%;
  }
  .column-lg-11 {
    width: 91.6666666667%;
  }
  .column-lg-12 {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .column-md-1 {
    width: 8.3333333333%;
  }
  .column-md-2 {
    width: 16.6666666667%;
  }
  .column-md-3 {
    width: 25%;
  }
  .column-md-4 {
    width: 33.3333333333%;
  }
  .column-md-5 {
    width: 41.6666666667%;
  }
  .column-md-6 {
    width: 50%;
  }
  .column-md-7 {
    width: 58.3333333333%;
  }
  .column-md-8 {
    width: 66.6666666667%;
  }
  .column-md-9 {
    width: 75%;
  }
  .column-md-10 {
    width: 83.3333333333%;
  }
  .column-md-11 {
    width: 91.6666666667%;
  }
  .column-md-12 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .column-sm-1 {
    width: 8.3333333333%;
  }
  .column-sm-2 {
    width: 16.6666666667%;
  }
  .column-sm-3 {
    width: 25%;
  }
  .column-sm-4 {
    width: 33.3333333333%;
  }
  .column-sm-5 {
    width: 41.6666666667%;
  }
  .column-sm-6 {
    width: 50%;
  }
  .column-sm-7 {
    width: 58.3333333333%;
  }
  .column-sm-8 {
    width: 66.6666666667%;
  }
  .column-sm-9 {
    width: 75%;
  }
  .column-sm-10 {
    width: 83.3333333333%;
  }
  .column-sm-11 {
    width: 91.6666666667%;
  }
  .column-sm-12 {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .column-xsm-1 {
    width: 8.3333333333%;
  }
  .column-xsm-2 {
    width: 16.6666666667%;
  }
  .column-xsm-3 {
    width: 25%;
  }
  .column-xsm-4 {
    width: 33.3333333333%;
  }
  .column-xsm-5 {
    width: 41.6666666667%;
  }
  .column-xsm-6 {
    width: 50%;
  }
  .column-xsm-7 {
    width: 58.3333333333%;
  }
  .column-xsm-8 {
    width: 66.6666666667%;
  }
  .column-xsm-9 {
    width: 75%;
  }
  .column-xsm-10 {
    width: 83.3333333333%;
  }
  .column-xsm-11 {
    width: 91.6666666667%;
  }
  .column-xsm-12 {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .column-xs-1 {
    width: 8.3333333333%;
  }
  .column-xs-2 {
    width: 16.6666666667%;
  }
  .column-xs-3 {
    width: 25%;
  }
  .column-xs-4 {
    width: 33.3333333333%;
  }
  .column-xs-5 {
    width: 41.6666666667%;
  }
  .column-xs-6 {
    width: 50%;
  }
  .column-xs-7 {
    width: 58.3333333333%;
  }
  .column-xs-8 {
    width: 66.6666666667%;
  }
  .column-xs-9 {
    width: 75%;
  }
  .column-xs-10 {
    width: 83.3333333333%;
  }
  .column-xs-11 {
    width: 91.6666666667%;
  }
  .column-xs-12 {
    width: 100%;
  }
}
.column.clear {
  clear: both;
}

.row-padding-large {
  margin-left: -40px;
  margin-right: -40px;
}
@media (max-width: 767px) {
  .row-padding-large {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.column-padding-large {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .column-padding-large {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.has-transition {
  overflow-x: hidden;
}
.has-transition #page h1, .has-transition #page h2, .has-transition #page h3, .has-transition #page h4, .has-transition #page h5, .has-transition #page h6, .has-transition #page p, .has-transition #page li, .has-transition #page img, .has-transition #page .background-span8 {
  opacity: 0;
}
.has-transition #page .shack-transition {
  opacity: 0;
}
.has-transition #page .shack-transition-visible,
.has-transition #page .shack-transition-invisible {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.has-transition #page .shack-transition-invisible {
  opacity: 0;
}
.has-transition #page .shack-transition-none h1, .has-transition #page .shack-transition-none h2, .has-transition #page .shack-transition-none h3, .has-transition #page .shack-transition-none h4, .has-transition #page .shack-transition-none h5, .has-transition #page .shack-transition-none h6, .has-transition #page .shack-transition-none p, .has-transition #page .shack-transition-none li, .has-transition #page .shack-transition-none img, .has-transition #page .shack-transition-none .background-span8,
.has-transition #page .nf-form-cont h1,
.has-transition #page .nf-form-cont h2,
.has-transition #page .nf-form-cont h3,
.has-transition #page .nf-form-cont h4,
.has-transition #page .nf-form-cont h5,
.has-transition #page .nf-form-cont h6,
.has-transition #page .nf-form-cont p,
.has-transition #page .nf-form-cont li,
.has-transition #page .nf-form-cont img,
.has-transition #page .nf-form-cont .background-span8 {
  opacity: 1;
}
.has-transition #page .shack-transition-none .shack-transition,
.has-transition #page .nf-form-cont .shack-transition {
  opacity: 1;
}
.has-transition.shack-transition-up .shack-transition {
  top: 20px;
}
.has-transition.shack-transition-up .shack-transition.shack-transition-visible {
  top: 0;
}
.has-transition.shack-transition-up .shack-transition.shack-transition-invisible {
  top: 20px;
}
.has-transition.shack-transition-blur .shack-transition {
  top: 20px;
}
.has-transition.shack-transition-blur .shack-transition.shack-transition-visible {
  top: 0;
}
.has-transition.shack-transition-blur .shack-transition.shack-transition-invisible {
  top: 20px;
}
.has-transition.shack-transition-down .shack-transition {
  top: -20px;
}
.has-transition.shack-transition-down .shack-transition.shack-transition-visible {
  top: 0;
}
.has-transition.shack-transition-down .shack-transition.shack-transition-invisible {
  top: -20px;
}
.has-transition.shack-transition-left .shack-transition {
  left: -20px;
}
.has-transition.shack-transition-left .shack-transition.shack-transition-visible {
  left: 0;
}
.has-transition.shack-transition-left .shack-transition.shack-transition-invisible {
  left: -20px;
}
.has-transition.shack-transition-right .shack-transition {
  left: 20px;
}
.has-transition.shack-transition-right .shack-transition.shack-transition-visible {
  left: 0;
}
.has-transition.shack-transition-right .shack-transition.shack-transition-invisible {
  left: 20px;
}
.has-transition.shack-transition-shrink .shack-transition {
  transform: scale(2);
}
.has-transition.shack-transition-shrink .shack-transition.shack-transition-visible {
  transform: scale(1);
}
.has-transition.shack-transition-shrink .shack-transition.shack-transition-invisible {
  transform: scale(2);
}
.has-transition.shack-transition-grow .shack-transition {
  transform: scale(0);
}
.has-transition.shack-transition-grow .shack-transition.shack-transition-visible {
  transform: scale(1);
}
.has-transition.shack-transition-grow .shack-transition.shack-transition-invisible {
  transform: scale(0);
}
.has-transition .wp-block-post-content .shack-transition.shack-background {
  opacity: 0;
  top: 0;
  left: 0;
}
.has-transition .wp-block-post-content .shack-transition.shack-background.shack-transition-visible {
  opacity: 1;
}
.has-transition .wp-block-post-content .shack-transition.shack-background.shack-transition-invisible {
  opacity: 0;
}

/* 4. Layout-related sections */
.site-header {
  *zoom: 1;
  position: relative;
}
.site-header:before, .site-header:after {
  content: "";
  display: table;
}
.site-header:after {
  clear: both;
}
.site-header .left, .site-header .right {
  margin: 0;
  padding: 0;
}
.site-header .top-bar {
  display: block;
  margin: 8px 0 20px;
  font-size: 12px;
  font-weight: 400;
  color: #3C3C3B;
}
.site-header .top-bar a {
  color: #3C3C3B;
}
.site-header .top-bar a:hover, .site-header .top-bar a:active, .site-header .top-bar a:focus {
  color: #aaa !important;
}
.site-header .middle-bar {
  margin-bottom: 15px;
  margin-top: 72px;
}
.site-header .middle-bar .row {
  display: flex;
  align-items: center;
}
.site-header .email {
  margin-left: 22px;
}
.site-header .change-size-wrap {
  float: right;
}
.site-header .change-size-wrap .label {
  display: inline-block;
  margin-right: 20px;
}
.site-header .change-size-wrap .change-size {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.site-header .change-size-wrap .change-size li {
  margin-right: -4px;
  margin-left: 5px;
}
.site-header .change-size-wrap .change-size li:first-child {
  margin-left: 0;
}
.site-header .change-size-wrap .change-size li a {
  display: block;
  position: relative;
  text-indent: -9999px;
  background: url("../images/icon-text-size.png") no-repeat;
}
.site-header .change-size-wrap .change-size li a.current:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3C3C3B;
  left: 0;
  bottom: -4px;
}
.site-header .change-size-wrap .change-size #size-0 a {
  width: 8px;
  height: 13px;
  background-position: 0 0;
}
.site-header .change-size-wrap .change-size #size-1 a {
  width: 11px;
  height: 13px;
  background-position: -12px 0;
}
.site-header .change-size-wrap .change-size #size-2 a {
  width: 13px;
  height: 13px;
  background-position: -27px 0;
}
.site-header .tel .tel-label {
  display: block;
  font-size: 20px;
  font-family: "libre_caslon_textregular", serif;
  color: #1a1a1a;
  font-weight: 400;
}
.site-header .tel .tel-number {
  font-size: 30px;
  font-weight: 300;
  color: #1a1a1a;
}
.site-header .buttons {
  float: right;
}
.site-header .button {
  display: inline-block;
  background-color: #ddd;
  border-radius: 30px;
  color: #1a1a1a;
  font-family: "libre_caslon_textregular", serif;
  font-size: 20px;
  font-weight: 400;
  padding: 16px 28px;
  transition: all 0.5s ease-in-out;
}
.site-header .button:hover, .site-header .button:active, .site-header .button:focus {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}
.site-header .bottom-bar {
  *zoom: 1;
  position: relative;
}
.site-header .bottom-bar:before, .site-header .bottom-bar:after {
  content: "";
  display: table;
}
.site-header .bottom-bar:after {
  clear: both;
}
.site-header .menu {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.site-header .menu a {
  color: #3C3C3B;
  font-family: "libre_caslon_textregular", serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px 25px;
  letter-spacing: 0.2em;
}
.site-header .menu .current-menu-item a {
  color: #3C3C3B;
}

.header-retail .menu {
  justify-content: center;
}
.header-retail .menu a {
  padding: 14px 40px;
}

.site-branding {
  text-align: center;
}
.site-branding a {
  display: block;
}
.site-branding img {
  width: 70%;
  max-width: 484px;
}

@media (max-width: 1199px) {
  .site-header .menu a {
    font-size: 15px;
  }
  .site-header .middle-bar {
    margin-top: 40px;
  }
  .header-retail .menu {
    justify-content: space-between;
  }
  .header-retail .menu a {
    font-size: 16px !important;
  }
}
@media (max-width: 1023px) {
  .site-header .button {
    padding: 12px 20px;
    font-size: 18px;
  }
  .site-header .menu a {
    padding: 14px 10px;
    font-size: 14px;
  }
  .site-branding img {
    width: 70%;
    max-width: 300px;
  }
}
@media (max-width: 880px) {
  .site-header .menu a {
    padding: 10px 0px;
    font-size: 12px;
  }
}
.site-header .tel-sp {
  display: none;
}
.site-header .tel-sp a {
  display: block;
}
.site-header .tel-sp i {
  color: #3C3C3B;
}
.site-header .tel-sp i:before {
  font-size: 40px;
}
.site-header #menu-toggle {
  text-indent: -9999px;
  z-index: 99;
  cursor: pointer;
  padding: 0px 0px 16px 0px;
  border: 0;
  background-color: transparent;
  margin: 0;
  width: 35px;
  height: 32px;
  position: absolute;
  right: 15px;
  top: 12px;
  transform: translate(0%, -50%);
  outline: none;
}
.site-header #menu-toggle span {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 35px;
  background: #323232;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.site-header #menu-toggle span:before, .site-header #menu-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 35px;
  background: #323232;
  position: absolute;
  display: block;
  content: "";
}
.site-header #menu-toggle span:before {
  top: -10px;
}
.site-header #menu-toggle span:after {
  bottom: -10px;
}
.site-header #menu-toggle span:before, .site-header #menu-toggle span:after {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.site-header #menu-toggle[aria-expanded=true] span {
  background-color: transparent;
}
.site-header #menu-toggle[aria-expanded=true] span:before, .site-header #menu-toggle[aria-expanded=true] span:after {
  top: 0;
}
.site-header #menu-toggle[aria-expanded=true] span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-header #menu-toggle[aria-expanded=true] span:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .site-header .menu-toggle {
    display: block;
  }
  .site-header .buttons {
    display: none;
  }
  .site-header .tel {
    display: none;
  }
  .site-header .tel-sp {
    display: block;
  }
  .site-header .main-navigation {
    display: none;
  }
  .site-header .main-navigation.toggled {
    display: block;
    padding: 10px 0;
  }
  .site-header .main-navigation.toggled .menu a {
    font-size: 16px;
    padding: 15px 0;
    color: #ffffff;
  }
  .site-header .main-navigation li {
    display: block;
    float: none;
    width: 100%;
  }
  .site-header .bottom-bar {
    background-color: #675F5D;
  }
  .site-header .middle-bar {
    position: relative;
    margin-bottom: 35px;
  }
}
@media (max-width: 479px) {
  .site-header .tel-sp i:before {
    font-size: 28px;
  }
  .site-header .email {
    position: relative;
  }
  .site-header .email span {
    display: none;
  }
  .site-header .email:before {
    font-family: FontAwesome;
    content: "\f1fa";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-size: 14px;
  }
}
#secondary {
  padding-left: 30px;
  border-left: 1px solid #979797;
}
@media (max-width: 767px) {
  #secondary {
    padding-left: 0;
    padding-top: 50px;
    border-left: 0;
    border-top: 1px solid #979797;
  }
}

.widget-area .widget {
  padding: 0;
  margin-bottom: 60px;
}
.widget-area .widget-title {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 14px;
  letter-spacing: -2px;
  color: #86888C;
  font: 300 36px/0.9 "Montserrat", sans-serif, sans-serif;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .widget-area .widget-title {
    font-size: 20px;
  }
}
.widget-area .widget_category .menu {
  font-family: "libre_caslon_textregular", serif;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 16px;
}
.widget-area .widget_category .menu li {
  display: block;
  margin-bottom: 10px;
}
.widget-area .widget_category .menu a {
  color: #3C3C3B !important;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 479px) {
  .widget-area .widget_category .menu a {
    font-size: 16px;
  }
}
.widget-area .widget_archive ul {
  font-family: "libre_caslon_textregular", serif;
  padding: 0;
  margin: 0;
  list-style: none;
}
.widget-area .widget_archive ul li {
  display: block;
  margin-bottom: 10px;
}
.widget-area .widget_archive ul a {
  color: #3C3C3B !important;
  font-weight: 400;
  font-size: 14px;
}
.widget-area .widget_product_search {
  padding: 20px;
}
.widget-area .widget_product_search ::placeholder {
  color: #4b4b4b;
  opacity: 1;
}
.widget-area .widget_product_search :-ms-input-placeholder {
  color: #4b4b4b;
}
.widget-area .widget_product_search ::-ms-input-placeholder {
  color: #4b4b4b;
}
.widget-area .widget_product_search form {
  position: relative;
}
.widget-area .widget_product_search input[type=search] {
  display: block;
  width: 100%;
  padding: 12px 15px;
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 400;
  border: 0;
  border-radius: 0;
  outline: 0;
}
.widget-area .widget_product_search button[type=submit] {
  display: block;
  width: 47px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -9999px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: #aaa url("../images/icon-search.png") no-repeat center center;
  cursor: pointer;
}
.widget-area .widget_product_categories {
  *zoom: 1;
  position: relative;
}
.widget-area .widget_product_categories:before, .widget-area .widget_product_categories:after {
  content: "";
  display: table;
}
.widget-area .widget_product_categories:after {
  clear: both;
}
.widget-area .widget_product_categories .product-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-area .widget_product_categories .product-categories li {
  margin-bottom: 18px;
}
.widget-area .widget_product_categories .product-categories li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_product_categories .product-categories a {
  color: #1a1a1a;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .widget-area .widget_product_categories .product-categories a {
    font-size: 16px;
  }
}
.widget-area .widget_product_categories .children {
  padding: 0;
  margin: 0;
  margin-top: 15px;
  list-style: none;
}
.widget-area .widget_product_categories .children li:before {
  content: "-";
  margin-right: 5px;
}
.widget-area .widget_product_categories .current-cat > a, .widget-area .widget_product_categories .current-cat-parent > a {
  font-weight: 700;
}

.site-footer {
  position: relative;
  padding: 55px 0 120px;
  margin-top: 148px;
  font-size: 14px;
  line-height: 18px;
  color: #3C3C3B;
  font-weight: 400;
}
.site-footer:before {
  content: "";
  height: 1px;
  background-color: #979797;
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  display: block;
}
.cookieconsent-dismiss .site-footer {
  padding: 55px 0 70px;
}
.site-footer .footer-columns {
  display: flex;
  justify-content: space-between;
}
.site-footer .footer-columns {
  margin: 0 auto;
  max-width: 888px;
}
.site-footer .footer-columns .footer-column {
  padding: 0 10px;
}
.site-footer a {
  color: #3C3C3B;
}
.site-footer .column-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.site-footer p {
  margin-bottom: 20px;
}
.site-footer p:last-child {
  margin-bottom: 0;
}
.site-footer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .copyright {
  margin-top: 44px;
}
.site-footer .copyright ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.site-footer .copyright ul li {
  display: inline-block;
  margin: 0 5px;
}
.site-footer .newsletter .form {
  position: relative;
  margin-top: 15px;
}
.site-footer .newsletter .form input {
  font-size: 14px;
}
.site-footer .newsletter .form input[type=submit] {
  font-size: 16px;
}
.site-footer .newsletter .form .form-group.form-email {
  position: relative;
}
.site-footer .newsletter .form .form-group.form-email input[type=email] {
  max-width: 270px;
  padding-left: 30px;
}
.site-footer .newsletter .form .form-group.form-email ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #1a1a1a;
}
.site-footer .newsletter .form .form-group.form-email ::-moz-placeholder { /* Firefox 19+ */
  color: #1a1a1a;
}
.site-footer .newsletter .form .form-group.form-email :-ms-input-placeholder { /* IE 10+ */
  color: #1a1a1a;
}
.site-footer .newsletter .form .form-group.form-email :-moz-placeholder { /* Firefox 18- */
  color: #1a1a1a;
}
.site-footer .newsletter .form .form-group.form-email:before {
  display: block;
  position: absolute;
  top: 15px;
  left: 12px;
  content: ">";
  color: #1a1a1a;
  z-index: 1;
  font-size: 14px;
}
.site-footer .newsletter .form-submit {
  position: absolute;
  top: 14px;
  right: 10px;
}
.site-footer .newsletter .form-submit .submit-btn {
  display: none;
}
.site-footer .publications {
  margin-left: 40px;
}
.site-footer .publications img {
  margin-top: -45px;
}
.site-footer .footer-newsletter .column-content {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 939px) {
  .site-footer {
    margin-top: 100px;
  }
  .site-footer:before {
    left: 15px;
    right: 15px;
  }
  .site-footer .footer-columns {
    flex-wrap: nowrap;
  }
  .site-footer .footer-newsletter .publications {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-columns {
    flex-wrap: wrap;
  }
  .site-footer .footer-column {
    width: 50%;
    margin-bottom: 20px;
  }
  .site-footer .footer-newsletter .newsletter {
    margin-bottom: 20px;
  }
  .site-footer .footer-newsletter .publications {
    display: block;
  }
  .site-footer .footer-newsletter .publications img {
    margin: 0;
  }
  .site-footer .footer-newsletter .column-content {
    flex-direction: column;
  }
  .site-footer .copyright {
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  .site-footer .footer-column {
    width: 100%;
  }
}
.main-content {
  font-size: 18px;
  color: #3C3C3B;
  max-width: 1116px;
  margin: auto;
  margin-bottom: 40px;
}
@media (max-width: 479px) {
  .main-content {
    font-size: 16px;
  }
}
.main-content a {
  color: #3C3C3B !important;
}
.main-content a:hover, .main-content a:active, .main-content a:focus {
  color: #3C3C3B !important;
}
.main-content p {
  font: normal 47px/1 "Montserrat", sans-serif;
  margin-bottom: 47px;
  color: #86888C;
  letter-spacing: -0.5px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .main-content p {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .main-content p {
    font-size: 35px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .main-content p {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .main-content p {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1339px) {
  .main-content p {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .main-content p {
    width: 100%;
  }
}
.main-content p:last-child {
  margin-bottom: 0;
}
.main-content p a strong {
  font-weight: normal;
}
.main-content p strong {
  font-weight: normal;
}
.main-content h2 {
  max-width: 793px;
  margin-left: auto;
  margin-right: auto;
}

.post-thumbnail + .entry-header {
  margin-top: 60px;
}

.entry-excerpt {
  font: normal 30px/1 "libre_caslon_textregular", serif;
  color: #86888C;
  font-style: italic;
}
.entry-excerpt strong {
  font-weight: normal;
}

.entry-content a {
  color: #3C3C3B !important;
}
.entry-content a:hover, .entry-content a:active, .entry-content a:focus {
  text-decoration: underline;
}

.projects .project {
  margin-bottom: 30px;
}

.archive .main-content {
  text-align: center;
}

.single article {
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 479px) {
  .single article {
    font-size: 16px;
  }
}
.single .post-thumbnail {
  margin-bottom: 10px;
}
.single .entry-content {
  margin-top: 30px;
}
.single .entry-content p {
  font-family: "libre_caslon_textregular", serif;
  margin-bottom: 10px;
}
.single .entry-content p img {
  margin: 25px 0;
}
.single .entry-content p:last-child {
  margin-bottom: 0;
}
.single .entry-content ul {
  font-family: "libre_caslon_textregular", serif;
}
.single .navigation {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single .navigation .nav-previous a, .single .navigation .nav-next a {
  display: block;
  background-color: white;
  font-size: 16px;
  font-family: "libre_caslon_textregular", serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3C3C3B;
}
.single .social-sharing {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background-color: white;
}
.single .social-sharing .shackletons-social-title {
  font-size: 16px;
  color: #3C3C3B;
  font-family: "libre_caslon_textregular", serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}
.single .social-sharing .shackletons-social a {
  display: inline-block;
  font-size: 14px;
  color: #3C3C3B;
  margin-left: 14px;
}

.social-box-shortcode {
  margin-top: 30px;
}
.social-box-shortcode a {
  color: #3C3C3B !important;
}

@media (max-width: 479px) {
  .single .navigation {
    flex-wrap: wrap;
  }
  .single .navigation .nav-previous {
    order: 2;
  }
  .single .navigation .nav-next {
    order: 3;
  }
  .single .navigation .social-sharing {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }
}
.sectors .sector-link {
  margin-top: 30px;
  font-family: "libre_caslon_textregular", serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}
.sectors .sector + .sector {
  margin-top: 60px;
}

.featured-contents .featured + .featured {
  margin-top: 60px;
}

.page-inner .childrens {
  margin-top: 110px;
}
.page-inner .childrens .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-inner .featured-contents {
  margin-top: 140px;
}
@media (max-width: 767px) {
  .page-inner .featured-contents {
    margin-top: 100px;
  }
}

.single-team .team-position {
  display: block;
  margin-bottom: 10px;
  color: #969696;
  font-size: 14px;
  font-weight: 600;
}
.single-team .entry-title {
  margin-bottom: 10px;
}
.single-team .social-sharing .shackletons-social .shackletons-link {
  font-size: 12px;
}

/*
  Contact page
*/
.page-contact-us .main-content {
  line-height: 1.45;
}
@media (max-width: 767px) {
  .page-contact-us .main-content {
    text-align: center;
  }
}
.page-contact-us .main-content a {
  color: #3C3C3B !important;
}
.page-contact-us .main-content a:hover, .page-contact-us .main-content a:active, .page-contact-us .main-content a:focus {
  color: #675F5D !important;
}
.page-contact-us .main-content .social-box li a {
  color: #ffffff !important;
}
.page-contact-us .main-content .button {
  display: inline-block;
  margin: 20px 0 20px;
  color: #3C3C3B !important;
}
.page-contact-us .main-content .button:hover, .page-contact-us .main-content .button:active, .page-contact-us .main-content .button:focus {
  color: white !important;
}
.page-contact-us .social-box {
  margin-top: 20px;
}
.page-contact-us .feature-style-2 {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .page-contact-us .feature-style-2 {
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .map-canvas {
    height: 300px !important;
  }
  .social-box li {
    margin-left: 15px !important;
  }
  .social-box li:first-child {
    margin-left: 0 !important;
  }
}
/*
  Retail Home
*/
.home .featured-contents .featured + .featured {
  margin-top: 60px;
}

/*
  Page our team
*/
/*
  Change font size
*/
/*
    Change font size
*/
html#size-0 {
  font-size: 100% !important;
}
html#size-1 {
  font-size: 120% !important;
}
html#size-1 .site-header .top-bar {
  font-size: 14px;
}
html#size-1 .site-header .menu a {
  font-size: 18px;
}
html#size-1 .home .site-main .entry-content {
  font-size: 20px;
}
html#size-1 .featured .featured-content, html#size-1 .sectors-wrap .sector {
  font-size: 20px;
}
html#size-1 .site-footer, html#size-1 .site-footer .column-title {
  font-size: 14px;
}
html#size-2 {
  font-size: 150% !important;
}
html#size-2 .site-header .top-bar {
  font-size: 16px;
}
html#size-2 .site-header .menu a {
  font-size: 20px;
}
html#size-2 .home .site-main .entry-content {
  font-size: 22px;
}
html#size-2 .featured .featured-content, html#size-2 .sectors-wrap .sector {
  font-size: 22px;
}
html#size-2 .site-footer, html#size-2 .site-footer .column-title {
  font-size: 16px;
}

.after-content .main-content {
  margin-top: 80px;
  margin-bottom: 0;
}

.page-dementia-partnerships .after-content .main-content {
  margin-top: 25px;
}

/* 5. Components */
.btn, .btn a {
  display: inline-block;
  position: relative;
  font-size: 24px;
  text-decoration: none !important;
  padding: 12px 16px 10px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.5s ease-in-out;
  -khtml-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  text-align: center;
}

.btn a {
  background-color: transparent;
  border: 1px solid #4b4b4b;
  padding: 10px 34px 10px;
}

@media (max-width: 479px) {
  .btn, .btn a {
    padding: 6px 15px 8px;
    font-size: 22px;
  }
}
.button {
  font-family: "libre_caslon_textregular", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  color: #000000;
  font-size: 14px;
  text-decoration: none !important;
  padding: 12px 18px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.5s ease-in-out;
  -khtml-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  text-align: center;
  background-color: #f0f0f0;
}
@media (max-width: 479px) {
  .button {
    font-size: 16px;
  }
}
.button:hover, .button:active, .button:focus {
  background-color: #3C3C3B;
  color: #ffffff !important;
}

.button-primary {
  background-color: #675F5D;
}

.main-content .button {
  color: #3C3C3B !important;
}

.main-content .button-large,
.button-large {
  font-size: 18px;
  padding: 14px 24px;
  background-color: #675F5D;
  color: #ffffff !important;
}
.main-content .button-large:hover, .main-content .button-large:active, .main-content .button-large:focus,
.button-large:hover,
.button-large:active,
.button-large:focus {
  background-color: #3C3C3B;
}

.main-content .button-xlarge,
.button-xlarge {
  font-size: 22px;
  padding: 24px 54px;
  background-color: #675F5D;
  color: #ffffff !important;
}
.main-content .button-xlarge:hover, .main-content .button-xlarge:active, .main-content .button-xlarge:focus,
.button-xlarge:hover,
.button-xlarge:active,
.button-xlarge:focus {
  background-color: #3C3C3B;
}

input[type=text],
input[type=email],
input[type=number],
textarea,
select,
input[type=url] {
  color: #323232;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 0;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  padding: 14px 20px;
  display: block;
  background-color: #f0f0f0;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.5s ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus,
select:focus,
input[type=url]:focus {
  border-color: #3C3C3B;
  outline: 0;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
  background-color: #3C3C3B;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #3C3C3B;
  border-radius: 0;
  color: #fdedea;
  font-family: "libre_caslon_textregular", serif;
  font-size: 24px;
  font-weight: 400;
  padding: 4px 20px 5px;
  transition: all 0.5s ease-in-out;
}
input[type=submit]:hover, input[type=submit]:active, input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:active,
input[type=button]:focus {
  border: 1px solid #3C3C3B;
  background-color: #ffffff;
  color: #3C3C3B;
}

.form-group {
  position: relative;
}

input[type=submit] + .ajax-loader {
  position: absolute;
  top: 10px;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #323232;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #323232;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #323232;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #323232;
}

.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 1em;
  font-weight: normal;
  display: block;
  text-align: left;
  margin-top: 10px;
}

.wpcf7-form input[type=submit] {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  color: #191919;
  font-size: 14px;
  text-decoration: none !important;
  padding: 12px 18px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.5s ease-in-out;
  -khtml-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  text-align: center;
  background-color: #f0f0f0;
  font-family: "libre_caslon_textregular", serif;
}
.wpcf7-form input[type=submit]:hover, .wpcf7-form input[type=submit]:active, .wpcf7-form input[type=submit]:focus {
  background-color: #3C3C3B;
  color: #ffffff !important;
}
.wpcf7-form span.wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-form .wpcf7-list-item-label,
.wpcf7-form label {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  color: #3c3c3b;
  display: block;
}
.wpcf7-form .wpcf7-list-item-label input,
.wpcf7-form label input {
  margin-top: 6px;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  width: 100%;
}
.wpcf7-form p {
  margin-bottom: 20px;
}

.slider {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.slider .flexslider {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.slider .slide-caption-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider .slide-caption-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.slider .slide-caption {
  text-align: center;
  max-width: 765px;
  width: 100%;
}
.slider .ready .slide-caption {
  animation: fadeIn 500ms ease-in-out 300ms both;
}
.slider .slide-title {
  font-size: 110px;
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -7px;
  text-transform: uppercase;
  color: #ffffff;
  color: #ffffff;
  margin-bottom: 0px;
}
@media (max-width: 1199px) {
  .slider .slide-title {
    font-size: 90px;
  }
}
@media (max-width: 1023px) {
  .slider .slide-title {
    font-size: 70px;
  }
}
@media (max-width: 479px) {
  .slider .slide-title {
    font-size: 50px;
    letter-spacing: -5px;
  }
}
@media (max-width: 359px) {
  .slider .slide-title {
    font-size: 40px;
  }
}
.slider .slide-decs {
  color: #ffffff;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 24px;
}
.slider .slide-link {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "libre_caslon_textregular", serif;
}
.slider .flex-control-paging {
  bottom: 56px;
  z-index: 2;
}
.slider .flex-control-paging li {
  margin: 0 12px;
}
.slider .flex-control-paging li a {
  width: 80px;
  height: 12px;
  border-bottom: 2px solid #d8d8d8;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}
.slider .flex-control-paging li a.flex-active {
  border-color: #ca4e61;
  background-color: transparent;
}
.slider .flex-control-paging li a:hover {
  background-color: transparent;
}
.slider .flex-direction-nav {
  opacity: 0;
}
.slider .flex-direction-nav a {
  text-indent: -9999px !important;
  text-align: left;
}
.slider .flex-direction-nav a:before {
  content: none !important;
}
.slider .flex-direction-nav .flex-prev {
  left: 50px !important;
  opacity: 0.65 !important;
  width: 30px;
  height: 50px;
  background: url("../images/icon-arrow.png") -60px -10px;
}
.slider .flex-direction-nav .flex-prev:hover, .slider .flex-direction-nav .flex-prev:active, .slider .flex-direction-nav .flex-prev:focus {
  opacity: 1 !important;
}
.slider .flex-direction-nav .flex-next {
  right: 50px !important;
  opacity: 0.65 !important;
  width: 30px;
  height: 50px;
  background: url("../images/icon-arrow.png") -10px -10px;
}
.slider .flex-direction-nav .flex-next:hover, .slider .flex-direction-nav .flex-next:active, .slider .flex-direction-nav .flex-next:focus {
  opacity: 1 !important;
}

.hero {
  position: relative;
  *zoom: 1;
}
.hero:before, .hero:after {
  content: "";
  display: table;
}
.hero:after {
  clear: both;
}
.hero .hero-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero .caption {
  font-size: 110px;
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -7px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  z-index: 2;
  max-width: 870px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .hero .caption {
    font-size: 90px;
  }
}
@media (max-width: 1023px) {
  .hero .caption {
    font-size: 70px;
  }
}
@media (max-width: 479px) {
  .hero .caption {
    font-size: 50px;
    letter-spacing: -5px;
  }
}
@media (max-width: 359px) {
  .hero .caption {
    font-size: 40px;
  }
}

@media (max-width: 1199px) {
  .slider {
    min-height: auto;
  }
  .hero .hero-bg {
    min-height: 440px;
  }
}
@media (max-width: 1199px) {
  .slider .slide-caption {
    max-width: 100%;
  }
  .slider .flexslider .slides img {
    min-height: 450px;
    object-fit: cover;
  }
  .slider .flex-direction-nav .flex-prev {
    left: 20px !important;
  }
  .slider .flex-direction-nav .flex-next {
    right: 20px !important;
  }
}
@media (max-width: 1023px) {
  .slider .slide-decs {
    font-size: 20px;
  }
  .slider .slide-title {
    margin-bottom: 18px;
  }
  .slider .slide-caption .slide-link {
    font-size: 18px;
  }
  .hero .hero-bg {
    min-height: 390px;
  }
  .hero .hero-bg h1 {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .slider .flexslider {
    background-color: transparent;
    border-radius: 0;
  }
  .slider .flexslider .slides img {
    height: auto;
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }
  .slider .flexslider .slides .slide-caption-wrap,
  .slider .flexslider .slides .slide-caption {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }
  .slider .flexslider .slides .slide-caption {
    width: 100%;
    transform: translate(0, 0);
    padding: 15px 15px 50px 15px;
    color: #ffffff;
  }
  .slider .flexslider .slides .slide-caption a {
    color: #86888C;
  }
  .slider .flexslider .slides .slide-caption .slide-title {
    color: #86888C;
    margin-top: 30px;
  }
  .slider .flexslider .flex-direction-nav a {
    top: 30%;
  }
  .slider .flexslider .flex-control-paging {
    bottom: 20px;
  }
  .slider .flexslider .flex-control-paging li a {
    width: 40px;
  }
  .slider .flexslider .slide-decs {
    margin-bottom: 10px;
  }
  .slider .slide-caption-wrap:before {
    display: none;
  }
}
@media (max-width: 479px) {
  .slider .flexslider .slides .slide-caption .slide-decs {
    font-size: 16px;
  }
  .slider .flexslider .slides .slide-caption .slide-link {
    font-size: 16px;
  }
  .hero .hero-bg {
    height: 300px;
  }
}
@media (max-width: 359px) {
  .slider .flexslider .slides .slide-caption .slide-decs {
    font-size: 16px;
  }
}
.entry-content table th, .entry-content table td {
  border: 1px solid #808080;
  padding: 10px;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

.site-content table:not(.variations) {
  margin: 0 0 20px 0;
  width: 100%;
  font-size: 14px;
}
.site-content table:not(.variations) tbody tr:first-child {
  font-weight: 700;
  color: #191919;
  background-color: #675F5D;
}
.site-content table:not(.variations) tbody tr:first-child td {
  padding: 8px 12px;
}
.site-content table:not(.variations) tbody tr td {
  padding: 6px 12px;
}
.site-content table:not(.variations) a {
  color: #191919;
}
.site-content table:not(.variations) a:hover, .site-content table:not(.variations) a:active, .site-content table:not(.variations) a:focus {
  color: #191919;
}

.lazy-hidden,
.entry img.lazy-hidden,
img.thumbnail.lazy-hidden {
  background-color: transparent !important;
}

.loading {
  background: url(../images/loader.gif) center center no-repeat !important;
  background-size: initial !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.title {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .title {
    font-size: 20px;
  }
}

.hentry {
  margin-bottom: 0;
}

.full-width {
  overflow: hidden;
}
.full-width .featured .featured-content {
  right: 0;
}
.full-width .featured.featured-left .featured-content {
  right: auto;
  left: 0;
}

.featured-quote {
  max-width: 1230px;
  margin: 0 auto 120px;
  padding-left: 15px; /* 3 */
  padding-right: 15px; /* 3 */
}
@media (max-width: 767px) {
  .featured-quote {
    margin-bottom: 100px;
  }
}
.featured-quote .featured-image {
  margin-left: 0;
  width: 69%;
}
@media (max-width: 1199px) {
  .featured-quote .featured-image {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .featured-quote .featured-image img {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 494px) {
  .featured-quote .featured-image img {
    width: 80%;
  }
}

.featured {
  position: relative;
  *zoom: 1;
}
.featured:before, .featured:after {
  content: "";
  display: table;
}
.featured:after {
  clear: both;
}
.featured .featured-image {
  display: block;
  position: relative;
  width: 100%;
}
.featured .featured-image img {
  width: 100%;
}
.featured .featured-content {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  max-width: 585px;
  height: auto;
  background-color: #ffffff;
  padding: 45px 40px 50px;
  font-size: 18px;
  line-height: 1.3;
  color: #3C3C3B;
  text-align: center;
}
.featured .featured-content .link {
  display: block;
  margin-top: 30px;
  font-family: "libre_caslon_textregular", serif;
  color: #3C3C3B;
  letter-spacing: 1.5px;
  font-size: 14px;
}
.featured .featured-content h2 {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #86888C;
  font: 300 36px/0.9 "Montserrat", sans-serif, sans-serif;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .featured .featured-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .featured .featured-content h2 {
    font-size: 30px;
  }
}
.featured .featured-content p {
  font-family: "libre_caslon_textregular", serif;
  margin-bottom: 10px;
}
.featured .featured-content p:last-child {
  margin-bottom: 0;
}
.featured .owl-carousel blockquote p {
  font-size: 22px;
}
.featured .owl-carousel .owl-dots .owl-dot {
  width: 40px;
}

.featured.featured-left .featured-content {
  right: auto;
  left: 3%;
}
.featured.featured-left .featured-image {
  text-align: right;
}

@media (max-width: 1023px) {
  .featured .featured-image img {
    display: block;
  }
  .featured .featured-content {
    position: relative;
    top: auto;
    transform: translateY(0);
    right: auto;
    max-width: 100%;
  }
  .featured.featured-left .featured-content {
    left: auto;
  }
}
@media (max-width: 767px) {
  .featured .featured-content {
    padding: 20px;
  }
}
@media (max-width: 479px) {
  .featured .featured-content {
    font-size: 16px;
  }
}
.feature-style-2 {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.feature-style-2 .featured-content,
.feature-style-2 .featured-image {
  width: 50%;
}
.feature-style-2 .featured-image {
  margin-left: 50px;
}
.feature-style-2 .featured-image img {
  display: block;
  object-fit: cover;
}
.feature-style-2 .featured-content {
  position: relative;
  top: auto;
  transform: translateY(0%);
  right: auto;
  max-width: 100%;
}
.feature-style-2 .featured-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 45px 12% 50px;
  text-align: center;
}
.feature-style-2 .feature-dark {
  background-color: #191919 !important;
  color: #ffffff !important;
}
.feature-style-2 .feature-dark a {
  color: #ffffff !important;
}

@media (max-width: 1199px) {
  .feature-style-2 {
    flex-direction: column;
  }
  .feature-style-2 .featured-image,
  .feature-style-2 .featured-content {
    width: 100%;
  }
  .feature-style-2 .featured-image img,
  .feature-style-2 .featured-content img {
    width: 100%;
  }
  .feature-style-2 .featured-image {
    margin-left: 0;
  }
  .feature-style-2 .featured-content,
  .feature-style-2 .featured-inner {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    transform: translate(0%, 0%);
  }
  .feature-style-2 .featured-inner {
    padding: 0;
  }
}
.sectors-wrap {
  display: flex;
  background-color: #f0f0f0;
}
.sectors-wrap .sectors {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectors-wrap .images {
  width: 50%;
}
.sectors-wrap .images img {
  object-fit: cover;
}
.sectors-wrap .sector {
  max-width: 760px;
  margin: auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: #3C3C3B;
}
.sectors-wrap .sector .link {
  display: block;
  margin-top: 20px;
}
.sectors-wrap .sector a {
  color: #3C3C3B;
}
.sectors-wrap .sector p {
  margin-bottom: 5px;
}
.sectors-wrap .sectors .owl-carousel {
  position: relative;
}
.sectors-wrap .sectors .owl-carousel .owl-stage-outer,
.sectors-wrap .sectors .owl-carousel .owl-stage,
.sectors-wrap .sectors .owl-carousel .owl-item {
  height: 100%;
}
.sectors-wrap .sectors .owl-carousel .owl-item {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  margin-top: 40px;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 12px;
  width: 80px;
  height: 12px;
}
.owl-carousel .owl-dots .owl-dot.active span {
  border-color: #ca4e61;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 100%;
  border-bottom: 2px solid #d8d8d8;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  display: block;
}

@media (max-width: 767px) {
  .owl-carousel .owl-dots {
    margin-top: 20px;
  }
  .owl-carousel .owl-dots .owl-dot {
    width: 40px;
  }
}
@media (max-width: 1230px) and (min-width: 1024px) {
  .sectors-wrap .sectors {
    padding: 40px 20px 60px;
  }
  .sectors-wrap .images .owl-stage-outer,
  .sectors-wrap .images .owl-stage,
  .sectors-wrap .images .owl-item,
  .sectors-wrap .images .image {
    height: 100%;
  }
  .sectors-wrap .images .image img {
    height: 100%;
  }
}
@media (max-width: 1023px) {
  .sectors-wrap {
    flex-direction: column;
  }
  .sectors-wrap .images,
  .sectors-wrap .sectors {
    width: 100%;
  }
  .sectors-wrap .sectors {
    padding: 40px 20px 60px;
  }
  .sectors-wrap .images img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
  }
  .sectors-wrap .sectors .owl-carousel .owl-dots {
    bottom: -30px;
  }
}
@media (max-width: 479px) {
  .sectors-wrap .sectors .owl-carousel .owl-item {
    padding: 0;
  }
  .sectors-wrap .sector {
    font-size: 16px;
  }
}
/*
  Latest Project, Post
*/
.projects .project,
.projects .post,
.posts .project,
.posts .post {
  position: relative;
  *zoom: 1;
}
.projects .project:before, .projects .project:after,
.projects .post:before,
.projects .post:after,
.posts .project:before,
.posts .project:after,
.posts .post:before,
.posts .post:after {
  content: "";
  display: table;
}
.projects .project:after,
.projects .post:after,
.posts .project:after,
.posts .post:after {
  clear: both;
}
.projects .project .project-image,
.projects .project .post-image,
.projects .post .project-image,
.projects .post .post-image,
.posts .project .project-image,
.posts .project .post-image,
.posts .post .project-image,
.posts .post .post-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 195px;
}
.projects .project .project-image a,
.projects .project .post-image a,
.projects .post .project-image a,
.projects .post .post-image a,
.posts .project .project-image a,
.posts .project .post-image a,
.posts .post .project-image a,
.posts .post .post-image a {
  display: block;
}
.projects .project .project-image a img,
.projects .project .post-image a img,
.projects .post .project-image a img,
.projects .post .post-image a img,
.posts .project .project-image a img,
.posts .project .post-image a img,
.posts .post .project-image a img,
.posts .post .post-image a img {
  display: block;
}
.projects .project .project-info,
.projects .project .post-info,
.projects .post .project-info,
.projects .post .post-info,
.posts .project .project-info,
.posts .project .post-info,
.posts .post .project-info,
.posts .post .post-info {
  display: block;
  padding: 30px 30px 25px;
  position: relative;
  *zoom: 1;
  text-align: center;
  font-size: 14px;
  color: #3C3C3B;
}
.projects .project .project-info:before, .projects .project .project-info:after,
.projects .project .post-info:before,
.projects .project .post-info:after,
.projects .post .project-info:before,
.projects .post .project-info:after,
.projects .post .post-info:before,
.projects .post .post-info:after,
.posts .project .project-info:before,
.posts .project .project-info:after,
.posts .project .post-info:before,
.posts .project .post-info:after,
.posts .post .project-info:before,
.posts .post .project-info:after,
.posts .post .post-info:before,
.posts .post .post-info:after {
  content: "";
  display: table;
}
.projects .project .project-info:after,
.projects .project .post-info:after,
.projects .post .project-info:after,
.projects .post .post-info:after,
.posts .project .project-info:after,
.posts .project .post-info:after,
.posts .post .project-info:after,
.posts .post .post-info:after {
  clear: both;
}
.projects .project .project-info span,
.projects .project .post-info span,
.projects .post .project-info span,
.projects .post .post-info span,
.posts .project .project-info span,
.posts .project .post-info span,
.posts .post .project-info span,
.posts .post .post-info span {
  display: block;
}
.projects .project .project-info:hover, .projects .project .project-info:active, .projects .project .project-info:focus,
.projects .project .post-info:hover,
.projects .project .post-info:active,
.projects .project .post-info:focus,
.projects .post .project-info:hover,
.projects .post .project-info:active,
.projects .post .project-info:focus,
.projects .post .post-info:hover,
.projects .post .post-info:active,
.projects .post .post-info:focus,
.posts .project .project-info:hover,
.posts .project .project-info:active,
.posts .project .project-info:focus,
.posts .project .post-info:hover,
.posts .project .post-info:active,
.posts .project .post-info:focus,
.posts .post .project-info:hover,
.posts .post .project-info:active,
.posts .post .project-info:focus,
.posts .post .post-info:hover,
.posts .post .post-info:active,
.posts .post .post-info:focus {
  color: #3C3C3B !important;
}
.projects .project .project-title,
.projects .project .post-title,
.projects .post .project-title,
.projects .post .post-title,
.posts .project .project-title,
.posts .project .post-title,
.posts .post .project-title,
.posts .post .post-title {
  font-size: 20px;
  line-height: 1;
  color: #3C3C3B;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}
.projects .project .project-title a,
.projects .project .post-title a,
.projects .post .project-title a,
.projects .post .post-title a,
.posts .project .project-title a,
.posts .project .post-title a,
.posts .post .project-title a,
.posts .post .post-title a {
  color: #1a1a1a;
}
.projects .project .project-title:hover, .projects .project .project-title:active, .projects .project .project-title:focus,
.projects .project .post-title:hover,
.projects .project .post-title:active,
.projects .project .post-title:focus,
.projects .post .project-title:hover,
.projects .post .project-title:active,
.projects .post .project-title:focus,
.projects .post .post-title:hover,
.projects .post .post-title:active,
.projects .post .post-title:focus,
.posts .project .project-title:hover,
.posts .project .project-title:active,
.posts .project .project-title:focus,
.posts .project .post-title:hover,
.posts .project .post-title:active,
.posts .project .post-title:focus,
.posts .post .project-title:hover,
.posts .post .project-title:active,
.posts .post .project-title:focus,
.posts .post .post-title:hover,
.posts .post .post-title:active,
.posts .post .post-title:focus {
  color: #675F5D !important;
}
.projects .project .project-desc,
.projects .project .post-desc,
.projects .post .project-desc,
.projects .post .post-desc,
.posts .project .project-desc,
.posts .project .post-desc,
.posts .post .project-desc,
.posts .post .post-desc {
  margin-bottom: 10px;
  font-family: "libre_caslon_textregular", serif;
}
.projects .project .project-desc p:last-child,
.projects .project .post-desc p:last-child,
.projects .post .project-desc p:last-child,
.projects .post .post-desc p:last-child,
.posts .project .project-desc p:last-child,
.posts .project .post-desc p:last-child,
.posts .post .project-desc p:last-child,
.posts .post .post-desc p:last-child {
  margin-bottom: 0;
}
.projects .project .project-link,
.projects .project .post-link,
.projects .post .project-link,
.projects .post .post-link,
.posts .project .project-link,
.posts .project .post-link,
.posts .post .project-link,
.posts .post .post-link {
  text-transform: uppercase;
  font-family: "libre_caslon_textregular", serif;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.projects .project .project-link:hover, .projects .project .project-link:active, .projects .project .project-link:focus,
.projects .project .post-link:hover,
.projects .project .post-link:active,
.projects .project .post-link:focus,
.projects .post .project-link:hover,
.projects .post .project-link:active,
.projects .post .project-link:focus,
.projects .post .post-link:hover,
.projects .post .post-link:active,
.projects .post .post-link:focus,
.posts .project .project-link:hover,
.posts .project .project-link:active,
.posts .project .project-link:focus,
.posts .project .post-link:hover,
.posts .project .post-link:active,
.posts .project .post-link:focus,
.posts .post .project-link:hover,
.posts .post .project-link:active,
.posts .post .project-link:focus,
.posts .post .post-link:hover,
.posts .post .post-link:active,
.posts .post .post-link:focus {
  color: #675F5D !important;
}
.projects .project .post-date,
.projects .post .post-date,
.posts .project .post-date,
.posts .post .post-date {
  color: #969696;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .projects .project {
    margin: auto;
    margin-bottom: 50px;
  }
  .projects .project .project-image img {
    width: 100%;
  }
  .posts .post .post-image img {
    width: 100%;
  }
}
/*
  Callout
*/
.callout {
  position: relative;
  *zoom: 1;
}
.callout:before, .callout:after {
  content: "";
  display: table;
}
.callout:after {
  clear: both;
}
.callout .callout-inner {
  overflow: hidden;
  padding: 200px 0 170px;
  color: #fffefe;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.callout .callout-bg {
  position: relative;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.callout .callout-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.callout .callout-bg.lazy-loaded .callout-inner {
  opacity: 1;
  animation: zoomIn 300ms linear 100ms both;
}
.callout .callout-title {
  color: #fffefe;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.callout .callout-content {
  font-size: 18px;
  color: #fffefe;
}
.callout .callout-link {
  display: block;
  font-size: 18px;
  color: #3C3C3B !important;
  border-radius: 20px;
  background-color: #ffffff;
  width: 186px;
  text-align: center;
  padding: 10px 20px;
  margin: auto;
  margin-top: 40px;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.callout .callout-link:hover, .callout .callout-link:active, .callout .callout-link:focus {
  background-color: #3C3C3B;
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .callout .callout-inner {
    padding: 100px 0 100px;
  }
  .callout .callout-title {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .callout .callout-title {
    font-size: 34px;
  }
}
/*
  Toggle
*/
.js-toggle-title {
  cursor: pointer;
}

.js-toggle-content {
  display: none;
}
.js-toggle-content a {
  color: #3C3C3B;
  text-decoration: underline;
}

/*
  Footer Contact
*/
.wpcf7-form-control-wrap {
  display: block;
  height: 100%;
}

#contact {
  display: none;
  position: relative;
  *zoom: 1;
  max-width: 860px;
  margin: auto;
}
#contact:before, #contact:after {
  content: "";
  display: table;
}
#contact:after {
  clear: both;
}
#contact .title {
  margin-bottom: 30px;
}
#contact .contact-desc {
  display: block;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
#contact .form-group + .form-group {
  margin-top: 6px;
}
#contact textarea {
  display: block;
  width: 100%;
  height: 100%;
}
#contact [data-mh=contact-column] p {
  display: none;
}
#contact .js-toggle {
  margin-top: 35px;
  margin-bottom: 30px;
  text-align: center;
}
#contact .js-toggle .js-toggle-title {
  position: relative;
  font-size: 18px;
  line-height: 1.4;
  font-family: "libre_caslon_textregular", serif;
}
#contact .js-toggle .js-toggle-title span {
  position: relative;
  display: inline-block;
}
#contact .js-toggle .js-toggle-title span:after {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  background-color: #3C3C3B;
  width: 100%;
  height: 1px;
  content: "";
}
#contact .js-toggle .js-toggle-content {
  font-size: 18px;
}
#contact .js-toggle .js-toggle-content p {
  margin-bottom: 10px;
}
#contact .js-toggle.active .js-toggle-title span:before {
  transform: rotate(90deg);
}
#contact .submit-btn {
  position: relative;
}
#contact .submit-btn input {
  display: inline-block;
  color: #1a1a1a;
  font-family: "libre_caslon_textregular", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 14px 24px;
  transition: all 0.5s ease-in-out;
  background-color: #ddd;
  border-color: #ddd;
  min-width: 200px;
}
#contact .submit-btn input:hover, #contact .submit-btn input:active, #contact .submit-btn input:focus {
  background-color: #1a1a1a;
  color: #ffffff !important;
}
#contact .submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact .submit .recaptcha,
#contact .submit .submit-btn {
  margin: 0 5px;
}

@media (max-width: 767px) {
  #contact .submit {
    flex-direction: column;
  }
  #contact .submit .recaptcha {
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  #contact .contact-desc {
    font-size: 16px;
  }
  #contact .js-toggle .js-toggle-title {
    font-size: 18px;
  }
  #contact .js-toggle .js-toggle-content {
    font-size: 16px;
  }
  #contact .submit-btn input[type=submit] {
    min-width: auto;
    padding: 10px 20px;
    font-size: 16px;
  }
  #contact .form-group + .form-group {
    margin-top: 5px;
  }
}
/*
partners
*/
.partners {
  display: none;
  position: relative;
  background-color: #f0f0f0;
  padding: 20px 0 30px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .partners {
    width: 100%;
  }
}
.partners .carousel {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1200px) {
  .partners .carousel {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
}
.partners .owl-carousel img {
  margin: auto;
}
.partners .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

/*
  Latest Products
*/
#latest-products {
  position: relative;
  *zoom: 1;
  padding: 60px 0 115px;
}
#latest-products:before, #latest-products:after {
  content: "";
  display: table;
}
#latest-products:after {
  clear: both;
}
#latest-products .link {
  font: normal 18px/1 text-font-second;
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 63px;
  padding-right: 20px;
  background: url("../images/icon-arrow-right-small.png") no-repeat center right;
}
@media (max-width: 767px) {
  #latest-products .link {
    margin-top: 40px;
  }
}

.products {
  text-align: center;
}
.products .product {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.products .product .product-image {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
}
.products .product .product-image img {
  display: block;
  max-width: 100%;
  margin: auto;
}
.products .product span {
  display: block;
}
.products .product-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  color: #000000 !important;
  margin: 14px 0;
  text-transform: uppercase;
}
.products .product-link {
  font-size: 18px;
  color: #1a1a1a !important;
}
.products .owl-dots {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 46px;
  text-align: center;
}
.products .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 2px;
}
.products .owl-dots .owl-dot.active span {
  background-color: #191919;
}
.products .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 11px;
  background-color: #f0f0f0;
  border-radius: 50%;
}
.products .owl-nav .owl-prev {
  position: absolute;
  left: 10px;
  top: 50%;
  top: calc(50% - 38px);
  display: block;
  width: 18px;
  height: 35px;
  background: url("../images/icon-arrow-left.png") no-repeat center center;
  text-indent: -9999px;
  z-index: 2;
  opacity: 1;
  transition: all 0.3s ease;
}
.products .owl-nav .owl-prev:hover, .products .owl-nav .owl-prev:active, .products .owl-nav .owl-prev:focus {
  opacity: 0.5;
}
@media screen and (min-width: 1330px) {
  .products .owl-nav .owl-prev {
    left: -50px;
  }
}
.products .owl-nav .owl-next {
  position: absolute;
  right: 10px;
  top: 50%;
  top: calc(50% - 38px);
  display: block;
  width: 18px;
  height: 35px;
  background: url("../images/icon-arrow-right.png") no-repeat center center;
  text-indent: -9999px;
  z-index: 2;
  opacity: 1;
  transition: all 0.3s ease;
}
.products .owl-nav .owl-next:hover, .products .owl-nav .owl-next:active, .products .owl-nav .owl-next:focus {
  opacity: 0.5;
}
@media screen and (min-width: 1330px) {
  .products .owl-nav .owl-next {
    right: -50px;
  }
}

@media (max-width: 1350px) {
  #latest-products .products .owl-nav .owl-prev {
    left: -20px;
  }
  #latest-products .products .owl-nav .owl-next {
    right: -20px;
  }
}
@media (max-width: 1279px) {
  #latest-products {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1023px) {
  .products .product .product-image {
    height: auto;
  }
}
@media (max-width: 767px) {
  #latest-products {
    padding: 40px 0 100px;
  }
  .products .product .product-image {
    height: auto;
  }
}
/*
  Breadcrumbs
*/
#breadcrumbs {
  position: relative;
  *zoom: 1;
  margin: 40px 0 90px;
  font-size: 11px;
  text-transform: uppercase;
  color: #3C3C3B;
}
#breadcrumbs:before, #breadcrumbs:after {
  content: "";
  display: table;
}
#breadcrumbs:after {
  clear: both;
}
#breadcrumbs .wrap {
  text-align: center;
}
#breadcrumbs .breadcrumb_last {
  font-weight: 700;
  color: #1a1a1a;
}
#breadcrumbs .woocommerce-breadcrumb {
  font-weight: 700;
  color: #1a1a1a;
}
#breadcrumbs .woocommerce-breadcrumb a {
  font-weight: 400;
  color: #3C3C3B;
}
#breadcrumbs .woocommerce-breadcrumb span {
  font-weight: 400;
  margin: 0 4px;
}
#breadcrumbs .current-item {
  font-weight: 700;
}
#breadcrumbs [property=itemListElement] span {
  font-size: 11px;
  text-transform: uppercase;
  color: #636363;
}
#breadcrumbs [property=itemListElement]:last-child span {
  font-weight: 700;
  color: #1a1a1a;
}

/*
  Category filter
*/
.categories {
  padding: 0 0 20px 0;
  text-align: center;
  position: relative;
  margin: 80px auto 40px;
  *zoom: 1;
}
.categories:before, .categories:after {
  content: "";
  display: table;
}
.categories:after {
  clear: both;
}
.categories .category {
  display: inline-block;
  margin-right: -5px;
  margin-left: 0;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}
.categories .category:hover a, .categories .category:active a, .categories .category:focus a {
  color: #86888C !important;
}
.categories .category.selected {
  z-index: 2;
}
.categories .category.selected a {
  color: #3C3C3B !important;
  border: 1px solid #D5D5D5;
  border-bottom: 1px solid #ffffff;
}
.categories .category:first-child {
  margin-left: 0;
}
.categories .category a {
  text-transform: uppercase;
  padding: 6px 22px;
  display: block;
  color: #86888C;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #D5D5D5;
}

@media (max-width: 767px) {
  .categories .category {
    margin-right: 10px;
    margin-left: 10px;
  }
  .categories .category.selected a {
    border-bottom: 1px solid #D5D5D5;
  }
  .categories .category a {
    border: 1px solid #D5D5D5;
  }
}
/*
  Pagination Number
*/
.pagination {
  margin-top: 30px;
  *zoom: 1;
  position: relative;
  text-align: center;
}
.pagination:before, .pagination:after {
  content: "";
  display: table;
}
.pagination:after {
  clear: both;
}
.pagination .nav-links {
  display: inline-block;
}
.pagination .page-numbers {
  font-family: "libre_caslon_textregular", serif;
  margin: 0 10px;
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  background-color: white;
  text-align: center;
  line-height: 32px;
  color: #191919;
  font-size: 16px;
  font-weight: 400;
}
.pagination .page-numbers.current {
  background-color: #675F5D;
  color: #ffffff;
}
.pagination .page-numbers:last-child {
  border-right: 0;
}

/*
  Childrens page box
*/
.childrens {
  *zoom: 1;
  position: relative;
}
.childrens:before, .childrens:after {
  content: "";
  display: table;
}
.childrens:after {
  clear: both;
}
.childrens .children {
  margin-bottom: 30px;
}
.childrens .children a {
  padding: 52px 20px;
  width: 100%;
  height: 100%;
  background-color: #675F5D;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #3C3C3B;
  font-size: 18px;
  min-height: 300px;
}
.childrens .children-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "libre_caslon_textregular", serif;
  color: #ffffff;
}
.childrens .children-link {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: -1px;
}

@media (max-width: 1399px) {
  .childrens .children-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .childrens .children a {
    padding: 30px 20px;
  }
  .childrens .children-title {
    margin-bottom: 10px;
  }
}
/*
  Teams
*/
.teams {
  margin-top: 58px;
}
.teams .team {
  position: relative;
  *zoom: 1;
  margin-bottom: 30px;
}
.teams .team:before, .teams .team:after {
  content: "";
  display: table;
}
.teams .team:after {
  clear: both;
}
.teams .team .team-info {
  display: block;
  text-align: center;
  font-size: 10px;
  font-family: "libre_caslon_textregular", serif;
  color: #3C3C3B !important;
  text-transform: uppercase;
  padding: 15px 20px;
}
@media (max-width: 767px) {
  .teams .team .team-info {
    padding: 15px 0;
  }
}
.teams .team .team-info * {
  transition: all 0.3s ease;
}
.teams .team .team-info:hover, .teams .team .team-info:active, .teams .team .team-info:focus {
  color: #3C3C3B !important;
}
.teams .team .team-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.teams .team .team-image img {
  width: 100% !important;
  height: 100% !important;
}
.teams .team span {
  display: block;
}
.teams .team .team-title {
  font: normal 20px/1 "Montserrat", sans-serif;
  color: #3C3C3B;
  text-transform: uppercase;
  margin-bottom: 3px;
  letter-spacing: -0.5px;
}
.teams .team .team-title:hover, .teams .team .team-title:active, .teams .team .team-title:focus {
  color: #675F5D !important;
}
.teams .team .team-position {
  margin-bottom: 8px;
}
.teams .team .team-desc {
  margin-bottom: 10px;
}
.teams .team .team-link:hover, .teams .team .team-link:active, .teams .team .team-link:focus {
  color: #675F5D !important;
}

@media (max-width: 767px) {
  .teams .team .team-image img {
    width: 100%;
  }
}
/*
  Social Box
*/
.social-box .social {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-box li {
  display: inline-block;
  margin-right: -4px;
  margin-left: 30px;
}
.social-box li:first-child {
  margin-left: 0;
}
.social-box li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 40px;
  font-size: 22px;
  color: #d1d1d1 !important;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-box li a:hover, .social-box li a:active, .social-box li a:focus {
  color: #3C3C3B !important;
}

/*
  Sitemap
*/
.sitemap ul {
  margin: 0;
}
.sitemap ul li {
  margin-bottom: 10px;
}
.sitemap ul a {
  font-size: 18px;
  color: #3C3C3B;
}

/*
  Dialog
*/
/* Styles for dialog window */
.dialog-v2 {
  text-align: left;
  position: relative;
  font-size: 14px;
  opacity: 0;
}
.dialog-v2 .mfp-close {
  border-radius: 50%;
  background-color: #675F5D;
  color: #3C3C3B;
  opacity: 1;
  right: -15px;
  top: -15px;
}
.dialog-v2 .dialog-v2-inner {
  position: relative;
  background: white;
  padding: 40px 40px;
}
.dialog-v2 .dialog-v2-inner + .mfp-close {
  display: none;
}
.dialog-v2 label {
  margin-bottom: 10px;
}
.dialog-v2 .form-title {
  font-size: 48px;
  font-family: "libre_caslon_textregular", serif;
  margin-bottom: 40px;
}

.dialog-v2 input[type=submit],
.dialog-v2 input[type=button],
.dialog input[type=submit],
.dialog input[type=button] {
  display: inline-block;
  position: relative;
  color: #191919;
  font-size: 14px;
  text-decoration: none !important;
  padding: 12px 18px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: all 0.5s ease-in-out;
  -khtml-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-weight: 400;
  text-align: center;
  background-color: #f0f0f0;
  font-family: "libre_caslon_textregular", serif;
}
.dialog-v2 input[type=submit]:hover, .dialog-v2 input[type=submit]:active, .dialog-v2 input[type=submit]:focus,
.dialog-v2 input[type=button]:hover,
.dialog-v2 input[type=button]:active,
.dialog-v2 input[type=button]:focus,
.dialog input[type=submit]:hover,
.dialog input[type=submit]:active,
.dialog input[type=submit]:focus,
.dialog input[type=button]:hover,
.dialog input[type=button]:active,
.dialog input[type=button]:focus {
  background-color: #3C3C3B;
  color: #ffffff !important;
}
.dialog-v2 .form-submit,
.dialog .form-submit {
  position: relative;
}
.dialog-v2 input[type=submit],
.dialog-v2 input[type=button],
.dialog input[type=submit],
.dialog input[type=button] {
  background-color: #675F5D;
  border-color: #675F5D;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*
  Faq
*/
.faq {
  position: relative;
  padding: 23px 0 20px;
  border-top: 1px solid #D5D5D5;
}

@media (max-width: 767px) {
  .faq {
    padding: 15px 0 13px;
  }
}
.faq .faq-title {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
  padding-right: 15px;
  text-align: left;
  max-width: 100%;
}
@media (max-width: 767px) {
  .faq .faq-title {
    font-size: 20px;
  }
}

.faq .faq-content {
  max-width: 700px;
}
.faq .faq-content p {
  font: normal 16px/1.4 "Montserrat", sans-serif;
  letter-spacing: 0;
  color: #3C3C3B;
  margin-top: 15px;
}

.faq .faq-title:before {
  content: ">";
  display: block;
  width: 8px;
  height: 15px;
  position: absolute;
  right: 5px;
  top: -4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .faq .faq-title:before {
    top: -2px;
  }
}
.faq.active .js-toggle-title:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.social li {
  display: inline-block;
  margin-right: -4px;
  margin-left: 15px;
}
.social li:first-child {
  margin-left: 0;
}

.featured-slider {
  max-width: 1128px;
  margin: 0 auto;
  position: relative;
}
.featured-slider .text-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45.8%;
  height: 48.4%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-slider .text-wrap .text {
  color: #ffffff;
  text-align: center;
  width: 75%;
}
.featured-slider .text-wrap h2 {
  font: 300 58px/0.8 "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -7px;
}
.featured-slider .text-wrap p {
  font: normal 22px/1.2 "libre_caslon_textregular", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.featured-slider .text-wrap span {
  font: normal 18px/1.2 "libre_caslon_textregular", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: url("../images/icon-arrow-right-small-white.png") no-repeat center right;
  padding-right: 20px;
}

@media (max-width: 1100px) {
  .featured-slider .text-wrap h2 {
    font-size: 50px;
  }
  .featured-slider .text-wrap p {
    font-size: 18px;
  }
  .featured-slider .text-wrap span {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .featured-slider .text-wrap h2 {
    font-size: 45px;
    letter-spacing: -5px;
  }
  .featured-slider .text-wrap p {
    font-size: 16px;
  }
  .featured-slider .text-wrap span {
    font-size: 14px;
  }
}
@media (max-width: 870px) {
  .featured-slider .text-wrap h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .featured-slider .text-wrap p {
    margin-bottom: 15px;
  }
}
@media (max-width: 800px) {
  .featured-slider .text-wrap h2 {
    font-size: 35px;
    letter-spacing: -3px;
  }
  .featured-slider .text-wrap p {
    font-size: 14px;
  }
  .featured-slider .text-wrap span {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .featured-slider .text-wrap {
    position: relative;
    width: 90%;
    margin: 20px auto 0;
    padding: 30px 0;
    background-color: #675F5D;
  }
  .featured-slider .image {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
  }
  .featured-slider .image img {
    width: 192%;
    max-width: none;
  }
}
@media (max-width: 494px) {
  .featured-slider .text-wrap {
    width: 100%;
  }
  .featured-slider .image {
    width: 100%;
  }
}
.timelines {
  *zoom: 1;
  position: relative;
  display: none;
}
.timelines:before, .timelines:after {
  content: "";
  display: table;
}
.timelines:after {
  clear: both;
}
.timelines .owl-carousel .owl-stage-outer {
  padding-bottom: 60px;
}
.timelines .timeline + .timeline {
  margin-top: 40px;
}
.timelines .timeline-content .owl-stage-outer {
  z-index: 2;
}
.timelines .timeline-content .item .item-content {
  position: relative;
  background-color: #ffffff;
  padding: 20px 40px;
  text-align: center;
  border-top: 0;
  margin-bottom: 6px;
}
.timelines .timeline-content .item .item-content:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 0;
  margin: auto;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 15px 0 15px;
  border-color: #ffffff transparent transparent transparent;
  z-index: 2;
}
.timelines .timeline-content .item .item-content:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -26px;
  left: 0;
  margin: auto;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 16px 0 16px;
  border-color: #e5e5e5 transparent transparent transparent;
  z-index: 1;
}
.timelines .timeline-content .item .image img {
  display: block;
}
.timelines .timeline-content .item .item-heading {
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  font-family: "libre_caslon_textregular", serif;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.timelines .timeline-content .timeline-date {
  position: relative;
  text-align: center;
  font-size: 18px;
  color: #191919;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  height: 100px;
}
.timelines .timeline-content .timeline-date .date {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.timelines .timeline-content .timeline-date .timeline-dot {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #86888C;
  border: 1px solid black;
  border-radius: 50%;
  margin: auto;
}
.timelines .timeline-content .owl-nav {
  z-index: 1;
  position: absolute;
  bottom: 46px;
  transform: translateY(-50%);
  width: 100%;
  display: flex !important;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.timelines .timeline-content .owl-nav:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #979797;
  z-index: -1;
  position: relative;
}
.timelines .timeline-content .owl-nav .owl-prev,
.timelines .timeline-content .owl-nav .owl-next {
  display: block;
  width: 18px;
  height: 35px;
  background-color: #f0f0f0;
  text-indent: -9999px;
  border-radius: 50%;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.timelines .timeline-content .owl-nav .owl-prev {
  left: -52px;
  background: url("../images/icon-arrow-left.png") no-repeat center center;
}
.timelines .timeline-content .owl-nav .owl-next {
  right: -52px;
  background: url("../images/icon-arrow-right.png") no-repeat center center;
}
.timelines .timeline-content .item-content-wrap {
  visibility: hidden;
}
.timelines .timeline-content .active .item-content-wrap {
  animation: zoomIn 700ms linear;
  animation-fill-mode: forwards;
  visibility: visible;
}

@media (max-width: 1399px) {
  .timelines .timeline {
    padding: 0 40px;
  }
  .timelines .timeline-content .item .item-content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .timelines .timeline-content .owl-nav .owl-prev,
  .timelines .timeline-content .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    background-size: 13px;
  }
}
@media (max-width: 639px) {
  .timelines .timeline-content .item .image img {
    width: 100%;
  }
}
/*
  Carousel
*/
#carousel.owl-carousel .owl-dots {
  margin-top: 45px;
}
#carousel.owl-carousel .owl-dots .active span {
  background-color: #675F5D;
}

@media (max-width: 1599px) {
  #carousel.owl-carousel .owl-dots {
    margin-top: 20px;
  }
  .feature-style-2 .featured-image img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  #carousel.owl-carousel .owl-dots {
    position: relative;
  }
}
/*
  Lightbox Popup
*/
.mfp-ready .mfp-figure {
  opacity: 0;
}

div .mfp-title {
  line-height: 1.4em;
  font-size: 13px;
}

.mfp-title a {
  text-decoration: underline;
  color: #fff;
}
.mfp-title a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.mfp-zoom-in .mfp-figure,
.mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-image-loaded .mfp-figure {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-figure,
.mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
  opacity: 0;
}

.mfp-bg,
.mfp-wrap {
  z-index: 999999;
}

.físhermans-popup .mfp-close {
  width: 40px !important;
  height: 40px;
  right: -13px;
  text-align: center !important;
  border-radius: 100px;
  border: 2px solid transparent;
  line-height: 38px;
  padding: 0 !important;
  top: -5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: Arial, Baskerville, monospace !important;
}
.físhermans-popup button.mfp-arrow-left:before {
  content: "\e87c";
  font-family: "entypo-fontello";
}
.físhermans-popup .mfp-iframe-scaler {
  overflow: visible;
  /*so the close button is shown*/
}
.físhermans-popup .mfp-zoom-out-cur {
  cursor: auto;
}
.físhermans-popup .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}
.físhermans-popup .mfp-close {
  width: 40px;
  height: 40px;
  right: -13px;
  text-align: center;
  border-radius: 100px;
  border: 2px solid transparent;
  line-height: 38px;
  padding: 0;
  top: -5px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: Arial, Baskerville, monospace !important;
}
.físhermans-popup .mfp-close:hover {
  border: 2px solid #fff;
}
.físhermans-popup .mfp-iframe-scaler .mfp-close {
  top: -43px;
}
.físhermans-popup .mfp-figure:after {
  box-shadow: none;
  display: none;
}
.físhermans-popup button.mfp-arrow:before, .físhermans-popup button.mfp-arrow:after {
  border: none;
  margin: 0;
  display: none;
}
.físhermans-popup button.mfp-arrow:before {
  opacity: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 80px;
  margin-top: -40px;
  color: #fff;
  font-size: 50px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.físhermans-popup button.mfp-arrow:before {
  content: "\e87d";
  font-family: "entypo-fontello";
}
.físhermans-popup button.mfp-arrow-left:before {
  content: "\e87c";
  font-family: "entypo-fontello";
}

.mfp-img {
  -webkit-animation: avia-fadein 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Safari 4+ */
  animation: avia-fadein 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* IE 10+ */
}

/* CSS-based preloader */
.físhermans-popup .mfp-preloader {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  opacity: 0.65;
  margin: 0 auto;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
  border-radius: 100px;
  text-indent: -9999px;
}
.físhermans-popup .mfp-s-error .mfp-preloader {
  background: transparent;
  width: 100%;
  -webkit-animation: none;
  animation: none;
  white-space: nowrap;
  text-indent: -9999px;
}

@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@media (max-width: 900px) {
  .mfp-arrow {
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  }
}
.cookie-bar-bar .ctcc-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  transition-property: none;
}
.cookie-bar-bar .ctcc-inner a {
  color: #fff !important;
}
.cookie-bar-bar .ctcc-inner a:hover, .cookie-bar-bar .ctcc-inner a:active, .cookie-bar-bar .ctcc-inner a:focus {
  text-decoration: underline;
}
.cookie-bar-bar .ctcc-inner button {
  display: inline-block;
  color: #1a1a1a;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px !important;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: #ddd;
  border-color: #ddd;
  border-radius: 20px !important;
  min-width: 120px;
  transition-property: none;
}
.cookie-bar-bar .ctcc-inner button:hover, .cookie-bar-bar .ctcc-inner button:active, .cookie-bar-bar .ctcc-inner button:focus {
  background-color: #ffffff;
  color: "Montserrat", sans-serif;
}

/*
  Gallery text
*/
.gallery-text .item {
  display: flex;
  flex-direction: row;
  width: 50%;
  float: left;
}
.gallery-text .item.item-reverse {
  flex-direction: row-reverse;
}
.gallery-text .item-content {
  width: 50%;
  background-color: #191919;
  color: #fffffe;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
  font-family: "libre_caslon_textregular", serif;
  font-weight: 400;
  padding: 30px 40px;
}
.gallery-text .item-content.small {
  font-size: 32px;
}
.gallery-text .item-content.large {
  font-size: 60px;
  font-style: italic;
}
.gallery-text .item-img {
  width: 50%;
}
.gallery-text .item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1500px) {
  .gallery-text .item-content {
    padding: 20px 20px;
  }
  .gallery-text .item-content.small {
    font-size: 28px;
  }
  .gallery-text .item-content.large {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .gallery-text .item-content.small {
    font-size: 24px;
  }
  .gallery-text .item-content.large {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .gallery-text .item {
    width: 100%;
  }
  .gallery-text .item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 479px) {
  .gallery-text .item {
    flex-direction: column;
  }
  .gallery-text .item:nth-child(even) {
    flex-direction: column;
  }
  .gallery-text .item.item-reverse {
    flex-direction: column;
  }
  .gallery-text .item .item-img,
  .gallery-text .item .item-content {
    width: 100%;
  }
}
.product-category-select__container {
  width: 100%;
  max-width: 412px;
  border: 0;
}
@media (max-width: 494px) {
  .product-category-select__container {
    max-width: 100%;
  }
}
.product-category-select select {
  width: 100%;
  font-family: "libre_caslon_textregular", serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #86888C;
  height: 47px;
  background: #FFFFFF;
  border: 0.5px solid #86888C;
  padding: 0 10px;
  position: relative;
  background: url("/wp-content/themes/shackletons/images/arrow-down.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
  text-transform: uppercase;
}
@media screen and (min-width: 444px) {
  .product-category-select select {
    font-size: 18px;
    padding: 0 20px;
    background-position: right 20px center;
  }
}

.brochure-download {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease all;
}
.brochure-download .brochure-download__close {
  position: absolute;
  right: 50px;
  top: 50px;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
}
.brochure-download.active {
  pointer-events: unset;
  opacity: 1;
}

.main-content .wpcf7 {
  width: 610px;
  max-width: 100%;
  margin: 0 auto;
}

.notice-popup {
  position: absolute;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: 884px;
  width: 90%;
  z-index: 999;
  background: #fff;
}
.notice-popup__wrapper {
  position: relative;
  width: 100%;
  padding: 40px 30px;
}
@media screen and (min-width: 768px) {
  .notice-popup__wrapper {
    padding: 60px;
  }
}
.notice-popup__background {
  background: rgba(0, 0, 0, 0.48);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
}
.notice-popup__logo {
  padding-top: 30px;
  margin: 0 auto 30px;
  max-width: 343px;
  width: 100%;
}
@media screen and (min-width: 550px) {
  .notice-popup__logo {
    padding-top: 0;
  }
}
.notice-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.notice-popup__content h3 {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .notice-popup__content h3 {
    margin-top: 10px;
  }
}
.notice-popup__content-text {
  font-family: Kings Caslon Display;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 138.5%;
  letter-spacing: -0.5px;
  color: #626366;
  padding: 30px 0 40px;
}
@media screen and (min-width: 768px) {
  .notice-popup__content-text {
    padding: 50px 10%;
  }
}
.notice-popup__content-text h3 {
  margin-top: 45px;
  font-size: 18px;
  line-height: 22px;
}
.notice-popup__content-text ul {
  margin-left: 0;
  padding-left: 0;
}
.notice-popup__content-text li {
  font-size: 18px;
  line-height: 138.5%;
  letter-spacing: -0.5px;
  position: relative;
  list-style: none;
  padding-left: 18px;
  margin-bottom: 15px;
  color: #626366;
}
.notice-popup__content-text li:before {
  content: "⬤";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 10px;
  color: #C4C4C4;
}
.notice-popup__content-text a {
  color: #000;
  word-break: break-word;
}
.notice-popup__title {
  font-family: "HCo Gotham", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  color: #86888C;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
@media screen and (min-width: 550px) {
  .notice-popup__title {
    font-size: 42px;
    margin-bottom: 30px;
    letter-spacing: -3px;
  }
}
@media screen and (min-width: 768px) {
  .notice-popup__title {
    font-size: 52px;
    margin-bottom: 40px;
    letter-spacing: -5px;
  }
}
.notice-popup__button {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #675F5D;
  color: #fff;
  text-transform: uppercase;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  font-family: Kings Caslon Display;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1.91304px;
  padding: 12px 30px;
  position: fixed;
  z-index: 900;
}
@media screen and (min-width: 768px) {
  .notice-popup__button {
    bottom: 40px;
    right: 40px;
    left: auto;
    transform: translateX(0);
  }
}

.my-shackletons-login--desktop {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 939px) {
  .my-shackletons-login--desktop {
    display: none;
  }
}
@media screen and (min-width: 940px) {
  .my-shackletons-login--desktop {
    margin-left: 48px;
  }
}
.my-shackletons-login--mobile {
  box-sizing: border-box;
  padding: 20px 10px;
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 939px) {
  .my-shackletons-login--mobile {
    display: block;
  }
}

/* 6. Page-specific styles */
.page-about-us .partners {
  display: block;
  margin-top: 40px;
  background-color: transparent;
}
.page-about-us #contact {
  display: block;
}

.post-type-archive-sector .featured .featured-content {
  left: 3%;
}

.tax-product_cat.term-bedroom-cabinets ul.products li.product,
.tax-product_cat.term-bedroom-cabinetry ul.products li.product {
  margin-bottom: 40px;
}
@media screen and (min-width: 1100px) {
  .tax-product_cat.term-bedroom-cabinets ul.products li.product,
  .tax-product_cat.term-bedroom-cabinetry ul.products li.product {
    width: calc((100% - 120px) / 3);
    margin: 0 60px 80px 0;
    position: relative;
  }
}
.tax-product_cat.term-bedroom-cabinets ul.products span.product-image, .tax-product_cat.term-bedroom-cabinets ul.products span.cat-image,
.tax-product_cat.term-bedroom-cabinetry ul.products span.product-image,
.tax-product_cat.term-bedroom-cabinetry ul.products span.cat-image {
  padding-top: 55%;
}

.page-blog .hero .caption {
  max-width: 870px;
}

.page-contact .contact-details-wrap {
  margin-top: 100px;
}
.page-contact .contact-details h2 {
  font: 300 52px/0.9 "Montserrat", sans-serif;
  letter-spacing: -5px;
  text-transform: uppercase;
  color: #86888C;
  text-align: left;
}
.page-contact .contact-details p {
  font: normal 18px/1.2 "Montserrat", sans-serif;
  color: #3C3C3B;
}
.page-contact .contact-numbers {
  float: left;
}
@media (max-width: 900px) {
  .page-contact .contact-numbers {
    float: none;
  }
}
.page-contact .contact-numbers p {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
  color: #86888C;
}
.page-contact .contact-numbers p a {
  color: #86888C !important;
}
.page-contact .social-box {
  float: right;
}
@media (max-width: 900px) {
  .page-contact .social-box {
    float: none;
  }
}

.page-the-spirit-of-health h2 {
  max-width: 820px;
}
@media (max-width: 1024px) {
  .page-the-spirit-of-health h2 br {
    display: none;
  }
}
.page-the-spirit-of-health .featured-contents {
  margin-top: 20px;
}
.page-the-spirit-of-health .featured {
  max-width: 1230px;
  margin: 0 auto 120px;
  padding-left: 15px; /* 3 */
  padding-right: 15px; /* 3 */
  margin-bottom: -60px;
}
@media (max-width: 767px) {
  .page-the-spirit-of-health .featured {
    margin-bottom: 100px;
  }
}
.page-the-spirit-of-health .featured .featured-image {
  margin-left: 0;
  width: 69%;
}
@media (max-width: 1199px) {
  .page-the-spirit-of-health .featured .featured-image {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .page-the-spirit-of-health .featured .featured-image img {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 494px) {
  .page-the-spirit-of-health .featured .featured-image img {
    width: 80%;
  }
}
.page-the-spirit-of-health .feature-style-2 .featured-inner {
  padding: 0;
}
.page-the-spirit-of-health blockquote {
  padding: 0;
}
.page-the-spirit-of-health blockquote p {
  color: #000000;
}
@media (max-width: 1024px) {
  .page-the-spirit-of-health blockquote p br {
    display: none;
  }
}
.page-the-spirit-of-health .featured-contents .main-content p:last-child {
  *zoom: 1;
  margin-top: 90px;
}
.page-the-spirit-of-health .featured-contents .main-content p:last-child:before, .page-the-spirit-of-health .featured-contents .main-content p:last-child:after {
  content: "";
  display: table;
}
.page-the-spirit-of-health .featured-contents .main-content p:last-child:after {
  clear: both;
}
.page-the-spirit-of-health .featured-contents .main-content p:last-child img {
  float: left;
  width: 33.3333333333%;
  box-sizing: border-box;
  padding: 0 5px;
}
@media (max-width: 600px) {
  .page-the-spirit-of-health .featured-contents .main-content p:last-child img {
    float: none;
    width: 100%;
    padding: 5px 30px;
  }
}

.home .slider .slide-title {
  font-size: 140px;
}
@media (max-width: 1170px) {
  .home .slider .slide-title {
    font-size: 120px;
  }
}
@media (max-width: 980px) {
  .home .slider .slide-title {
    font-size: 110px;
  }
}
@media (max-width: 900px) {
  .home .slider .slide-title {
    font-size: 90px;
  }
}
@media (max-width: 500px) {
  .home .slider .slide-title {
    font-size: 60px;
  }
}
.home .site-main .entry-content {
  margin: auto;
  font-size: 18px;
  line-height: 1.3;
  color: #3C3C3B;
}
@media (max-width: 479px) {
  .home .site-main .entry-content {
    font-size: 16px;
  }
}
.home .site-main .entry-content .link {
  display: block;
  margin-top: 30px;
  color: #3C3C3B !important;
}
.home .site-main .entry-content p {
  font: normal 47px/1 "Montserrat", sans-serif;
  margin-bottom: 47px;
  color: #86888C;
  letter-spacing: -0.5px;
}
@media (max-width: 1199px) {
  .home .site-main .entry-content p {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1023px) {
  .home .site-main .entry-content p {
    font-size: 35px;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .home .site-main .entry-content p {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .home .site-main .entry-content p {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.home .site-main .entry-content p:last-child {
  margin-bottom: 0;
}
.home .site-main .entry-content p a {
  color: #3C3C3B;
}
.home .main-content {
  margin: 118px auto 80px;
  max-width: 1010px;
}
@media (max-width: 1023px) {
  .home .main-content {
    margin: 80px auto;
  }
}
@media (max-width: 767px) {
  .home .featured-slider .owl-item .text-wrap {
    background-color: #C99284;
  }
  .home .featured-slider .owl-item:first-child .text-wrap {
    background-color: #08658F;
  }
  .home .featured-slider .owl-item:last-child .text-wrap {
    background-color: #8EC971;
  }
}

.page-template-page-retail-home .main-content .link {
  display: block;
  margin-top: 30px;
  color: #3C3C3B !important;
}

.lastest-projects .more-link {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .lastest-projects .more-link {
    margin-top: 20px;
  }
}
.lastest-projects .more-link .link {
  font-size: 18px;
  color: #3C3C3B;
}
@media (max-width: 479px) {
  .lastest-projects .more-link .link {
    font-size: 16px;
  }
}

.section {
  position: relative;
  *zoom: 1;
  padding: 65px 0;
}
.section:before, .section:after {
  content: "";
  display: table;
}
.section:after {
  clear: both;
}

@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}
.page-meet-the-team .featured,
.page-id-223 .featured {
  max-width: 1230px;
  margin: 0 auto 120px;
  padding-left: 15px; /* 3 */
  padding-right: 15px; /* 3 */
}
@media (max-width: 767px) {
  .page-meet-the-team .featured,
  .page-id-223 .featured {
    margin-bottom: 100px;
  }
}
.page-meet-the-team .featured .featured-image,
.page-id-223 .featured .featured-image {
  margin-left: 0;
  width: 69%;
}
@media (max-width: 1199px) {
  .page-meet-the-team .featured .featured-image,
  .page-id-223 .featured .featured-image {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .page-meet-the-team .featured .featured-image img,
  .page-id-223 .featured .featured-image img {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 494px) {
  .page-meet-the-team .featured .featured-image img,
  .page-id-223 .featured .featured-image img {
    width: 80%;
  }
}
.page-meet-the-team .hero .caption,
.page-id-223 .hero .caption {
  max-width: 987px;
}

.tax-product_cat .wrap {
  width: calc(100% - 30px);
}
@media screen and (min-width: 1260px) {
  .tax-product_cat .wrap {
    width: 100%;
  }
}
.tax-product_cat .woocommerce-layout {
  float: none;
}
.tax-product_cat .woocommerce-layout .woocommerce-content {
  float: none;
}
.tax-product_cat .hero {
  position: relative;
}
@media screen and (max-width: 500px) {
  .tax-product_cat .hero .caption {
    font-size: 40px;
    letter-spacing: -4px;
  }
}
.tax-product_cat .hero .hero-bg {
  flex-wrap: wrap;
  align-content: center;
}
.tax-product_cat .hero .wrap {
  max-width: 100%;
}
.tax-product_cat .hero .woocommerce-product-search {
  margin-top: 50px;
  z-index: 999;
  position: relative;
  width: 90%;
  max-width: 490px;
}
@media (max-width: 767px) {
  .tax-product_cat .hero .woocommerce-product-search {
    margin-top: 30px;
  }
}
.tax-product_cat .hero input[type=search].search-field {
  width: 100%;
  max-width: 490px;
  height: 52px;
  background: rgba(0, 0, 0, 0.5) !important;
  border: none;
  border-radius: 0;
  position: relative;
  display: block;
  -webkit-appearance: none;
  color: #fff;
  font-family: "libre_caslon_textregular", serif;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1.73px;
  padding-left: 20px;
}
.tax-product_cat .hero input[type=search].search-field::placeholder {
  color: #fff;
  font-family: "libre_caslon_textregular", serif;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1.73px;
}
.tax-product_cat .hero button[type=submit] {
  border: none;
  background-color: transparent;
  background-image: url(/wp-content/themes/shackletons/images/search.png);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  background-size: cover;
  padding: 0;
  color: transparent;
}
.tax-product_cat ul.products {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1100px) {
  .tax-product_cat ul.products li.product {
    width: calc((100% - 290px) / 3);
    margin: 0 145px 80px 0;
    position: relative;
  }
  .tax-product_cat ul.products li.product:nth-of-type(3n) {
    margin: 0 0 80px;
  }
}
.tax-product_cat ul.products li a h2.woocommerce-loop-product__title,
.tax-product_cat ul.products h2 {
  margin-top: 30px;
  font-size: 20px;
}
.tax-product_cat ul.products div.product-category__image-wrapper {
  width: 100%;
  position: relative;
}
.tax-product_cat ul.products li a span.product-image {
  border: 0;
}
.tax-product_cat ul.products span.product-image,
.tax-product_cat ul.products span.cat-image {
  padding-top: 100%;
  height: auto;
}
.tax-product_cat ul.products span.product-image img,
.tax-product_cat ul.products span.cat-image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 300px;
}

.term-bedroom-cabinets ul.products li.product span.product-image,
.term-bedroom-cabinets ul.products li.product span.cat-image {
  padding-top: 0;
  height: auto;
}
.term-bedroom-cabinets ul.products li.product span.product-image img,
.term-bedroom-cabinets ul.products li.product span.cat-image img {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.post-type-archive-product .wrap {
  width: calc(100% - 30px);
}
@media screen and (min-width: 1260px) {
  .post-type-archive-product .wrap {
    width: 100%;
  }
}
.post-type-archive-product .woocommerce-loop-category__title {
  font-size: 28px;
  letter-spacing: 1.5px;
}
.post-type-archive-product .woocommerce-layout {
  float: none;
}
.post-type-archive-product .woocommerce-layout .woocommerce-content {
  float: none;
}
.post-type-archive-product .hero {
  position: relative;
}
.post-type-archive-product .hero .hero-bg {
  flex-wrap: wrap;
  align-content: center;
}
.post-type-archive-product .hero .wrap {
  max-width: 100%;
}
.post-type-archive-product .hero .woocommerce-product-search {
  margin-top: 50px;
  z-index: 999;
  position: relative;
  width: 90%;
  max-width: 490px;
}
@media (max-width: 767px) {
  .post-type-archive-product .hero .woocommerce-product-search {
    margin-top: 30px;
  }
}
.post-type-archive-product .hero input[type=search].search-field {
  width: 100%;
  max-width: 490px;
  height: 52px;
  background: rgba(0, 0, 0, 0.5) !important;
  border: none;
  border-radius: 0;
  position: relative;
  display: block;
  -webkit-appearance: none;
  color: #fff;
  font-family: "libre_caslon_textregular", serif;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1.73px;
  padding-left: 20px;
}
.post-type-archive-product .hero input[type=search].search-field::placeholder {
  color: #fff;
  font-family: "libre_caslon_textregular", serif;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1.73px;
}
.post-type-archive-product .hero button[type=submit] {
  border: none;
  background-color: transparent;
  background-image: url(/wp-content/themes/shackletons/images/search.png);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  background-size: cover;
  padding: 0;
  color: transparent;
}
.post-type-archive-product ul.products {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .post-type-archive-product ul.products {
    margin-top: 80px;
  }
}
.post-type-archive-product ul.products li.product {
  width: 100%;
  margin: 0 0 15px 0;
  position: relative;
}
@media screen and (min-width: 500px) {
  .post-type-archive-product ul.products li.product {
    width: calc((100% - 15px) / 2);
    margin: 0 15px 15px 0;
  }
  .post-type-archive-product ul.products li.product:nth-of-type(2n) {
    margin: 0 0 15px;
  }
}
@media screen and (min-width: 768px) {
  .post-type-archive-product ul.products li.product {
    width: calc((100% - 30px) / 3);
  }
  .post-type-archive-product ul.products li.product:nth-of-type(2n) {
    margin: 0 15px 15px 0;
  }
  .post-type-archive-product ul.products li.product:nth-of-type(3n) {
    margin: 0 0 15px;
  }
}
@media screen and (min-width: 1230px) {
  .post-type-archive-product ul.products li.product {
    width: calc((100% - 45px) / 4);
  }
  .post-type-archive-product ul.products li.product:nth-of-type(3n) {
    margin: 0 15px 15px 0;
  }
  .post-type-archive-product ul.products li.product:nth-of-type(4n) {
    margin: 0 0 15px;
  }
}
.post-type-archive-product ul.products h2 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post-type-archive-product ul.products span.cat-image {
  margin-top: 100%;
}
.post-type-archive-product ul.products span.cat-image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.ie .hero .hero-bg {
  display: flex !important;
}
.ie .hero .hero-bg .wrap {
  display: block !important;
}

.search-results .wrap {
  width: calc(100% - 30px);
}
@media screen and (min-width: 1260px) {
  .search-results .wrap {
    width: 100%;
  }
}
.search-results .woocommerce-layout {
  float: none;
}
.search-results .woocommerce-layout .woocommerce-content {
  float: none;
}
.search-results ul.products {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1100px) {
  .search-results ul.products li.product {
    width: calc((100% - 290px) / 3);
    margin: 0 145px 80px 0;
    position: relative;
  }
  .search-results ul.products li.product:nth-of-type(2n) {
    margin: 0 145px 80px 0;
  }
  .search-results ul.products li.product:nth-of-type(3n) {
    margin: 0 0 80px;
  }
}
.search-results ul.products li a h2.woocommerce-loop-product__title, .search-results ul.products h2 {
  margin-top: 30px;
  font-size: 20px;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.search-results ul.products div.product-category__image-wrapper {
  width: 100%;
  position: relative;
}
.search-results ul.products li a span.product-image {
  border: 0;
}

.single-product #breadcrumbs {
  margin-top: 0;
}
.single-product .hero-bg {
  display: none;
}
@media screen and (max-width: 500px) {
  .single-product .product_title {
    letter-spacing: -3px;
  }
}
.single-product .wrap {
  width: 90%;
}
@media screen and (min-width: 1230px) {
  .single-product .wrap {
    width: 100%;
  }
}
.single-product footer.site-footer .wrap {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .single-product .related.products .title {
    font-size: 45px;
    letter-spacing: -3px;
  }
}

.single-project .site-content .column-4 {
  display: none;
}
.single-project .site-content .column {
  width: 100%;
  text-align: center;
}
.single-project .site-content .column img {
  max-width: 100%;
}
.single-project .site-content .column .post-thumbnail img {
  width: 100%;
}
.single-project .site-content .entry-header,
.single-project .site-content .entry-content p {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 700px;
}
.single-project .site-content .entry-content p strong {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: normal;
}
.single-project .navigation {
  justify-content: center;
}
.single-project .navigation > div {
  margin: 20px;
}

.woocommerce-layout .woocommerce-content {
  float: right;
}
.woocommerce-layout .woocommerce-sidebar {
  float: left;
}

.product-categories .cat-item-20 {
  display: none;
}

.woocommerce-products-header .main-content {
  margin-bottom: 0;
}

.woocommerce-loop-category__title {
  font-size: 30px;
  line-height: 1.2;
  color: #3C3C3B;
  margin: 10px 0 0;
}

@media (max-width: 1023px) {
  .woocommerce-loop-category__title {
    font-size: 24px;
  }
}
ul.products {
  display: block;
  width: 100%;
}

ul.products li.product {
  margin-bottom: 32px;
}
ul.products li.product a {
  overflow: hidden;
}
ul.products li.product a .product-image {
  border: 1px solid #e5e5e5;
}
ul.products li.product .woocommerce-loop-product__title {
  color: #1a1a1a;
  font-family: "libre_caslon_textregular", serif;
  font-size: 24px;
  font-weight: 400;
  margin: 12px 0 0;
}

@media (max-width: 767px) {
  ul.products li.product {
    width: 48.1%;
    float: left;
    margin-right: 3.8%;
  }
  ul.products li.product.last {
    margin-right: 0;
  }
}
@media (max-width: 419px) {
  ul.products li.product {
    width: 100%;
    float: left;
    margin-right: 0;
    margin-bottom: 20px;
  }
  ul.products li.product.last {
    margin-right: 0;
  }
}
.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #ffffff;
  font-size: 18px;
}

/*
  Single Product
*/
.single-product {
  /*
    Social sharing
  */
  /*
    Variations
  */
}
.single-product .product {
  width: 100%;
}
.single-product .woocommerce-product-gallery {
  width: 66%;
  float: left;
  *zoom: 1;
  margin-bottom: 50px;
}
.single-product .woocommerce-product-gallery:before, .single-product .woocommerce-product-gallery:after {
  content: "";
  display: table;
}
.single-product .woocommerce-product-gallery:after {
  clear: both;
}
.single-product .entry-summary {
  margin-left: 2.5%;
  width: 31.5%;
  float: left;
  margin-top: 0;
  margin-bottom: 50px;
}
.single-product .woocommerce-tabs {
  clear: both;
}
.single-product .woocommerce-product-gallery__wrapper {
  *zoom: 1;
}
.single-product .woocommerce-product-gallery__wrapper:before, .single-product .woocommerce-product-gallery__wrapper:after {
  content: "";
  display: table;
}
.single-product .woocommerce-product-gallery__wrapper:after {
  clear: both;
}
.single-product .woocommerce-product-gallery__wrapper > div {
  width: 100%;
}
.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  text-align: center;
}
.single-product .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  display: block;
  margin: auto;
}
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 27px;
  height: 27px;
  background: url(../images/icon-detail.png) no-repeat center center;
  text-indent: -9999px;
}
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
  display: none !important;
}
@media (min-width: 768px) {
  .single-product .woocommerce-product-gallery .flex-viewport {
    width: 82.5%;
    float: right;
    margin-left: 2.5%;
  }
  .single-product .woocommerce-product-gallery .flex-control-thumbs {
    width: 15%;
    float: left;
  }
  .single-product .woocommerce-product-gallery .flex-control-thumbs li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-product .woocommerce-product-gallery--one-image .flex-control-thumbs li {
  display: none;
}
.single-product .woocommerce-product-gallery--one-image .flex-control-thumbs li:first-child {
  display: flex;
}
.single-product .woocommerce-product-details__short-description {
  display: block;
  font-size: 18px;
}
.single-product .product_title {
  margin-bottom: 25px;
}
.single-product .product-summary__title {
  font-size: 22px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #86888C;
  letter-spacing: -0.5px;
}
.single-product h1 + .product_more_info {
  margin-top: 40px;
}
.single-product .product_more_info {
  margin-bottom: 25px;
}
.single-product .product-call-us {
  font-size: 22px;
  color: #86888C;
  display: block;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.single-product .product-call-us p:last-child {
  margin-bottom: 0;
}
.single-product .product-buttons {
  float: left;
  *zoom: 1;
}
.single-product .product-buttons:before, .single-product .product-buttons:after {
  content: "";
  display: table;
}
.single-product .product-buttons:after {
  clear: both;
}
.single-product .product-buttons .button {
  clear: both;
  float: left;
}
.single-product .product-buttons .button:first-child {
  display: none;
}
.single-product .product_share {
  float: left;
  margin-left: 30px;
}
.single-product .wc-tabs-wrapper {
  margin: 50px 0;
  *zoom: 1;
  position: relative;
}
.single-product .wc-tabs-wrapper:before, .single-product .wc-tabs-wrapper:after {
  content: "";
  display: table;
}
.single-product .wc-tabs-wrapper:after {
  clear: both;
}
.single-product .wc-tabs-wrapper .wc-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
  border-bottom: 1px solid #d2d2d2;
  flex-wrap: wrap;
}
.single-product .wc-tabs-wrapper .wc-tabs li {
  position: relative;
  text-align: center;
}
.single-product .wc-tabs-wrapper .wc-tabs li.active {
  border-left: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
  border-top: 1px solid #D5D5D5;
}
.single-product .wc-tabs-wrapper .wc-tabs li.active:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: white;
}
.single-product .wc-tabs-wrapper .wc-tabs li.active a {
  color: #191919;
}
.single-product .wc-tabs-wrapper .wc-tabs li a {
  font: normal 18px/1 "libre_caslon_textregular", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 40px 20px 30px;
  color: #191919;
}
.single-product .wc-tabs-wrapper .wc-tabs li a:hover, .single-product .wc-tabs-wrapper .wc-tabs li a:active, .single-product .wc-tabs-wrapper .wc-tabs li a:focus {
  color: #3C3C3B !important;
}
@media (max-width: 1023px) {
  .single-product .wc-tabs-wrapper .wc-tabs li a {
    padding: 20px 20px 20px 20px;
    font-size: 16px;
  }
}
.single-product .wc-tabs-wrapper .wc-tabs .wc-tab {
  margin: 30px 15px;
}
.single-product .dimensions {
  position: relative;
  *zoom: 1;
  margin: 20px 40px 40px;
}
.single-product .dimensions:before, .single-product .dimensions:after {
  content: "";
  display: table;
}
.single-product .dimensions:after {
  clear: both;
}
.single-product .dimensions ul {
  list-style: none;
  margin: 0;
  padding: 0;
  *zoom: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.single-product .dimensions ul:before, .single-product .dimensions ul:after {
  content: "";
  display: table;
}
.single-product .dimensions ul:after {
  clear: both;
}
.single-product .dimensions ul li {
  display: block;
  border-right: 1px solid #ccc;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 60px;
}
.single-product .dimensions ul li:last-child {
  border-right: 0;
}
.single-product .dimensions ul li.no-icon {
  margin-bottom: 0;
}
.single-product .dimensions ul li span,
.single-product .dimensions ul li img {
  display: block;
  margin: auto;
}
.single-product .dimensions ul li img {
  margin-bottom: 10px;
}
.single-product .dimensions ul li span {
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: bold;
  text-transform: uppercase;
  color: #86888C;
}
.single-product .wc-tab {
  outline: none;
  border: 1px solid #D5D5D5;
  margin-top: -1px;
  padding-top: 30px;
}
.single-product .wc-tab:hover, .single-product .wc-tab:active, .single-product .wc-tab:focus {
  outline: none;
}
.single-product .wc-tab .swatchs {
  position: relative;
  margin: 20px 40px 40px;
  display: flex;
  flex-wrap: wrap;
}
.single-product .wc-tab .swatchs .swatch {
  margin: 0 20px;
}
.single-product .wc-tab .swatchs .swatch:not(.swatch-image-placeholder) {
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-top: 56px;
  min-width: 56px;
  cursor: pointer;
}
.single-product .wc-tab .swatchs .swatch:not(.swatch-image-placeholder) img {
  display: block;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.3s ease all;
  margin: 0 auto 10px;
}
.single-product .wc-tab .swatchs .swatch:not(.swatch-image-placeholder).active img {
  transform: scale(4);
  z-index: 10;
}
.single-product .wc-tab .swatchs .swatch-image-placeholder {
  font-weight: bold;
}
.single-product .wc-tab .swatchs .swatch-image-placeholder img {
  display: none;
}
.single-product .wc-tab .swatch-handles .swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.single-product .wc-tab .swatch-handles .swatch img {
  display: block;
  width: auto;
  height: auto;
}
.single-product .social-sharing {
  border: 0;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.single-product .social-sharing .shackletons-social-title {
  display: none;
}
.single-product .social-sharing .shackletons-social a {
  width: 22px;
  height: 40px;
  font-size: 22px;
  color: #d1d1d1 !important;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -khtml-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.single-product .social-sharing .shackletons-social a:first-child {
  margin-left: 0;
}
.single-product .social-sharing .shackletons-social a:hover, .single-product .social-sharing .shackletons-social a:active, .single-product .social-sharing .shackletons-social a:focus {
  color: #3C3C3B !important;
}
.single-product .variations {
  margin-bottom: 15px;
}
.single-product .variations td {
  display: block;
  box-sizing: border-box;
  clear: both;
}
.single-product .variations .label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.single-product .variations .value {
  font-size: 18px;
}
.single-product .variations .tawcvs-swatches {
  padding: 0;
  margin-bottom: 10px;
}
.single-product .variations .tawcvs-swatches .swatch {
  display: block;
  margin-bottom: 20px;
  border: 0;
  box-shadow: none;
}
.single-product .variations .tawcvs-swatches .swatch:last-child {
  margin-bottom: 0;
}
.single-product .variations .tawcvs-swatches .swatch.selected {
  border: 0;
  box-shadow: none;
}
.single-product .variations .tawcvs-swatches .swatch.selected.swatch-image img {
  border: 2px solid #675F5D;
}
.single-product .variations .tawcvs-swatches .swatch-image {
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 1;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.single-product .variations .tawcvs-swatches .swatch-image img {
  width: 56px;
  height: 56px;
  margin-right: 15px;
  transition: all 0.3s;
  border: 2px solid #ffffff;
  display: block;
  overflow: hidden;
}
.single-product .variations .reset_variations {
  display: none !important;
}

@media (max-width: 639px) {
  .single-product .wc-tabs-wrapper {
    border: 1px solid #D5D5D5;
  }
  .single-product .wc-tabs-wrapper .wc-tabs {
    border-bottom: none;
  }
  .single-product .wc-tabs-wrapper .wc-tabs li {
    width: 100%;
  }
  .single-product .wc-tabs-wrapper .wc-tabs li.active {
    border: none;
    background-color: #f0f0f0;
  }
  .single-product .wc-tabs-wrapper .wc-tab {
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .single-product .dimensions ul li {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .single-product .woocommerce-product-gallery {
    width: 60%;
  }
  .single-product .entry-summary {
    margin-left: 2%;
    width: 38%;
  }
}
@media (max-width: 1023px) {
  .single-product .woocommerce-product-gallery {
    width: 100%;
  }
  .single-product .entry-summary {
    margin-left: 0%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .woocommerce-content {
    margin-bottom: 40px;
  }
  .single-product .product_share {
    margin-left: 0;
  }
}
@media (max-width: 479px) {
  .single-product .product_more_info .product-buttons .button {
    padding: 10px;
  }
}
/*
  Archive page
*/
.woocommerce-pagination {
  clear: both;
  text-align: center;
}
.woocommerce-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  border: 1px solid #e5e5e5;
}
.woocommerce-pagination ul li {
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  background-color: white;
  border-right: 1px solid #e5e5e5;
  text-align: center;
  line-height: 32px;
  color: #191919;
  font-size: 16px;
  font-weight: 400;
}
.woocommerce-pagination ul li a {
  color: #191919 !important;
  display: block;
  width: 32px;
  height: 32px;
}
.woocommerce-pagination ul li span.current {
  color: #aaa !important;
}
.woocommerce-pagination ul li:last-child {
  border-right: 0;
}

.main-content ul {
  list-style-position: inside;
}

.product-cat-content {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.product-cat-content p:last-child {
  margin-bottom: 0;
}
.product-cat-content p img {
  display: block;
}

.term-upholstered-chairs .cat-image img,
.term-22 .cat-image img {
  max-width: 100%;
  height: auto;
}

.cat-image {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}

.related.products {
  clear: both;
}
.related.products .title {
  font: 300 52px/0.9 "Montserrat", sans-serif;
  letter-spacing: -5px;
  text-transform: uppercase;
  color: #86888C;
}
.related.products .product-title {
  font-family: "libre_caslon_textregular", serif;
  letter-spacing: 1.5px;
}

.woocommerce-product-search-container {
  width: 100%;
}
.woocommerce-product-search-container .woocommerce-product-search {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/*# sourceMappingURL=main.css.map */
