@charset "UTF-8";
/*
Theme Name: Aguifier
Author: Studio Ancla
Author URI: https://studioancla.com
Description: October 2025 Modern rework of the 'Agua' theme Studio Ancla developed some years ago.
Version: 1.1
*/
/* Typography ------------------------- */
/* Colors ----------------------------- */
/* Animations ------------------------- */
/* ======================================================================== */
/* =                   _animista-custom.scss – v2                        = */
/* = All animations only run when .anim--run is present                  = */
/* ======================================================================== */
/* =Variables & CSS Variables for Duration/Ease =========================== */
:root {
  --anim-duration: 0.15s;
  --anim-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =Helper – initial state + runtime flag ================================= */
[data-anim] {
  opacity: 0;
}

.anim--run {
  opacity: 1;
}

/* ======================================================================== */
/* =                             Keyframes                                = */
/* ======================================================================== */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes rotate-in-center {
  0% {
    transform: rotate(-360deg);
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes swirl-in-fwd {
  0% {
    transform: rotate(-540deg) translateY(-100%) scale(0);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: rotate(0) translateY(0) scale(1);
    transform-origin: 50% 50%;
    opacity: 1;
  }
}
@keyframes flip-in-diag-2-br {
  0% {
    transform: rotate3d(1, 1, 0, 90deg);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: rotate3d(0, 0, 0, 0);
    transform-origin: 50% 50%;
    opacity: 1;
  }
}
@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
/* ======================================================================== */
/* =                           Animation Rules                            = */
/* ======================================================================== */
.anim--run.anim-fade-in {
  animation: fade-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-up {
  animation: fade-in-up var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-down {
  animation: fade-in-down var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-left {
  animation: fade-in-left var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-right {
  animation: fade-in-right var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-up, .anim--run.slide-in-up {
  animation: slide-in-up var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-left, .anim--run.slide-in-left {
  animation: slide-in-left var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-slide-in-right, .anim--run.slide-in-right {
  animation: slide-in-right var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-zoom-in {
  animation: zoom-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-scale-up-center {
  animation: scale-up-center var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-tracking-in-expand {
  animation: tracking-in-expand var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-text-focus-in {
  animation: text-focus-in var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-rotate-in-center {
  animation: rotate-in-center var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-swirl-in-fwd {
  animation: swirl-in-fwd var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-flip-in-diag-2-br {
  animation: flip-in-diag-2-br var(--anim-duration) var(--anim-ease) both;
}

.anim--run.anim-fade-in-fwd {
  animation: fade-in-fwd var(--anim-duration) var(--anim-ease) both;
}

/* =Aliases for slide-in (optional)======================================= */
/* =Duration Helper Classes================================================
   Use in admin CSS Class(es):
     anim-dur-05 → 0.5s
     anim-dur-10 → 1.0s
     anim-dur-15 → 1.5s
     anim-dur-20 → 2.0s
=========================================================================== */
.anim-dur-05 {
  --anim-duration: 0.5s !important;
}

.anim-dur-10 {
  --anim-duration: 1.0s !important;
}

.anim-dur-15 {
  --anim-duration: 1.5s !important;
}

.anim-dur-20 {
  --anim-duration: 2.0s !important;
}

/* =Accessibility – reduced motion========================================= */
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    animation: none !important;
    transform: none !important;
  }
}
/* 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: #f1f1f1;
}

h1, h2, h3, h4, h5 {
  margin: 20px 0;
  font-family: "houschka-pro", sans-serif;
  line-height: 1.5em;
  color: #0C4588;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.8em;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

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 ---------------------- */
#topRun {
  display: block;
  padding: 7px 0;
  background: #231F20;
}
#topRun .runInner {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  font-family: "amifer", sans-serif;
  font-size: 15px;
  color: #f1f1f1;
}
#topRun .runInner p {
  margin: 0;
}
#topRun .runInner a[href*=tel] {
  color: #f1f1f1;
  text-decoration: none;
  margin-right: 10px;
}
#topRun .runInner input[type=text] {
  font-size: 13px;
  line-height: 1em;
  border-radius: 4px;
  border: 0px solid transparent;
}
#topRun .runInner input[type=submit] {
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1em;
  position: relative;
  top: -0.5px;
  left: 5px;
  border-radius: 4px;
}

#header {
  display: block;
  padding: 30px 0;
  background: #f1f1f1;
  border-bottom: 1px solid rgba(35, 31, 32, 0.2);
  z-index: 10;
}
#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;
}
#header .headerInner #branding {
  flex-basis: 25%;
}
#header .headerInner #branding #logo {
  width: 100%;
  height: auto;
}
#header .headerInner #branding #logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}
#header .headerInner nav {
  flex-basis: auto;
  text-align: right;
  margin-left: 20px;
}

#content {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  margin: 80px auto;
  display: block;
  font-family: "amifer", sans-serif;
  font-size: 19px;
  line-height: 1.6em;
}
#content ul {
  list-style: square;
  margin: 20px 0;
  padding: 0 0 0 20px;
}

#footer {
  display: block;
  position: relative;
  padding: 40px 0;
  background: #0C4588;
  font-family: "amifer", sans-serif;
  font-size: 18px;
  color: #f1f1f1;
  z-index: 0;
}
#footer > div {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
}
#footer > div h2 {
  color: #f1f1f1;
}
#footer > div a[href*=tel] {
  color: #f1f1f1;
  text-decoration: none;
}
#footer .copyright {
  text-transform: uppercase;
  word-spacing: 0.05em;
  letter-spacing: 0.02em;
}
#footer .copyright a {
  color: #f1f1f1;
  text-decoration: none;
}

/* Nav Settings ----------------------- */
nav#main div > ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
nav#main div > ul li {
  display: inline-block;
  line-height: 1em;
}
nav#main div > ul li a {
  display: block;
  position: relative;
  padding: 5px 12px;
  font-family: "amifer", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #0C4588;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
nav#main div > ul li a:hover {
  opacity: 0.8;
}
nav#main div > ul .menu-item-has-children:hover > .sub-menu {
  display: block !important;
}
nav#main div > ul .sub-menu {
  display: none;
  position: absolute;
  margin-top: 1px;
  background: #fefefe;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
nav#main div > ul .sub-menu li {
  display: block;
  border-bottom: 1px solid #ddd;
}
nav#main div > ul .sub-menu li:last-of-type {
  border-bottom: 0;
}
nav#main div > ul .sub-menu li a {
  display: block;
  padding: 15px;
  font-family: "amifer", sans-serif;
  font-size: 15px;
  text-align: left;
  text-transform: none !important;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  text-shadow: none !important;
}

.subOpen > a, .header2 .subOpen > a {
  background: #333;
  color: #f1f1f1 !important;
}

#mobile-nav {
  display: none;
  padding: 25px 0;
  margin: 20px 0 -30px 0;
  background: #599DCD;
  color: #fff;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}
#mobile-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
#mobile-nav ul li {
  flex-basis: 100%;
}
#mobile-nav ul li a {
  display: block;
  padding: 8px;
  font-family: "amifer", sans-serif;
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  transition: transform 0.3s;
}
.menu-icon.rotate { /* transition between x and bars */
  transition: transform 0.3s;
  transform: rotate(90deg);
}
.menu-icon i {
  font-size: 30px;
  color: #0C4588;
}

/* Page Specific Settings ------------- */
#saleOn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  max-width: 80vw;
  margin: 0 auto;
}
#saleOn > div {
  flex-basis: 45%;
  margin: 5px;
  padding: 10px;
  background: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 20px;
  text-align: center;
}
#saleOn > div h3 {
  text-align: center;
}

#saleOff {
  display: block;
  margin: 30px 0;
  background: #599DCD;
  padding: 20px;
  text-align: center;
  font-size: 23px;
  color: #f1f1f1;
  border-radius: 20px;
  max-width: 80vw;
  margin: 0 auto;
}
#saleOff a {
  color: #f1f1f1;
}

.post-type-archive-video article {
  text-align: center;
}
.post-type-archive-video h2, .post-type-archive-video h4 {
  text-align: center;
}
.post-type-archive-video iframe {
  border: 1px solid #333;
}

.area {
  background: #fff;
  padding: 20px;
  border: 1px solid rgba(35, 31, 32, 0.2);
  margin: 10px 0;
}
.area a {
  text-decoration: none;
  color: #231F20;
}

/* Blog Settings ---------------------- */
/* Form settings ---------------------- */
form br {
  display: none;
}

label {
  display: block;
  margin-bottom: 5px;
  text-align: left;
  font-family: "houschka-pro", sans-serif;
  color: #222;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=search], textarea {
  padding: 4px 8px;
  background-color: #f1f1f1;
  border: 1px solid #d0cecf;
  font-family: "amifer", sans-serif;
  font-size: 14px;
  line-height: normal;
  color: #231F20;
  outline: none;
  border-radius: 0;
  box-shadow: none;
}

.wpcf7-quiz {
  width: 20px;
}

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

input[type=submit] {
  display: inline-table;
  padding: 6px 12px;
  background: #454545;
  font-family: "amifer", sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #f1f1f1;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0px;
  box-shadow: none;
  cursor: pointer;
}

input[type=reset] {
  display: inline-table;
  padding: 6px 12px;
  background: #ff0000;
  font-family: "amifer", sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #f1f1f1;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0px;
  box-shadow: none;
  cursor: pointer;
}

#mc_embed_signup {
  line-height: 2em;
  text-align: center;
}
#mc_embed_signup input[type=submit] {
  margin: 10px auto;
  background: #599DCD;
  cursor: pointer;
}
#mc_embed_signup label {
  position: relative;
  text-align: center;
  color: #f1f1f1;
  margin: 20px 0;
}

select {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='50px' height='50px'><polyline points='46.139,15.518 25.166,36.49 4.193,15.519'/></svg>");
  background-color: #b4b4b4;
  background-repeat: no-repeat;
  background-position: right 10px top 4px;
  background-size: 16px 16px;
  color: white;
  padding: 3.5px;
  padding-right: 30px;
  width: auto;
  font-family: "amifer", sans-serif;
  font-size: 14px;
  text-align: left;
  color: #f1f1f1;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-radius: 0px;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  outline: 0;
  transition: 0.3s ease all;
  text-overflow: "";
  -moz-appearance: none;
  text-indent: 0.01px;
}
select::-ms-expand {
  display: none;
}

#blue {
  background-color: #b4b4b4;
}

select:focus, select:active {
  border: 0;
  outline: 0;
}

option:focus {
  background: pink;
}

/* Image Settings --------------------- */
#hero {
  /* used inside a contained element to use full width */
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  display: block;
  position: relative;
  height: 70vh;
  overflow: hidden;
}
#hero .heroInside > div:nth-of-type(3) {
  /* contained - USAGE: @include set-width; */
  max-width: 90vw;
  margin: 0 auto;
  height: 70vh;
}

.alignright {
  display: inline-block;
  float: right;
  margin: 5px 0 5px 20px;
}

.alignleft {
  display: inline-block;
  float: left;
  margin: 5px 20px 5px 0;
}

/* Miscellaneous Settings ------------- */
div[id*=kt], div[id*=kadence] { /* Kadence always up in ya grill */
  z-index: 1 !important;
}

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

.post-edit-link {
  display: block;
  position: fixed;
  right: 30px;
  bottom: 30px;
  padding: 8px 15px;
  line-height: 1em;
  background: #599DCD;
  color: #f1f1f1;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  border-radius: 4px;
  opacity: 0.4;
  z-index: 11;
}
.post-edit-link:hover {
  opacity: 1;
}

.ctaBtn {
  margin: 20px 0;
}
.ctaBtn:hover a {
  background: #0C4588;
}
.ctaBtn.center a {
  margin: 0 auto;
}
.ctaBtn a {
  display: table;
  padding: 10px 20px;
  text-align: center;
  background: #599DCD;
  font-family: "amifer", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #f1f1f1;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Smartphones (all) ----------- */
@media only screen and (max-width: 600px) and (orientation: portrait) {
  #branding {
    flex-basis: 60% !important;
  }
  nav#main {
    display: none;
  }
  nav#mobile-nav {
    background: #599DCD;
  }
  nav#mobile-nav li {
    margin: 4px 0;
  }
  nav#mobile-nav li.menu-item-has-children {
    background: rgba(255, 255, 255, 0.2);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  nav#mobile-nav li.menu-item-has-children > a {
    background: rgba(0, 0, 0, 0.2);
  }
  nav#mobile-nav li:before {
    display: none !important;
  }
  .menu-icon {
    display: block;
  }
  iframe {
    width: 100%;
  }
  #saleOn {
    flex-wrap: wrap !important;
  }
  #saleOn > div {
    flex-basis: 100%;
  }
} /* End of mobile settings */

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