/*

cleanslate.css

inspired by;
reset.css - http://meyerweb.com/eric/tools/css/reset/ 
normalize.css - http://git.io/normalize 

*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:focus {
  outline: none;
  outline: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, 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, input, textarea, select, button, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

a,
a:hover, a:active, a:focus {
  text-decoration: none;
  outline: 0 !important;
}

::selection {
  background: #000;
  color: #FFF;
}

::-moz-selection {
  background: #000;
  color: #FFF;
}

/* HTML5 display definitions
========================================================================== 
*/
/*
 * Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

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

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

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

/*
	1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using `em` units.
	2. Prevents 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 */
}

/*
	Addresses `font-family` inconsistency between `textarea` and other form elements.
*/
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
  line-height: 1;
}

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

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

/*
Typography
========================================================================== 
*/
/*
 * Addresses styling not present in IE 7/8/9, Safari 5, and Chrome.


abbr[title] 
{
    border-bottom: 1px dotted;
}
*/
/*
	Addresses style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.

b,
strong {
	font-weight: bold;
}
*/
/*
	Corrects font family set oddly in IE 6, Safari 4/5, and Chrome.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

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

/*
 * Addresses CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

/*
 * Addresses `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: "";
  content: none;
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*
Lists
========================================================================== 
*/
dl,
dd,
menu,
ol,
ul,
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

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

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Corrects 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. Corrects color not being inherited in IE 6/7/8/9.
 * 2. Corrects text not wrapping in Firefox 3.
 * 3. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers.
 * 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improves 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 */
}

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

/*
1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
2. Corrects inability to style clickable `input` types in iOS.
3. Improves usability and consistency of cursor style between image-type `input` and others.
4. Removes 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: default;
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

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

/*
1. Addresses box sizing set to content-box in IE 8/9.
2. Removes excess padding in IE 8/9.
3. Removes 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. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `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;
}

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

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

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

/*
Tables
========================================================================== 
*/
/*
Remove most spacing between table cells.
tables still need 'cellspacing="0"' in the markup
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
}

body {
  font-size: 10px;
  font-family: "ActualMono", "Verdana", sans-serif;
  color: #000;
}
body #main {
  overflow: hidden;
}
body.no_scroll {
  overflow: hidden; /* Hide scrollbars */
}

@font-face {
  font-family: "ActualMono";
  src: url("../fonts/AAActualMono-Light.woff2") format("woff2"), url("../fonts/AAActualMono-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Halitage";
  src: url("../fonts/Halitage-Sans.woff2") format("woff2"), url("../fonts/Halitage-Sans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nersans";
  src: url("../fonts/NersansOne.woff2") format("woff2"), url("../fonts/NersansOne.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/*
---------------------------------------------------------------------------
=	GAVITY FORM
---------------------------------------------------------------------------
*/
.gform_wrapper {
  font-size: clamp(16px, 1vw, 18px);
  padding: 0 10%;
  /*
  ----------------------------
  =	ERRORS
  ----------------------------
  */
  /*ERROR*/
  /*
  ----------------------------
  =	BODY
  ----------------------------
  */
  /*
  ----------------------------
  =	FORM FOOTER
  ----------------------------
  */
  /*
  ----------------------------
  =	ON SUBMIT
  ----------------------------
  */
}
.gform_wrapper .gfield_visibility_hidden,
.gform_wrapper .gfield--type-honeypot,
.gform_wrapper .partial_entry_warning {
  display: none !important;
}
.gform_wrapper .gf-readonly input,
.gform_wrapper .gf-readonly textarea {
  pointer-events: none !important;
}
.gform_wrapper .gform_validation_errors {
  margin-bottom: 10px;
}
.gform_wrapper .gform_validation_errors h2 {
  display: block;
  text-align: center;
  line-height: 1.3em;
  color: #F76456;
}
.gform_wrapper .gfield_validation_message {
  display: block;
  line-height: 1.2em;
  color: #F76456;
  padding-top: 10px;
}
.gform_wrapper .gform-body .gfield_label {
  display: block;
  margin-bottom: 14px;
}
.gform_wrapper .gform-body .gfield_label .gfield_required {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 14px;
}
.gform_wrapper .gform-body .gfield_label .gfield_required span {
  display: none;
}
.gform_wrapper .gform-body .gfield_label .gfield_required:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "*";
  color: #000;
}
.gform_wrapper .gform-body input {
  font-size: 0.8em;
}
.gform_wrapper .gform-body input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.gform_wrapper .gform-body input[type=text],
.gform_wrapper .gform-body input[type=email],
.gform_wrapper .gform-body input[type=number] {
  padding: 16px;
  border: 1px solid #000;
}
.gform_wrapper .gform-body input:focus,
.gform_wrapper .gform-body textarea:focus {
  border: 1px solid blue !important;
}
.gform_wrapper .gform-body div.gfield {
  margin-bottom: 26px;
  /*SECTION TITLE*/
}
.gform_wrapper .gform-body div.gfield .gsection_title {
  display: block;
  text-align: center;
  padding-bottom: 10px;
}
.gform_wrapper .gform-body div.gfield .ginput_container input,
.gform_wrapper .gform-body div.gfield .ginput_container select,
.gform_wrapper .gform-body div.gfield .ginput_container textarea {
  display: block;
  padding: 16px;
  width: 100%;
  border: 1px solid #000;
  background: transparent;
  resize: none !important;
}
.gform_wrapper .gform-body div.gfield .ginput_container select {
  -webkit-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000000' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px), 50%;
  background-size: 12px 12px;
  color: rgba(0, 0, 0, 0.5);
}
.gform_wrapper .gform-body .gfield_description {
  font-size: 0.8em;
}
.gform_wrapper .gform-body .field_description_above .gfield_description {
  padding-bottom: 10px;
}
.gform_wrapper .gform-body .field_description_below .gfield_description {
  padding-top: 10px;
}
.gform_wrapper .gform-body .charleft {
  padding-top: 10px;
}
.gform_wrapper .gform-body fieldset {
  padding: 0;
  border: none;
  margin-bottom: 20px;
}
.gform_wrapper .gform-body fieldset .ginput_complex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.gform_wrapper .gform-body fieldset .ginput_complex label {
  display: block;
  padding-bottom: 10px;
  display: none;
}
.gform_wrapper .gform-body fieldset .ginput_complex span,
.gform_wrapper .gform-body fieldset .ginput_complex div {
  flex: 1;
}
.gform_wrapper .gform-body fieldset .ginput_complex span input,
.gform_wrapper .gform-body fieldset .ginput_complex div input {
  width: 100%;
}
.gform_wrapper .gform-body fieldset .ginput_complex .gf_clear_complex {
  display: none;
}
.gform_wrapper .gform-body .ginput_container_consent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.8em;
}
.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gform_wrapper .gform_footer input,
.gform_wrapper .gform_page_footer input {
  flex: 1;
  height: 58px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
}
.gform_wrapper .gform_footer input.gform_next_button, .gform_wrapper .gform_footer input.gform_previous_button,
.gform_wrapper .gform_page_footer input.gform_next_button,
.gform_wrapper .gform_page_footer input.gform_previous_button {
  max-width: 25%;
}
.gform_wrapper .gform_footer input.gform_previous_button,
.gform_wrapper .gform_page_footer input.gform_previous_button {
  border: 1px solid #000;
  background: #fff;
  color: #000;
}
.gform_wrapper .gform_footer input:hover,
.gform_wrapper .gform_page_footer input:hover {
  background: #fff;
  color: #000;
}
.gform_wrapper .gform-loader {
  background: url("https://cdnjs.cloudflare.com/ajax/libs/timelinejs/2.36.0/css/loading.gif") no-repeat center center;
  height: 20px;
  width: 20px;
  display: inline-block;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: none;
}

/*
---------------------------------------------------------------------------
=	THANKYOU
---------------------------------------------------------------------------
*/
.gform_confirmation_wrapper {
  padding: 0 5%;
  text-align: center;
  line-height: 1.4em;
}

/*
---------------------------------------------------------------------------
=	PROGRESS BAR
---------------------------------------------------------------------------
*/
.gf_progressbar_wrapper {
  margin-bottom: 60px;
  position: relative;
}
.gf_progressbar_wrapper .gf_progressbar_title {
  position: absolute;
  right: 0;
  bottom: -22px;
  font-size: 0 !important;
}
.gf_progressbar_wrapper .gf_progressbar_title .gf_step_current_page::after {
  content: " / ";
}
.gf_progressbar_wrapper .gf_progressbar_title .gf_step_current_page,
.gf_progressbar_wrapper .gf_progressbar_title .gf_step_page_count {
  font-size: 12px;
}
.gf_progressbar_wrapper .gf_progressbar {
  background: #fff;
  border: 1px solid #000;
}
.gf_progressbar_wrapper .gf_progressbar .gf_progressbar_percentage {
  background: orange;
  color: #fff;
  padding: 5px;
}
.gf_progressbar_wrapper .gf_progressbar .gf_progressbar_percentage span {
  display: none;
}

/*
---------------------------------------------------------------------------
=	HEADER
---------------------------------------------------------------------------
*/
#header {
  position: fixed;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 40px 0 40px;
  z-index: 10;
}
@media only screen and (max-width: 1000px) {
  #header {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #header {
    padding: 20px;
  }
}
#header #logo {
  display: inline-block;
}
#header #logo img {
  display: block;
  width: auto;
  height: 60px;
  transition: 0.5s;
  filter: brightness(0) saturate(100%);
}
.home #header #logo img, .page-run-with-us #header #logo img {
  filter: unset;
}
@media only screen and (min-width: 1001px) {
  .home #header #logo img, .page-run-with-us #header #logo img {
    height: 220px;
  }
}
#header #logo.travel img {
  height: 60px;
}
.no_scroll #header #logo img {
  filter: brightness(0) saturate(100%);
}
#header nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 20px;
}
@media only screen and (max-width: 600px) {
  #header nav {
    display: none;
  }
}
#header nav a,
#header nav span {
  display: inline-block;
  color: #000;
  font-size: 18px;
  transition: 0.5s;
}
.home #header nav a,
.home #header nav span, .page-run-with-us #header nav a,
.page-run-with-us #header nav span {
  color: #fff;
}
#header nav .soc {
  display: none;
}
@media only screen and (max-width: 600px) {
  #header nav .soc {
    display: block;
  }
}
#header.scrolled nav a, #header.scrolled nav span {
  color: #000;
}
#header.scrolled #logo img {
  filter: brightness(0) saturate(100%);
}
#header.scrolled .mob_nav > span, #header.scrolled .mob_nav a {
  color: #000 !important;
}

/*
----------------------------
=	BURGER
----------------------------
*/
.mob_nav {
  display: none;
}
@media only screen and (max-width: 600px) {
  .mob_nav {
    display: flex;
    align-items: top;
    justify-content: center;
    margin-left: auto;
    gap: 20px;
  }
  .mob_nav > span {
    display: block;
    text-align: right;
    width: 100px;
    font-size: 16px;
    color: #000;
    padding-top: 4px;
  }
  .mob_nav > span a {
    display: block;
    color: #000;
  }
  .home .mob_nav a,
  .home .mob_nav > span, .page-run-with-us .mob_nav a,
  .page-run-with-us .mob_nav > span {
    color: #F9FAED;
  }
}

#nav-toggle {
  width: 30px;
  height: 24px;
  z-index: 300;
  margin-left: 5%;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nav-toggle #nav-burger {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
#nav-toggle #nav-burger span {
  display: block;
  position: absolute;
  background: #000;
  height: 4px;
  width: 100%;
  left: 0;
  transition: 0.25s ease-in-out;
}
.home #nav-toggle #nav-burger span {
  background: #F9FAED;
}
#nav-toggle #nav-burger span:nth-child(1) {
  top: 0;
}
#nav-toggle #nav-burger span:nth-child(2), #nav-toggle #nav-burger span:nth-child(3) {
  top: calc(50% - 2px);
}
#nav-toggle #nav-burger span:nth-child(4) {
  bottom: 0;
}
#nav-toggle #nav-burger:hover span {
  background: #D2D800;
}
#nav-toggle #nav-burger.open span {
  background: #000;
}
#nav-toggle #nav-burger.open span:nth-child(1),
#nav-toggle #nav-burger.open span:nth-child(4) {
  top: calc(50% - 2px);
  width: 0;
  left: 50%;
}
#nav-toggle #nav-burger.open span:nth-child(2) {
  transform: rotate(45deg);
}
#nav-toggle #nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.scrolled #nav-burger span {
  background: #000 !important;
}

/*
----------------------------
=	SLIDEOUT
----------------------------
*/
#slideout_nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  background-size: cover;
  z-index: 9;
  left: -110%;
  position: fixed;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
}
#slideout_nav.active {
  left: 0;
}
#slideout_nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 5%;
}
#slideout_nav nav a,
#slideout_nav nav > span {
  flex: 100%;
  display: block;
  color: #000;
  font-size: 3vh;
  margin-bottom: 1.4em;
}

/*
---------------------------------------------------------------------------
=	FOOTER
---------------------------------------------------------------------------
*/
.connect {
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1001px) {
  .connect {
    gap: 2%;
  }
}
@media only screen and (max-width: 1000px) {
  .connect {
    gap: 40px;
  }
}
.connect > div {
  flex: 1;
}
@media only screen and (max-width: 1000px) {
  .connect > div {
    flex: calc(50% - 40px);
  }
  .connect > div.foot_title {
    flex: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .connect > div {
    flex: 100%;
  }
}
.connect > div h3 {
  display: block;
  font-size: clamp(30px, 3vw, 39px);
  line-height: 1.2em;
}
@media only screen and (min-width: 1001px) {
  .connect > div h3 span {
    display: block;
  }
}
.connect > div .hal {
  letter-spacing: 0.1em;
}
.connect > div > span, .connect > div a {
  display: block;
}
.connect > div > span {
  font-size: 23px;
  margin-bottom: 1.4em;
}
.connect > div a {
  margin-top: 30px;
  color: #000;
  font-size: clamp(14px, 2vw, 17px);
}

#footer > div {
  border-top: 1px solid #000;
  padding-top: 40px;
}
#footer > div > img {
  display: block;
  width: 100%;
  height: auto;
}
#footer > div .footer_bottom {
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
}
@media only screen and (max-width: 1250px) {
  #footer > div .footer_bottom {
    font-size: 14px;
  }
}
#footer > div .footer_bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
#footer > div .footer_bottom div span {
  display: inline-block;
}
#footer > div .footer_bottom div span a {
  text-decoration: underline;
}
#footer > div .footer_bottom nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
#footer > div .footer_bottom a {
  display: inline-block;
  color: #000;
}
@media only screen and (max-width: 1000px) {
  #footer > div .footer_bottom div, #footer > div .footer_bottom nav {
    flex: 100%;
    justify-content: center;
  }
  #footer > div .footer_bottom div {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 600px) {
  #footer > div .footer_bottom div {
    gap: 10px;
  }
  #footer > div .footer_bottom div span {
    text-align: center;
    flex: 100%;
  }
  #footer > div .footer_bottom nav {
    gap: 10px;
  }
}

.hal {
  font-family: "Halitage";
  letter-spacing: 0.2em;
}

.acc {
  font-family: "ActualMono";
  text-transform: uppercase;
}

.title {
  font-family: "Nersans";
  line-height: 1.4em;
}

.section_title {
  font-size: 39px;
}

.section {
  padding: 40px;
}
@media only screen and (max-width: 1000px) {
  .section {
    padding: 40px 20px;
  }
}

p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4em;
  margin-bottom: 1.6em;
}
p:last-of-type {
  margin-bottom: 0;
}
p a {
  color: #000;
  text-underline-offset: 4px;
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}

.entry_content h2, .entry_content h3, .entry_content h3 {
  display: block;
  font-size: 26px;
  font-family: "Nersans";
  margin-bottom: 1em;
}
.entry_content ul {
  padding: 0 40px;
  margin-bottom: 4em;
}
@media only screen and (max-width: 1000px) {
  .entry_content ul {
    padding: 0 20px;
  }
}
.entry_content ul li {
  display: block;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4em;
  margin-bottom: 6px;
}

a:hover {
  color: #D2D800 !important;
  transition: 0.2s;
}

.main_pad {
  padding-top: 100px;
}
.home .main_pad, .page-run-with-us .main_pad {
  padding: 0;
}

/*
---------------------------------------------------------------------------
=	WELCOME
---------------------------------------------------------------------------
*/
.welcome {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  position: relative;
}
.welcome:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(11, 29, 38, 0) -2%, rgba(0, 0, 0, 0.3) 99%);
}
@media only screen and (min-width: 1001px) {
  .welcome {
    background-attachment: fixed !important;
  }
}
.welcome > div {
  color: #fff;
  text-align: center;
  padding: 0 40px 140px 40px;
  position: relative;
  z-index: 1;
}
.welcome > div span {
  display: block;
  font-size: 22px;
  line-height: 1.4em;
  text-transform: uppercase;
}
.welcome > div span:first-of-type {
  margin-bottom: 10px;
}
/*
---------------------------------------------------------------------------
=	CONTENT BLOCK
---------------------------------------------------------------------------
*/
.content_block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
}
@media only screen and (max-width: 600px) {
  .content_block {
    padding-bottom: 40px;
  }
}
.content_block .col {
  flex: 50%;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .content_block .col {
    flex: 100%;
  }
  .content_block .col.col1 {
    order: 2;
  }
  .content_block .col.col2 {
    order: 1;
    margin-bottom: 80px;
  }
  .single .content_block .col.col1 {
    order: 1;
  }
  .single .content_block .col.col2 {
    order: 2;
  }
}
.content_block .col .overflow {
  overflow: hidden;
}
.content_block .col .overflow span,
.content_block .col .overflow > a {
  display: block;
  padding-bottom: 120%;
}
.content_block .col .overflow > a {
  position: relative;
  transition: 0.5s;
}
.content_block .col .overflow > a:hover:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  content: "";
}
.content_block .col .overflow > a div {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.content_block .col .overflow > a div em {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
}
@media only screen and (min-width: 1001px) {
  .single .content_block .col .overflow span,
  .single .content_block .col .overflow > a {
    padding: unset;
    height: 90vh;
  }
}
.content_block .col .img {
  display: block;
  width: 100%;
}
.content_block .col .badge {
  position: absolute;
  bottom: -85px;
  right: -150px;
  width: 170px;
  height: 170px;
}
@media only screen and (max-width: 1000px) {
  .content_block .col .badge {
    bottom: -45px;
    right: -30px;
    width: 100px;
    height: 100px;
  }
}
.content_block .col.col2 {
  padding: 5%;
}
@media only screen and (max-width: 1000px) {
  .content_block .col.col2 {
    padding: 40px 0 0 0;
  }
}
.content_block .col.col2 .title {
  display: block;
}
.content_block .col.col2 .entry_content {
  padding: 80px 0 0 0;
}
.content_block .col.col2 .entry_content p:first-of-type {
  text-indent: 10em;
}
.content_block#about_us {
  margin-top: 40px;
  padding-bottom: 0;
}
@media only screen and (max-width: 1000px) {
  .content_block#about_us .col1 {
    order: 1;
  }
  .content_block#about_us .col2 {
    order: 2;
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
  }
}
.zoom_in {
  -webkit-animation: zoomin 30s 1;
}

/*
---------------------------------------------------------------------------
=	MERCH
---------------------------------------------------------------------------
*/
.merch .merch_intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}
.merch .merch_intro p {
  font-size: 17px;
}
.merch .merch_intro a {
  color: #000;
  margin-left: auto;
  font-size: 18px;
}
@media only screen and (max-width: 1200px) {
  .merch .merch_intro a {
    width: 100%;
  }
}

/*
----------------------------
=	PRODUCT GRID
----------------------------
*/
.product_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product_grid .product {
  width: calc(25% - 10px);
}
.product_grid .product.by_4 {
  width: calc(25% - 10px);
  border: 1px solid orange;
}
.product_grid .product.by_3 {
  width: calc(33.33% - 10px);
}
.product_grid .product.by_2 {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 1001px) {
  .product_grid .product {
    align-self: stretch;
  }
}
@media only screen and (max-width: 1000px) {
  .product_grid .product {
    flex: 100%;
    margin-bottom: 60px;
  }
  .product_grid .product:last-of-type {
    margin-bottom: 0;
  }
}
.product_grid .product .product_image {
  display: block;
  padding-bottom: 120%;
  margin-bottom: 20px;
}
.single .product_grid .product .product_image, .archive .product_grid .product .product_image {
  padding: 0;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 1000px) {
  .product_grid .product .product_image {
    padding: 0;
    aspect-ratio: 1/1.2;
  }
}
.product_grid .product > div {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  font-size: 16px;
}
@media only screen and (min-width: 601px) {
  .product_grid .product > div {
    padding: 0 20px;
  }
}
.product_grid .product > div a {
  display: block;
  color: #000;
}
.product_grid .product > div a:hover {
  color: #D2D800;
}
.product_grid .product > div h3 {
  flex: 1;
  line-height: 1.2em;
  letter-spacing: 0.1em;
}
.product_grid .product > div span {
  display: inline-block;
  margin-left: auto;
  width: 80px;
  text-align: right;
  padding-top: 2px;
}

/*
---------------------------------------------------------------------------
=	FOLLOW US
---------------------------------------------------------------------------
*/
#follow_us a {
  display: block;
  height: 80vh;
  display: flex;
  flex-wrap: wrap;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 100px) {
  #follow_us a {
    background-position: 0% 50%;
  }
}
#follow_us a > span {
  width: 100%;
  display: flex;
  padding: 15% 5% 5% 5%;
}
@media only screen and (max-width: 1000px) {
  #follow_us a > span {
    padding-top: 5%;
  }
}
#follow_us a > span span {
  display: inline-block;
  font-size: 2vw;
  color: #000;
  font-family: "Halitage";
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 700px) {
  #follow_us a > span span {
    font-size: 4vw;
  }
}
#follow_us a > span span:nth-child(2) {
  display: inline-block;
  margin-left: auto;
}

/*
---------------------------------------------------------------------------
=	MEETUPS
---------------------------------------------------------------------------
*/
.meetups {
  padding-bottom: 40px;
}
@media only screen and (max-width: 1000px) {
  .meetups {
    padding-bottom: 0;
  }
}
.meetups .title {
  margin-bottom: 40px;
}
.meetups .upcoming {
  margin-bottom: 5%;
}
.meetups .past_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.meetups .past_head .title {
  margin-right: auto;
  margin-bottom: 0;
}
.meetups table {
  width: 100%;
  border-collapse: collapse;
  font-size: 120%;
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 1px solid #9E9E9E;
}
.meetups table tr {
  border-top: 1px solid #9E9E9E;
  font-size: 18px;
}
.meetups table tr td {
  padding: 30px 0;
  text-align: right;
}
.meetups table tr td:first-child {
  text-align: left;
  font-family: "Halitage";
  letter-spacing: 0.1em;
  font-size: 20px;
  line-height: 1.4em;
}
.meetups table tr td.address {
  line-height: 1.4em;
}
.meetups table tr td.address address {
  font-family: "ActualMono";
  font-size: 14px;
  letter-spacing: 0;
}
.meetups table tr td a {
  color: #000;
}
.meetups table tr td.map a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.meetups table tr td.gal a {
  font-family: "Halitage";
  letter-spacing: 0.1em;
}
.meetups .archive {
  font-size: 14px;
  color: #000;
}
@media only screen and (max-width: 800px) {
  .meetups table, .meetups tbody, .meetups tr, .meetups td {
    display: block;
    width: 100%;
  }
  .meetups table {
    border: none !important;
  }
  .meetups tr {
    padding: 30px 0 !important;
  }
  .meetups tr:first-of-type {
    padding-top: 0 !important;
    border: none !important;
  }
  .meetups td {
    text-align: left !important;
    padding: 0 !important;
  }
  .meetups td:first-of-type {
    width: 100% !important;
  }
  .meetups td.address {
    padding-top: 10px !important;
  }
  .meetups .past table {
    border-bottom: 1px solid #9E9E9E !important;
  }
}

.ring_wrap {
  margin-top: 80px;
}
@media only screen and (max-width: 600px) {
  .ring_wrap {
    margin-top: 40px;
  }
}
.ring_wrap em {
  position: relative;
  width: 174px;
}
.ring_wrap em svg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*
---------------------------------------------------------------------------
=	CONTENT GRID
---------------------------------------------------------------------------
*/
.content_grid .content_grid_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /*

  .col
  {
  	flex:50%;

  	&.col1
  	{


  		span
  		{
  			display: block;
  			padding-bottom: 90%;
  		}
  	}
  	&.col2
  	{
  		padding: 5%;
  		border: 1px solid orange;
  		.hal
  		{
  			display: block;
  			font-size: 23px;
  			line-height: 1.4em;
  			letter-spacing: 0.1em;
  			padding-bottom: 5%;
  		}
  	}

  	@media only screen and (max-width: 1000px)
  	{
  		flex:100%;

  		&.col2
  		{
  			padding: 100px 0;
  		}
  	}
  }
  @media only screen and (max-width: 1000px)
  {
  	&:last-of-type
  	{
  		.col2
  		{
  			padding-bottom: 20px;
  		}
  	}
  }

  @media only screen and (min-width: 1001px)
  {
  	/*
  	&:nth-child(odd)
  	{
  		.col2
  		{
  			.title
  			{
  				text-align: right;
  			}
  		}
  	}

  	&:nth-child(even)
  	{
  		.col1
  		{
  			order:2;
  		}
  		.col2
  		{
  			order:1;
  			padding-right: 10%;
  		}
  	}

  }
  */
}
.content_grid .content_grid_item .col {
  flex: 50%;
}
@media only screen and (max-width: 1000px) {
  .content_grid .content_grid_item .col {
    flex: 100%;
  }
}
.content_grid .content_grid_item .col.col1 {
  align-self: stretch;
  overflow: hidden;
}
@media only screen and (min-width: 1001px) {
  .content_grid .content_grid_item .col.col1 {
    min-height: 80vh;
  }
}
@media only screen and (max-width: 1000px) {
  .content_grid .content_grid_item .col.col1 {
    aspect-ratio: 1/1;
  }
}
.content_grid .content_grid_item .col.col1 span {
  display: block;
  height: 100%;
}
.content_grid .content_grid_item .col.col2 {
  padding: 5% 8% 5% 4%;
}
@media only screen and (max-width: 1000px) {
  .content_grid .content_grid_item .col.col2 {
    padding: 40px 0 80px 0;
  }
}
.content_grid .content_grid_item .col.col2 .hal {
  display: block;
  font-size: 23px;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  padding-bottom: 5%;
}
@media only screen and (max-width: 1000px) {
  .content_grid .content_grid_item:last-of-type .col2 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1001px) {
  .content_grid .content_grid_item:nth-child(even) .col1 {
    order: 2;
  }
  .content_grid .content_grid_item:nth-child(even) .col2 {
    order: 1;
  }
}
@media only screen and (max-width: 1000px) {
  .content_grid .content_grid_item .col1 {
    order: 1;
  }
  .content_grid .content_grid_item .col2 {
    order: 2;
  }
}

/*
---------------------------------------------------------------------------
=	FAQS
---------------------------------------------------------------------------
*/
.faqs {
  padding-bottom: 0;
}
.faqs .faq_intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
  margin-bottom: 40px;
}
@media only screen and (max-width: 600px) {
  .faqs .faq_intro {
    margin-bottom: 30px;
  }
}
.faqs .faq_intro p {
  font-size: 17px;
}
.faqs .faq_intro a {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.faqs .faq {
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
  margin-bottom: 40px;
}
@media only screen and (max-width: 600px) {
  .faqs .faq {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.faqs .faq:last-of-type {
  margin-bottom: 0;
}
.faqs .faq .question {
  display: block;
  color: #000;
  font-family: "Halitage";
  letter-spacing: 0.1em;
  font-size: clamp(14px, 2vw, 22px);
  line-height: 1.4em;
  position: relative;
  padding-right: 40px;
}
.faqs .faq .question:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "+";
  font-family: "ActualMono";
}
.faqs .faq .question.open:after {
  content: "-";
}
.faqs .faq .answer {
  display: none;
  padding-top: 20px;
}
.faqs .faq .answer .cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.faqs .faq .answer .cols span, .faqs .faq .answer .cols p {
  flex: 50%;
}
@media only screen and (max-width: 1000px) {
  .faqs .faq .answer .cols span, .faqs .faq .answer .cols p {
    flex: 100%;
  }
}
.faqs .faq .answer .cols span {
  aspect-ratio: 1/1;
}
.faqs .faq .answer .cols p {
  padding-left: 5%;
}
@media only screen and (max-width: 1000px) {
  .faqs .faq .answer .cols p {
    padding: 40px 0 0 0;
  }
}

/*
---------------------------------------------------------------------------
=	PAGE BREAK
---------------------------------------------------------------------------
*/
@media only screen and (min-width: 601px) {
  .p_break {
    margin-top: 40px;
  }
}
.p_break div {
  height: 80vh;
}
@media only screen and (max-width: 1000px) {
  .p_break {
    padding-bottom: 0;
  }
  .p_break div {
    height: unset;
    aspect-ratio: 1/1;
  }
}

/*
---------------------------------------------------------------------------
=	PAGE
---------------------------------------------------------------------------
*/
.page_pad h1 {
  font-size: 39px;
  margin-bottom: 1em;
}

/*
---------------------------------------------------------------------------
=	WOOCOMERCE
---------------------------------------------------------------------------
*/
.woocommerce-page .main_pad {
  padding-top: 100px;
}
.woocommerce-page #header nav span,
.woocommerce-page #header nav a {
  color: #000;
}
.woocommerce-page #header #logo img {
  filter: brightness(0) saturate(100%);
}

.product_image {
  transition: background-image 0.3s ease-in-out;
}

/*
---------------------------------------------------------------------------
=	SINGLE
---------------------------------------------------------------------------
*/
.single-product {
  /* Style the Add to Cart button */
  /* Style for variable product dropdowns */
  /* Label styling for variations */
  /* Hide default table layout WooCommerce uses for variations */
  /* Improve the look of radio buttons for variations */
}
.single-product .woocommerce-breadcrumb {
  padding: 40px;
  padding-bottom: 0;
  font-size: 16px;
}
@media only screen and (max-width: 1000px) {
  .single-product .woocommerce-breadcrumb {
    padding: 40px 20px 0 20px;
  }
}
@media only screen and (max-width: 600px) {
  .single-product .woocommerce-breadcrumb {
    padding-top: 0;
  }
}
.single-product .woocommerce-breadcrumb a {
  color: #000;
}
.single-product h1 {
  margin-bottom: 20px;
}
.single-product .price {
  display: block;
  font-size: 16px;
  margin-bottom: 40px;
}
.single-product .reset_variations {
  display: block;
  margin-top: 10px;
}
.single-product form.variations_form select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}
.single-product form.variations_form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.single-product form.variations_form label {
  font-weight: bold;
  font-size: 14px;
}
.single-product form.variations_form table {
  width: 100%;
  border-collapse: collapse;
}
.single-product form.variations_form td label {
  display: block;
  padding: 5px 10px;
  background: #f5f5f5;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}
.single-product .product_variable .woocommerce-variation-add-to-cart,
.single-product .product_simple .cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  gap: 20px;
}
.single-product .product_variable .woocommerce-variation-add-to-cart > div,
.single-product .product_simple .cart > div {
  flex: 1;
  max-width: 15%;
  border-radius: 6px;
}
.single-product .product_variable .woocommerce-variation-add-to-cart > div input,
.single-product .product_simple .cart > div input {
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 2px;
}
.single-product .product_variable .woocommerce-variation-add-to-cart button,
.single-product .product_simple .cart button {
  flex: 1;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #000;
  border-radius: 6px;
  font-family: "Nersans";
}
.single-product .product_variable .woocommerce-variation-add-to-cart button:hover,
.single-product .product_simple .cart button:hover {
  color: #000;
  background: #D2D800;
}
.single-product .variations td {
  padding-bottom: 20px !important;
}
.single-product .variations tbody .label label {
  display: block !important;
  text-align: left;
}
.single-product .variations tbody tr {
  margin: 20px !important;
}

/*
---------------------------------------------------------------------------
=	CART
---------------------------------------------------------------------------
*/
.page-cart #main {
  font-size: 14px;
}
.page-cart #main h1 {
  margin-bottom: 20px;
}
.page-cart #main h2,
.page-cart #main .wc-block-cart-items__header {
  font-size: 20px;
  font-family: "Halitage";
  letter-spacing: 0.1em;
  font-weight: 400;
}
.page-cart .wc-block-cart__submit-container a {
  flex: 1;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #000;
  border-radius: 6px;
  font-family: "Nersans";
}

/*
---------------------------------------------------------------------------
=	BASKET
---------------------------------------------------------------------------
*/
.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  padding: 40px 0 20px 0;
}
.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2:last-of-type,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator {
  display: none !important;
}

/*
---------------------------------------------------------------------------
=	MY ACCOUNT
---------------------------------------------------------------------------
*/
.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.woocommerce-account .woocommerce nav {
  width: 300px;
}
@media only screen and (max-width: 1000px) {
  .woocommerce-account .woocommerce nav {
    width: 100%;
  }
}
.woocommerce-account .woocommerce nav ul {
  padding: 0;
}
.woocommerce-account .woocommerce nav ul .woocommerce-MyAccount-navigation-link--downloads {
  display: none;
}
.woocommerce-account .woocommerce nav ul .is-active a {
  color: #D2D800 !important;
}
.woocommerce-account .woocommerce nav ul a {
  color: #000;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  flex: 1;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4em;
  margin-bottom: 1.6em;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info a:hover {
  color: #000 !important;
  text-decoration: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content p a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content p a:hover {
  color: #000 !important;
  text-decoration: none;
}
.woocommerce-account .woocommerce .woocommerce-Addresses {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address {
  flex: calc(50% - 40px);
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address a {
  font-size: clamp(16px, 2vw, 20px);
  font-family: "ActualMono";
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: unset !important;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address a:hover {
  color: #000 !important;
  text-decoration: none;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address address {
  padding-top: 40px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4em;
}
.woocommerce-account .woocommerce fieldset,
.woocommerce-account .woocommerce form {
  border: none;
  padding: 0;
}
.woocommerce-account .woocommerce fieldset legend,
.woocommerce-account .woocommerce form legend {
  display: none;
}
.woocommerce-account .woocommerce fieldset label,
.woocommerce-account .woocommerce form label {
  display: block;
  width: 100%;
}
.woocommerce-account .woocommerce fieldset input,
.woocommerce-account .woocommerce form input {
  display: inline-block;
  font-size: 14px;
  line-height: 50px;
  padding: 0 20px;
  color: #000;
  border: 1px solid #ddd;
  width: 100% !important;
  background: transparent;
  margin-top: 6px;
}
.woocommerce-account .woocommerce fieldset em,
.woocommerce-account .woocommerce form em {
  font-size: 12px;
}
.woocommerce-account .woocommerce fieldset button,
.woocommerce-account .woocommerce form button {
  display: inline-block;
  margin-top: 30px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #000;
  border-radius: 6px;
  padding: 0 40px;
  font-family: "Nersans";
}
.woocommerce-account .woocommerce fieldset button:hover,
.woocommerce-account .woocommerce form button:hover {
  color: #000;
  background: #D2D800;
}

/*
---------------------------------------------------------------------------
=	ORDER RECEIVED 
---------------------------------------------------------------------------
*/
.woocommerce-order-received {
  /* Responsive styles */
}
.woocommerce-order-received .woocommerce-order-details {
  margin-top: 40px;
}
.woocommerce-order-received ul {
  padding: 0;
}
@media only screen and (max-width: 600px) {
  .woocommerce-order-received h1.title {
    font-size: 8vw;
  }
}
.woocommerce-order-received table {
  border: solid 1px #ddd;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
  margin-bottom: 30px;
}
.woocommerce-order-received table ul {
  margin-top: 10px;
}
.woocommerce-order-received table ul li p {
  display: inline-block;
  font-size: 14px;
}
.woocommerce-order-received table caption,
.woocommerce-order-received table td,
.woocommerce-order-received table th {
  border: solid 1px #ddd;
  padding: 10px;
}
.woocommerce-order-received table th {
  font-weight: 700;
}
.woocommerce-order-received table caption {
  border-bottom: none;
  font-size: 16px;
  text-align: left;
}
@media (max-width: 1000px) {
  .woocommerce-order-received table,
  .woocommerce-order-received table caption,
  .woocommerce-order-received table td,
  .woocommerce-order-received table th,
  .woocommerce-order-received table thead,
  .woocommerce-order-received table tbody,
  .woocommerce-order-received table tfoot {
    width: 100%;
    display: block;
  }
  .woocommerce-order-received table thead tr {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-order-received table tbody tr {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd; /* Adds separation between rows */
    padding-bottom: 10px;
  }
  .woocommerce-order-received table tfoot tr {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-order-received table td,
  .woocommerce-order-received table th {
    text-align: left;
  }
  .woocommerce-order-received .product-total {
    border-bottom: none;
  }
}
.woocommerce-order-received .woocommerce-customer-details {
  margin-top: 40px;
}
.woocommerce-order-received address {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4em;
}

/*
---------------------------------------------------------------------------
=	WOO MESSAGE
---------------------------------------------------------------------------
*/
.woo_note {
  padding: 0 40px;
}
@media only screen and (max-width: 1000px) {
  .woo_note {
    padding: 0 20px;
  }
}

.woocommerce-message {
  background: #f9f9f9; /* Light green background */
  color: #000; /* Dark green text */
  border-bottom: 4px solid #003936; /* Green border */
  padding: 15px;
  margin: 20px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-message a.button {
  background: #000;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  line-height: 1.4em;
  margin-left: 10px;
}

.woocommerce-message a.button:hover {
  background: #000;
  color: #fff;
}
