/*
Theme Name: brightradiancetheme
Author: Me
Text Domain: brightradiancetheme
*/

:root {
  --clr-accent: 128, 181, 42;
  --clr-secondary: 202, 176, 120;
  --clr-white: 255, 255, 255;
  --clr-dark: 53, 59, 45;
  --clr-black: 0, 0, 0;

  --ff-main: "Playfair Display", serif;
}

/* ------------------- */
/* Reset               */
/* ------------------- */
html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
figure,
picture {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 400;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: #353b2d;
  font-family: var(--ff-main);
  color: rgb(var(--clr-black));
  line-height: 1.5;
  font-size: 1rem;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5rem 0;
  color: rgba(var(--clr-dark), 1);
}
main {
  flex-grow: 1;
}

a {
  color: rgba(var(--clr-accent), 1);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: rgba(var(--clr-accent), 0.5);
}

.container {
  margin: 0 auto;
  width: 100%;
}

.primary-navigation a {
  text-decoration: none;
}

.primary-navigation a > span {
  font-weight: 700;
  margin-right: 0.5em;
}
body {
  position: relative;
}
.primary-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  padding: 0 0.125rem;
  border-bottom: 1px solid rgba(var(--clr-white), 0.1);

  transform: translateY(0);
  transition: all 0.3s ease;
}

.primary-header.sticky {
  position: fixed;
  background-color: rgba(var(--clr-dark), 1);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.footer {
  background-color: #2f3528;
}

.footer-inner {
  margin-inline: auto;
  display: flex;
  padding: 1.5rem 2rem;
  justify-content: center;
  gap: 0.5rem;

  flex-direction: column;
}
.footer-inner > * {
  width: 100%;
}
.footer-inner h5 {
  background-color: hsl(var(--clr-white) / 1);
  color: hsl(var(--clr-dark));
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--br-small);
  text-align: center;
}
.footer-inner p {
  margin: 0.25rem 0.625rem;
  font-size: 0.875rem;
}
.footer-copyright {
  max-width: 1200px;
  color: rgba(var(--clr-white), 0.8);
  width: 100%;
  margin: 5px auto;
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  justify-content: center;
}
.footer-copyright p {
  font-size: 0.875rem;
  margin: 0.125rem 0.5rem;
  text-align: center;
}
.footer a {
  color: hsl(var(--clr-white) / 1);
}
.footer a:hover {
  color: hsl(var(--clr-white) / 0.8);
}
.primary-header > * {
  width: 100%;
}

.header-logo-img,
.header-phones {
  width: 100%;
  display: flex;
  align-items: center;
}
.header-logo-img figure {
  display: flex;
  align-items: center;
}
.header-phones {
  flex-direction: column;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* navbar-1 */
.mobile-nav-toggle {
  display: none;
}
.header-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-btn a {
  color: rgb(var(--clr-dark));
  display: block;
  border: 0px solid rgb(var(--clr-accent));
  background-color: #e9efe7;
  background-image: url(images/arrow-up-right.png);
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 4px;
  /* font-size: 0.875rem; */
  padding: 8px 32px 8px 16px;
  transition: all 0.3s ease-in-out;
}
.header-btn a:hover {
  background-color: rgba(var(--clr-white), 1);
  color: rgb(var(--clr-black));
  border: 0px solid rgb(var(--clr-white));
}

p {
  margin: 0.25rem 0;
}
h2 {
  font-size: 2.5rem;
  margin: 0.25rem 0;
}
.postheader {
  text-align: center;
  margin-top: 1rem;
}

.fw-900 {
  font-weight: 900;
}
.logo-and-phones {
  width: 100%;
  max-width: 1280px;
  margin: 5px auto;
  padding: 0px;
  display: flex;
  justify-content: end;
  gap: 20px;
}
.logo-and-phones .navbar-1 {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.logo-and-phones .header-logo-img {
  margin-right: auto;
}
.logo-and-phones .header-logo-img {
  max-width: 200px;
}

.logo-and-phones img {
  height: 50px;
  width: auto;
}
@media all and (max-width: 680px) {
  .logo-and-phones img {
    height: 50px;
    width: auto;
  }
}
.max-width-1200 {
  width: 100%;
  max-width: 1200px;
}

.main-nav {
  display: flex;
  justify-content: end;
  align-items: center;
}
.main-nav ul {
  list-style-type: none;
  display: flex;
}
.main-nav .nav li {
  font-weight: 400;
  font-size: 1rem;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.main-nav .nav a {
  color: rgba(var(--clr-white), 1);
  margin: 0px;
  display: block;
  text-decoration: none;
  padding: 0;
  transition: color 0.3s ease-in-out;
  position: relative;
}
.main-nav .nav li:first-of-type {
  border-left: 0;
  box-shadow: none;
}

.main-nav .nav a:hover {
  color: rgba(var(--clr-secondary), 1);
}
.main-nav .nav a::after {
  content: "";
  background-color: rgba(var(--clr-secondary), 1);

  position: absolute;
  height: 1px;
  width: 100%;
  display: block;
  margin: 0 auto;
  scale: 0;
  transition: width 0.2s ease-in-out;
  transition: scale 0.3s ease-in-out;
}
.main-nav .nav a:hover::after {
  content: "";
  background-image: linear-gradient(
    to right bottom,
    #c0a262,
    #cab078,
    #d4be8f,
    #decca6,
    #e8dabd,
    #e8dabd,
    #e8dabd,
    #e8dabd,
    #decca6,
    #d4be8f,
    #cab078,
    #c0a262
  );
  height: 1px;
  width: 100%;
  scale: 1;
}
.main-nav .nav .menu-cta a {
  background-color: hsl(var(--clr-dark) / 1);
  border: 1px solid hsl(var(--clr-white) / 1);
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.main-nav .nav .menu-cta a::after {
  content: none;
}
.main-nav .nav .menu-cta a:hover {
  background-color: hsl(var(--clr-white) / 1);
  color: rgb(var(--clr-black));
}
/* .main-nav .nav .current_page_item a {
  color: hsl(var(--clr-accent) / 1);
} */

.hamburger {
  display: none;
  width: 40px;
  height: 24px;
}
@media only screen and (max-width: 768px) {
  .hamburger {
    position: absolute;
    z-index: 101;
    right: 6px;
    top: 16px;
    padding: 0px;
    display: flex;
    cursor: pointer;
    transition-property: opacity, filter, top;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  .sticky .hamburger {
    /* top: 22px; */
  }
  .hamburger:hover {
    /* opacity: 0.7; */
  }
  .hamburger.is-active:hover {
    /* opacity: 0.7; */
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: rgb(var(--clr-white));
  }

  .hamburger-box {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: rgb(var(--clr-white));
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .page-template-menu-overlay-dark-bg .hamburger-inner,
  .page-template-menu-overlay-dark-bg .hamburger-inner::before,
  .page-template-menu-overlay-dark-bg .hamburger-inner::after {
    background-color: hsl(var(--clr-white));
    transition: background-color 0.3s ease-in-out;
  }

  .hamburger-inner::before,
  .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    top: -8px;
  }
  .hamburger-inner::after {
    bottom: -8px;
  }

  .hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease,
      transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  }

  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease,
      transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    position: absolute;
    z-index: 99;
    text-align: left;
    top: 0;
    left: 0;
    background: rgba(var(--clr-dark), 1);
    width: 100%;
    height: 100vh;
    padding: 20px 10px 10px 30px;
    /* transform:scale(1, 0);*/
    transform: translateX(-100%);
    transition: transform 400ms ease-in-out;
  }
  .main-nav.show-nav {
    transform: translateX(0);
  }
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 10px 0px;
    gap: 15px;
  }

  .main-nav .nav li {
    border: 0;
    box-shadow: none;
    margin: 5px 0;
  }
  .main-nav .nav li {
    font-size: 1.25rem;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 15px;
  }
}

/*-------------*/

body.no-scroll {
  overflow-y: hidden;
}

@media only screen and (max-width: 768px) {
}

@media all and (max-width: 680px) {
  .hero-h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  h2 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.link-arial {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.collections-block {
  margin: 20rem 0 0;

  background: linear-gradient(transparent, rgba(255, 255, 255, 0.5), white);
}
.collections-block-dark {
  margin: 20rem 0 0;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5), black);
}
.collections-block-dark.gold {
  margin: 20rem 0 0;

  background: transparent;
}
.collections-block .kt-inside-inner-col,
.collections-block-dark .kt-inside-inner-col {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1rem 5rem;
}
.collections-block h3,
.collections-block-dark h3 {
  padding: 1rem 0;
  margin: 1rem 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.6);
}
.collections-block p,
.collections-block-dark p,
.collections-block-p {
  font-size: 2rem;
  font-weight: 400;
  display: inline;
  padding: 0.5rem 0;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.6);
}
p {
  font-size: 2rem;
  padding: 0.5rem 0;
}
h2,
h3 {
  margin: 1rem 0;
  font-size: 4rem;
  line-height: 1;
}
.collections-block-dark h3,
.collections-block-dark p {
  color: rgb(var(--clr-white));
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.6);
}
h3.gradient-text {
  text-shadow: none;
  line-height: 1.1;
  padding-bottom: 5px;
  background-image: linear-gradient(
    to right bottom,
    #ba9951,
    #c7ab6e,
    #d5bd8b,
    #e1cfa9,
    #eee1c7,
    #eee1c7,
    #eee1c7,
    #eee1c7,
    #e1cfa9,
    #d5bd8b,
    #c7ab6e,
    #ba9951
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero {
  background-image: linear-gradient(
    to right bottom,
    #292d23,
    #33382b,
    #3d4333,
    #474e3b,
    #525a43
  );
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  padding-bottom: 5px;
  background-image: linear-gradient(
    to right bottom,
    #ba9951,
    #c7ab6e,
    #d5bd8b,
    #e1cfa9,
    #eee1c7,
    #eee1c7,
    #eee1c7,
    #eee1c7,
    #e1cfa9,
    #d5bd8b,
    #c7ab6e,
    #ba9951
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text {
  font-size: 3rem;
  line-height: 1.1;
  padding-bottom: 5px;
  background-image: linear-gradient(
    to right bottom,
    #ba9951,
    #c7ab6e,
    #d5bd8b,
    #e1cfa9,
    #eee1c7,
    #eee1c7,
    #eee1c7,
    #eee1c7,
    #e1cfa9,
    #d5bd8b,
    #c7ab6e,
    #ba9951
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 strong {
  font-size: 4rem;
  font-weight: 400;
}
.hero p {
  font-size: 1.5rem;
  color: rgb(var(--clr-white));
}
.hero img {
  position: relative;
}
.hero-img::before {
  content: "";
  position: absolute;

  display: block;
  border: 2px solid #ba9951;
  border-right: 0;
  border-bottom: 0;
  height: 100px;
  width: 100px;
  top: 20px;
  left: 20px;

  z-index: 10;
}
.hero-img::after {
  content: "";
  position: absolute;
  display: block;
  border: 2px solid #ba9951;
  border-left: 0;
  border-top: 0;
  height: 100px;
  width: 100px;
  bottom: 20px;
  right: 20px;

  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .gradient-text {
    font-size: 2rem;
  }
  .hero h1 strong {
    font-size: 2.5rem;
  }
  h2,
  h3,
  .collections-block h3,
  .collections-block-dark h3 {
    font-size: 2.5rem;
  }
  p,
  .collections-block p,
  .collections-block-dark p,
  .collections-block-p,
  .cta-block p {
    font-size: 1.25rem;
  }

  .cta-block::after {
    content: "";
    position: absolute;
    display: block;
    border: 2px solid #ba9951;
    border-left: 0;
    border-bottom: 0;
    height: 100px;
    width: 100px;
    top: 20px;
    right: 20px;
  }

  .collections-block {
    margin: 10rem 0 0;

    background: linear-gradient(transparent, rgba(255, 255, 255, 0.5), white);
  }
  .collections-block-dark {
    margin: 10rem 0 0;

    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5), black);
  }
  .collections-block-dark.gold {
    margin: 10rem 0 0;

    background: transparent;
  }
  .collections-block .kt-inside-inner-col,
  .collections-block-dark .kt-inside-inner-col {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
  }
  .header-btn {
    margin-right: 60px;
  }
}

.m-top-auto {
  margin-top: auto;
}

/* -------------HOT IT WORKS */

.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 50px;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 2;
}

/* ==== */

.full-width {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media all and (max-width: 980px) {
  .logo-and-phones {
    gap: 6px;
  }
}
@media only screen and (max-width: 768px) {
  .navbar-1 {
    position: absolute;
    z-index: 1011;
    right: 8px;
    top: 12px;
    width: auto;
    height: 40px;
    z-index: 99999999999;
  }
}

@media only screen and (max-width: 475px) {
  .logo-and-phones img {
    height: 44px;
  }
}
.forminator-ui.forminator-custom-form[data-design="material"]
  .forminator-button:last-child {
  display: block;
  margin: 0 auto !important;
}

.header-languages {
  display: none;
}
