:root {
  --color-primary: #ffffeb;
  --color-secondary: #022601;
  --color-accent-1: #034001;
  --color-accent-2: #488c03;
  --color-accent-3: #84bf04;
  --color-accent-4: #f2e7c4;
  --box-shadow-card: 0 4px 6px rgba(0, 0, 0, 0.05);
  --service-accent-color: #8e735b;
  --service-bg-card: #ffffff;
  --service-bg-page: #f9f7f5;
  --border-color: #e0e0e0;
}
/* fonts */
@font-face {
  font-family: "BohemeFloral";
  src: url(/templates/01/fonts/BohemeFloral.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Schibsted Grotesk";
  src: url(/templates/01/fonts/SchibstedGrotesk-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Young Serif";
  src: url(/templates/01/fonts/YoungSerif-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Schibsted Grotesk";
  font-weight: normal;
  font-style: normal;
  background-color: var(--color-primary);
  color: #090909;
}
.secondary-font {
  font-family: "Young Serif";
  font-weight: normal;
  font-style: normal;
}
.accent-font {
  font-family: "BohemeFloral";
  font-weight: normal;
  font-style: normal;
}
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0;
  padding: 0.5rem;
  background: white;
  color: black;
  z-index: 99;
}
.skip-link:focus {
  top: 1rem;
  left: 1rem;
}
a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.btn {
  text-decoration: none;
}
:is(a, button, .btn):not(:focus-visible),
.focus-style-over-dark :is(a, button):not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

:is(a, button, .btn):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

:is(a, button).focus-style-over-dark:focus-visible,
.focus-style-over-dark :is(a, button):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: none;
}

:is(a, button).focus-style-over-light:focus-visible,
.focus-style-over-light :is(a, button):focus-visible {
  outline: 3px solid #c84600;
  outline-offset: 2px;
  box-shadow: none;
}
.padding-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.padding-top {
  padding-top: 6rem;
}
.padding-bottom {
  padding-bottom: 6rem;
}
.action-btn {
  min-width: 12rem;
  padding: 1rem 1.4rem;
  border-radius: 0.3rem 3rem 3rem 0.3rem;
  margin: 0.5rem;
}
.bg-slogan-decor {
  position: relative;
  z-index: 0;
  background: url(/templates/01/images/stock5.avif) center center / cover no-repeat;
}
.bg-slogan-decor::before {
  content: "";
  position: absolute;
  background-color: var(--color-accent-2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}
.sec-line,
.sec-line-dark {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.sec-line::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 560px;
  height: 2px;
  background: linear-gradient(270deg, #f7f7f7 0%, rgba(194, 133, 101, 0) 100%);
  margin-left: -38rem;
}
.sec-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 560px;
  height: 2px;
  background: linear-gradient(90deg, #f7f7f7 0%, rgba(194, 133, 101, 0) 100%);
  margin-left: 3rem;
}
.sec-line-dark::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 560px;
  height: 2px;
  background: linear-gradient(270deg, #000000 0%, rgba(194, 133, 101, 0) 100%);
  margin-left: -38rem;
}
.sec-line-dark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 560px;
  height: 2px;
  background: linear-gradient(90deg, #000000 0%, rgba(194, 133, 101, 0) 100%);
  margin-left: 3rem;
}
.sec-line-img {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--theme-color);
  border-radius: 50%;
  padding: 5px;
  display: block;
  margin: auto;
}
.sec-line-img > img {
  width: 50px;
  height: auto;
}
.contact-email {
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .padding-top {
    padding-top: 4rem;
  }
  .padding-bottom {
    padding-bottom: 4rem;
  }
}
