/*
Theme Name: Flatirons
Author: Studio Ancla
Author URI: https://studioancla.com
Description: Start date: August 1, 2025
Version: 100.0
*/
/* Typography ------------------------- */
/* Colors ----------------------------- */
/* Resets ----------------------------- */
.kill-width { /* For use from WP admin */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
}
.kill-width > div:nth-of-type(2), .kill-width .kt-row-column-wrap:first-of-type { /* makes sure the overlay is full-width */
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
}

.hug-top {
  margin-top: -5rem;
}

.hug-bottom {
  margin-bottom: -5rem;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: "neutronic", sans-serif;
  color: #00AEEF;
  line-height: 1.1em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.8em;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

.clear {
  clear: both;
}

p {
  margin: 20px 0;
}

/* Main Settings ---------------------- */
#header {
  display: block;
  background: rgba(35, 31, 32, 0.1);
  padding: 0.5em 0;
  z-index: 100;
}
#header .headerInner {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 0.5em;
}

#branding {
  position: relative;
  flex-basis: 20%;
}
#branding #logo {
  width: 100%;
  height: auto;
}
#branding #logo img {
  display: block;
  width: auto;
  height: 125px;
  object-fit: cover !important;
  object-position: center center !important;
}

#container {
  padding: 4.3rem 0 5rem 0;
}

#content {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  color: #231F20;
  font-family: "halcom", sans-serif;
  font-size: 1.07em;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.6em;
}

#footer {
  display: block;
  position: relative;
  padding: 4.2em 0;
  background: #231F20;
  color: #f1f1f1;
}
#footer > div {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  font-family: "halcom", sans-serif;
  font-size: 1.07em;
}
#footer #copyright {
  display: block;
  margin-top: 2rem;
  padding-top: 1.7em;
  font-family: "halcom", sans-serif;
  font-size: 0.65em;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.09em;
  word-spacing: 0.11em;
  color: rgba(241, 241, 241, 0.7);
  border-top: 1px dotted rgba(241, 241, 241, 0.3);
}
#footer #copyright a {
  color: rgba(241, 241, 241, 0.8);
  text-decoration: none;
  font-weight: 900;
}
#footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -38px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20200'%3E%3Cpath%20fill='%23231F20'%20d='M0%20150%20L100%2080%20L200%20130%20L300%2070%20L400%20110%20L500%2050%20L600%20120%20L700%2060%20L800%20130%20L900%2090%20L1000%20140%20L1100%2080%20L1200%20150%20L1200%20200%20L0%20200%20Z'/%3E%3C/svg%3E") repeat-x;
  height: 40px;
}

/* Nav Settings ----------------------- */
nav#main {
  display: block;
  padding: 20px 0;
  flex-basis: 80%;
}

nav#main ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 0.5em;
}

nav#main ul > li {
  display: block;
}

nav#main ul > li a {
  border: 2px solid transparent;
  padding: 0.3em 0.8em;
  font-family: "halcom", sans-serif;
  font-size: 1.1em;
  color: #231F20;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1em;
  text-decoration: none;
  transition: all 0.2s ease;
}
nav#main ul > li a:hover {
  border: 2px solid #00AEEF;
  color: #00AEEF;
}

#mobileGo {
  display: none;
  position: absolute;
  top: 1rem;
  left: -3.6rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  background: #231F20;
  padding: 0.9em 1.1em 0.9em 0.9em;
  border-radius: 8px 0 0 8px;
  transition: transform 0.3s ease;
}
#mobileGo i {
  color: #f1f1f1;
  font-size: 2.1rem;
  display: inline-block;
  line-height: 1em;
}
#mobileGo.rotate i {
  transform: rotate(180deg);
}

nav#mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 60vw;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  background: #231F20;
  z-index: 101;
}
nav#mobile.open {
  transform: translateX(0);
}
nav#mobile ul {
  display: flex;
  padding: 30px 20px;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 0.9em;
}
nav#mobile ul li {
  display: block;
}
nav#mobile ul li a {
  display: block;
  font-family: "halcom", sans-serif;
  color: #f1f1f1;
  font-size: 1.5em;
  text-decoration: none;
}

/* Page Specific Settings ------------- */
#hero > div > div:nth-child(4) {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
}
#hero > div > div:nth-child(4) p {
  font-family: "halcom", sans-serif;
  font-size: 1.07em;
  margin: 25px 0;
}

/* Blog Settings ---------------------- */
/* Form settings ---------------------- */
.forminator-label {
  font-size: 18px !important;
}

label {
  font-family: "neutronic", sans-serif;
}

input[type=text], input[type=email], input[type=password], input[type=tel], input[type=search], textarea {
  padding: 4px 8px;
  background-color: #f1f1f1;
  border: 1px solid rgba(35, 31, 32, 0.2);
  font-family: "halcom", sans-serif;
  font-size: 15px;
  line-height: 1em;
  color: #f1f1f1;
  outline: none;
  border-radius: 8px;
  box-shadow: none;
  position: relative;
  top: -1.5px;
}

textarea {
  height: 90px;
  resize: none;
}

input[type=submit] {
  padding: 4px 8px;
  background: #00AEEF;
  font-family: "halcom", sans-serif;
  color: #f1f1f1;
  outline: none;
  border-radius: 8px;
  box-shadow: none;
}

/* Image Settings --------------------- */
/* Miscellaneous Settings ------------- */
div[id*=kt],
div[class*=kt],
div[id*=kadence],
div[class*=kadence] {
  z-index: auto !important; /* remove explicit z-index */
}

.genBtnParent a {
  padding: 8px 15px;
  background: #00AEEF;
  font-family: "halcom", sans-serif;
  font-size: 0.9em;
  font-weight: 900;
  color: #f1f1f1;
  line-height: 1em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.genBtnParent a i {
  margin-right: 5px;
}
.genBtnParent a:hover {
  background: #231F20;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

#cover {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(241, 241, 241, 0.8);
  z-index: 100;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f1f1f1;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page-loader .loader-logo {
  max-width: 150px;
  max-height: 150px;
  opacity: 0;
  transform: translateX(-50px) rotate(-15deg);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
#page-loader.visible .loader-logo {
  opacity: 1;
  transform: translateX(0) rotate(0);
}
#page-loader.exit .loader-logo {
  opacity: 0;
  transform: translateX(50px) rotate(15deg);
}

body.loading {
  overflow: hidden;
  height: 100vh;
}

.post-edit-link {
  display: block;
  position: fixed;
  left: 20px;
  bottom: 20px;
  padding: 4px 10px;
  line-height: 1em;
  background: rgba(0, 174, 239, 0.8);
  color: #f1f1f1;
  font-size: 0.6em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 600px) and (orientation: portrait) {
  nav#main {
    display: none;
  }
  #mobileGo {
    display: block;
  }
  #mobileGo i {
    font-size: 30px;
  }
} /* End of file */

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