/* ---------------------------------------------------------------------------------------------------- */
/* BASE STYLES ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
/* MIXINS --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
/* BASE STYLES ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: calc(16px + 2 * ((100vw - 480px) / 720));
}
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------------------------------------------------------------------------------------------------- */
/* ASPECT RATIOS -------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.aspect-ratio-1-1 {
  position: relative;
  width: 100%;
}
.aspect-ratio-1-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.aspect-ratio-1-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-3-1 {
  position: relative;
  width: 100%;
}
.aspect-ratio-3-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 33.3333333333%;
}
.aspect-ratio-3-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-3-2 {
  position: relative;
  width: 100%;
}
.aspect-ratio-3-2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 66.6666666667%;
}
.aspect-ratio-3-2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-16-9 {
  position: relative;
  width: 100%;
}
.aspect-ratio-16-9:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.aspect-ratio-16-9 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-4-3 {
  position: relative;
  width: 100%;
}
.aspect-ratio-4-3:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.aspect-ratio-4-3 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-4-1 {
  position: relative;
  width: 100%;
}
.aspect-ratio-4-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 25%;
}
.aspect-ratio-4-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.aspect-ratio-2-1 {
  position: relative;
  width: 100%;
}
.aspect-ratio-2-1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 50%;
}
.aspect-ratio-2-1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* ---------------------------------------------------------------------------------------------------- */
/* FONT SIZES ----------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
h1,
.h1 {
  font-size: calc(40px + 20 * ((100vw - 480px) / 720));
}
@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 60px;
  }
}

h2,
.h2 {
  font-size: calc(32px + 16 * ((100vw - 480px) / 720));
}
@media (max-width: 480px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}

h3,
.h3 {
  font-size: calc(26px + 6 * ((100vw - 480px) / 720));
}
@media (max-width: 480px) {
  h3,
  .h3 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 32px;
  }
}

h4,
.h4 {
  font-size: calc(20px + 6 * ((100vw - 480px) / 720));
}
@media (max-width: 480px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 26px;
  }
}

h5,
.h5 {
  font-size: calc(18px + 2 * ((100vw - 480px) / 720));
}
@media (max-width: 480px) {
  h5,
  .h5 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  h5,
  .h5 {
    font-size: 20px;
  }
}

h6,
.h6 {
  font-size: calc(16px + 2 * ((100vw - 480px) / 720));
}
@media (max-width: 480px) {
  h6,
  .h6 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  h6,
  .h6 {
    font-size: 18px;
  }
}

/* ---------------------------------------------------------------------------------------------------- */
/* HOMEPAGE CTA --------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.homepage-cta {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .homepage-cta {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------------------------------------------- */
/* UNDER CONSTRUCTION --------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .under-construction-text {
    transform: translate(0) !important;
  }
}
.under-construction {
  min-height: 100vh;
}

.under-construction > .ct-section-inner-wrap {
  min-height: 100vh;
}

/* ---------------------------------------------------------------------------------------------------- */
/* MENU BUTTON ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.menu-btn a {
  color: #FFFFFF !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none !important;
  padding: 1rem 1.5rem;
  background: var(--brand-primary);
  border-radius: 100px;
  line-height: 1;
}
.menu-btn a:hover {
  background: var(--brand-secondary);
}

/* ---------------------------------------------------------------------------------------------------- */
/* HEADER --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 999;
}
@media (max-width: 767px) {
  header > .ct-section-inner-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
header .logo .ct-text-block {
  transition: 0.3s ease-in-out;
}

body.menu-active header {
  height: 80px;
}
body.menu-active header .logo .ct-text-block {
  font-size: 2rem !important;
}
body.menu-active .responsive-navigation {
  top: 80px !important;
}

.responsive-navigation {
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}
.responsive-navigation.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.responsive-navigation .oxy-pro-menu-container {
  width: 100%;
}
.responsive-navigation .oxy-pro-menu-container ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}
.responsive-navigation .oxy-pro-menu-container ul li a {
  width: 100%;
}

.navigation-toggle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--brand-primary);
  position: relative;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  z-index: 20;
}
.navigation-toggle:hover {
  background-color: var(--brand-secondary);
}
.navigation-toggle__menu, .navigation-toggle__close {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s ease-in-out;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation-toggle__menu svg, .navigation-toggle__close svg {
  width: 20px;
}
.navigation-toggle__menu svg *, .navigation-toggle__close svg * {
  color: #FFFFFF;
}
.navigation-toggle__menu {
  opacity: 1;
  transform: rotate(0deg);
}
.navigation-toggle__close {
  opacity: 0;
  transform: rotate(180deg);
}
.navigation-toggle.active {
  background-color: var(--brand-secondary);
}
.navigation-toggle.active .navigation-toggle__menu {
  opacity: 0;
  transform: rotate(180deg);
}
.navigation-toggle.active .navigation-toggle__close {
  opacity: 1;
  transform: rotate(0deg);
}

/* ---------------------------------------------------------------------------------------------------- */
/* MAIN CONTENT --------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.main-content .oxy-stock-content-styles > *:first-child, main.ct-inner-content > *:first-child {
  margin-top: 0;
}
.main-content .oxy-stock-content-styles > *:last-child, main.ct-inner-content > *:last-child {
  margin-bottom: 0;
}
.main-content .oxy-stock-content-styles h2, main.ct-inner-content h2 {
  margin-top: 40px;
  margin-bottom: -10px;
}

/* ---------------------------------------------------------------------------------------------------- */
/* GRAVITY FORMS -------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper select {
  border: 0;
  height: 50px;
  border-radius: 12px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  font-family: "Noto Sans";
}
.gform_wrapper input:focus-visible, .gform_wrapper textarea:focus-visible, .gform_wrapper select:focus-visible {
  outline: 1px solid var(--brand-primary);
}
@media (max-width: 991px) {
  .gform_wrapper input, .gform_wrapper textarea, .gform_wrapper select {
    background-color: var(--brand-neutral);
  }
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border: 1px solid var(--brand-primary) !important;
}

.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid=true] + label, .gform_wrapper.gravity-theme label + [aria-invalid=true] {
  color: var(--brand-primary) !important;
}

.gform_validation_errors {
  border: 1px solid var(--brand-primary) !important;
  background-color: rgb(255, 249, 242) !important;
  color: var(--brand-text) !important;
  box-shadow: none !important;
}

.validation_message, .gform_validation_errors {
  border-radius: 12px !important;
  padding: 15px 30px !important;
  text-align: center !important;
  margin-bottom: 40px !important;
  font-size: 0.9rem !important;
  border: 1px solid var(--brand-primary) !important;
  background-color: rgb(255, 249, 242) !important;
  color: var(--brand-text) !important;
}

.gform_wrapper textarea {
  padding: 15px !important;
}

.gform_wrapper input[type=submit] {
  border-radius: 100px;
  background-color: var(--brand-secondary);
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 1rem 1.5rem !important;
  line-height: 1;
  height: auto;
  border: 2px solid var(--brand-secondary);
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  font-size: 0.9rem;
  cursor: pointer;
}
.gform_wrapper input[type=submit]:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}
