/*
Theme Name: MintCake Flexible
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mintcake-flexible
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

MintCake Flexible is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}
p {
  margin-bottom: 0.5em;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
body {
  background: #fff; /* Fallback for when there is no custom background color defined. */
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  display: block;
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}
figure {
  margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #000;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 3px;
  width: 100%;
  font-family: inherit;
  padding: 10px;
}

select {
  border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
textarea {
  width: 100%;
  height: 191px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}
a:visited {
  color: purple;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  color: #fff;
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 3.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation a:visited {
  color: #fff;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul ul li {
  background-color: #fff;
}
.main-navigation li:hover > a,
.main-navigation li.focus > a {
}
.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}
.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
    justify-content: flex-end;
    text-align: right;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
-------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}

/*=======================
	WEBFLOW RESPONSIVE
======================*/

.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  position: relative;
  padding: 0px 20px;
}
.w-container:before,
.w-container:after {
  content: " ";
  display: table;
}
.w-container:after {
  clear: both;
}
.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.w-row:before,
.w-row:after {
  content: " ";
  display: table;
}
.w-row:after {
  clear: both;
}
.w-row .w-row {
}
.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
/*.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}*/
.w-container .w-col .w-row {
}
.w-col-1 {
  width: 8.33333333%;
}
.w-col-2 {
  width: 16.66666667%;
}
.w-col-3 {
  width: 25%;
}
.w-col-4 {
  width: 33.33333333%;
}
.w-col-5 {
  width: 41.66666667%;
}
.w-col-6 {
  width: 50%;
}
.w-col-7 {
  width: 58.33333333%;
}
.w-col-8 {
  width: 66.66666667%;
}
.w-col-9 {
  width: 100%;
  /* border-top: solid; */
  /* border-bottom: solid; */
}
.w-col-10 {
  width: 83.33333333%;
}
.w-col-11 {
  width: 91.66666667%;
}
.w-col-12 {
  width: 100%;
}
.w-col-push-1 {
  left: 8.33333333%;
}
.w-col-push-2 {
  left: 16.66666667%;
}
.w-col-push-3 {
  left: 25%;
}
.w-col-push-4 {
  left: 33.33333333%;
}
.w-col-push-5 {
  left: 41.66666667%;
}
.w-col-push-6 {
  left: 50%;
}
.w-col-push-7 {
  left: 58.33333333%;
}
.w-col-push-8 {
  left: 66.66666667%;
}
.w-col-push-9 {
  left: 75%;
}
.w-col-push-10 {
  left: 83.33333333%;
}
.w-col-push-11 {
  left: 91.66666667%;
}
.w-col-pull-1 {
  right: 8.33333333%;
}
.w-col-pull-2 {
  right: 16.66666667%;
}
.w-col-pull-3 {
  right: 25%;
}
.w-col-pull-4 {
  right: 33.33333333%;
}
.w-col-pull-5 {
  right: 41.66666667%;
}
.w-col-pull-6 {
  right: 50%;
}
.w-col-pull-7 {
  right: 58.33333333%;
}
.w-col-pull-8 {
  right: 66.66666667%;
}
.w-col-pull-9 {
  right: 75%;
}
.w-col-pull-10 {
  right: 83.33333333%;
}
.w-col-pull-11 {
  right: 91.66666667%;
}
.w-col-offset-1 {
  margin-left: 8.33333333%;
}
.w-col-offset-2 {
  margin-left: 16.66666667%;
}
.w-col-offset-3 {
  margin-left: 25%;
}
.w-col-offset-4 {
  margin-left: 33.33333333%;
}
.w-col-offset-5 {
  margin-left: 41.66666667%;
}
.w-col-offset-6 {
  margin-left: 50%;
}
.w-col-offset-7 {
  margin-left: 58.33333333%;
}
.w-col-offset-8 {
  margin-left: 66.66666667%;
}
.w-col-offset-9 {
  margin-left: 75%;
}
.w-col-offset-10 {
  margin-left: 83.33333333%;
}
.w-col-offset-11 {
  margin-left: 91.66666667%;
}
.w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .w-container {
    max-width: 960px;
    padding: 0 20px;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: none !important;
  }
  .w-col-medium-1 {
    width: 8.33333333%;
  }
  .w-col-medium-2 {
    width: 16.66666667%;
  }
  .w-col-medium-3 {
    width: 25%;
  }
  .w-col-medium-4 {
    width: 33.33333333%;
  }
  .w-col-medium-5 {
    width: 41.66666667%;
  }
  .w-col-medium-6 {
    width: 50%;
  }
  .w-col-medium-7 {
    width: 58.33333333%;
  }
  .w-col-medium-8 {
    width: 66.66666667%;
  }
  .w-col-medium-9 {
    width: 75%;
  }
  .w-col-medium-10 {
    width: 83.33333333%;
  }
  .w-col-medium-11 {
    width: 91.66666667%;
  }
  .w-col-medium-12 {
    width: 100%;
  }
  .w-col-medium-push-1 {
    left: 8.33333333%;
  }
  .w-col-medium-push-2 {
    left: 16.66666667%;
  }
  .w-col-medium-push-3 {
    left: 25%;
  }
  .w-col-medium-push-4 {
    left: 33.33333333%;
  }
  .w-col-medium-push-5 {
    left: 41.66666667%;
  }
  .w-col-medium-push-6 {
    left: 50%;
  }
  .w-col-medium-push-7 {
    left: 58.33333333%;
  }
  .w-col-medium-push-8 {
    left: 66.66666667%;
  }
  .w-col-medium-push-9 {
    left: 75%;
  }
  .w-col-medium-push-10 {
    left: 83.33333333%;
  }
  .w-col-medium-push-11 {
    left: 91.66666667%;
  }
  .w-col-medium-pull-1 {
    right: 8.33333333%;
  }
  .w-col-medium-pull-2 {
    right: 16.66666667%;
  }
  .w-col-medium-pull-3 {
    right: 25%;
  }
  .w-col-medium-pull-4 {
    right: 33.33333333%;
  }
  .w-col-medium-pull-5 {
    right: 41.66666667%;
  }
  .w-col-medium-pull-6 {
    right: 50%;
  }
  .w-col-medium-pull-7 {
    right: 58.33333333%;
  }
  .w-col-medium-pull-8 {
    right: 66.66666667%;
  }
  .w-col-medium-pull-9 {
    right: 75%;
  }
  .w-col-medium-pull-10 {
    right: 83.33333333%;
  }
  .w-col-medium-pull-11 {
    right: 91.66666667%;
  }
  .w-col-medium-offset-1 {
    margin-left: 8.33333333%;
  }
  .w-col-medium-offset-2 {
    margin-left: 16.66666667%;
  }
  .w-col-medium-offset-3 {
    margin-left: 25%;
  }
  .w-col-medium-offset-4 {
    margin-left: 33.33333333%;
  }
  .w-col-medium-offset-5 {
    margin-left: 41.66666667%;
  }
  .w-col-medium-offset-6 {
    margin-left: 50%;
  }
  .w-col-medium-offset-7 {
    margin-left: 58.33333333%;
  }
  .w-col-medium-offset-8 {
    margin-left: 66.66666667%;
  }
  .w-col-medium-offset-9 {
    margin-left: 75%;
  }
  .w-col-medium-offset-10 {
    margin-left: 83.33333333%;
  }
  .w-col-medium-offset-11 {
    margin-left: 91.66666667%;
  }
  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 768px) {
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: none !important;
  }
  .w-row,
  .w-container .w-row {
  }
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .w-col-small-1 {
    width: 8.33333333%;
  }
  .w-col-small-2 {
    width: 16.66666667%;
  }
  .w-col-small-3 {
    width: 25%;
  }
  .w-col-small-4 {
    width: 33.33333333%;
  }
  .w-col-small-5 {
    width: 41.66666667%;
  }
  .w-col-small-6 {
    width: 50%;
  }
  .w-col-small-7 {
    width: 58.33333333%;
  }
  .w-col-small-8 {
    width: 66.66666667%;
  }
  .w-col-small-9 {
    width: 75%;
  }
  .w-col-small-10 {
    width: 83.33333333%;
  }
  .w-col-small-11 {
    width: 91.66666667%;
  }
  .w-col-small-12 {
    width: 100%;
  }
  .w-col-small-push-1 {
    left: 8.33333333%;
  }
  .w-col-small-push-2 {
    left: 16.66666667%;
  }
  .w-col-small-push-3 {
    left: 25%;
  }
  .w-col-small-push-4 {
    left: 33.33333333%;
  }
  .w-col-small-push-5 {
    left: 41.66666667%;
  }
  .w-col-small-push-6 {
    left: 50%;
  }
  .w-col-small-push-7 {
    left: 58.33333333%;
  }
  .w-col-small-push-8 {
    left: 66.66666667%;
  }
  .w-col-small-push-9 {
    left: 75%;
  }
  .w-col-small-push-10 {
    left: 83.33333333%;
  }
  .w-col-small-push-11 {
    left: 91.66666667%;
  }
  .w-col-small-pull-1 {
    right: 8.33333333%;
  }
  .w-col-small-pull-2 {
    right: 16.66666667%;
  }
  .w-col-small-pull-3 {
    right: 25%;
  }
  .w-col-small-pull-4 {
    right: 33.33333333%;
  }
  .w-col-small-pull-5 {
    right: 41.66666667%;
  }
  .w-col-small-pull-6 {
    right: 50%;
  }
  .w-col-small-pull-7 {
    right: 58.33333333%;
  }
  .w-col-small-pull-8 {
    right: 66.66666667%;
  }
  .w-col-small-pull-9 {
    right: 75%;
  }
  .w-col-small-pull-10 {
    right: 83.33333333%;
  }
  .w-col-small-pull-11 {
    right: 91.66666667%;
  }
  .w-col-small-offset-1 {
    margin-left: 8.33333333%;
  }
  .w-col-small-offset-2 {
    margin-left: 16.66666667%;
  }
  .w-col-small-offset-3 {
    margin-left: 25%;
  }
  .w-col-small-offset-4 {
    margin-left: 33.33333333%;
  }
  .w-col-small-offset-5 {
    margin-left: 41.66666667%;
  }
  .w-col-small-offset-6 {
    margin-left: 50%;
  }
  .w-col-small-offset-7 {
    margin-left: 58.33333333%;
  }
  .w-col-small-offset-8 {
    margin-left: 66.66666667%;
  }
  .w-col-small-offset-9 {
    margin-left: 75%;
  }
  .w-col-small-offset-10 {
    margin-left: 83.33333333%;
  }
  .w-col-small-offset-11 {
    margin-left: 91.66666667%;
  }
}
@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
    padding: 0 20px;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: inherit !important;
  }
  .w-hidden-tiny {
    display: none !important;
  }
  .w-col {
    width: 100%;
  }
  .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .w-col-tiny-3 {
    width: 25%;
  }
  .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .w-col-tiny-6 {
    width: 50%;
  }
  .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .w-col-tiny-9 {
    width: 75%;
  }
  .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .w-col-tiny-12 {
    width: 100%;
  }
  .w-col-tiny-push-1 {
    left: 8.33333333%;
  }
  .w-col-tiny-push-2 {
    left: 16.66666667%;
  }
  .w-col-tiny-push-3 {
    left: 25%;
  }
  .w-col-tiny-push-4 {
    left: 33.33333333%;
  }
  .w-col-tiny-push-5 {
    left: 41.66666667%;
  }
  .w-col-tiny-push-6 {
    left: 50%;
  }
  .w-col-tiny-push-7 {
    left: 58.33333333%;
  }
  .w-col-tiny-push-8 {
    left: 66.66666667%;
  }
  .w-col-tiny-push-9 {
    left: 75%;
  }
  .w-col-tiny-push-10 {
    left: 83.33333333%;
  }
  .w-col-tiny-push-11 {
    left: 91.66666667%;
  }
  .w-col-tiny-pull-1 {
    right: 8.33333333%;
  }
  .w-col-tiny-pull-2 {
    right: 16.66666667%;
  }
  .w-col-tiny-pull-3 {
    right: 25%;
  }
  .w-col-tiny-pull-4 {
    right: 33.33333333%;
  }
  .w-col-tiny-pull-5 {
    right: 41.66666667%;
  }
  .w-col-tiny-pull-6 {
    right: 50%;
  }
  .w-col-tiny-pull-7 {
    right: 58.33333333%;
  }
  .w-col-tiny-pull-8 {
    right: 66.66666667%;
  }
  .w-col-tiny-pull-9 {
    right: 75%;
  }
  .w-col-tiny-pull-10 {
    right: 83.33333333%;
  }
  .w-col-tiny-pull-11 {
    right: 91.66666667%;
  }
  .w-col-tiny-offset-1 {
    margin-left: 8.33333333%;
  }
  .w-col-tiny-offset-2 {
    margin-left: 16.66666667%;
  }
  .w-col-tiny-offset-3 {
    margin-left: 25%;
  }
  .w-col-tiny-offset-4 {
    margin-left: 33.33333333%;
  }
  .w-col-tiny-offset-5 {
    margin-left: 41.66666667%;
  }
  .w-col-tiny-offset-6 {
    margin-left: 50%;
  }
  .w-col-tiny-offset-7 {
    margin-left: 58.33333333%;
  }
  .w-col-tiny-offset-8 {
    margin-left: 66.66666667%;
  }
  .w-col-tiny-offset-9 {
    margin-left: 75%;
  }
  .w-col-tiny-offset-10 {
    margin-left: 83.33333333%;
  }
  .w-col-tiny-offset-11 {
    margin-left: 91.66666667%;
  }
}

/*=====================================================
MAIN CUSTOM STYLES
=====================================================*/

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  font-weight: 300;
  color: #324359;
  font-size: 16px;
}

p:last-child {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  color: #442b4b;
}
a:visited {
  color: #442b4b;
}
a:focus {
  color: #442b4b;
}
a:hover {
  color: #a195a5;
}
a:active {
  color: #442b4b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  line-height: 1.25;

  margin-bottom: 1rem;
  font-weight: normal;
  margin-top: 1.5em;
}

h1:first-child,
h2:first-child,
h3:first-child {
  margin-top: 0px;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
}
h1 {
  color: #000000;
  font-size: 2.25rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}
h2 {
  color: #000000;
  font-size: 1.75rem;
  line-height: 1;
}
h2 span {
  color: #888;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: 1.125rem;
  color: #000;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

strong {
  font-weight: bold !important;
}
em {
  font-style: italic;
}

/*FONT*/
p {
  line-height: 1.6rem;
}
p:first-child {
  margin-top: 0;
}

/*=====================================================
GENERAL
=====================================================*/
/* @font-face {
  font-family: 'Effra';
  src: url('fonts/Effra-Regular.eot');
  src: url('fonts/Effra-Regular.eot?#iefix') format('embedded-opentype'),
      url('fonts/Effra-Regular.woff2') format('woff2'),
      url('fonts/Effra-Regular.woff') format('woff'),
      url('fonts/Effra-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
} */
/* HEADER */
header {
  background-color: #fff;
}
#main-header {
  padding: 1rem 0rem;
  float: right;
  display: inline;
}
.navbar li {
  padding: 1rem 1rem;
}

@media only screen and (max-width: 991px) {
  #main-header {
    position: fixed;
  }
}

@media only screen and (max-width: 412px) {
  .logo img {
    width: 50%;
  }
}

/* NAV BAR */
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
  color: #fff;
}

.main-navigation li a:active,
.main-navigation li a:focus {
  color: #67b345;
}

/* FOOTER */

footer {
  padding-top: 2rem;
  background-color: #000000;
  color: #fff;
}

footer h3 {
  color: #fff;
}

footer a {
  color: #fff;
}
footer a:visited {
  color: #fff;
}
footer section:first-child {
  padding: 0;
  background-color: transparent;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

footer .cta,
input[type="submit"],
header .cta_container a {
  background-color: #1abc9c;
}
footer .social_icons a {
  font-size: 2rem;
  padding: 5px;
}
footer .social_icons a:hover {
  color: #ccc;
}

/* BODY */

html {
  height: 100%;
  min-height: 100%;
}
body,
body * {
  box-sizing: border-box;
}

body {
  position: relative;
  margin-bottom: 0;
  overflow-x: hidden;
  background-color: white;
  height: 100%;
  min-height: 100%;
  margin: 0;
  width: 100%;
}
/*=====================================================
			---FLEXIBLE CONTENT STYLES--
=====================================================*/

section {
  scroll-margin-top: 120px;
}
.whitesection {
  background-color: white;
}

.greysection {
  background-color: #eaeaee;
}
.greysection h3 {
  color: #442b4b;
}

.colorsection {
  background-color: #67b345;
  color: white;
}
.colorsection h1,
.colorsection h2,
.colorsection h3,
.colorsection p,
.colorsection a,
.bluesection h1,
.bluesection h2,
.bluesection h3,
.bluesection p,
.bluesection a {
  color: white;
}

.bluesection {
  background-color: #324359;
  color: #fff;
}

.imagesection {
  min-height: 200px;
  color: #fff;
  background-size: cover !important;
  background-position: center !important;
}

.imagesection:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.imagesection .w-container {
  position: relative;
  z-index: 1;
}

.imagesection h1,
.imagesection h2 {
  color: #fff;
}

.centered {
  display: block;
  /* width: 75%; */
  margin: auto;
  text-align: center !important;
}
.centered h1,
.centered h2,
.centered h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
}
.centered h1,
.centered h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  font-size: 103px;
}

/*=====================================================
Single Column
=====================================================*/
.banner {
  display: flex;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  flex-direction: column;
  min-height: 600px;
  align-items: center;
  justify-content: center;
}
.banner h2 {
  margin-top: 1.5rem;
  font-size: 3rem;
  line-height: 4.5rem;
  color: #fff;
  font-weight: bold;
}
.banner h3.subheading {
  font-size: 1.5rem;
  font-weight: normal;
  color: #fff;
  margin: 30px;
  font-family: ff-nuvo-mono-web-pro, sans-serif;
  font-weight: 400;
}

.banner-content {
  margin: 1rem 0;
}


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

  .banner h2 {
    line-height: 2.5rem;
  }
}

/*=====================================================
Graphic Links
=====================================================*/

@media only screen and (max-width: 768px) {
  .single_solution {
    margin-bottom: 2rem;
  }
}

/*=====================================================
Feature Icons
=====================================================*/

.benefit {
  text-align: center;
}
.benefit-12 {
  padding-left: 100px;
}
.benefit i {
  font-size: 2.5rem;
  width: 60px;
  top: 3rem;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.benefit-12 i {
  top: 3.5rem;
  font-size: 3.5rem;
}
.benefit h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.benefit div {
  margin-bottom: 1rem;
}

@media only screen and (max-width: 768px) {
  .benefit {
  }
}

/*=====================================================
Image with text block
=====================================================*/
.sideimage {
  margin-top: 1rem;
}
@media only screen and (min-width: 992px) {
  .sideimage {
    margin-top: 0;
  }
}

/*=====================================================
Text Only
=====================================================*/

.ticks ul {
  list-style-type: none;
}
.ticks li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 600;
  margin: 0 5px 0 -15px;
  color: #c80019;
}

@media only screen and (max-width: 768px) {
  .txt .w-col-4 {
    margin-bottom: 2rem;
  }
}

/*=====================================================
Photo Gallery
=====================================================*/

.gallery-header {
  margin-bottom: 1rem;
}
.photo-tile img {
  padding: 0px 10px;
  margin: 0 auto;
}
.photo-gallery button.slick-next.slick-arrow {
  top: 10rem;
  right: -0.8rem;
  z-index: -999;
}
.photo-gallery button.slick-prev.slick-arrow {
  top: 10rem;
  left: -0.8rem;
  z-index: -999;
}
.photo-gallery .slick-dots {
  bottom: -50px;
}

/*=====================================================
Text With Sidebar
=====================================================*/
a.sidebar_box {
  display: block;
  margin-bottom: 1rem;
  box-shadow: 0px 12px 24px -12px rgb(45 64 74 / 34%);
  -webkit-box-shadow: 0px 12px 24px -12px rgb(45 64 74 / 34%);
  border-radius: 5px;
  overflow: hidden;
}
a.sidebar_box:last-child {
  margin-bottom: 0;
}

a.sidebar_box h3 {
  width: 100%;
  color: white;
  background-color: #324359;
  padding: 0.5rem 20px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
}

.sidebar_box_content {
  padding: 20px;
}

.greysection .sidebar_box_content {
  background-color: #fff;
}

/*=====================================================
Tabs
=====================================================*/
.responsiveTabs {
  display: block;
  margin-top: 1rem;
}
div.r-tabs .r-tabs-nav .r-tabs-anchor {
  padding: 10px 30px;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 40px;
}
div.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

div.r-tabs {
  position: relative;
  background: #f5f5f5;
  border-top: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
  border-left: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-radius: 0px;
}

div.r-tabs .r-tabs-panel {
  background-color: white;
  border-bottom: 4px solid white;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

div.r-tabs .r-tabs-nav .r-tabs-tab {
  background-color: #324359;
}

div.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  background-color: #324359;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom: 1px solid #f0f0f0;
}

div.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  background-color: #324359;
  color: #fff;
}
div.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  color: #324359;
}

/*=====================================================
Feature List
=====================================================*/
.features {
  text-align: left;
  margin: 0;
  list-style: none;
  padding-left: 0;
}

.features li {
  position: relative;
  padding-left: 2rem;
}

.features li:before {
  font-family: "fontawesome";
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  color: #324359;
}

/*=====================================================
Portfolio
=====================================================*/

.pf_title {
  text-align: center;
}
.examples {
  padding-top: 1.5rem;
}
.example_container {
  padding: 0 10px;
}
.examples .slick-dots {
  bottom: -55px;
  text-align: center;
}
.examples .slick-dots li button:before {
  color: #aaaabb;
  opacity: 0.7;
  font-size: 1rem;
  text-shadow: none;
}
.examples .slick-dots li.slick-active button:before {
  /*  content: "\f111";*/
  color: #aaaabb;
  opacity: 1;
}

/*=====================================================
Grid Section
=====================================================*/
.grid_single {
  text-align: center;
  margin-bottom: 2rem;
}
.grid_single:hover {
}
.grid_single img {
  display: block;
  height: auto;
  margin: 0 auto;
	max-width:120px;
}
/*=====================================================
Testimonials
=====================================================*/
.testimonial {
  padding: 20px 20px;
}

.testimonial p {
  margin: 0;
  margin-bottom: 1rem;
}

.clientname {
  display: inline-block;
  font-weight: bold;
  color: #324359;
  margin-top: 0;
  text-align: left;
  width: 100%;
}

.org {
  color: #4a4a4a;
}

.greysection .testimonial {
  background-color: #fff;
}

@media only screen and (max-width: 640px) {
  .testimonial {
    margin-bottom: 1rem;
  }
}

/*=====================================================
Resources
=====================================================*/

.single_resource {
  padding: 20px;
  box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 12px 24px -12px rgb(72 95 104 / 20%);
}
.whitesection .single_resource {
  background-color: #eaeaee;
  border: 1px solid #ddd;
}

.greysection .single_resource,
.colorsection .single_resource,
.bluesection .single_resource {
  background-color: #fff;
}

.cta,
input[type="submit"],
header .cta_container a {
}
.cta:visited,
input[type="submit"]:visited,
header .cta_container a:visited {
  color: white;
}
.cta:focus,
input[type="submit"]:focus,
header .cta_container a:focus {
  color: white;
}
.cta:hover,
input[type="submit"]:hover,
header .cta_container a:hover {
  /* color: white; */
}
.cta:active,
input[type="submit"]:active,
header .cta_container a:active {
  color: white;
}
.cta:hover,
input[type="submit"]:hover,
header .cta_container a:hover {
  /* background-color: #302956; */
}
@media only screen and (min-width: 768px) {
  .cta,
  input[type="submit"],
  header .cta_container a {
  }
}

input[type="submit"] {
  font-family: inherit;
  font-size: 18px;
  border-radius: 0px;
  padding: 10px 20px;
  min-width: 200px;
  background-color: #67b345;
  color: #fff;
  font-weight: 500;
}

/*=====================================================
Blog
=====================================================*/

.solutions {
}
.solution_container {
  margin-bottom: 1rem;
}

a.solution {
  display: block;
  height: 15rem;
  position: relative;
  background-color: #324359;
  overflow: hidden;
  margin-bottom: 1rem;
}

.solution_container .solution {
  margin-bottom: 0;
}
.solution h3 {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
  background-color: #324359;
  padding: 0.5rem 20px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 0;
}

.solution img {
  min-width: 100%;
  min-height: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transform-origin: 50% 0%;
  opacity: 0.5;
}

.solution:hover h3 {
  -moz-transform: translateY(5rem);
  -ms-transform: translateY(5rem);
  -webkit-transform: translateY(5rem);
  transform: translateY(5rem);
}

.solution:hover img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 1;
}

.readmore {
}

.single_sol_img {
  display: block;
  margin: auto;
  margin-bottom: 26px;
}

h3.single_sol_h3 {
}

.single_solution p {
  margin-top: 20px;
  font-size: 16px;
}

/*=====================================================
Feature Tabs
=====================================================*/
.slider-nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .slider-nav {
    display: block;
    z-index: 1;
  }
}

.slider-nav-link {
  padding: 10px;
  outline: none !important;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
}

.slider_nav_link_internal {
  text-align: center;
  background-color: #aaaabb;
  padding: 20px;
  font-weight: normal;
}

.slick-current .slider_nav_link_internal {
  background-color: #324359;
  color: white;
}
.slider-nav-link i {
  display: block;
  font-size: 1.5rem;
}
.slider-for {
}
@media only screen and (min-width: 768px) {
  .slider-for {
    /* margin-top: -3rem; */
  }
}

.feature_slide {
  padding: 3rem 20px;
}
.slideimage {
  width: 60%;
  display: block;
  margin: 1rem auto 0;
}

.slider-for .slick-prev,
.slider-for .slick-next {
  z-index: 300;
}
.slider-for .slick-prev:before,
.slider-for .slick-next:before {
  color: #324359;
  font-size: 2rem;
}
.slider-for .slick-prev {
  left: -15px;
}
.slider-for .slick-next {
  right: -5px;
}
@media only screen and (min-width: 768px) {
  .feature_slide {
    padding: 40px 60px;
  }
}

.slideimage {
  width: 60%;
  display: block;
  margin: 1rem auto 0;
}
@media only screen and (min-width: 768px) {
  .slideimage {
    width: 350px;
    margin: 0 auto;
  }
}

.slider-for .slick-prev,
.slider-for .slick-next {
  z-index: 300;
}
.slider-for .slick-prev:before,
.slider-for .slick-next:before {
  color: #324359;
  font-size: 2rem;
}
.slider-for .slick-prev {
  left: -15px;
}
.slider-for .slick-next {
  right: -5px;
}

@media only screen and (max-width: 680px) {
  .feature_title {
  }
}

/*=====================================================
Pricing/Features Table
=====================================================*/
div.matrixwrapper {
  position: relative;
}

div.matrix {
  width: 100%;
  overflow-x: scroll;
  padding-left: 200px;
  overflow-y: visible;
  padding-bottom: 1px;
  padding-top: 1rem;
}
@media only screen and (min-width: 768px) {
  div.matrix {
    overflow: auto;
  }
}

div.matrix table {
  border-collapse: collapse;
  width: 100%;
  min-width: 650px;
}

div.matrix td,
div.matrix th {
  margin: 0;
  border: 1px solid #e1e1e1;
  white-space: nowrap;
  padding: 5px 10px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1rem;
}

div.matrix th {
  font-family: "Open Sans", sans-serif;
  color: white;
  padding: 1rem 10px;
  font-size: 1.25rem;
}
div.matrix th.purple {
  background-color: #555;
  border: 1px solid #555;
}
div.matrix th.red {
  background-color: #324359;
  border: 1px solid #324359;
}
div.matrix th.green {
  background-color: salmon;
  border: 1px solid #salmon;
}

div.matrix td.purple {
  background-color: #f5f4f6;
  border: 1px solid #d9d4db;
}
div.matrix td.red {
  background-color: #f8f6fb;
  border: 1px solid #e7dbf2;
}
div.matrix td.green {
  background-color: #f8f6f4;
  border: 1px solid #e3d5d5;
}

div.matrix .headcol {
  font-family: "Open Sans", sans-serif;
  position: absolute;
  width: 200px;
  left: 0;
  top: auto;
  background-color: white;
  z-index: 10;
  text-align: left;
  font-size: 1rem;
}
div.matrix .headcol.empty {
  border-top: 1px solid white;
  border-left: 1px solid white;
}

div.matrix tr:nth-child(even) .headcol {
  background-color: #f5f5f5;
}
div.matrix .fa-times {
  color: #b7b7b7;
}
div.matrix .fa-check {
  color: #59918f;
}

@media only screen and (max-width: 680px) {
  .headcol {
    display: inline-block;
  }
}
/*=====================================================
MAP
=====================================================*/
section.googlemap {
  padding: 0;
}
.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

/*=====================================================
SAMPLE PACK
=====================================================*/

.sample-pack {
  background-color: #324359;
  overflow: hidden;
}
.sample-content h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.sample-content {
  color: #fff;
  padding: 40px;
}
.sample-image {
  position: relative;
  display: block;
}
.sample-image img {
  position: absolute;
  top: 0;
  left: -10px;
}

.sample-content a.readmore {
  background-color: #fff;
  display: inline-block;
  padding: 10px 20px;
}

@media only screen and (max-width: 780px) {
  .sample-image {
    display: none;
  }
}

/*=====================================================
General Slider
=====================================================*/

a.anchor .fa {
  color: white;
  font-size: 2em;
  margin-top: 2em;
  cursor: pointer;
}

.slider-section {
  padding: 0;
}
.gen_slider.slider {
  height: 500px;
  padding: 5rem 0;
}

.gen_slider .centered {
  margin-top: 9rem;
}
.gen_slider h1 {
  color: white;
  margin-bottom: 2rem;
  font-weight: bold;
}
.gen_slider h2 {
  color: white;
  margin: 0;
  font-weight: normal;
  font-size: 2rem;
}

.slider-section ul.slick-dots {
  bottom: 0;
}
.slider-section .slick-dots li button:before,
.slider-section .slick-dots li.slick-active button:before {
  color: white;
}
.slider-section .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slider-section button.slick-next.slick-arrow {
  right: 25px;
}
.slider-section button.slick-prev.slick-arrow {
  left: 25px;
  z-index: 50;
}

.slide_link {
  background-color: #46cfd4;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  transition: 0.5s;
  color: white;
  font-size: 1.1rem;
}
.slide_link:hover {
  color: white;
  background-color: #29b2b7;
}
.slide_link:visited {
  color: #fff;
}

.slider-content {
  margin-bottom: 1rem;
  color: white;
}
.slider-content p {
  margin-top: 1rem;
}

.slider-section .slide {
  height: 500px;
  padding: 4rem 0;
}

.slide_content h2 {
}
.slider_text {
  display: block;
  margin: 1rem 0;
}

img.slide_image {
  margin: 0 auto;
}
.message {
}
.slick-prev,
.slick-next {
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .slide_content {
    margin-right: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .slide_content {
    margin: 0 2rem;
  }
}

/*=====================================================
TABLES
=====================================================*/

.table-container table th {
  border: 1px solid #324359;
  padding: 10px;
  text-align: center;
  background-color: #324359;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.table-container table td {
  border: 1px solid #324359;
  padding: 10px;
  text-align: center;
}
.greysection .table-container table tr {
  background-color: #fff;
}

.table-container table tr:nth-child(even),
.greysectoin .table-container table tr:nth-child(even) {
  background-color: #f3f3f3;
}

/*=====================================================
FAQ
=====================================================*/
.faq-question {
  margin-bottom: 1rem;
  border-bottom: 1px solid #000;
  margin: 0 100px;
}
.faq-question .entry-content {
  display: none;
  margin: 0;
  background-color: #fff;
  padding-bottom:40px;
}

.faq-question h3 {
  background-color: #fff;
  margin: 0;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  font-size:30px;
}

.whitesection .faq-question h3,
.whitesection .faq-question .entry-content {
  background-color: #faf8f4;
  /* border-bottom: solid; */
}

.faq-question h3:after {
  content: "\f055";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  right: 0px;
  font-size:20px;
}

.faq-question h3.open:after {
  content: "\f056";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}

/*=====================================================
CONTACT FORM
=====================================================*/
/* White/Grey Background*/
.whitesection#contact input,
.whitesection#contact textarea,
.greysection#contact input,
.greysection#contact textarea {
  background-color: transparent;
  border: 2px solid #888;
  color: #888;
  padding: 0.5rem;
  font-family: "Open Sans", sans-serif;
  border-radius: 0px;
}
.whitesection#contact form p,
.greysection#contact form p {
  margin: 1rem 0;
}
.whitesection#contact textarea,
.greysection#contact textarea {
  margin-bottom: 0;
}
.whitesection#contact input.wpcf7-submit,
.greysection#contact input.wpcf7-submit {
  padding: 1rem 2rem;
  background-color: #324359;
  color: #fff;
  font-size: 1.2rem;
  border: none;
}
.whitesection#contact input.wpcf7-submit:hover,
.greysection#contact input.wpcf7-submit:hover {
  background-color: #302956;
  color: #fff;
}
.whitesection#contact span.wpcf7-form-control-wrap,
.greysection#contact span.wpcf7-form-control-wrap {
  color: #888;
}

/*Colour Background*/

@media only screen and (min-width: 768px) {
  body {
    text-align: left;
  }
}

/* SECTIONS */

section {
  position: relative;
  padding: 3rem 0;
}
section.listsection {
  padding: 72px 0 3rem;
  position: relative;
}

.w-row.overflow,
.w-container.overflow {
  overflow: visible !important;
}
/*=====================================================
MOBILE MENU
=====================================================*/

@media only screen and (max-width: 991px) {
  .main-navigation {
    display: none;
  }
}

.mobile_button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 12px;
  color: #FFF;
  font-size: 50px;
  opacity: 1;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  .mobile_button {
    display: none;
  }
}

.mobile_button.fa-close {
  color: #000;
  top: 0;
  font-size: 2rem;
  cursor: pointer;
}

header#masthead.mini-header .mobile_button {
}
#mobile_nav {
  display: none;
}
#masthead i.fa-close,
#masthead i.fa-bars {
}

@media screen and (max-width: 1024px) {
  #mobile-menu {
    margin-top: 4rem;
  }
  #mobile_nav {
    display: block;
    position: fixed;
    right: 0px;
    top: 0;
    height: 100vh;
    z-index: 20;
    -webkit-box-shadow: -5px 0px 4px -1px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: -5px 0px 4px -1px rgba(0, 0, 0, 0.47);
    box-shadow: -5px 0px 4px -1px rgba(0, 0, 0, 0.47);
    width: 250px;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -o-transition: 1s ease;
    z-index: 9999999;
    background-color: #000;
    padding-top: 4rem;
    width: 100%;
  }

  #mobile_nav.notvisible {
    transform: translateX(110%);
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    right: -110%px;
  }
  div#cart-head {
    display: inline-block;
    background-color: #f5f5f5;
  }

  .mobile_icons {
    padding-left: 10px;
    padding-top: 3rem;
    display: block;
    background-color: #f5f5f5;
  }

  .mobile_icons i {
    font-size: 1.25rem;
    padding: 10px;
    cursor: pointer;
  }

  .mobile_icons,
  .searchicon {
    color: #00a0df;
  }
  #mobile_nav .search_form {
    display: block;
    padding: 0.5rem 20px;
    background-color: #f5f5f5;
    margin-right: 0;
    position: relative;
    height: auto;
    display: none;
  }

  #mobile_nav .search_form .search_field {
    width: 100%;
  }
  #mobile_nav form input.searchicon {
    margin-right: 15px;
    margin-top: 0.25rem;
  }

  #mobile_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
  }

  #mobile_nav ul li a {
    color: #FFF;
    padding: 1rem 20px;
    display: block;
    text-align: center;
    font-size: 2rem;
    font-family: "headline-gothic-atf-rough-n1", sans-serif;
    display: inline-block;
    width: 100%;
  }

  #mobile_nav #mobile_products_links {
    position: absolute;
    top: 3.5rem;
    padding-top: 0.5rem;
    font-size: 1rem;
    opacity: 0.85;
    padding-bottom: 3rem;
  }
  #mobile_nav #mobile_products_links li a {
    color: white;
  }
  #masthead i.fa-bars {
    display: block;
    position: relative;
    cursor: pointer;
    color: #000;
    opacity: 1;
    top: 0;
    padding: 20px;
    right: 0;
  }

  #masthead i.fa-bars.notvisible {
  }
  /* SubMenu responsive*/
  #mobile-menu li,
  #mobile_nav #menu-primary li {
  }
  #mobile-menu li a,
  #mobile_nav #menu-primary li a {
    padding: 10px 15px;
    line-height: 2rem;
  }
  #mobile-menu li.menu-item-has-children,
  #mobile_nav #menu-primary li.menu-item-has-children {
    position: relative;
    transition: 0.2s;
  }
  #mobile-menu li.menu-item-has-children:after,
  #mobile_nav #menu-primary li.menu-item-has-children:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f077";
    display: block;
    position: absolute;
    right: 0px;
    top: 5px;
    padding: 10px 10px 10px 40px;
    cursor: pointer;
    transition: 0.3s;
    color: #d61a23;
    font-size: 1rem;
    display: block;
    z-index: 999999;
  }
  #mobile-menu li.active-parent:after,
  #mobile_nav #menu-primary li.active-parent:after {
    transform: translateX(10px) rotate(180deg);
    -webkit-transform: translateX(10px) rotate(180deg);
    -ms-transform: translateX(10px) rotate(180deg);
    -moz-transform: translateX(10px) rotate(180deg);
    -o-transform: translateX(10px) rotate(180deg);
    color: #fff;
  }
  #mobile-menu li.active-parent,
  #mobile_nav #menu-primary li.active-parent {
    background-color: #d61a23;
  }
  #mobile-menu li.active-parent a,
  #mobile_nav #menu-primary li.active-parent a {
    color: #fff;
  }

  #menu-mobile-menu ul.sub-menu,
  #mobile_nav #menu-primary ul.sub-menu {
    background-color: #292929;
    padding: 0;
  }
  #mobile-menu ul.sub-menu li,
  #mobile_nav #menu-primary ul.sub-menu li {
    overflow: hidden;
    display: none;
    transition: 0.3s;
    background-color: transparent;
  }
  #mobile-menu ul.sub-menu li a,
  #mobile_nav #menu-primary ul.sub-menu li a {
    color: #fff;
    font-size: 1rem;
    text-transform: lowercase;
    padding: 5px 15px;
  }
  #mobile-menu ul.sub-menu.active li,
  #mobile_nav #menu-primary ul.sub-menu.active li {
    display: block;
  }
}

/* BLOG LISTING PAGE */

.blog-box {
  background-color: #fff;
}
h2.entry-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.entry-meta {
  margin-bottom: 1em;
}
a.blog-link {
  background-color: #663300;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  margin-top: 1rem;
}
a.blog-link:hover {
  background-color: #663300;
}
.blog-teaser {
  padding: 20px;
  margin-bottom: 22px;
}
#archives-3 ul {
  margin-left: 1rem;
  padding: 0;
  list-style-type: none;
}
.widget-area section {
  padding-bottom: 2rem;
}
.post-sidebar {
}
.blog-header h1 {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-top: 1.5rem;
  text-align: center !important;
  color: #fff;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.9);
}

/* Blog SideBar */

.widget ul {
  list-style: none;
  margin-left: 0;
  padding-left: 1rem;
}

section.widget {
  padding: 1rem;
}

/* SECTION OVERRIDES
Add these classes to the 'Section Class Override ID' to see the effects!
This is good for duplicate content blocks with the same colour background to reduce spacing.
*/

section.removepadding {
  padding-top: 0;
}

/* Generic*/

body {
  font-family: "ff-nuvo-mono-web-pro, sans-serif", sans-serif;
  font-weight: 400;
  font-size: 15px;
}

section {
  padding: 3rem 0;
}

h1,
h2,
h3 {
  font-size: 30px;
  margin: 0;
  margin-bottom: 30px;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
}

h3 {
  font-weight: 400;
  margin: 0;
  margin-bottom: 2rem;
  font-size: 28px;
  line-height: 33.6px;
  letter-spacing: -0.5px;
}

/* Generic End */

/* Header Start */

header {
  position: fixed;
  width: 100%;
  z-index: 99;
  color: #fff;
  transition: 0.3s;
  top: 0px;
}

header a,
header a:visited {
  color: #12122d;
  font-size: 20px;
}
.top-header .w-container,
.main-header .w-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  letter-spacing: 0.05px;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
}
/* Top Header */

.top-header {
  padding: 10px 0;
  background-color: #1f2a3c;
}

.header-contact {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.contact {
  font-size: 14px;
  margin-right: 30px;
}

.contact-heading {
  text-transform: uppercase;
  font-weight: 500;
}

.contact a {
  color: #fff;
}

header .social_icons {
  width: 63%;
  text-align: right;
}
header .social_icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 14px;
}
/* Main Header*/

.main-header {
  padding: 20px 0;
  /* border-bottom: 10px solid #67b345; */
  background-color: #faf8f4;
  transition: 0.2s;
}

.logo img,
.logo svg {
  width: 250px;
  height: auto;
  transition: 0.3s;
}

.main-navigation a {
  font-size: 17px;
  padding: 18px;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
}

.main-navigation li:after {
  content: "|";
  color: #67b345;
  position: absolute;
  right: 0;
  top: 28%;
}

.main-navigation a:hover {
  color: #67b345;
}

.main-navigation {
  width: 79%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-navigation li.menu-item-has-children > a:after {
  content: "\f107";
  font-family: Fontawesome;
  margin-left: 10px;
  font-size: 12px;
}
.main-navigation li ul.sub-menu {
  top: 70px;
  left: 20px;
  display: flex;
  flex-direction: column;
  display: none;
  transition: 0.2s;
}
.main-navigation li:hover ul.sub-menu {
  top: 61px;
  left: 20px;
  display: flex;
  flex-direction: column;
}

.main-navigation ul.sub-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 10px 15px;
  border-color: transparent transparent #fff transparent;
  transform: rotate(0deg);
}

.main-navigation ul.sub-menu li a {
  color: navy;
  text-align: left;
  border-bottom: 1px solid #ddd;
  width: 200px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 14px;
}
.main-navigation ul.sub-menu li a:hover {
  background-color: #eaeaee;
}

.search-toggle {
  padding-left: 17px;
  font-weight: lighter;
  cursor: pointer;
  font-size: 1rem;
}
.search-toggle:hover {
  color: #67b345;
}

.search-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(43, 43, 84, 0.9);
  padding: 5rem;
}

.search-close {
  color: #fff;
  position: absolute;
  font-size: 2rem;
  top: 5rem;
  right: 6rem;
  line-height: 1;
  cursor: pointer;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.aws-container {
  width: 60%;
  font-size: 2rem;
}
.aws-container .aws-show-clear .aws-search-field {
  font-size: 2rem;
  background-color: transparent;
  border: none;
  color: #fff;
  border-bottom: 4px solid salmon;
  padding: 20px;
  font-family: inherit;
  text-align: center;
  height: auto;
}

.aws_result_title {
  font-size: 18px;
  color: #000 !important;
}
.aws_result_excerpt,
.aws_result_price {
  font-size: 16px;
}
.aws-search-result .aws_no_result {
  font-size: 1.5rem;
}
.aws-container .aws-search-form .aws-search-clear span {
  color: #fff;
}

.aws-container .aws-show-clear .aws-search-field::placeholder {
  color: #fff;
}

/* Mini Header */
header.mini-header {
  box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
}

header.mini-header .top-header {
}

header.mini-header .logo img,
header.mini-header .logo svg {
}

/* Header End */

/* Footer Start */

footer {
  /* border-top: 10px solid #67b345; */
  padding:0;
}

.site-info {
  background-color: #324359;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  font-size: 14px;
}
.site-info a,
.site-info a:visited {
  color: rgba(255, 255, 255, 0.6);
}

.site-info a:hover {
  color: rgba(255, 255, 255, 1);
}

/* Footer End */

/* Content */

#content {
  padding-top: 162px;
}
.slick-slider{
	height:100vh;
}
.slider-section .slide {
  height: 100vh;
  padding: 0;
  background-color: #faf8f4;
}

.slider-section .slide .w-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.slide_content {
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  /* background-color: #faf8f4; */
}
.slide_content h2 {
  /* margin-top: 23px; */
  color: #000000;
  font-size: 100px;
  font-weight: 300;
  margin-bottom: 1rem;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  margin-top:6rem;
}
.slide_content img{
width:230px;
height:356;
  max-width: 230px;
}
.slide-overlay {
  background-color: rgb(0 0 0 / 25%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.message {
  color: #000;
  /* margin-top: 25px; */
  font-size: 20px;
  font-weight: 500;
  line-height: 42px;
  max-width: 700px;
  text-align: center;
  font-family: ff-nuvo-mono-web-pro, sans-serif;
  font-weight: 400;
}

.slide_content a.readmore {
  margin-top: 42px;
  display: inline-block;
  border: 1px solid #fff;
  padding: 7px 44px;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background-color: #67b345;
  border: none;
  font-size: 24px;
}
.slide_content a.readmore:hover {
  background-color: #fff;
  color: #324359;
}
.slick-current .slide-content {
  transform: translateY(0);
}

.slider-section {
  /* border-bottom: 10px solid #67b345; */
}

a.readmore {
  padding: 7px 28px;
  border: 1px solid #324359;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  transition: 0.2s;
}

a.readmore:hover {
  background-color: #324359;
  color: #fff;
}

.sideimage {
  text-align: right;
}
.feature_slide h3 {
  margin-bottom: 18px;
  font-size: 28px;
}
.feature_slide h4 {
  margin: 0;
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.feature_slide a.readmore {
  border-color: #67b345;
  color: #67b345;
  padding: 7px 44px;
}

.full_cta h2 {
  font-size: 34px;
  font-weight: 300;
  margin: 0;
}

.full_cta a {
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  max-width: 600px;
  font-size: 28px;
  padding: 9px 94px;
  font-weight: 400;
  transition: 0.2s;
}
.full_cta a:hover {
  background-color: #fff;
  color: #67b345;
}

.full_cta p a,
.full_cta h2 a {
  padding: 0;
  border: none;
  display: inline-block;
  max-width: none;
  margin: 0;
  font-size: 34px;
  text-decoration: underline;
  line-height: 1;
}

.centered h3 {
  margin-bottom: 50px;
}

.graphiclinks h1,
.graphiclinks h2 {
  text-align: center;
  font-weight: 400;
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h3.single_sol_h3 {
  color: #324359;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 28px;
}

h3.single_sol_h4 {
  color: #324359;
  font-size: 16px;
}

.graphics-slide {
  padding: 10px 24px;
}

.graphics-slide a.readmore {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.imagesection .benefit {
  background-color: #fff;
  border: 1px solid #fff;
  margin-bottom: 28px;
  padding: 41px 34px;
  color: #12122d;
}
.imagesection.feat-icon .w-col-4 {
  padding: 0 24px;
}
.imagesection .benefit h3 {
  color: #67b345;
  font-size: 24px;
}

.imagesection .benefit i {
  color: #67b345;
  width: 55px;
  height: 55px;
  border: 1px solid #67b345;
  line-height: 55px;
  border-radius: 90px;
}
.imagesection.feat-icon .w-col-4:nth-child(even) .benefit {
  border: 1px solid salmon;
  background-color: transparent;
  color: #fff;
}
.imagesection.feat-icon .w-col-4:nth-child(even) .benefit h3 {
  color: #fff;
}
.benefit > div {
  position: relative;
}
.benefit > div:after {
  content: "";
  background-color: #67b345;
  height: 1px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  left: 34%;
}

.feat-icon h1,
.feat-icon h2 {
  text-align: center;
}
.store-notice {
  background-color: #12122d;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 15px;
}

footer .social_link i {
  font-size: 28px;
  margin-right: 28px;
}

.mobile_toggle {
  display: none;
}

section.singl-col {
  min-height: 300px;
}

section.full_cta .w-container {
  max-width: 70%;
}

.winetab.r-tabs {
  background-color: transparent;
  border: none;
}

.winetab.r-tabs ul.r-tabs-nav {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}

.winetab.r-tabs ul.r-tabs-nav li,
.winetab.r-tabs ul.r-tabs-nav li a {
  width: 100%;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 18px;
  text-shadow: none;
}

.winetab.r-tabs ul.r-tabs-nav li a {
  text-align: center;
  background-color: #aaaabb;
  padding: 20px;
  font-weight: normal;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.winetab.r-tabs ul.r-tabs-nav li.r-tabs-state-active a {
  background-color: #324359;
  color: white;
}

.winetab.r-tabs .r-tabs-panel {
  background-color: transparent;
  border: none;
  padding: 40px 60px;
  min-width: 100%;
  position: relative;
}

.winetab.r-tabs .slick-next:before {
  content: "\f105";
  font-family: "fontawesome";
  text-shadow: none;
  color: #67b345;
  font-size: 50px;
}

.winetab.r-tabs .slick-prev:before {
  content: "\f104";
  font-family: "fontawesome";
  text-shadow: none;
  color: #67b345;
  font-size: 50px;
}

.winetab .slick-prev {
  left: -60px;
}
.winetab .slick-next {
  right: -60px;
}
.winetab .slick-prev,
.winetab .slick-next {
  width: 14px;
  margin: 0;
  height: 64px;
  top: 55%;
}

.tab-slide .w-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.wine-info h2 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 400;
}
.wine-info h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
.wines-info,
.wine-stats {
  margin-bottom: 30px;
}
.wine-stats {
  margin-top: 30px;
  font-size: 22px;
}

.wines-tab .centered h2,
.wines-tab .centered h1 {
  margin-bottom: 72px;
}
.wine-stats span:first-child {
  font-weight: 400;
}

.wine-links a {
  border-color: #67b345;
  color: #67b345;
  margin-right: 20px;
  font-size: 16px;
  transition: 0.2s;
}
.wine-links a:hover {
  background-color: #67b345;
  color: #fff;
}

.maker-slide {
  margin: 0 24px;
}

.maker-slide .single_solution h3 {
  color: #67b345;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 0;
}

.maker-slide .single_solution h4 {
  color: #324359;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}

.slick.examples {
  padding: 0;
  margin: 0;
}

.maker-slide .single_solution a.readmore {
  width: 100%;
  display: block;
  text-align: center;
}

a.email-link {
  color: #67b345;
  font-weight: 400;
  font-size: 16px;
}
a.email-link:hover {
  text-decoration: underline;
}

.team_profile h1,
.team_profile h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.team_profile .single_sol_content {
  padding-bottom: 2rem;
  border-bottom: 2px solid #67b345;
  margin-bottom: 2rem;
}
.summary.entry-summary {
  margin: 0;
}
.summary.entry-summary h1 {
  color: #67b345;
  margin-bottom: 1rem;
}

.filter-container {
  padding-right: 20px;
}

.filter-container h3 {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.berocket_single_filter_widget_2022 button {
  background-color: transparent;
  color: #000;
  text-shadow: none;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 300;
  position: absolute;
  top: 0;
  right: 20px;
  margin: 0;
  border: none;
  padding: 5px;
}

.filter-container h3.bapf_hascolarr {
  font-size: 16px;
  cursor: pointer;
  display: block;
}

.bapf_sfilter {
  border-bottom: 1px solid #aaaabb;
  padding-bottom: 20px;
}

.bapf_body {
  padding-top: 20px;
}

.bapf_body li.checked label:before {
  content: "\f00d";
  font-family: fontawesome;
  margin-right: 5px;
  vertical-align: middle;
}

.berocket_single_filter_widget_2022 .bapf_sfilter {
  border: none;
  padding: 0;
}

.bapf_sfilter .bapf_body .mCSB_container > ul,
.bapf_sfilter .bapf_body > ul {
  padding-left: 0;
  font-size: 18px;
}

.bapf_hideckbox li label,
.bapf_hideckbox li label a {
  color: #324359;
}

.bapf_slidr_main.ui-widget-content .ui-slider-handle,
.berocket_filter_price_slider.ui-widget-content .ui-slider-handle,
.slide.default .bapf_slidr_main .ui-state-default,
.slide.default .bapf_slidr_main .ui-widget-header .ui-state-default,
.slide.default .bapf_slidr_main.ui-widget-content .ui-state-default,
.slide.default .berocket_filter_price_slider .ui-state-default,
.slide.default
  .berocket_filter_price_slider
  .ui-widget-header
  .ui-state-default,
.slide.default
  .berocket_filter_price_slider.ui-widget-content
  .ui-state-default {
  background-color: #324359;
}

h1.woocommerce-products-header__title {
  margin-bottom: 1rem;
}

.page-description {
  max-width: 75%;
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 24px;
  color: #67b345;
  font-weight: 400;
}

.woocommerce ul.products li.product span {
  font-size: 16px;
  text-transform: uppercase;
}

.woocommerce ul.products li.product {
  padding-bottom: 20px;
  border-bottom: 1px solid #324359;
  margin-bottom: 2rem;
}

.woocommerce ul.products li.product a.viewproduct {
  background-color: #67b345;
  border: 1px solid #67b345;
  display: block;
  text-align: center;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
}
.woocommerce ul.products li.product a.viewproduct:hover {
  background-color: #fff;
  color: #67b345;
}
.product_description,
.additional-info,
.quote {
  padding: 15px 0;
  border-top: 1px solid #67b345;
}

h2.country-region {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.additional-info h3,
.quote h3 {
  color: #67b345;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 1rem;
}

.woocommerce table.shop_attributes {
  margin: 0;
  border: none;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
  background-color: transparent;
  border: none;
  line-height: 20px;
}

.woocommerce table.shop_attributes th {
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0;
}
.woocommerce table.shop_attributes th p,
.woocommerce table.shop_attributes td p {
  padding: 0;
  line-height: 20px;
  font-style: normal;
  font-size: 16px;
}

.single-product .colorsection.full_cta,
.single-product .bluesection.full_cta {
  background-color: #12122d;
  text-align: center;
}
.single-product .colorsection.full_cta p,
.single-product .bluesection.full_cta p {
  font-size: 34px;
  line-height: 42px;
}
.single-product .colorsection.full_cta .w-container,
.single-product .bluesection.full_cta .w-container {
  max-width: 80%;
}

.single-product .colorsection.full_cta a,
.single-product .bluesection.full_cta a {
  max-width: 609px;
  padding: 9px;
}

.single-product .colorsection.full_cta p a,
.single-product .bluesection.full_cta p a {
  padding: 0;
}

.single_solution a.readmore {
  max-width: 300px;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.single_product h2 {
  text-align: center;
  text-transform: uppercase;
}
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  margin-bottom: 2rem;
}
.whitesection.main-section {
  padding-top: 20px;
}
.whitesection.main-section .w-container {
  border-bottom: 1px solid #67b345;
}

.footer-logo img {
  width: 144px;
  margin-bottom: 2rem;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.woocommerce ul.products li.product span.woocommerce-Price-amount.amount,
.woocommerce ul.products li.product span.woocommerce-Price-currencySymbol {
  font-size: 18px;
  color: #324359;
  font-weight: 400;
}

section.portfolio {
  overflow: hidden;
}

div.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  background-color: #aaaabb;
  text-shadow: none;
}
div.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.single_sol_h4 {
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 0;
  color: #67b345;
}
.mob-filter-close {
  display: none;
}

.additional-info h3,
.quote h3 {
  position: relative;
}
.mob-toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

section.widget {
  background-color: #fff;
}

.blog-listing h1 {
  text-align: center;
  font-size: 34px;
}

h2.widget-title {
  font-size: 24px;
  margin-bottom: 1rem;
}

.widget ul {
  margin: 0;
  padding: 0;
}

h2.entry-title a {
  color: #67b345;
}

.greysection .benefit {
  background-color: #fff;
  padding: 20px;
}

.benefit a.cta {
  margin-top: 1.5rem;
}
h3.subheading {
  text-align: center;
  font-family: ff-nuvo-mono-web-pro, sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.banner h1,
.banner h2 {
  font-size: 100px;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.img-w-txt h2 {
}

.videotitle h2 {
  margin-bottom: 1.5rem;
}

.singl-col .cta {
  border-color: #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.singl-col .cta:hover {
  background-color: #fff;
  color: #324359;
}

.feat_list .w-row .w-clearfix {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}

.mob-filter-toggle {
  display: none;
}

.graphics-box-inner {
  background-color: #fff;
  margin-bottom: 2rem;
}

.graphics-box-inner div {
  padding: 20px;
}

.graphics-box-inner h2 {
  margin-bottom: 1.5rem;
}

.sideimage img {
  margin: 0 auto;
  display: block;
  width: 100%;
}
#fake-input .w-container {
  max-width: 1300px;
}
#fake-input .w-col-12 {
  display: flex;
  align-items: center;
}
#fake-input .w-col-12 h2,
#fake-input .w-col-12 div {
  width: 50%;
}

#fake-input input[type="text"] {
  width: 77%;
  display: inline-block;
  font-family: inherit;
  padding: 10px;
  font-size: 18px;
  margin-right: 10px;
  border: none;
  border-radius: 0px;
  vertical-align: middle;
}
#fake-input input[type="submit"] {
  border-radius: 0px;
  font-family: inherit;
  text-transform: uppercase;
  border: 1px solid #fff;
  color: #fff;
  font-size: 24px;
  padding: 10px 20px;
  font-weight: 400;
  vertical-align: middle;
  min-width: auto;
}
#fake-input input[type="submit"]:hover {
  background-color: #fff;
  color: navy;
}

.widget .search-form input[type="submit"] {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  font-family: inherit;
  border-radius: 0px;
}

.woocommerce .woocommerce-ordering select {
  padding: 10px;
  border: 2px solid #aaaabb;
  font-family: inherit;
}

.product-type-simple .w-col-12 {
  margin-bottom: 2rem;
}

.pswp--open .pswp__bg {
  opacity: 0.7 !important;
}

.blog-header-img picture {
  width: 100%;
  display: block;
}
.blog-header-img img {
  width: 100%;
  object-fit: cover;
}

.error-main {
  text-align: center;
  font-weight: bold;
  font-size: 14rem;
  line-height: 1;
}

.error-main span {
  background: url(images/grape.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: right;
}

.error-404 .w-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.error-404 h1 {
  margin: 0;
}

.txt-sidebar .w-col-3 h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.woocommerce .summary.entry-summary p.price {
  margin: 0;
  margin-bottom: 0.5rem;
  color: #324359;
  font-weight: 400;
  font-size: 18px;
}
/* Amended Feature icons */
.feat-icon {
  padding: 0;
}
.icon-flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefit {
  width: 33.3%;
  padding: 2rem;
  text-align: center;
}

.benefit:nth-child(even) {
  background-color: #324359;
}

.benefit img {
  margin: 0 auto;
}

/* contact form */

#contact h2 {
}

form.wpcf7-form {
  max-width: 80%;
  margin: 0 auto;
}

form.wpcf7-form input[type="submit"] {
  float: right;
  margin-top: 1.5rem;
}

form.wpcf7-form label {
  margin-bottom: 1rem;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
}

.bluesection input[type="text"],
.bluesection input[type="email"],
.bluesection input[type="telephone"],
.bluesection textarea {
  background-color: #fff;
  border: none;
  margin-top: 0.5rem;
}

/* Graphic Links */

.graphiclinks .single_solution {
  padding-bottom: 20px;
  border-bottom: 2px solid #67b345;
  margin-bottom: 20px;
}

.colorsection h2,
.bluesection h2,
.imagesection h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.imagesection h3.single_sol_h3 {
  color: #67b345;
}

@media screen and (min-width: 1024px) {
  .wine-tab .slick-slider .slick-list {
    min-height: 360px;
  }
  .tab-slide {
    min-width: 1140px;
  }
}

@media screen and (max-width: 1024px) {
  #content {
    padding-top: 108px;
  }

  .single_solution a.readmore {
    max-width: none;
    width: 100%;
  }
  .mob-filter-toggle {
    padding: 10px 20px;
    border: 2px solid #aaaabb;
    color: #aaaabb;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
  }
  .mob-filter-close {
    background-color: salmon;
    top: 0;
    position: absolute;
    right: -50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  .post-type-archive-product .product-listing .w-col-3 {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    top: 0;
    left: -450px;
    max-width: 400px;
    width: 86%;
    height: 100vh;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 0;
  }
  .post-type-archive-product .product-listing .w-col-3.show {
    left: 0;
  }
  .filter-container {
    padding: 0;
  }
  .berocket_single_filter_widget_2022 button {
    top: 20px;
  }
  .mob-toggle {
    display: block;
  }
  .additional-info div,
  .quote p {
    display: none;
  }
  .slide_content {
    max-width: none;
  }
  .graphiclinks h1,
  .graphiclinks h2,
  .centered {
    max-width: none;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .r-tabs .r-tabs-accordion-title {
    display: none;
  }

  .slide_content {
    max-width: 100%;
  }
  .slide_content h2 {
    font-size: 27px;
  }
  .wine-links a {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  section.full_cta .w-container {
    max-width: none;
  }
  .imagesection.feat-icon .w-col-4 {
    padding: 0 10px;
  }
  .imagesection .benefit {
    padding: 20px;
  }
  .mob-filter-toggle {
    width: 100%;
  }
  .woocommerce #content div.product div.images,
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.images,
  .woocommerce-page div.product div.summary {
    width: 50%;
    float: left;
  }
  .woocommerce #content img,
  .woocommerce-page #content img {
    object-fit: cover;
    width: 100%;
  }
  .single_resource {
    margin-bottom: 1rem;
  }
  .slider-section .slide .w-container {
    text-align: center;
  }
  .winetab.r-tabs ul.r-tabs-nav {
    column-gap: 5px;
  }
  .winetab.r-tabs ul.r-tabs-nav li a {
    padding: 10px 0px;
    font-size: 1rem;
  }
  .search-overlay {
    padding: 0;
  }
  .aws-container {
    width: 100%;
  }

  #fake-input input[type="text"],
  #fake-input input[type="submit"] {
    width: 100%;
    margin-bottom: 1rem;
  }
  .message {
    font-size: 1rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
  section {
    padding: 2rem 0px;
  }
  .store-notice {
    font-size: 12px;
  }
  .slick-slide .w-container {
    padding: 0 10px;
  }
  .slide_content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 20px;
  }
  .slide_content h2 {
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
  }
  .message {
    font-size: 1rem;
    line-height: 1.5;
  }
  .slide_content a.readmore {
    margin-top: 2px;
  }
  
  .feature_slide {
    padding: 20px 0;
  }
  h1,
  h2,
  h3 {
    margin-bottom: 2rem;
  }
  .full_cta a {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
  .full_cta h2 {
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
  }

  .imagesection .benefit {
    margin: 0;
    border: none;
    padding: 20px;
  }
  .imagesection.feat-icon .w-col-4:nth-child(even) .benefit {
    background-color: #fff;
    color: #12122d;
    border: none;
  }
  .imagesection.feat-icon .w-col-4:nth-child(even) .benefit h3 {
    color: #67b345;
  }
  .winetab.r-tabs ul.r-tabs-nav {
    display: none;
  }
  .winetab.r-tabs .r-tabs-panel {
    padding: 20px;
  }
  .tab-slide .w-row {
    flex-direction: column-reverse;
    margin: 0;
  }
  .tab-slide .w-row .w-col {
    float: none;
    display: inline-block;
  }

  .winetab.r-tabs .r-tabs-panel {
    padding: 20px 10px;
  }

  .slideimage {
    width: 58%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .wine-info h2 {
    font-size: 24px;
  }
  .centered h1,
  .centered h2,
  h1,
  h2,
  h3 {
    font-size: 25px;
  }
  .centered h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .winetab.r-tabs .slick-prev:before,
  .winetab.r-tabs .slick-next:before {
    font-size: 2rem;
    color: salmon;
  }
  section.full_cta .w-container {
    max-width: none;
  }
  .wines-tab .centered h2,
  .wines-tab .centered h1 {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  footer {
    padding: 67px 20px;
  }
  footer ul li a {
    padding: 5px 0;
    display: inline-block;
    font-size: 14px;
  }
  footer ul {
    text-align: left;
  }

  footer .w-col-tiny-6 {
    margin-top: 1rem;
  }
  .benefit > div:after {
    display: none;
  }
  .benefit div {
    margin: 0;
  }
  .imagesection .benefit {
    padding-bottom: 0;
  }
  .imagesection .w-col-4:last-child .benefit {
    padding-bottom: 20px;
  }
  .imagesection .benefit i {
    display: none;
  }
  .imagesection .w-col-4:first-child .benefit i {
    display: inline-block;
    text-align: center;
  }
  .graphics-slide {
    padding: 0px;
  }
  section.singl-col {
    min-height: 167px !important;
  }
  .page-description {
    max-width: 100%;
  }

  .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 16px;
  }
  .woocommerce ul.products li.product span {
    font-size: 12px;
  }
  .summary.entry-summary h1 {
    font-size: 24px;
  }
  h2.country-region {
    font-size: 18px;
  }
  .single-product .colorsection.full_cta p,
  .single-product .bluesection.full_cta p,
  .single-product .colorsection.full_cta p a,
  .single-product .bluesection.full_cta p a {
    font-size: 18px;
    line-height: 1.5;
  }
  .full_cta a {
    font-size: 18px;
  }
  .single-product .colorsection.full_cta .w-container,
  .single-product .bluesection.full_cta .w-container {
    max-width: none;
    padding: 0 20px;
  }
  .r-tabs .r-tabs-accordion-title {
    display: block;
  }
  .winetab .slick-prev {
    left: -20px;
  }
  .winetab .slick-next {
    right: -20px;
  }
  .woocommerce #content div.product div.images,
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.images,
  .woocommerce-page div.product div.summary {
    width: 100%;
    float: none;
  }
  #fake-input .w-col-12 {
    flex-direction: column;
  }
  #fake-input .w-col-12 h2 {
    margin-bottom: 1rem;
  }
  #fake-input .w-col-12 h2,
  #fake-input .w-col-12 div {
    width: 100%;
  }
  .single_sol_img img {
    width: 100%;
  }
  .footer-logo img {
  }
  .maker-slide {
    margin: 0;
  }
  div.r-tabs .r-tabs-accordion-title .r-tabs-anchor:after {
    content: "\f055";
    font-family: "Fontawesome";
    color: #fff;
    position: absolute;
    right: 20px;
  }
  div.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor:after {
    content: "\f056";
    font-family: "Fontawesome";
    color: #fff;
    position: absolute;
    right: 20px;
  }
  .tab-slide .w-hidden-main {
    width: 100%;
    text-align: center;
    font-weight: 400;
    display: inline-block !important;
    margin-bottom: 0.5rem;
    font-size: 18px;
  }
  .icon-flex-container {
    flex-direction: column;
  }
  .icon-flex-container .benefit {
    width: 100%;
    padding: 20px 10px;
  }
  .benefit img {
    max-width: 100px;
  }

  form.wpcf7-form input[type="submit"] {
    margin: 0;
    float: none;
    width: 100%;
  }

  header.mini-header {
    top: 0;
  }
  #content {
    padding-top: 94px;
  }
  form.wpcf7-form {
    max-width: none;
  }
}
.textureimage {
  width: 500px
  height: 500px
}

#content{
  padding:0;
}



@media screen and (max-width: 480px) {
  .menu-toggle {
    display: none;
  }
}

/* Custom styles here*/

.footer {
  background-color: #324359;
  color: #000000;
}

.slide_content {
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
  position: relative;
  background-color: #faf8f4;
  flex-direction: column;
  padding-top: 82px;
}

.whitesection {
  background-color: #faf8f4;
}

section.singl-col {
  min-height: 600px;
  padding: 0;
}

.sidetext {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 74px;
  padding-right: 7rem;
}

p {
  color: black;
  font-family: ff-nuvo-mono-web-pro, sans-serif;
  font-weight: 400;
}

.commonquestions {
  text-align: center;
  font-size: 103px;
  padding-bottom: 100px;
  padding-top: 0px;
}

.makeatrade {
  margin: 0 auto;
  background-color:#faf8f4;
}

a.cta {
  display:inline-block;
  position: relative;
  width: 292px;
}

a.cta span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  color: white;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight:normal;
  line-height: 46px;
  padding: 0 20px;
  font-size: 20px;
}

.faq-question:first-child {
  border-top: solid 1px #000;
}

.imgwithtxtbtn {
  margin-top: 0px;
  font-size: 18px;
}

.gridtitle {
 font-family: "headline-gothic-atf-rough-n1", sans-serif;
 font-size: 25px;
 color: black;
 display:inline-block;
 margin-bottom:1rem;
}

.textwidget {
  font-size: 13px;
  margin-left: 60px;
  color: white;
}

.graphic1cont {
  position: relative;
  bottom: 50px;
  right: -100px;
}

.graphic1 {
  margin:0 auto;
}

.blacktreecont {
  position: absolute;
  top: 392px;
  left: 3%;
}

.blacktreeimg {
  height: 220px;
}

.threetreescont {
	position: absolute;
	bottom: 2px;
	right: -61px;
	max-width:200px;
}

.threetreescont.left-align{
	right:auto;
	left:0;
	max-width:300px;
	bottom:-30px;
}

.threetreesimg img,
.threetreesimg source{
  height: 120px;
}

.rainbowscont {
  position: absolute;
  max-width:200px;

}
.rainbowscont.right-align{
top: -3rem;
right: -83px;

}
.rainbowscont.left-align{
  right:auto;
  left:0;
  top:-50px;
  max-width:150px;
}

.rainbowsimg img,
.rainbowsimg source{
  height: 8rem;
}

.menu-primary-container{
  width:100%;
}

ul#primary-menu{
  display:flex;
  list-style-type: none;
  justify-content: space-evenly;
  padding: 0;
}

.mini-header .main-header{
  padding-top:20px;
}

.img-w-txt{
  padding: 6rem 0;
}

footer .w-container{
  background: url(images/footerimage.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  padding: 3rem 0;
  background-size:80%;
  padding-bottom:1rem;
  max-width:1180px;
}
footer p {
  color: white;
}

.footerlinks {
  text-align: center;
  font-family: ff-nuvo-mono-web-pro, sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding-top:6rem;
}

.contactdetails {
  position: absolute;
  right: 0;
  top: 141px;
  text-align: left;
  width: 180px;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-size: 30px;
  color: #000;
}
.contactdetails span,
.contactdetails a{
  display: block;
  color:#000;
}

.singl-col .w-container{
  max-width: 1150px;
}

.faq .centered a.cta{
	margin-right:40px;
}

.img-w-txt a.cta{
	margin-bottom:10px;
}

.sidetext a.cta.first{
	margin-top:3rem;
}


.centered a.cta span{
	text-align:center;
}

.faq .centered{
	margin-top: 6rem;
}

.home-overlay{
  position: absolute;
  height:100vh;
  width: 100%;
  background-attachment: fixed;
}

.homescroll{
  margin-top:100vh;
}

.home-overlay span{
  position: fixed;
  bottom:10%;
  text-align: center;
  width:100%;
  color:#FFF;
  font-size:1.5rem;
  font-family: ff-nuvo-mono-web-pro, sans-serif
}


@keyframes float { 
    0% { 
        transform: translateY(0px); 
    } 
    50% { 
        
        transform: translateY(-10px); 
    } 
    100% {
        transform: translateY(0px); 
    } 
} 

.home-overlay span:after{
  content:'\f103';
  font-family: 'fontAwesome';
  animation:float 2s infinite; 
  position: absolute;
  bottom:-50px;
  right:50%;
}

#authentic{
	padding-top:0;
}

.w-container .w-row.grid-section{
	max-width:1200px;
	margin:0 auto;	
}

@media screen and (max-width: 1024px) {
	header{
  }
    .main-header .w-container{
  	padding: 0;
  	justify-content: flex-end;
  }	
    header a,
  header a:visited{
  	text-align:center;
	display:inline-block;
  	width:100%;
  }
	.sidetext{
	padding-left:1rem;
	padding-right: 0;
	}
	    .blacktreecont{
    position: relative;
    top: auto;
    left: auto;
    margin-bottom:2rem;
  }
  .blacktreeimg{
  	margin:0 auto;
  	height:80px;
  }
    .rainbowscont,
  .rainbowscont.right-align,
  .rainbowscont.left-align,
  .threetreescont{
  	position:relative;
	top:auto;
	left:auto;
	right:auto;
	bottom:auto;
	margin:0 auto;
  }
  .banner h1, .banner h2,
  .centered h1, .centered h2,
  .commonquestions{
  	font-size:4rem;
  }
   .commonquestions{
  	padding-bottom:0;
	margin-bottom:2rem;
  }
}
@media screen and (max-width: 768px) {
	footer .w-container .w-row{
  	margin:0;
  }
  .graphic1cont{
    right:auto;
    bottom: auto;
  }


  .img-w-txt{
    padding: 0;
    padding-bottom: 3rem;
  }
  .img-w-txt .w-row{
    display:flex;
    flex-direction: column-reverse;
  }
  .sidetext{
    height:auto;
    padding:0;
  }

  .banner h1, .banner h2,
  .centered h1, .centered h2{
  	font-size:4rem;
  }
  .commonquestions{
  font-size:4rem;
  	padding-bottom:0;
	margin-bottom:2rem;
  }
  .faq-question{
  	margin:0;
  }
  .mobile_toggle{
    display: block;
  }
  #masthead{
    box-shadow: 0px 12px 24px -12px rgb(0 0 0 / 50%);
    -webkit-box-shadow: 0px 12px 24px -12px rgb(0 0 0 / 50%);
  }
  .menu-primary-container{
    display: none;
  }
  .main-header{
  padding: 0;
  }
  .mini-header .main-header{
    padding:0;
  }
  #mobile_nav .menu-primary-container{
  	display:block;
  }
}
@media screen and (max-width: 480px) {
  #masthead{
  width: auto;
  right: 0;
  }
  .homescroll{
    margin:0;
  }
  .contactdetails{
    left:0;
    top: 93px;
    width:100%;
    display: flex;
    padding:10px 20px;
    justify-content: space-between;
  }
  .contactdetails span, .contactdetails a{
    font-size: 1.4rem;
  }
  .slide_content{
    padding-top: 124px;
  }

  
  .banner h1, .banner h2{
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .banner h3.subheading{
    margin:0;
    font-size:1.5rem;
  }


  .commonquestions{
    font-size:3rem;
    padding: 0;
  }
  .faq-question{
    margin:0;
  }
  footer{
  	padding:0;
  }
  footer img{
    margin:0 auto;
  }
  footer p{
    text-align: center;
  }
  .textwidget{
    margin:0;
  }
  footer .w-container{
    background-size: 1000px;
    background-position: bottom center;
  }

  .faq .centered a.cta{
  	margin:0;
  }
  .gridtitle{
  	font-size:24px;
  }

  .grid_single img{
  	max-width:120px;
  }
  .rainbowsimg img, .rainbowsimg source{
  	margin:0 auto;
	margin-top:2rem;
  }
  .sidetext{
  	padding-top:2rem;
  }
  .contactdetails{
  	display:none;
  }
}