/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

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

body {
  line-height: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f2f0e5;
}

ul,
ol {
  list-style: none;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

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

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

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *	`em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *	user zoom.
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  width: 100%;
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *	and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *	and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *	`input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *	Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *	Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *	(include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

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

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

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

.h1,
h1 {
  font-size: 40px;
}

.h2,
h2 {
  font-size: 32px;
}

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

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

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

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

a,
span,
p,
li,
strong,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway-VariableFont_wght", "sans-serif";
}

@font-face {
  font-family: "Eczar-Bold";
  src: url("../fonts/Eczar-Bold.eot");
  src: url("../fonts/Eczar-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Eczar-Bold.ttf") format("truetype"), url("../fonts/Eczar-Bold.svg#Eczar-Bold") format("svg");
  font-style: "normal";
  font-weight: "normal";
}
@font-face {
  font-family: "Raleway-VariableFont_wght";
  src: url("../fonts/Raleway-VariableFont_wght.eot");
  src: url("../fonts/Raleway-VariableFont_wght.eot?#iefix") format("embedded-opentype"), url("../fonts/Raleway-VariableFont_wght.ttf") format("truetype"), url("../fonts/Raleway-VariableFont_wght.svg#Raleway-VariableFont_wght") format("svg");
  font-style: "normal";
  font-weight: "normal";
}
@font-face {
  font-family: "Nora-Art";
  src: url("../fonts/Nora_Art_Line/A-bit-sketchy.eot");
  src: url("../fonts/Nora_Art_Line/A-bit-sketchy.eot?#iefix") format("embedded-opentype"), url("../fonts/Nora_Art_Line/A-bit-sketchy.ttf") format("truetype"), url("../fonts/Nora_Art_Line/A-bit-sketchy.svg#Nora-Art") format("svg");
  font-style: "normal";
  font-weight: "normal";
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins/Poppins-Regular.eot");
  src: url("../fonts/Poppins/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-style: "normal";
  font-weight: "normal";
}
@font-face {
  font-family: "CabinSketch-Bold";
  src: url("../fonts/Cabin_Sketch/CabinSketch-Bold.eot");
  src: url("../fonts/Cabin_Sketch/CabinSketch-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Cabin_Sketch/CabinSketch-Bold.ttf") format("truetype"), url("../fonts/Cabin_Sketch/CabinSketch-Bold.svg#CabinSketch-Bold") format("svg");
  font-style: "normal";
  font-weight: "normal";
}
@font-face {
  font-family: "Kameron-Regular";
  src: url("../fonts/Kameron/Kameron-Regular.eot");
  src: url("../fonts/Kameron/Kameron-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Kameron/Kameron-Regular.ttf") format("truetype"), url("../fonts/Kameron/Kameron-Regular.svg#Kameron-Regular") format("svg");
  font-style: "normal";
  font-weight: "normal";
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins/Poppins-Bold.eot");
  src: url("../fonts/Poppins/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype"), url("../fonts/Poppins/Poppins-Bold.svg#Poppins-Bold") format("svg");
  font-style: "normal";
  font-weight: "normal";
}
footer .row {
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer p {
  color: #ffffff;
}
footer .footer-address + a {
  max-width: max-content;
}
footer .footer-box-title-btn.d-none + .row {
  margin-top: 50px;
}

.footer-box-title-btn {
  text-align: center;
  border-bottom: 2px solid #808285;
  border-top: 2px solid #808285;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 40px;
  margin-top: 50px;
}
.footer-box-title-btn h3 {
  font-family: "Kameron-Regular", "sans-serif";
  font-size: 40px;
  line-height: 42px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 45px;
  color: #000;
}
.footer-box-title-btn .button-get {
  color: #000;
  text-decoration: none;
  line-height: 32px;
  font-size: 20px;
  font-family: "Raleway-VariableFont_wght", "sans-serif";
  text-transform: uppercase;
  font-weight: 700;
  width: fit-content;
  padding: 10px 25px;
  border: 2px solid #000;
  border-radius: 50px;
  margin: 0 auto;
  letter-spacing: 1px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.footer-logo {
  margin-bottom: 25px;
}
.footer-logo img {
  height: 70px;
  width: auto;
}
.footer-address {
  margin-bottom: 10px;
  font-size: 18px;
  color: #60725f;
  font-family: "Poppins-Regular", "sans-serif";
  font-weight: 400;
  letter-spacing: 1px;
}
.footer-phone {
  font-size: 21px;
  color: #60725f;
  font-family: "Poppins-Bold", "sans-serif";
  letter-spacing: 1px;
}
.footer-list-icon {
  display: flex;
  justify-content: center;
}
.footer-list-icon a {
  margin-right: 20px;
}
.footer-list-icon a:last-child {
  margin-right: 0px;
}
.footer-list-icon img {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  position: relative;
}

@media only screen and (max-width: 767px) {
  footer .row {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  footer .footer-box-title-btn.d-none + .row {
    margin-top: 0px;
  }
  .footer-box-title-btn {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  .footer-box-title-btn h3 {
    font-size: 28px;
    line-height: 29px;
    margin-bottom: 30px;
  }
  .footer-box-title-btn .button-get {
    line-height: 14px;
    font-size: 13px;
    padding: 8px 20px;
  }
  .footer-socials {
    margin-top: 35px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-logo img {
    height: 50px;
  }
  .footer-list-icon {
    padding: 5px;
    justify-content: flex-end;
  }
  .footer-list-icon img {
    height: 35px;
    width: 35px;
  }
  .footer-list-icon a {
    margin-right: 10px;
  }
  .footer-address {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 2px;
    margin-left: 7px;
  }
  .footer-phone {
    font-size: 15px;
    line-height: 20px;
    margin-left: 3px;
  }
}
@media only screen and (max-width: 575px) {
  footer .row {
    flex-flow: column;
    padding-top: 45px;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-address {
    text-align: center;
  }
  .footer-phone {
    margin: 0 auto;
  }
  .footer-socials {
    margin-top: 10px;
    justify-content: center;
  }
}
.header {
  background-color: #f2f0e5 !important;
  width: 100%;
  z-index: 2;
  position: fixed;
  top: 0px;
  padding-top: 18px;
  padding-bottom: 12px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: background-color 0.3s linear;
  -ms-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
  border-bottom: 1px solid #808285;
  transition: 0.3s all linear;
}
.header .line-header-top {
  border-bottom: 1px solid #808285;
  margin-bottom: 18px;
}
.header-border {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
.header-logo {
  padding-right: 25px;
}
.header-logo a:focus {
  outline: none;
}
.header-logo img {
  height: 70px;
  width: auto;
}
.header .nav-desktop {
  position: relative;
}
.header .nav-desktop .menu-main {
  display: flex;
  justify-content: flex-start;
  -webkit-tap-highlight-color: transparent;
}
.header .nav-desktop a {
  color: #60725f;
  text-decoration: unset;
  text-transform: uppercase;
  font-family: "Poppins-Bold", "sans-serif";
  font-size: 19px;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}
.header .nav-desktop a:focus {
  outline: none;
}
.header .nav-desktop .menu-item {
  padding: 0px 15px;
  border-right: 2px solid #60725f;
  position: relative;
}
.header .nav-desktop .menu-item .sub-menu {
  height: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  overflow: hidden;
  transition: all 0.3s;
}
.header .nav-desktop .menu-item:hover .sub-menu {
  height: auto;
  overflow: unset;
  padding: 20px 15px 12px;
  transition: all 0.3s;
}
.header .nav-desktop .menu-item:first-child {
  padding-left: 0px;
  border-left: unset;
}
.header .nav-desktop .menu-item:last-child {
  padding-right: 0px;
  border: unset;
}
.header .nav-desktop .sub-menu {
  position: absolute;
  transform: translateY(100%);
  bottom: -10px;
  left: -25px;
  background-color: #60725f;
  padding: 20px;
  padding-bottom: 5px;
  width: calc(100% + 50px);
  z-index: 9;
}
.header .nav-desktop .sub-menu:before {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0px;
}
.header .nav-desktop .sub-menu .menu-item {
  border: unset;
  padding: 0px;
  padding-bottom: 12px;
}
.header .nav-desktop .sub-menu .menu-item a {
  color: #fff;
  text-align: center;
  font-family: "Poppins-Bold", "sans-serif";
  line-height: 20px;
}
.header .nav-desktop .sub-menu .menu-item a:focus {
  outline: none;
}
.header .menu::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f18c21;
  top: -12px;
  left: 0;
}
.header .menu::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #f18c21;
  border-radius: 50%;
  top: -14px;
  left: 0;
}
.header .icon-menu {
  width: 20px;
}

.nav-mobile {
  display: none;
}
.nav-mobile-btn {
  display: flex;
  justify-content: center;
  flex-flow: row;
  flex-wrap: nowrap;
  align-items: center;
}
.nav-mobile-title {
  color: #60725f;
  font-family: "Poppins-Bold", "sans-serif";
  padding-right: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-mobile .menu-item {
  margin: 15px 20px;
  padding-top: 0px;
}
.nav-mobile .menu-item a {
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins-Bold", "sans-serif";
  color: #60725f;
}
.nav-mobile #bg-menu-mobile {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #f2f0e5;
  will-change: transform;
}
.nav-mobile .menu-main {
  width: 100%;
  position: fixed;
  top: 90px;
  left: 0;
  list-style: none;
  color: #000000;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile .menu-main .menu-item {
  font-family: "CabinSketch-Bold", "sans-serif";
  color: #f2f0e5;
  font-size: 30px;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #808285;
  left: 100%;
  cursor: pointer;
  will-change: transform;
  text-transform: uppercase;
}
.nav-mobile .menu-main .menu-item:hover {
  color: #000000;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.nav-mobile .sub-menu {
  position: relative;
}
.nav-mobile .sub-menu .menu-item {
  left: calc(100% + 40px);
  margin-bottom: 10px;
  padding-bottom: 0px;
  border-bottom: unset;
}
.nav-mobile .sub-menu .menu-item a {
  font-size: 14px;
}
.nav-mobile .sub-menu .menu-item:last-child {
  padding-top: 0px;
  margin-bottom: 0px;
}
.nav-mobile .has-open .dropdown::after {
  transition: all 0.7s ease-in-out;
  transform: rotate(180deg);
}
.nav-mobile .dropdown::after {
  content: "";
  transition: all 0.7s ease-in-out;
  background-image: url(../img/up-arrow-svgrepo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: -2px;
}
.nav-mobile .menu-item-has-children {
  position: relative;
}
.nav-mobile .menu-item-has-children .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.nav-mobile .has-open .sub-menu {
  max-height: 150px;
  overflow: unset;
  opacity: 1;
  transition: all 0.7s ease-in-out;
}
.nav-mobile .has-open .sub-menu:after {
  transform: rotate(180deg);
}

.nav-mobile-btn {
  display: flex;
  justify-content: center;
  flex-flow: row;
  flex-wrap: nowrap;
  align-items: center;
}

#hamburger {
  width: 27px;
  height: 19px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  top: 0;
  right: 0px;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
#hamburger span {
  z-index: 3;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #60725f;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.25s ease-in-out;
}
#hamburger span:nth-child(1) {
  top: 0px;
}
#hamburger span:nth-child(2) {
  top: 8px;
}
#hamburger span:nth-child(3) {
  top: 16px;
}

#hamburger.open {
  width: 20px;
}
#hamburger.open span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #000000;
}
#hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
  -webkit-transition: 0.16s ease-in-out;
  -moz-transition: 0.16s ease-in-out;
  -o-transition: 0.16s ease-in-out;
  transition: 0.16s ease-in-out;
  background-color: transparent;
}
#hamburger.open span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background-color: #000000;
}

@media only screen and (max-width: 991px) {
  .header .nav-desktop a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 840px) {
  .header .nav-desktop .menu-item {
    padding: 0 10px;
  }
  .header .nav-desktop a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-mobile .sub-menu .menu-item:first-child {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .nav-mobile .sub-menu .menu-item + .menu-item:not(:last-child) {
    margin-bottom: 20px;
    margin-top: 0;
  }
  .header-logo img {
    height: 50px;
  }
  .header {
    padding-bottom: 8px;
  }
  .header .nav-desktop a {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .header .nav-desktop .sub-menu {
    padding: 12px 15px;
    width: calc(100% + 20px);
    left: -10px;
  }
  .header .nav-desktop .sub-menu .menu-item {
    padding-bottom: 0px;
  }
  .header .nav-desktop .sub-menu a {
    font-size: 12px;
  }
  .header .nav-desktop .menu-item:hover .sub-menu {
    padding: 12px 15px;
  }
  .header .line-header-top {
    margin-bottom: 9px;
  }
}
@media only screen and (max-width: 676px) {
  .nav-desktop {
    display: none;
  }
  .nav-mobile {
    display: block;
  }
  .header {
    padding-bottom: 5px;
  }
  .header .line-header-top {
    margin-bottom: 5px;
  }
  .header-logo img {
    height: 45px;
  }
  .hamburger-close {
    opacity: 0;
  }
  #hamburger.open span:nth-child(1) {
    top: 17px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    background-color: #60725f;
  }
  #hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -30px;
    -webkit-transition: 0.16s ease-in-out;
    -moz-transition: 0.16s ease-in-out;
    -o-transition: 0.16s ease-in-out;
    transition: 0.16s ease-in-out;
    background-color: transparent;
  }
  #hamburger.open span:nth-child(3) {
    top: 17px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background-color: #60725f;
  }
  #hamburger.open .hamburger-close {
    opacity: 1;
    position: absolute;
    top: 10px;
    left: -63px;
    font-size: 16px;
    font-family: "Poppins-Bold", "sans-serif";
    color: #60725f;
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 650px) {
  .header .nav-desktop .menu-item {
    padding: 0 8px;
  }
  .header .nav-desktop a {
    font-size: 14px;
  }
}
ul,
li,
a {
  display: block;
}

.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.title {
  padding-top: 70px;
  padding-bottom: 15px;
}
.title h2 {
  font-family: "CabinSketch-Bold", "sans-serif";
  font-size: 84px;
  line-height: 74px;
  color: #808285;
}
.title h2.left {
  text-align: left;
}
.title h2.right {
  text-align: right;
}

.bg-mineShaft {
  background-color: #323232;
}

.bg-goldenSand {
  background-color: #dfb96b;
}

.bg-mossGreen {
  background-color: #60725f;
}

.bg-rustOrange {
  background-color: #a64925;
}

.bg-dustyBlue {
  background-color: #6b96a8;
}

.bg-ivory {
  background-color: #f2f0e5;
}

.bg-slateGray {
  background-color: #808285;
}

.d-none {
  display: none !important;
}

@media only screen and (max-width: 1399px) {
  .container {
    max-width: 1220px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (max-width: 767px) {
  .title {
    padding-top: 78px;
    padding-bottom: 10px;
    padding-right: 10px;
  }
  .title h2 {
    font-size: 56px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 540px;
  }
  .title h2 {
    font-size: 45px;
    line-height: 53px;
  }
}
.button-load-more {
  color: #242021;
  font-size: 18px;
  line-height: 20px;
  position: relative;
  text-decoration: none;
  outline: none;
  word-break: break-word;
  border: 2px solid #242021;
  padding: 10px 25px;
  border-radius: 50px;
  width: fit-content;
  font-family: "Poppins-Bold", "sans-serif";
  cursor: pointer;
  letter-spacing: 1px;
}

.section-slider {
  margin-top: 50px;
  margin-bottom: 50px;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: auto;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next {
  background-image: url(../img/slider/next.png);
  width: 23px;
  height: 23px;
  background-size: cover;
  background-repeat: no-repeat;
  right: 16px;
  top: calc(50% + 11px);
}
.swiper-button-next::after {
  content: none;
}

.swiper-button-prev {
  background-image: url(../img/slider/next.png);
  width: 23px;
  height: 23px;
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  left: 16px;
  top: calc(50% + 11px);
}
.swiper-button-prev::after {
  content: none;
}

.swiper-slide img {
  max-height: 310px;
}

.section-info {
  margin-top: 54px;
  margin-bottom: 55px;
  color: #23355d;
}
.section-info.info-home {
  margin-top: 54px;
  margin-bottom: 55px;
}
.section-info.info-home.info-no-content {
  margin-top: 0;
  margin-bottom: 0;
}
.section-info.info-home.info-no-content + .section-img-content-meet {
  margin-top: 54px;
}
.section-info .container-wrap {
  padding: 0 60px;
  margin-left: auto;
  margin-right: auto;
}
.section-info .info-title {
  line-height: 52px;
  font-size: 52px;
  text-align: center;
  font-family: "Kameron-Regular", "sans-serif";
  color: #000;
}
.section-info .container.container-wrap.custom-container {
  max-width: 1060px;
}
.section-info .container.container-wrap.custom-container .info-detail {
  max-width: 100%;
}
.section-info.info-careers, .section-info.info-press {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
.section-info.info-careers .info-detail, .section-info.info-press .info-detail {
  max-width: 100%;
}
.section-info .info-detail {
  max-width: 805px;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  margin: 0 auto;
  color: #000;
  letter-spacing: 1px;
  padding-top: 25px;
}
.section-info .info-detail p,
.section-info .info-detail ul,
.section-info .info-detail ol,
.section-info .info-detail li,
.section-info .info-detail a,
.section-info .info-detail span,
.section-info .info-detail h3,
.section-info .info-detail h4,
.section-info .info-detail h5 {
  font-family: "Poppins-Regular", "sans-serif";
  display: inline-block;
}
.section-info .info-detail p + p {
  margin-top: 23px;
}
.section-info .info-detail a {
  color: #000000;
  position: relative;
  text-decoration: none;
}
.section-info .info-detail a::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s;
}
.section-info .info-detail a:hover::before {
  opacity: 0;
}
.section-info.info-no-content {
  background-color: unset !important;
}
.section-info.info-no-content .container-wrap.custom-container {
  padding: 0;
}
.section-info .container-wrap.custom-container {
  padding: 45px 20px;
  max-width: 1013px;
}
.section-info .container-wrap.custom-container h2,
.section-info .container-wrap.custom-container a,
.section-info .container-wrap.custom-container .info-detail {
  color: #fff;
}
.section-info .container-wrap.custom-container a {
  position: relative;
  text-decoration: none;
}
.section-info .container-wrap.custom-container a::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
}
.section-info .container-wrap.custom-container a:hover::before {
  opacity: 0;
}
.section-info .container-wrap.custom-container .info-detail {
  padding-top: 25px;
}

@media (max-width: 991px) {
  .section-info {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .section-info .container-wrap {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .section-info {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .section-info.info-home {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .section-info.info-home.info-no-content {
    margin-top: 0;
    margin-bottom: 0;
  }
  .section-info.info-home.info-no-content + .section-img-content-meet {
    margin-top: 45px;
  }
  .section-info.info-press {
    margin-top: 38px;
    margin-bottom: 30px;
  }
  .section-info .info-title {
    font-size: 35px;
    line-height: 36px;
  }
  .section-info.bg-mossGreen .info-detail {
    max-width: 565px;
  }
  .section-info .info-detail {
    font-size: 12px;
    line-height: 20px;
    padding-top: 20px;
    max-width: 565px;
  }
  .section-info .info-detail p + p {
    margin-top: 10px;
  }
  .section-info .info-detail a::before {
    bottom: 3px;
  }
  .section-info .container-wrap.custom-container {
    padding: 20px 20px;
  }
  .section-info .container-wrap.custom-container .info-detail {
    padding-top: 10px;
  }
  .section-info .container-wrap.custom-container a::before {
    bottom: 3px;
  }
  .section-info.info-no-content .container-wrap.custom-container {
    padding: 0;
  }
}
.section-img-content-meet {
  margin-top: 50px;
}
.section-img-content-meet .img-wrap {
  margin-bottom: 50px;
}
.section-img-content-meet .story {
  display: flex;
  justify-content: space-between;
}
.section-img-content-meet .story-img {
  width: 32%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.section-img-content-meet .story-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.section-img-content-meet .story-bg {
  width: 68%;
}
.section-img-content-meet .story-info {
  position: relative;
  padding-right: 30px;
  padding-left: 49px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-img-content-meet .story-info-title {
  font-size: 40px;
  line-height: 42px;
  font-family: "Kameron-Regular", "sans-serif";
  font-weight: 400;
  color: #000000;
  margin-bottom: 5px;
}
.section-img-content-meet .story-info-heading {
  font-family: "Poppins-Regular", "sans-serif";
  font-size: 25px;
  color: #000000;
  line-height: 24px;
}
.section-img-content-meet .story-info-description {
  font-family: "Poppins-Regular", "sans-serif";
  margin-top: 30px;
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .section-img-content-meet {
    margin-top: 0px;
  }
  .section-img-content-meet .img-wrap {
    margin-bottom: 30px;
  }
  .section-img-content-meet .story-img {
    min-height: 277px;
  }
  .section-img-content-meet .story-info {
    padding-top: 0px;
    padding-left: 30px;
  }
  .section-img-content-meet .story-info-title {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 0px;
  }
  .section-img-content-meet .story-info-heading {
    font-size: 16px;
    line-height: 21px;
  }
  .section-img-content-meet .story-info-description {
    font-size: 12px;
    line-height: 20px;
    margin-top: 17px;
  }
}
@media only screen and (max-width: 575px) {
  .section-img-content-meet .img-wrap {
    margin-bottom: 0px;
  }
  .section-img-content-meet .story {
    flex-direction: column !important;
    gap: 0;
  }
  .section-img-content-meet .story-img {
    width: 100%;
    min-height: auto;
  }
  .section-img-content-meet .story-img img {
    position: relative;
    height: auto;
    width: 100%;
    object-position: center top;
  }
  .section-img-content-meet .story-bg {
    width: 100%;
  }
  .section-img-content-meet .story-info {
    padding-top: 30px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.img-content .img-wrap {
  margin-bottom: 25px;
}
.img-content .story-row.story {
  flex-wrap: wrap;
}
.img-content .story-row.story .story-info {
  width: calc(50% - 20px);
}

@media only screen and (max-width: 767px) {
  .img-content .story-row.story {
    flex-direction: column;
    gap: 25px;
  }
  .img-content .story-row.story .story-info {
    width: 100%;
  }
}
.img-content .img-wrap {
  margin-bottom: 25px;
}
.img-content .story-column.story {
  flex-direction: column;
}
.img-content .story-column.story .story-info {
  width: 100%;
  max-width: 1320px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 70px;
  padding-bottom: 55px;
}
.img-content .form-h2 {
  text-align: center;
  margin-top: 30px;
  font-family: "Kameron-Regular", "sans-serif";
}
.img-content .form-h2 h2 {
  font-size: 52px;
  line-height: 52px;
  font-family: "Kameron-Regular", "sans-serif";
  font-weight: 700;
  color: #000000;
  text-transform: capitalize;
}
.img-content.form-send-mail {
  font-family: "Poppins-Regular", "sans-serif";
}
.img-content.form-send-mail .img-wrap {
  margin-bottom: 0;
}
.img-content.form-send-mail .gfield_label {
  color: #000000;
  line-height: 32px;
  font-size: 20px;
  font-family: "Poppins-Regular", "sans-serif";
  font-weight: 700;
  letter-spacing: 1px;
}
.img-content.form-send-mail .gfield_required {
  color: #000000;
  font-size: 18px;
  line-height: 32px;
  font-family: "Poppins-Regular", "sans-serif";
  font-weight: 400;
  text-transform: lowercase;
  margin-left: 2px;
}
.img-content.form-send-mail .gfield .ginput_complex {
  color: #000000;
  font-size: 18px;
  line-height: 32px;
  font-family: "Raleway-VariableFont_wght", "sans-serif";
  font-weight: 400;
}
.img-content.form-send-mail .gform_validation_errors {
  display: none;
}
.img-content.form-send-mail .gform_ajax_spinner {
  position: absolute;
  left: 185px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
.img-content.form-send-mail .gform_footer {
  position: relative;
}
.img-content.form-send-mail .gform_confirmation_message_1 {
  color: #000000;
  font-size: 18px;
  line-height: 32px;
  font-family: "Poppins-Regular", "sans-serif";
  font-weight: 400;
  text-align: center;
}
.img-content.form-send-mail .gform_confirmation_message_1 em {
  font-style: normal;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme input[type=submit] {
  padding: 15px 40px;
  text-transform: uppercase;
  color: #000000;
  border: solid 2px #000000;
  letter-spacing: 2px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  border-radius: 4px;
  background-color: #fff;
  font-family: "Raleway-VariableFont_wght", "sans-serif";
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_description {
  background: none;
  border: none;
  padding-top: 5px;
  padding-left: 0;
  font-family: "Raleway-VariableFont_wght", "sans-serif";
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_validation_message,
.img-content.form-send-mail .gform_wrapper.gravity-theme .validation_message {
  background: none;
  border: none;
  padding-top: 5px;
  padding-left: 0;
  font-family: "Poppins-Regular", "sans-serif";
  padding-top: 0px;
  line-height: 18px;
  margin-top: 5px;
  font-size: 13px;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label,
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_error label,
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_error legend {
  color: #000000;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_required {
  color: #000000;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_required .gfield_required_custom,
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_required .gfield_required_text {
  font-style: normal;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .ginput_complex label {
  font-family: "Poppins-Regular", "sans-serif";
  font-size: 16px;
  padding-top: 0;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_label {
  font-size: 18px;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .form-name .gfield_label {
  margin-bottom: 0;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
  padding-right: 0;
}
.img-content.form-send-mail .gform_wrapper.gravity-theme input,
.img-content.form-send-mail .gform_wrapper.gravity-theme textarea {
  padding: 15px;
  font-size: 16px;
  font-family: "Raleway-VariableFont_wght", "sans-serif";
  color: #222;
}

@media only screen and (max-width: 1399px) {
  .img-content .story-column.story {
    flex-direction: column;
  }
  .img-content .story-column.story .story-info {
    max-width: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  .img-content .story-column.story {
    flex-direction: column;
  }
  .img-content .story-column.story .story-info {
    max-width: 960px;
  }
}
@media only screen and (max-width: 767px) {
  .img-content .story-column.story {
    gap: 30px;
  }
  .img-content .story-column.story .story-info {
    padding-top: 40px;
  }
  .img-content .form-h2 h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .img-content .form-send-mail .gform_wrapper.gravity-theme input[type=submit] {
    padding: 11px 25px;
    letter-spacing: 1.5px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 700;
  }
  .img-content .form-send-mail .gform_wrapper.gravity-theme input {
    padding: 8px;
  }
  .img-content .form-send-mail .gform_wrapper.gravity-theme .gfield_description {
    padding-top: 0px;
    line-height: 22px;
  }
  .img-content .form-send-mail .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description {
    margin-top: -1px;
  }
  .img-content .form-send-mail .gform_wrapper.gravity-theme .gform_ajax_spinner {
    left: 150px;
  }
}
@media only screen and (max-width: 641px) {
  .img-content.form-send-mail .gform_wrapper.gravity-theme input, .img-content.form-send-mail .gform_wrapper.gravity-theme textarea {
    padding: 5px 10px;
  }
  .img-content.form-send-mail .gform_wrapper.gravity-theme input[type=submit] {
    padding: 8px 20px;
    font-size: 18px;
  }
  .img-content.form-send-mail .gform_wrapper.gravity-theme .gfield_validation_message, .img-content.form-send-mail .gform_wrapper.gravity-theme .validation_message {
    font-family: "Poppins-Regular", "sans-serif";
    line-height: 18px;
    font-size: 12px;
    padding-right: 0px;
    padding-top: 0px;
    margin-top: 0px;
  }
  .img-content.form-send-mail .gform_wrapper.gravity-theme .ginput_complex span.name_last {
    margin-bottom: 0;
  }
  .img-content.form-send-mail .gform_wrapper.gravity-theme .gform_ajax_spinner {
    left: 150px;
  }
  .img-content.form-send-mail .gform_footer {
    padding-top: 35px;
  }
}
.box-img-content .img-wrap {
  margin-bottom: 50px;
}
.box-img-content .story {
  display: flex;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.box-img-content .story.story-position-left {
  flex-direction: unset;
}
.box-img-content .story.story-position-left .story-info-icon {
  right: 10px;
}
.box-img-content .story.story-position-right {
  flex-direction: row-reverse;
}
.box-img-content .story.story-position-right .story-info-icon {
  left: 10px;
}
.box-img-content .story-img {
  width: 40%;
  position: relative;
  overflow: hidden;
  min-height: 475px;
}
.box-img-content .story-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.box-img-content .story-bg {
  width: 60%;
  position: relative;
}
.box-img-content .story-info {
  position: relative;
  padding-right: 40px;
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 38px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-img-content .story-info-title {
  font-size: 60px;
  line-height: 57px;
  font-family: "CabinSketch-Bold", "sans-serif";
  text-transform: uppercase;
}
.box-img-content .story-info-description {
  font-size: 18px;
  line-height: 32px;
  font-family: "Poppins-Regular", "sans-serif";
  margin-bottom: 13px;
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 1px;
}
.box-img-content .story-info-description a,
.box-img-content .story-info-description span,
.box-img-content .story-info-description p,
.box-img-content .story-info-description li,
.box-img-content .story-info-description strong,
.box-img-content .story-info-description h1,
.box-img-content .story-info-description h2,
.box-img-content .story-info-description h3,
.box-img-content .story-info-description h4,
.box-img-content .story-info-description h5,
.box-img-content .story-info-description h6 {
  font-family: "Poppins-Regular", "sans-serif";
}
.box-img-content .story-info-more {
  padding-top: 37px;
  text-transform: uppercase;
  margin-top: auto;
}
.box-img-content .story-info-more a {
  color: #fff;
  text-decoration: none;
  line-height: 32px;
  font-size: 20px;
  font-family: "Raleway-VariableFont_wght", "sans-serif";
  text-transform: uppercase;
  font-weight: 700;
  width: fit-content;
  padding: 10px 25px;
  border: 2px solid #fff;
  border-radius: 50px;
}

@media only screen and (max-width: 767px) {
  .box-img-content .img-wrap {
    margin-bottom: 30px;
  }
  .box-img-content:last-of-type .img-wrap {
    margin-bottom: 0px;
  }
  .box-img-content .story-info {
    width: 100%;
    padding-top: 25px;
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 23px;
  }
  .box-img-content .story-info-title {
    font-size: 40px;
    line-height: 42px;
  }
  .box-img-content .story-info-description {
    font-size: 12px;
    line-height: 18px;
    margin-top: 6px;
  }
  .box-img-content .story-info-more {
    padding-top: 18px;
  }
  .box-img-content .story-info-more a {
    line-height: 14px;
    font-size: 13px;
    padding: 8px 20px;
  }
  .box-img-content .story-img {
    min-height: auto;
    height: auto;
  }
}
@media only screen and (max-width: 576px) {
  .box-img-content .story {
    flex-direction: column !important;
    gap: 0;
  }
  .box-img-content .story-img {
    width: 100%;
    min-height: auto;
    height: 300px;
  }
  .box-img-content .story-img img {
    position: relative;
  }
  .box-img-content .story-bg {
    width: 100%;
  }
  .box-img-content .story-info {
    padding: 30px 20px;
  }
}
.box-img-content-detail {
  margin-top: 50px;
}
.box-img-content-detail .img-wrap {
  margin-bottom: 50px;
}
.box-img-content-detail .story {
  display: flex;
  justify-content: space-between;
}
.box-img-content-detail .story-img {
  width: 40%;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.box-img-content-detail .story-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.box-img-content-detail .story-bg {
  width: 60%;
}
.box-img-content-detail .story-bg.color-mineShaft .story-info-title {
  color: #323232;
}
.box-img-content-detail .story-bg.color-mineShaft .story-info-heading {
  color: #323232;
}
.box-img-content-detail .story-bg.color-mineShaft .story-info-more a,
.box-img-content-detail .story-bg.color-mineShaft .story-info-more span {
  color: #323232;
  border: 2px solid #323232;
}
.box-img-content-detail .story-bg.color-goldenSand .story-info-title {
  color: #dfb96b;
}
.box-img-content-detail .story-bg.color-goldenSand .story-info-heading {
  color: #dfb96b;
}
.box-img-content-detail .story-bg.color-goldenSand .story-info-more a,
.box-img-content-detail .story-bg.color-goldenSand .story-info-more span {
  color: #dfb96b;
  border: 2px solid #dfb96b;
}
.box-img-content-detail .story-bg.color-mossGreen .story-info-title {
  color: #60725f;
}
.box-img-content-detail .story-bg.color-mossGreen .story-info-heading {
  color: #60725f;
}
.box-img-content-detail .story-bg.color-mossGreen .story-info-more a,
.box-img-content-detail .story-bg.color-mossGreen .story-info-more span {
  color: #60725f;
  border: 2px solid #60725f;
}
.box-img-content-detail .story-bg.color-rustOrange .story-info {
  color: #a64925;
}
.box-img-content-detail .story-bg.color-rustOrange .story-info-title {
  color: #a64925;
}
.box-img-content-detail .story-bg.color-rustOrange .story-info-heading {
  color: #a64925;
}
.box-img-content-detail .story-bg.color-rustOrange .story-info-more a,
.box-img-content-detail .story-bg.color-rustOrange .story-info-more span {
  color: #a64925;
  border: 2px solid #a64925;
}
.box-img-content-detail .story-bg.color-dustyBlue .story-info-title {
  color: #6b96a8;
}
.box-img-content-detail .story-bg.color-dustyBlue .story-info-heading {
  color: #6b96a8;
}
.box-img-content-detail .story-bg.color-dustyBlue .story-info-more a,
.box-img-content-detail .story-bg.color-dustyBlue .story-info-more span {
  color: #6b96a8;
  border: 2px solid #6b96a8;
}
.box-img-content-detail .story-bg.color-ivory .story-info-title {
  color: #f2f0e5;
}
.box-img-content-detail .story-bg.color-ivory .story-info-heading {
  color: #f2f0e5;
}
.box-img-content-detail .story-bg.color-ivory .story-info-more a,
.box-img-content-detail .story-bg.color-ivory .story-info-more span {
  color: #f2f0e5;
  border: 2px solid #f2f0e5;
}
.box-img-content-detail .story-bg.color-slateGray .story-info-title {
  color: #808285;
}
.box-img-content-detail .story-bg.color-slateGray .story-info-heading {
  color: #808285;
}
.box-img-content-detail .story-bg.color-slateGray .story-info-more a,
.box-img-content-detail .story-bg.color-slateGray .story-info-more span {
  color: #808285;
  border: 2px solid #808285;
}
.box-img-content-detail .story-info {
  position: relative;
  padding-right: 30px;
  padding-left: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.box-img-content-detail .story-info-title {
  font-size: 40px;
  line-height: 42px;
  font-family: "Kameron-Regular", "sans-serif";
  margin-bottom: 13px;
  font-weight: 400;
}
.box-img-content-detail .story-info-heading {
  font-family: "Poppins-Regular", "sans-serif";
  font-size: 25px;
  line-height: 24px;
  letter-spacing: 1px;
}
.box-img-content-detail .story-info-more {
  display: flex;
  margin-top: 35px;
}
.box-img-content-detail .story-info-more a,
.box-img-content-detail .story-info-more span {
  text-decoration: none;
  line-height: 24px;
  font-size: 20px;
  letter-spacing: 1px;
  font-family: "Poppins-Bold", "sans-serif";
  text-transform: uppercase;
  font-weight: 700;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 50px;
}
.box-img-content-detail .story-info-description {
  font-family: "Poppins-Regular", "sans-serif";
  margin-top: 32px;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #000000;
}
.box-img-content-detail .story-info-description a,
.box-img-content-detail .story-info-description span,
.box-img-content-detail .story-info-description p,
.box-img-content-detail .story-info-description li,
.box-img-content-detail .story-info-description strong,
.box-img-content-detail .story-info-description h1,
.box-img-content-detail .story-info-description h2,
.box-img-content-detail .story-info-description h3,
.box-img-content-detail .story-info-description h4,
.box-img-content-detail .story-info-description h5,
.box-img-content-detail .story-info-description h6 {
  font-family: "Poppins-Regular", "sans-serif";
}
.box-img-content-detail .editor-info-content a,
.box-img-content-detail .editor-info-content span,
.box-img-content-detail .editor-info-content p,
.box-img-content-detail .editor-info-content li,
.box-img-content-detail .editor-info-content strong,
.box-img-content-detail .editor-info-content h1,
.box-img-content-detail .editor-info-content h2,
.box-img-content-detail .editor-info-content h3,
.box-img-content-detail .editor-info-content h4,
.box-img-content-detail .editor-info-content h5,
.box-img-content-detail .editor-info-content h6 {
  font-family: "Poppins-Regular", "sans-serif";
}
.box-img-content-detail .editor-info-content ul {
  list-style: disc;
}
.box-img-content-detail .editor-info-content ol {
  list-style: decimal;
}
.box-img-content-detail .editor-info-content li {
  display: list-item;
}
.box-img-content-detail .editor-info-content p {
  margin-bottom: 20px;
  max-width: 100%;
}
.box-img-content-detail .editor-info-content ol {
  padding-left: 20px;
  margin: 10px 0px;
}
.box-img-content-detail .editor-info-content p + ul,
.box-img-content-detail .editor-info-content p + ol,
.box-img-content-detail .editor-info-content p + li {
  margin-top: -10px;
}
.box-img-content-detail .editor-info-content ul + p,
.box-img-content-detail .editor-info-content ol + p,
.box-img-content-detail .editor-info-content li + p {
  margin-top: 30px;
}
.box-img-content-detail .editor-info-content ul + h2,
.box-img-content-detail .editor-info-content ul + h3,
.box-img-content-detail .editor-info-content ul + h4,
.box-img-content-detail .editor-info-content ul + h5,
.box-img-content-detail .editor-info-content ul + h6 {
  margin-top: 30px;
}
.box-img-content-detail .editor-info-content h2 {
  margin-top: 10px;
  margin-bottom: 15px;
}
.box-img-content-detail .editor-info-content h3,
.box-img-content-detail .editor-info-content h5,
.box-img-content-detail .editor-info-content h6 {
  margin-bottom: 15px;
}
.box-img-content-detail .editor-info-content a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: #000000;
}
.box-img-content-detail .editor-info-content a::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s;
}
.box-img-content-detail .editor-info-content a:hover::before {
  opacity: 0;
}
.box-img-content-detail .editor-info-content img {
  margin-top: 15px;
  margin-bottom: 15px;
  width: auto;
}
.box-img-content-detail .editor-info-content li {
  margin-bottom: 15px;
}
.box-img-content-detail .editor-info-content iframe {
  max-width: 100%;
}
.box-img-content-detail .editor-info-content p + ol,
.box-img-content-detail .editor-info-content p + li {
  padding-left: 30px;
}
.box-img-content-detail .editor-info-content ul {
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  .box-img-content-detail {
    margin-top: 0px;
  }
  .box-img-content-detail .img-wrap {
    margin-bottom: 30px;
  }
  .box-img-content-detail .story-img {
    min-height: 277px;
  }
  .box-img-content-detail .story-info {
    padding-top: 0px;
    padding-left: 27px;
    padding-right: 27px;
  }
  .box-img-content-detail .story-info-title {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 0px;
  }
  .box-img-content-detail .story-info-heading {
    font-size: 16px;
    line-height: 21px;
  }
  .box-img-content-detail .story-info-more {
    margin-top: 15px;
  }
  .box-img-content-detail .story-info-more a,
  .box-img-content-detail .story-info-more span {
    font-size: 13px;
    line-height: 16px;
    padding: 8px 20px;
  }
  .box-img-content-detail .story-info-description {
    font-size: 12px;
    line-height: 18px;
    margin-top: 23px;
  }
  .box-img-content-detail .editor-info-content p {
    margin-bottom: 10px;
    max-width: 100%;
  }
  .box-img-content-detail .editor-info-content ol {
    padding-left: 20px;
    margin: 10px 0px;
  }
  .box-img-content-detail .editor-info-content p + ul,
  .box-img-content-detail .editor-info-content p + ol,
  .box-img-content-detail .editor-info-content p + li {
    margin-top: -10px;
  }
  .box-img-content-detail .editor-info-content ul + p,
  .box-img-content-detail .editor-info-content ol + p,
  .box-img-content-detail .editor-info-content li + p {
    margin-top: 10px;
  }
  .box-img-content-detail .editor-info-content ul + h2,
  .box-img-content-detail .editor-info-content ul + h3,
  .box-img-content-detail .editor-info-content ul + h4,
  .box-img-content-detail .editor-info-content ul + h5,
  .box-img-content-detail .editor-info-content ul + h6 {
    margin-top: 10px;
  }
  .box-img-content-detail .editor-info-content h2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .box-img-content-detail .editor-info-content h3,
  .box-img-content-detail .editor-info-content h5,
  .box-img-content-detail .editor-info-content h6 {
    margin-bottom: 10px;
  }
  .box-img-content-detail .editor-info-content a::before {
    bottom: 1px;
  }
  .box-img-content-detail .editor-info-content li {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .box-img-content-detail .img-wrap {
    margin-bottom: 0px;
  }
  .box-img-content-detail .story {
    flex-direction: column !important;
    gap: 0;
  }
  .box-img-content-detail .story-img {
    width: 100%;
  }
  .box-img-content-detail .story-img img {
    position: relative;
    height: 277px;
    width: 100%;
  }
  .box-img-content-detail .story-bg {
    width: 100%;
  }
  .box-img-content-detail .story-info {
    padding: 30px 20px;
    width: 100%;
  }
}
.section-blog-list {
  padding-bottom: 70px;
}
.section-blog-list .blog-col-detail {
  margin-bottom: 20px;
  max-width: 50%;
  flex: 0 0 50%;
  overflow: hidden;
  padding: 0 10px;
}
.section-blog-list .blog-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 20px;
}
.section-blog-list .blog-card-image {
  overflow: hidden;
  height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #d8d8d8;
}
.section-blog-list .blog-card-image .image-wrapper {
  height: 100%;
}
.section-blog-list .blog-card-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-blog-list .blog-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  padding: 35px 40px;
  padding-bottom: 55px;
}
.section-blog-list .blog-card-body h3 {
  font-family: "Kameron-Regular", "sans-serif";
  color: #242021;
  font-size: 40px;
  line-height: 42px;
  font-weight: 400;
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-blog-list .blog-card-body .blog-card-title {
  margin-bottom: 25px;
  text-align: center;
}
.section-blog-list .blog-card-body .blog-card-title a {
  text-decoration: none;
}
.section-blog-list .blog-card-body .blog-card-content {
  font-family: "Poppins-Regular", "sans-serif";
  color: #242021;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-blog-list .blog-card-body .blog-card-content p {
  font-family: "Poppins-Regular", "sans-serif";
}
.section-blog-list .blog-card-footer {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.section-blog-list .blog-card-footer a {
  color: #242021;
  font-size: 18px;
  line-height: 20px;
  position: relative;
  text-decoration: none;
  outline: none;
  word-break: break-word;
  border: 2px solid #242021;
  padding: 10px 25px;
  border-radius: 50px;
  width: fit-content;
  font-family: "Poppins-Bold", "sans-serif";
}
.section-blog-list .blog-list-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.section-blog-list .blog-list-row + .load-more-post {
  padding-top: 60px;
}
.section-blog-list .load-more-post {
  text-align: center;
}
.section-blog-list .load-more-post .show-number-post {
  color: #000;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 26px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-family: "Poppins-Bold", "sans-serif";
}
.section-blog-list .load-more-post .show-number-post span {
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 1px;
  font-family: "Poppins-Bold", "sans-serif";
}
.section-blog-list .load-more-post .button-load-more {
  margin: 0 auto;
  text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
  .section-blog-list .blog-col-detail {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 767px) {
  .section-blog-list {
    padding-top: 13px;
  }
  .section-blog-list .blog-list-row {
    max-width: 651px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-blog-list .blog-list-row + .load-more-post {
    padding-top: 25px;
  }
  .section-blog-list .blog-card-image {
    height: 267px;
  }
  .section-blog-list .blog-card-body {
    padding: 20px 27px;
  }
  .section-blog-list .blog-card-body h3 {
    font-size: 28px;
    line-height: 29px;
  }
  .section-blog-list .blog-card-body .blog-card-title {
    margin-bottom: 10px;
  }
  .section-blog-list .blog-card-body .blog-card-content {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 0;
  }
  .section-blog-list .blog-card-body .blog-card-content p {
    font-size: 12px;
    line-height: 20px;
  }
  .section-blog-list .blog-card-footer {
    margin-top: 25px;
  }
  .section-blog-list .blog-card-footer a {
    font-size: 13px;
    line-height: 20px;
    padding: 8px 20px;
  }
  .section-blog-list .load-more-post .show-number-post {
    font-size: 19px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .section-blog-list .load-more-post .show-number-post span {
    font-size: 19px;
    line-height: 20px;
  }
  .section-blog-list .button-load-more {
    font-size: 13px;
    line-height: 20px;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 575px) {
  .section-blog-list .blog-col-detail {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.list-site {
  margin-top: 30px;
  margin-bottom: 30px;
}
.list-site .row {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.list-site-box {
  max-width: 25%;
  flex: 0 0 25%;
  text-align: center;
  overflow: hidden;
}
.list-site-box img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.list-site-box:nth-child(2n+1) {
  background-color: #e6e7e9;
}
.list-site-box-last {
  max-width: 50%;
  flex: 0 0 50%;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: auto;
}
.list-site-box-last img {
  width: 60%;
  object-fit: cover;
  margin-bottom: 20px;
  max-width: 400px;
}
.list-site-text {
  text-transform: uppercase;
}
.list-site-text .list-site-link {
  padding: 20px;
}
.list-site-link {
  text-decoration: unset;
}
.list-site-name {
  color: #1e355e;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}
.list-site-location {
  color: #f2902b;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-size: 16px;
}
.list-site-btn {
  font-weight: 700;
  color: #1e355e;
  font-size: 16px;
}

@media only screen and (max-width: 1199px) {
  .list-site .row {
    align-items: stretch;
  }
  .list-site-box {
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
  }
  .list-site-box-last {
    max-width: 66.6666%;
    flex: 0 0 66.6666%;
    min-height: 300px;
    justify-self: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .list-site-box {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .list-site-box-last {
    max-width: 100%;
    flex: 0 0 100%;
    min-height: 300px;
    justify-self: flex-end;
  }
}
@media only screen and (max-width: 575px) {
  .list-site-box {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.page-not-found {
  text-align: center;
  padding: 250px 0px 72px;
  min-height: calc(100vh - 638px);
  color: #1e355e;
  font-weight: 700;
}
.page-not-found h1 {
  font-size: 67px;
  font-family: "Poppins-Bold", "sans-serif";
  color: #808285;
}
.page-not-found h2 {
  font-family: "Poppins-Bold", "sans-serif";
  color: #808285;
  font-size: 42px;
  margin-bottom: 20px;
}
.page-not-found a {
  line-height: 20px;
  text-decoration: none;
  outline: none;
  word-break: break-word;
  padding: 10px 20px;
  width: fit-content;
  font-family: "Poppins-Bold", "sans-serif";
  background-color: #808285;
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  margin: 0 auto;
}

@media all and (min-width: 575px) {
  .page-not-found {
    padding-left: 71px;
    padding-right: 71px;
    padding-top: 200px;
  }
  .page-not-found h1 {
    font-size: 92px;
  }
  .page-not-found h2 {
    font-size: 52px;
  }
}
@media all and (min-width: 992px) {
  .page-not-found h1 {
    font-size: 152px;
  }
  .page-not-found h2 {
    font-size: 50px;
  }
}
.hero-section {
  padding-top: 200px;
}
.hero-section .hero-swiper {
  padding-left: 10px;
  padding-right: 10px;
}
.hero-section .hero-swiper .link-box {
  display: block;
  overflow: hidden;
  height: auto;
  background-color: unset;
}
.hero-section .hero-swiper .box-slider {
  position: relative;
}
.hero-section .hero-swiper .content {
  position: absolute;
  bottom: 55px;
  right: 20px;
}
.hero-section .hero-swiper h2 {
  font-size: 46px;
  line-height: 40px;
  font-family: "CabinSketch-Bold", "sans-serif";
  text-align: right;
  color: #fff;
}
.hero-section .hero-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 350px;
}
.hero-section .hero-swiper .background-color-after {
  height: 35px;
  margin-top: 10px;
}
.hero-section .hero-swiper .background-image {
  display: flex;
}
.hero-section .hero-swiper .background-image img {
  height: auto;
  flex-shrink: 1;
}
.hero-section .hero-swiper .hero-home-swiper {
  display: none;
}
.hero-section .hero-swiper .swiper-button-next {
  background-image: url(../img/slider/Next-2.png);
  width: 40px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-section .hero-swiper .swiper-button-next::after {
  content: none;
}
.hero-section .hero-swiper .swiper-button-prev {
  background-image: url(../img/slider/Next-2.png);
  width: 40px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%) rotate(180deg);
  left: 16px;
  top: 50%;
}
.hero-section .hero-swiper .swiper-button-prev::after {
  content: none;
}

@media (max-width: 1160px) {
  .hero-section .hero-swiper h2 {
    font-size: 39px;
  }
}
@media all and (max-width: 991px) {
  .hero-section .hero-swiper h2 {
    font-size: 30px;
    line-height: 28px;
  }
  .hero-section .hero-swiper .content {
    right: 10px;
    bottom: 18px;
    padding-bottom: 4px;
  }
  .hero-section .hero-swiper .background-color-after {
    height: 15px;
    margin-top: 5px;
  }
  .hero-section .hero-swiper .hero-home-swiper {
    display: block;
  }
}
@media all and (max-width: 767px) {
  .hero-section {
    padding-top: 110px;
  }
  .hero-section .hero-swiper {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero-section .hero-swiper .content {
    right: 5px;
    padding-right: 5px;
  }
  .hero-section .hero-swiper .background-color-after {
    margin-top: 5px;
  }
}
@media all and (max-width: 575px) {
  .hero-section {
    padding-top: 70px;
  }
  .hero-section .hero-swiper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-section .hero-swiper .content {
    right: 7px;
    bottom: 28px;
    padding-bottom: 0;
    padding-right: 0;
  }
  .hero-section .hero-swiper .background-color-after {
    height: 18px;
  }
}
.section-banner {
  padding-top: 200px;
}
.section-banner.custom .background-image img {
  object-position: center 75%;
}
.section-banner .background {
  position: relative;
  max-height: 800px;
}
.section-banner .content {
  position: absolute;
  bottom: 50px;
  right: 20px;
}
.section-banner .content.left {
  left: 20px;
  right: 0;
}
.section-banner .content h2 {
  font-size: 140px;
  line-height: 130px;
  font-family: "CabinSketch-Bold", "sans-serif";
  text-align: right;
  color: #fff;
}
.section-banner .content h2.left {
  text-align: left;
}
.section-banner .background-image {
  width: 100%;
}
.section-banner .background-image img {
  max-height: 800px;
  object-position: center;
  object-fit: cover;
  height: 100%;
}
.section-banner .background-overlay {
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.section-banner .background-overlay img {
  min-height: 103px;
  object-fit: cover;
  object-position: 50% center;
}

@media (max-width: 1300px) {
  .section-banner.the-mountain .content {
    bottom: 115px;
  }
}
@media (max-width: 1023px) {
  .section-banner .content h2 {
    font-size: 120px;
    line-height: 117px;
  }
}
@media all and (max-width: 767px) {
  .section-banner {
    padding-top: 110px;
  }
  .section-banner.custom .background-image img {
    object-position: center 75%;
  }
  .section-banner .content h2 {
    font-size: 93px;
    line-height: 84px;
  }
  .section-banner .background {
    max-height: 500px;
  }
  .section-banner .background-image {
    display: flex;
    height: 500px;
  }
  .section-banner .background-image img {
    max-height: 500px;
    object-position: 50% 92%;
    flex-shrink: 1;
  }
  .section-banner .content {
    position: absolute;
    bottom: 29px;
    right: 33px;
  }
  .section-banner .content.left {
    left: 25px;
    right: 0;
  }
  .section-banner .background-overlay {
    bottom: 12px;
  }
  .section-banner.the-wine-country .background-overlay img {
    min-height: 120px;
  }
  .section-banner.the-ocean .background-overlay img {
    min-height: 62px;
  }
  .section-banner.the-mountain .background-overlay img {
    min-height: 90px;
  }
  .section-banner.the-mountain .title h2 {
    position: unset;
  }
  .section-banner.the-mountain .background h2 {
    position: relative;
    top: -50px;
  }
}
@media all and (max-width: 575px) {
  .section-banner {
    padding-top: 70px;
  }
  .section-banner .content {
    right: 20px;
  }
  .section-banner .content.left {
    left: 20px;
    right: 0;
    bottom: 29px;
  }
  .section-banner .content h2 {
    font-size: 56px;
    line-height: 54px;
  }
  .section-banner .background-image {
    display: flex;
    height: 500px;
  }
  .section-banner .background-overlay img {
    min-height: 80px;
  }
  .section-banner.the-wine-country .background-image img {
    object-position: 35% 92%;
  }
  .section-banner.the-wine-country .background-overlay img {
    object-position: 43% center;
    min-height: 115px;
  }
  .section-banner.the-ocean .background-image img {
    object-position: left 92%;
  }
  .section-banner.the-ocean .background-overlay img {
    object-position: 65% center;
  }
  .section-banner.the-mountain .background-image img {
    object-position: 20% 92%;
  }
  .section-banner.the-mountain .background-overlay img {
    min-height: 60px;
  }
}
.main-blog-section {
  margin-top: 70px;
  margin-bottom: 75px;
}
.main-blog-section .publication {
  font-size: 18px;
  line-height: 32px;
  color: #808285;
  font-family: "Poppins-Regular", "sans-serif";
}
.main-blog-section h1 {
  font-family: "Kameron-Regular", "sans-serif";
  font-size: 52px;
  line-height: 52px;
  color: black;
}
.main-blog-section .editor-main-content {
  font-family: "Poppins-Regular", "sans-serif";
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin-top: 20px;
}
.main-blog-section .editor-main-content p,
.main-blog-section .editor-main-content li,
.main-blog-section .editor-main-content a {
  font-family: "Poppins-Regular", "sans-serif";
}
.main-blog-section .editor-main-content p {
  line-height: 32px;
}
.main-blog-section .editor-main-content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.main-blog-section .editor-main-content img.alignright {
  margin-left: auto;
  display: flex;
}
.main-blog-section .editor-main-content h1,
.main-blog-section .editor-main-content h2,
.main-blog-section .editor-main-content h3,
.main-blog-section .editor-main-content h4,
.main-blog-section .editor-main-content h5,
.main-blog-section .editor-main-content h6 {
  font-family: "Kameron-Regular", "sans-serif";
  color: #808285;
}
.main-blog-section .editor-main-content h1 + p,
.main-blog-section .editor-main-content h2 + p,
.main-blog-section .editor-main-content h3 + p,
.main-blog-section .editor-main-content h4 + p,
.main-blog-section .editor-main-content h5 + p,
.main-blog-section .editor-main-content h6 + p,
.main-blog-section .editor-main-content h1 + ul,
.main-blog-section .editor-main-content h2 + ul,
.main-blog-section .editor-main-content h3 + ul,
.main-blog-section .editor-main-content h4 + ul,
.main-blog-section .editor-main-content h5 + ul,
.main-blog-section .editor-main-content h6 + ul,
.main-blog-section .editor-main-content h1 + ol,
.main-blog-section .editor-main-content h2 + ol,
.main-blog-section .editor-main-content h3 + ol,
.main-blog-section .editor-main-content h4 + ol,
.main-blog-section .editor-main-content h5 + ol,
.main-blog-section .editor-main-content h6 + ol {
  margin-top: 25px;
}
.main-blog-section .editor-main-content h2 {
  font-size: 40px;
  line-height: 40px;
}
.main-blog-section .editor-main-content h3 {
  font-size: 35px;
  line-height: 35px;
}
.main-blog-section .editor-main-content h4 {
  font-size: 28px;
  line-height: 35px;
}
.main-blog-section .editor-main-content ul {
  list-style: disc;
}
.main-blog-section .editor-main-content ol {
  list-style: decimal;
}
.main-blog-section .editor-main-content li {
  display: list-item;
}
.main-blog-section .editor-main-content ul + h2,
.main-blog-section .editor-main-content ul + h3,
.main-blog-section .editor-main-content ul + h4,
.main-blog-section .editor-main-content ul + h5,
.main-blog-section .editor-main-content ul + h6,
.main-blog-section .editor-main-content ul + ol,
.main-blog-section .editor-main-content ul + ul,
.main-blog-section .editor-main-content ul + p {
  margin-top: 25px;
}
.main-blog-section .editor-main-content ol + h2,
.main-blog-section .editor-main-content ol + h3,
.main-blog-section .editor-main-content ol + h4,
.main-blog-section .editor-main-content ol + h5,
.main-blog-section .editor-main-content ol + h6,
.main-blog-section .editor-main-content ol + p,
.main-blog-section .editor-main-content ol + ul {
  margin-top: 25px;
}
.main-blog-section .editor-main-content p + h2,
.main-blog-section .editor-main-content p + h3,
.main-blog-section .editor-main-content p + h4,
.main-blog-section .editor-main-content p + h5,
.main-blog-section .editor-main-content p + h6,
.main-blog-section .editor-main-content p + ul,
.main-blog-section .editor-main-content p + ol {
  margin-top: 25px;
}
.main-blog-section .editor-main-content li + li {
  margin-top: 12px;
}
.main-blog-section .editor-main-content p + p {
  margin-top: 25px;
}
.main-blog-section .editor-main-content a {
  position: relative;
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.main-blog-section .editor-main-content a:hover {
  text-decoration: none;
}
.main-blog-section .editor-main-content img {
  margin-top: 15px;
  margin-bottom: 15px;
  width: auto;
}
.main-blog-section .editor-main-content iframe {
  max-width: 100%;
}
.main-blog-section .editor-main-content ul,
.main-blog-section .editor-main-content ol {
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  .main-blog-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .main-blog-section h1 {
    font-size: 35px;
    line-height: 36px;
  }
  .main-blog-section .publication {
    font-size: 12px;
    line-height: 20px;
  }
  .main-blog-section .editor-main-content {
    font-size: 12px;
    line-height: 20px;
  }
  .main-blog-section .editor-main-content p {
    line-height: 20px;
  }
  .main-blog-section .editor-main-content h2 {
    font-size: 35px;
    line-height: 36px;
  }
  .main-blog-section .editor-main-content h3 {
    font-size: 25px;
    line-height: 30px;
  }
  .main-blog-section .editor-main-content h4 {
    font-size: 20px;
    line-height: 25px;
  }
  .main-blog-section .editor-main-content h1 + p,
  .main-blog-section .editor-main-content h2 + p,
  .main-blog-section .editor-main-content h3 + p,
  .main-blog-section .editor-main-content h4 + p,
  .main-blog-section .editor-main-content h5 + p,
  .main-blog-section .editor-main-content h6 + p,
  .main-blog-section .editor-main-content h1 + ul,
  .main-blog-section .editor-main-content h2 + ul,
  .main-blog-section .editor-main-content h3 + ul,
  .main-blog-section .editor-main-content h4 + ul,
  .main-blog-section .editor-main-content h5 + ul,
  .main-blog-section .editor-main-content h6 + ul,
  .main-blog-section .editor-main-content h1 + ol,
  .main-blog-section .editor-main-content h2 + ol,
  .main-blog-section .editor-main-content h3 + ol,
  .main-blog-section .editor-main-content h4 + ol,
  .main-blog-section .editor-main-content h5 + ol,
  .main-blog-section .editor-main-content h6 + ol {
    margin-top: 10px;
  }
  .main-blog-section .editor-main-content ul + h2,
  .main-blog-section .editor-main-content ul + h3,
  .main-blog-section .editor-main-content ul + h4,
  .main-blog-section .editor-main-content ul + h5,
  .main-blog-section .editor-main-content ul + h6,
  .main-blog-section .editor-main-content ul + ol,
  .main-blog-section .editor-main-content ul + ul,
  .main-blog-section .editor-main-content ul + p {
    margin-top: 10px;
  }
  .main-blog-section .editor-main-content ol + h2,
  .main-blog-section .editor-main-content ol + h3,
  .main-blog-section .editor-main-content ol + h4,
  .main-blog-section .editor-main-content ol + h5,
  .main-blog-section .editor-main-content ol + h6,
  .main-blog-section .editor-main-content ol + p,
  .main-blog-section .editor-main-content ol + ul {
    margin-top: 10px;
  }
  .main-blog-section .editor-main-content p + h2,
  .main-blog-section .editor-main-content p + h3,
  .main-blog-section .editor-main-content p + h4,
  .main-blog-section .editor-main-content p + h5,
  .main-blog-section .editor-main-content p + h6,
  .main-blog-section .editor-main-content p + ul,
  .main-blog-section .editor-main-content p + ol {
    margin-top: 10px;
  }
  .main-blog-section .editor-main-content li + li {
    margin-top: 10px;
  }
  .main-blog-section .editor-main-content p + p {
    margin-top: 10px;
  }
}
.form-revinate-contact {
  margin: 0 auto;
  width: 100%;
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 35px;
}

@media only screen and (max-width: 767px) {
  .form-revinate-contact {
    padding-bottom: 50px;
  }
}
@supports (hanging-punctuation: first) and (-webkit-appearance: none) {
  .nav-mobile .dropdown::after {
    transform: rotate(180deg);
  }
  .nav-mobile .has-open .dropdown::after {
    transform: rotate(0deg);
  }
}
