@charset "UTF-8";
/* General */
/* Colors */
@font-face {
  font-family: "Orbitron";
  src: url("fonts/Orbitron-Black.woff2") format("woff2"), url("fonts/Orbitron-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("fonts/Orbitron-Bold.woff2") format("woff2"), url("fonts/Orbitron-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("fonts/Orbitron-Light.woff2") format("woff2"), url("fonts/Orbitron-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("fonts/Orbitron-Medium.woff2") format("woff2"), url("fonts/Orbitron-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2"), url("fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-BoldItalic.woff2") format("woff2"), url("fonts/Montserrat-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Italic.woff2") format("woff2"), url("fonts/Montserrat-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"), url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 18px;
}

body, p, li {
  color: #222;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 1.3;
}

h1 {
  font-family: "Orbitron", sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 300;
}

h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 15px;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 1.1;
  margin: 0;
}

h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 1.1;
  margin: 0;
}

h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  line-height: 1.1;
  margin: 0;
}

ol, ul {
  padding: 0 0 0 17px;
  list-style: initial;
  margin: 0 0 20px;
}

p {
  margin: 0 0 20px;
}

p a,
li a {
  font-weight: 600;
  position: relative;
  color: #222;
}
p a:after,
li a:after {
  content: " ";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 5px;
  background-color: #BF4417;
  width: 0;
  transition: all 0.3s ease;
}
p a:hover,
li a:hover {
  text-decoration: none;
}
p a:hover:after,
li a:hover:after {
  width: 100%;
}

strong, b {
  font-weight: 600;
  letter-spacing: 0.02em;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

/* Utility */
.archive :not(header) .utility__container,
.blog :not(header) .utility__container,
.search :not(header) .utility__container,
.single-post :not(header) .utility__container {
  padding: 0;
}
@media (max-width: 768px) {
  .archive :not(header) .utility__container,
  .blog :not(header) .utility__container,
  .search :not(header) .utility__container,
  .single-post :not(header) .utility__container {
    flex-direction: column-reverse;
  }
}

.utility__container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.utility__container--small {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.utility__flex {
  display: flex;
}

.utility__centertext {
  text-align: center;
}

/* General */
*,
*:after,
*:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.no-scroll {
  overflow: hidden;
}

body > main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

.white .breadcrumbs {
  opacity: 0;
}

:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}

.header .menu-btn:focus-visible, .mainmenu a:focus-visible, .submenu-toggle:focus-visible {
  outline: 3px solid currentColor;
}

.btn {
  display: inline-block;
  padding: 10px 70px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
}
.btn--primary {
  background-color: #3C3C3C;
  color: #f9fafc;
  border: solid 2px #3C3C3C;
}
.btn--primary:hover {
  background-color: transparent;
  color: #3C3C3C;
}
.btn--primary:active {
  background-color: transparent;
  color: #3C3C3C;
  border-color: #1e3770;
  outline: solid 2px #1e3770;
  outline-offset: 3px;
}

#version_number {
  background-color: #BF4417;
  color: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 222222;
  padding: 0px 10px;
  font-size: 10px;
}

@keyframes header-in {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(255, 255, 255, 0.4);
  }
}
@keyframes menu-in {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes menu-out {
  0% {
    clip-path: inset(0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
/* Components */
/* Header */
body:not(.home) .header .header-logo {
  background-image: url(img/Octo_Ctrl_blue_logo.svg);
}

.header {
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  flex: none;
  display: block;
  z-index: 200;
  position: fixed;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header {
    height: 57px;
    min-height: 57px;
    width: 100vw;
    max-width: 100%;
  }
}
.header.white {
  height: 65px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  animation: header-in 0.7s;
}
@media (max-width: 768px) {
  .header.white {
    height: 57px;
  }
}
@media (max-width: 768px) {
  .header.white .header-logo {
    margin-top: 15px;
  }
}
.header > div {
  align-items: center;
  padding: 0;
}
.header .header-logo {
  min-width: 100px;
  min-height: 29px;
  background-image: url(img/Octo_Ctrl_blue_logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 250;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .header .header-logo {
    margin-top: 10px;
    margin-left: 20px;
  }
}
.header .header-logo:focus {
  outline: solid 2px #3C3C3C;
  outline-offset: 5px;
  border-radius: 5px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.breadcrumbs {
  background-color: transparent;
  opacity: 1;
  padding: 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .breadcrumbs {
    margin: 0 20px;
    max-width: 100%;
    width: calc(100vw - 40px);
  }
}
.breadcrumbs a, .breadcrumbs span {
  font-family: "Montserrat", sans-serif;
  position: relative;
  color: #222;
  font-size: 16px;
}
@media (max-width: 768px) {
  .breadcrumbs a, .breadcrumbs span {
    font-size: 12px;
  }
}
.breadcrumbs a:hover {
  color: #BF4417;
}
.breadcrumbs .breadcrumb-separator {
  color: #3C3C3C;
}

.cookieconcent {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 20;
  padding: 20px 0;
  display: none;
}
.cookieconcent .cookie__msg {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}
.cookieconcent .cookie__msg b {
  font-weight: 700;
}
.cookieconcent .cookie__btn {
  border: solid 1px;
  padding: 5px 15px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  cursor: pointer;
}
.cookieconcent .cookie__btn:hover, .cookieconcent .cookie__btn:focus {
  background-color: #1e3770 !important;
  color: #fff !important;
  border-color: #1e3770 !important;
}

/* Footer */
body:not(.home) .footer_qoute_section {
  background-color: #F2F0F0;
}
.footer_text_block_1_container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer_text_block_1_container {
    flex-direction: column;
  }
}

body:not(.home) .footer_text_block_1_section {
  margin-top: 100px;
}

.footer_text_block_1_section {
  padding: 50px 0;
}
.footer_text_block_1_section .text_block {
  max-width: 60%;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 300;
  text-align: center;
}
.footer_text_block_1_section .text_block h1 {
  margin-bottom: 1.5em;
}
.footer_text_block_1_section .text_block p {
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .footer_text_block_1_section .text_block {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer_text_block_1_section .text_block_cta {
  margin: 1em 0;
}
@media (max-width: 768px) {
  .footer_text_block_1_section .text_block_cta {
    text-align: center;
  }
}

.footer_qoute_section {
  position: relative;
  min-height: 250px;
  background-color: rgba(242, 240, 240, 0.8);
  padding: 150px 0;
  z-index: 1;
}
.footer_qoute_section h1 {
  font-size: 50px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer_qoute_section h1 {
    font-size: 35px;
    max-width: 80%;
    left: 10%;
  }
}
.footer_qoute_section .qoute {
  position: relative;
  font-size: 50px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  padding: 10px 10px 20px 10px;
  color: #F2F0F0;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .footer_qoute_section .qoute {
    font-size: 35px;
    max-width: 80%;
    left: 10%;
  }
}
.footer_qoute_section .qoute::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(7.5px);
  z-index: -1;
}
.footer_qoute_section .qoute-who {
  font-size: 20px;
}
/* frontpage case slider styles */
.case-slider h1 {
  font-size: 50px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-weight: normal;
  margin-bottom: 40px;
}
.case-slider h2 {
  color: #f9fafc;
}
.case-slider .case-slides {
  position: relative;
}
.case-slider .case-slide {
  display: block;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.case-slider .case-slide .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 20px;
  text-align: center;
}
.case-slider .case-slide .slide-logo {
  max-width: 200px;
  margin-bottom: 20px;
}
.case-slider .case-slide .slide-title {
  margin: 0;
}
.case-slider .case-slide p {
  margin: 10px 0 0 0;
  color: #F2F0F0;
  font-size: 22px;
  font-weight: 300;
  max-width: 600px;
}
@media (max-width: 768px) {
  .case-slider .case-slide p {
    font-size: 16px;
  }
}

.footer-contact-info {
  padding: 50px 0;
}
.footer-contact-info h1 {
  font-size: 50px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
  width: 100%;
}
.footer-contact-info .cols {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer-contact-info .cols {
    flex-direction: column;
    align-items: center;
  }
}
.footer-contact-info .col {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.footer-contact-info input, .footer-contact-info textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #f9fafc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #efefef;
}
.footer-contact-info .footer-contact-info-text {
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  margin-top: 20px;
  background-color: #efefef;
  padding: 20px;
}
@media (max-width: 768px) {
  .footer-contact-info .footer-contact-info-text {
    font-size: 16px;
  }
}
.footer-contact-info .footer-contact-info-text p {
  color: #222;
}

.footer_logo {
  background-image: url(img/Octo_Ctrl_white_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  height: 84px;
  position: relative;
}

.footer {
  background-color: #3C3C3C;
  color: #fff;
  padding: 54px 0;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 20px;
  }
}
.footer .cols {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer .cols {
    flex-direction: column;
    align-items: center;
  }
}
.footer .cols .col {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer .cols .col {
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
  }
}
.footer p, .footer li {
  color: #fff;
  text-align: left;
  margin: 0 0 1em 0;
  line-height: 1.2;
}
.footer a {
  color: #fff;
}
.footer .some_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer .some_container {
    justify-content: center;
  }
}
.footer .some_container:hover > :not(:hover) {
  filter: blur(2px);
  opacity: 0.75;
}
.footer .icon {
  height: 35px;
  width: 35px;
  margin-right: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
}
.footer .icon.ig {
  background-image: url(img/icon_in.png);
  filter: contrast(0) brightness(200%);
}
.footer .icon.fb {
  background-image: url(img/icon_fb.png);
}
.footer .icon.li {
  background-image: url(img/icon_li.png);
}
.footer .icon:hover {
  filter: contrast(100%) brightness(3%);
}

.slick-dots {
  bottom: 10px;
}
.slick-dots li {
  margin: 0 5px;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li.slick-active button {
  background-color: #fff;
}

.slick-arrow.slick-prev, .slick-arrow.slick-next {
  width: 40px;
  height: 40px;
  background-color: rgba(34, 34, 34, 0.5);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}
.slick-arrow.slick-prev:hover, .slick-arrow.slick-next:hover {
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.slick-arrow.slick-prev::after, .slick-arrow.slick-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: medium;
  font-family: "Montserrat", sans-serif;
}
.slick-arrow.slick-prev::before, .slick-arrow.slick-next::before {
  display: none;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev::after {
  content: "<";
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next::after {
  content: ">";
}

/**********************
 *
 * Mainmenu 
 *
 **********************/
.mainmenu-holder {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  margin: auto;
  z-index: 200;
}
@media (max-width: 768px) {
  .mainmenu-holder {
    position: fixed;
    top: 57px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    display: none;
  }
}

.mainmenu {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: bold;
  /* testing new look */
  cursor: pointer;
  color: #777777;
  text-decoration: none;
}
@media (max-width: 768px) {
  .mainmenu {
    width: unset;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    overflow: scroll;
    background-color: #fff;
    margin: 0;
    border-radius: 0 0 6px 6px;
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    backdrop-filter: blur(5px);
  }
}
.mainmenu li {
  padding: 20px 25px;
  position: relative;
  margin: 0;
  list-style: none;
}
.mainmenu li.open {
  z-index: 200;
}
.mainmenu li a {
  display: inline-block;
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 400;
  word-break: keep-all;
  position: relative;
  transition: all 0.3s ease;
}
.mainmenu li a:hover {
  color: #BF4417;
}
.mainmenu li a:hover:after {
  background-color: #BF4417;
}
.mainmenu li a:focus {
  outline: solid 2px #3C3C3C;
  outline-offset: 5px;
  border-radius: 2px;
}
.mainmenu > li {
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .mainmenu > li {
    border-bottom: 1px solid rgba(34, 34, 34, 0.3);
    padding: 10px;
    margin: 0;
  }
}
.mainmenu > li:first-child {
  border-radius: 0 0 0 20px;
}
@media (max-width: 768px) {
  .mainmenu > li:first-child {
    border-radius: 0;
  }
}
.mainmenu > li:last-child {
  border-radius: 0 0 20px 0;
}
@media (max-width: 768px) {
  .mainmenu > li:last-child {
    border-radius: 0;
  }
}
.mainmenu > li:hover {
  border-radius: 10px;
}
.mainmenu > li:hover a {
  color: #3C3C3C;
}
.mainmenu > li:hover a::after {
  background-color: #BF4417;
}
.mainmenu > li a {
  font-size: 18px;
}
.mainmenu > li a:after {
  content: " ";
  background-color: #222;
  width: 24px;
  height: 4px;
  left: calc(50% - 12px);
  transform: scaleX(0);
  position: absolute;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
}
.mainmenu > li a:hover::after {
  transform: scaleX(1);
}
.mainmenu > .submenu-has-children {
  padding-right: 30px;
}
@media (max-width: 768px) {
  .mainmenu > .submenu-has-children {
    padding-right: 0;
  }
}
.mainmenu > .submenu-has-children ul {
  animation: menu-out 0.7s;
}
@media (max-width: 768px) {
  .mainmenu > .submenu-has-children ul {
    display: block;
    animation: none;
  }
}
.mainmenu > .submenu-has-children ul a {
  font-size: 18px;
}
.mainmenu > .submenu-has-children ul a::after {
  left: -10px;
  top: -2px;
  bottom: 0;
  height: calc(100% + 2px);
  width: 5px;
}
@media (max-width: 768px) {
  .mainmenu > .submenu-has-children:first-child:hover {
    border-radius: 0 0 20px 0;
    background-color: #3C3C3C;
  }
}
.mainmenu > .submenu-has-children:hover ul {
  display: block;
  animation: menu-in 0.7s;
}
@media (max-width: 768px) {
  .mainmenu > .submenu-has-children:hover ul {
    animation: none;
  }
}
.mainmenu > .submenu-has-children:hover .submenu-arrow {
  transform: rotate(180deg);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAB2AAAAdgB+lymcgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHPSURBVHic7dgtSANhGMDx/4YiU5TJwGAQLAaLoBaLFoOYbDabzWjWbrTJgmsmm0EsrlgsFsOCRVAQBEV0m98abgc6N+69u/fj3D0/eMruBu//2MZ4QAghhBBCCCGESJ1MwPVBK6cw7z7Mzb1AEagCXx0y1UZTTuUBFBNwYFOz0xzb/BXIAo94n4JO9AT0/3wh23SD/6RSo9UDKDk4hy27KjflgDLuv6+6p4zijyDAAHCagEPrmjMgrxrvyzfe6PrwceccKISN9w0BlQRERJ0LYDhqvG8EuExATNi5AkbjxvvGgJsERKnOLTCuK943AdwlIC5oHoBp3fG+Gbx/U64j200NmDUV75sHnh2HtppXYNFg9y9LwJvhoDDzDiwbLW5hBfiIeXAd8wmsGm5ta03hgKZn3XhlgE3cxW9Y6FOyhf34bStlijJ42xZb8SWC95nWZYE9zMfvA12WmkLrBg4wF38E9FiriSgHHKM//gTos9gRi+6FSqSFhmsFvGVE3PgK3l7iX4q7UNGy0HAt6kLlGo0LDdfCLlSMLDRcU12oGF1ouBa0UKkBc85OZ8kCUOdvfL1xLRWm8P7VveBtlw6BSacnEkIIIYQQQgghRGp8A7sjgU5M3b7vAAAAAElFTkSuQmCC);
}
.mainmenu .active-parent > a::after,
.mainmenu .active > a::after {
  transform: scaleX(1);
  background-color: #BF4417;
}
@media (max-width: 768px) {
  .mainmenu .active-parent > a::after,
  .mainmenu .active > a::after {
    width: 100%;
    left: 0;
    background: #222;
  }
}

/**********************
 *
 * submenu-arrow
 * Dynamicly inserted with javascript 
 * when menu item has submenu
 *
 **********************/
.submenu-arrow {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAB2AAAAdgB+lymcgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHPSURBVHic7dgtSANhGMDx/4YiU5TJwGAQLAaLoBaLFoOYbDabzWjWbrTJgmsmm0EsrlgsFsOCRVAQBEV0m98abgc6N+69u/fj3D0/eMruBu//2MZ4QAghhBBCCCGESJ1MwPVBK6cw7z7Mzb1AEagCXx0y1UZTTuUBFBNwYFOz0xzb/BXIAo94n4JO9AT0/3wh23SD/6RSo9UDKDk4hy27KjflgDLuv6+6p4zijyDAAHCagEPrmjMgrxrvyzfe6PrwceccKISN9w0BlQRERJ0LYDhqvG8EuExATNi5AkbjxvvGgJsERKnOLTCuK943AdwlIC5oHoBp3fG+Gbx/U64j200NmDUV75sHnh2HtppXYNFg9y9LwJvhoDDzDiwbLW5hBfiIeXAd8wmsGm5ta03hgKZn3XhlgE3cxW9Y6FOyhf34bStlijJ42xZb8SWC95nWZYE9zMfvA12WmkLrBg4wF38E9FiriSgHHKM//gTos9gRi+6FSqSFhmsFvGVE3PgK3l7iX4q7UNGy0HAt6kLlGo0LDdfCLlSMLDRcU12oGF1ouBa0UKkBc85OZ8kCUOdvfL1xLRWm8P7VveBtlw6BSacnEkIIIYQQQgghRGp8A7sjgU5M3b7vAAAAAElFTkSuQmCC);
  background-size: cover;
  width: 17px;
  height: 17px;
  position: absolute;
  right: 5px;
  top: 20px;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  display: flex;
}
.submenu-arrow-open {
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.submenu-arrow:focus {
  outline: solid 2px #3C3C3C;
  outline-offset: 5px;
  border-radius: 5px;
}
.submenu-arrow:active {
  transform: rotate(180deg);
  transition: all 0.3s ease;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAB2AAAAdgB+lymcgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHPSURBVHic7dgtSANhGMDx/4YiU5TJwGAQLAaLoBaLFoOYbDabzWjWbrTJgmsmm0EsrlgsFsOCRVAQBEV0m98abgc6N+69u/fj3D0/eMruBu//2MZ4QAghhBBCCCGESJ1MwPVBK6cw7z7Mzb1AEagCXx0y1UZTTuUBFBNwYFOz0xzb/BXIAo94n4JO9AT0/3wh23SD/6RSo9UDKDk4hy27KjflgDLuv6+6p4zijyDAAHCagEPrmjMgrxrvyzfe6PrwceccKISN9w0BlQRERJ0LYDhqvG8EuExATNi5AkbjxvvGgJsERKnOLTCuK943AdwlIC5oHoBp3fG+Gbx/U64j200NmDUV75sHnh2HtppXYNFg9y9LwJvhoDDzDiwbLW5hBfiIeXAd8wmsGm5ta03hgKZn3XhlgE3cxW9Y6FOyhf34bStlijJ42xZb8SWC95nWZYE9zMfvA12WmkLrBg4wF38E9FiriSgHHKM//gTos9gRi+6FSqSFhmsFvGVE3PgK3l7iX4q7UNGy0HAt6kLlGo0LDdfCLlSMLDRcU12oGF1ouBa0UKkBc85OZ8kCUOdvfL1xLRWm8P7VveBtlw6BSacnEkIIIYQQQgghRGp8A7sjgU5M3b7vAAAAAElFTkSuQmCC);
}
@media (max-width: 768px) {
  .submenu-arrow {
    height: 50px;
    width: 50px;
    display: none;
    background-size: 15px;
    background-repeat: no-repeat;
    top: 0;
    background-position: center;
  }
}

/**********************
 *
 * Submenu first 
 *
 **********************/
.submenu-first {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  min-width: 220px;
  font-size: 16px;
  padding-bottom: 20px;
  z-index: 1000;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 5%, rgba(223, 223, 223, 0.8) 100%);
  border-radius: 6px;
  border: none;
  cursor: pointer;
  color: #777777;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffffff;
}
@media (max-width: 768px) {
  .submenu-first {
    background: #fff;
    position: relative;
    top: unset;
    background: unset;
    min-width: unset;
    padding-bottom: 0;
    border: none;
    box-shadow: none;
  }
}
.submenu-first > li {
  padding: 14px 16px 0 16px;
  margin: 0;
}
@media (max-width: 768px) {
  .submenu-first > li {
    padding: 14px 0 0 0;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .submenu-first > li a {
    font-size: 18px;
    font-weight: normal;
    color: #222;
  }
}
.submenu-first > li a::after {
  left: 0;
}
.submenu-first > .submenu-has-children > .submenu-arrow {
  top: 12px;
}
@media (max-width: 768px) {
  .submenu-first > .submenu-has-children > .submenu-arrow {
    top: 14px;
  }
}

/**********************
 *
 * Submenu second
 *
 **********************/
.submenu-second {
  width: calc(100% + 16px);
  display: none;
}
@media (max-width: 768px) {
  .submenu-second {
    padding-top: 8px;
  }
}
.submenu-second li a {
  position: relative;
  font-size: 13px;
}
@media (max-width: 768px) {
  .submenu-second li a {
    font-size: 14px;
  }
}
.submenu-second > li {
  padding: 6px 12px 0 12px;
}
@media (max-width: 768px) {
  .submenu-second > li {
    font-size: 14px;
    padding: 0;
  }
}
.submenu-second a:after {
  content: " ";
  position: absolute;
  width: 7px;
  height: 1px;
  background: #fff;
  top: 7px;
  left: -11px;
}
.submenu-second .submenu-arrow {
  top: 5px;
}
.submenu-second .active a:after {
  background: #222;
}

/**********************
 *
 * Submenu third
 *
 **********************/
.submenu-third {
  display: none;
}
.submenu-third > li {
  padding: 6px 10px 0px;
}

/**********************
 *
 * Submenu forth
 *
 **********************/
.submenu-forth {
  display: none;
}

/**********************
 *
 * Hamburger Menu button 
 *
 **********************/
.menu-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 8px;
  right: 8px;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 250;
  border: 0;
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
    outline: solid 2px #1e3770;
    border-radius: 3px;
  }
}
.menu-btn div {
  width: 20px;
  height: 2px;
  background-color: #3C3C3C;
  position: absolute;
  left: 10px;
  transition: all 0.3s ease;
}
.menu-btn div:nth-child(1) {
  top: 10px;
}
.menu-btn div:nth-child(2) {
  top: 20px;
}
.menu-btn div:nth-child(3) {
  top: 30px;
}
.menu-btn.open div:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.menu-btn.open div:nth-child(2) {
  opacity: 0;
}
.menu-btn.open div:nth-child(3) {
  top: 20px;
  transform: rotate(135deg);
}

body:not(.home) main {
  margin-top: 125px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  body:not(.home) main {
    margin-top: 95px;
  }
}
body:not(.home) .topimage__section {
  background-image: url(img/page_toppimage_section.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #fff;
}
@media (max-width: 768px) {
  body:not(.home) .topimage__section {
    min-height: 20px;
  }
}

.topimage {
  display: flex;
  width: 100%;
  height: 530px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .topimage {
    height: 230px;
  }
}
.topimage__blank {
  height: 20px;
}
.topimage .icon {
  color: #fff;
  font-size: 203px;
  font-weight: bold;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Orbitron", sans-serif;
}
.topimage h1 {
  color: #222;
  font-size: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  text-align: left;
  max-width: 40%;
  margin-left: 12%;
  font-weight: 300;
  line-height: 1.4;
}
.topimage img {
  max-height: 100%;
  width: auto;
  margin: 0 auto;
}
.topimage h1.frontpage-text {
  height: 200px;
  width: 440px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  font-size: 45px;
  font-weight: 400;
  display: flex;
  max-height: 100%;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px;
  line-height: 1.25;
  letter-spacing: -0.011em;
  position: relative;
  z-index: 1;
}
.topimage h1.frontpage-text::after {
  /*content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 50px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(7.5px);
  z-index: -1;
  @include md(){
      top: 20%;
  }*/
}
.topimage h1.frontpage-text::after::after {
  display: none;
}
@media (max-width: 768px) {
  .topimage h1.frontpage-text {
    font-size: 35px;
    padding-bottom: 0;
    width: 300px;
    height: auto;
  }
}

.home .topimage__section {
  height: 100vh;
}
@media (max-width: 768px) {
  .home .topimage__section {
    height: auto;
  }
}
.home .topimage {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: contain;
}
.home .topimage.topimage--light::before {
  background: linear-gradient(0deg, #f9fafc 0%, rgba(249, 250, 252, 0.3) 30%, rgba(249, 250, 252, 0) 50%, rgba(249, 250, 252, 0) 70%, #f9fafc 100%);
}
.home .topimage.topimage--light::after {
  background: linear-gradient(90deg, #f9fafc 0%, rgba(249, 250, 252, 0.3) 10%, rgba(249, 250, 252, 0) 50%, rgba(249, 250, 252, 0) 90%, #f9fafc 100%);
}
.home .topimage.topimage--dark::before {
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 70%, rgb(0, 0, 0) 100%);
}
.home .topimage.topimage--dark::after {
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 90%, rgb(0, 0, 0) 100%);
}
.home .topimage::before, .home .topimage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .home .topimage {
    height: 370px;
    background-size: 100%;
  }
}
@media (max-width: 768px) {
  .home .topimage h1 {
    max-width: 50%;
    margin: 170px auto 0;
    position: absolute;
    top: 0;
    left: 12%;
  }
}
@media (max-width: 768px) {
  .home .topimage h1.frontpage-text:after {
    top: 10%;
  }
}

.puffs {
  padding: 100px 0;
}
.puffs h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .puffs h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.puffs .items {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 768px) {
  .puffs .items {
    flex-direction: column;
  }
}
.puffs .item {
  display: flex;
  height: 550px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}
.puffs .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(34, 34, 34, 0.4);
  border-radius: 10px;
  z-index: -1;
}
.puffs .item:hover::after, .puffs .item:focus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(191, 68, 23, 0.4);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .puffs .item {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.puffs .text {
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 40px;
}
@media (max-width: 768px) {
  .puffs .text {
    height: auto;
    padding: 20px;
  }
}
.puffs .text h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  text-transform: uppercase;
  color: #fff;
}
.puffs .text p {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
  color: #F2F0F0;
}

.blogg-main {
  margin: 0;
  width: 100%;
}
.blogg-main header {
  padding: 0.75rem 1rem 0;
}

.klykk-single {
  max-width: 75%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .klykk-single {
    max-width: 100%;
    padding: 0 10px;
  }
  .klykk-single .entry-meta {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px;
    background-color: rgba(60, 60, 60, 0.3);
  }
}
.klykk-single #respond {
  border-top: solid 2px #e5e7eb;
  display: flex;
  flex-direction: column;
  padding: 1%;
}
.klykk-single #commentform {
  display: flex;
  flex-direction: column;
}
.klykk-single .required-field-message {
  display: block;
}
.klykk-single .required-field-message .required {
  color: #1e3770;
}
.klykk-single .comment-form-comment label {
  display: block;
}
.klykk-single .comment-form-comment textarea {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.klykk-single .comment-form-comment input[type=text], .klykk-single .comment-form-comment input[type=email], .klykk-single .comment-form-comment textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}
.klykk-single .comment-form-comment input[type=text]:focus, .klykk-single .comment-form-comment input[type=email]:focus, .klykk-single .comment-form-comment textarea:focus {
  outline: none;
  border-color: #1e3770;
  box-shadow: 0 0 0 3px rgba(30, 55, 112, 0.3);
}
.klykk-single .entry-meta {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  background-color: rgba(60, 60, 60, 0.1);
  margin: 5px 0 10px;
  padding: 10px 5px;
}
.klykk-single .entry-meta time {
  margin-right: 10px;
}
.klykk-single .entry-meta a {
  font-weight: 600;
  position: relative;
  color: #222;
}
.klykk-single .entry-meta a::after {
  content: " ";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #BF4417;
  transform: scaleX(0);
  transition: all 0.3s ease;
}
.klykk-single .entry-meta a:hover::after {
  transform: scaleX(1);
}
.klykk-single .tags {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  background-color: rgba(42, 123, 155, 0.1);
  margin: 5px 0 10px;
  padding: 10px 5px;
  font-weight: 400;
}
.klykk-single .tags a {
  font-weight: 600;
  position: relative;
  color: #222;
  padding: 0 3px;
}
.klykk-single .tags a::after {
  content: " ";
  position: absolute;
  bottom: -2px;
  left: 3px;
  right: 3px;
  height: 3px;
  background-color: #BF4417;
  transform: scaleX(0);
  transition: all 0.3s ease;
}
.klykk-single .tags a:hover::after {
  transform: scaleX(1);
}
.klykk-single .form-submit input {
  background: #1e3770;
  color: #3C3C3C;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  width: auto;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.klykk-single .form-submit input:hover {
  background: #3C3C3C;
  color: #1e3770;
}

.sidebar-blogg {
  max-width: 25%;
  min-width: 300px;
  width: 100%;
  margin-left: 1%;
  padding: 1%;
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sidebar-blogg .sidebar-toggle {
  display: none;
}
@media (max-width: 768px) {
  .sidebar-blogg {
    max-width: 96%;
    width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 2% 20px;
    padding: 5px 10px 0;
    flex: 1 1 auto;
  }
  .sidebar-blogg .sidebar-toggle {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 0.6rem 0.5rem;
    font-weight: 700;
    cursor: pointer;
  }
  .sidebar-blogg .sidebar-toggle::after {
    content: "+";
    float: right;
    transition: transform 0.2s ease, content 0.2s ease;
  }
  .sidebar-blogg .sidebar-toggle[aria-expanded=true]::after {
    content: "−";
  }
  .sidebar-blogg .sidebar-inner {
    display: none;
  }
  .sidebar-blogg .sidebar-inner.is-open {
    display: block;
  }
  .sidebar-blogg .widget .widget-title,
  .sidebar-blogg .widget h2,
  .sidebar-blogg .widget h3, .sidebar-blogg > h2, .sidebar-blogg > h3 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.25rem;
    margin: 0 0 0 0;
    font-weight: 700;
  }
  .sidebar-blogg .widget .widget-title::after,
  .sidebar-blogg .widget h2::after,
  .sidebar-blogg .widget h3::after,
  .sidebar-blogg > h2::after,
  .sidebar-blogg > h3::after {
    content: "+";
    display: inline-block;
    width: 1.2em;
    text-align: center;
    transition: transform 0.2s ease, content 0.2s ease;
  }
  .sidebar-blogg .widget .widget-title[aria-expanded=true]::after, .sidebar-blogg .widget h2[aria-expanded=true]::after, .sidebar-blogg .widget h3[aria-expanded=true]::after, .sidebar-blogg > h2[aria-expanded=true]::after, .sidebar-blogg > h3[aria-expanded=true]::after {
    content: "−";
  }
  .sidebar-blogg .widget .widget-content, .sidebar-blogg > .widget-content {
    display: none;
    padding-top: 0.5rem;
  }
}
.sidebar-blogg li {
  margin: 15px 0 5px;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 0 10px;
  position: relative;
}
.sidebar-blogg li:hover a {
  color: #3C3C3C;
  z-index: 1;
}
.sidebar-blogg li:hover ::after {
  transform: scale(1);
}
.sidebar-blogg li a:after {
  width: 3px;
  left: -6px;
  top: -3px;
  height: auto;
  transform: scaleY(0);
}
.sidebar-blogg li a:hover:after {
  transform: scaleY(1);
}

.sidebar-section {
  margin: 10px 0;
}

.klykk-tagg-moln {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 1em 0px;
  padding: 0px;
}
.klykk-tagg-moln a {
  background-color: rgba(60, 60, 60, 0.1);
  color: #222;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.klykk-tagg-moln a:hover {
  background-color: #3C3C3C;
  color: #fff;
}

.klykk-categories {
  margin: 0;
  padding: 5px 0px 20px;
}
.klykk-categories li {
  list-style: none;
  border: none;
  margin: 5px 0;
  padding: 0;
}
.klykk-categories li::before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  background-image: url(data:image/png;base64,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);
  background-size: cover;
  margin-right: 5px;
}
.klykk-categories li a::after {
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  bottom: -2px;
  top: initial;
}
.klykk-categories li a:hover::after {
  transform: scaleX(1);
}
.klykk-categories .klykk-count {
  font-size: 0.875rem;
  color: #6b7280;
  margin-left: 5px;
}

.klykk-mest-lasta-list {
  list-style: none;
  padding: 0;
}
.klykk-mest-lasta-list li {
  display: flex;
}
.klykk-mest-lasta-list .klykk-mest-lasta-rank {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3C3C3C;
  width: 30px;
  text-align: center;
  margin-right: 10px;
}

.klykk-senaste-list {
  list-style: none;
  padding: 0;
}

.blogg-search {
  border: solid 1px #e5e7eb;
}

.sidebar-item {
  margin: 10px 0;
}

.klykk-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* avstånd mellan kort */
  margin: 0;
  padding: 0;
  list-style: none;
}
.klykk-list li {
  width: 100%;
}

.klykk-card {
  flex: 1 1 280px; /* minst 280px, växer tills raden tar slut */
  max-width: 100%;
  background-color: rgba(42, 123, 155, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .klykk-card {
    width: 96%;
    margin: 0 2%;
  }
}
.klykk-card > a ::after {
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(60, 60, 60, 0.3);
  z-index: -1;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.klykk-card > a:hover * {
  color: #e5e7eb;
}
.klykk-card > a:hover ::after {
  transform: scale(1);
}
.klykk-card .entry-title {
  margin: 0 0 0.25rem;
}
.klykk-card .entry-meta {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}
.klykk-card .entry-excerpt {
  padding: 0.5rem 1rem 1rem;
  flex-grow: 1;
}
.klykk-card .readmore {
  text-decoration: none;
  color: #BF4417; /* din accentfärg */
  font-weight: 600;
}
.klykk-card header {
  padding: 0.75rem 1rem 0;
}
.klykk-card footer {
  margin-top: auto; /* knappen trycks neråt */
  padding: 0.75rem 1rem;
  border-top: 1px solid #e5e7eb;
}
.klykk-card .entry-featured {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.klykk-card .entry-featured header {
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.klykk-card .entry-featured .entry-title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
  font-size: 1.75rem;
}

.klykk-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.navigation.pagination {
  display: flex;
  justify-content: flex-start;
  margin: 2em 0;
}
@media (max-width: 768px) {
  .navigation.pagination {
    width: 96%;
    margin: 2%;
  }
}
.navigation.pagination .nav-links {
  display: flex;
  list-style: none;
  padding: 0;
}
.navigation.pagination .nav-links a, .navigation.pagination .nav-links span {
  display: block;
  padding: 8px 12px;
  border: 1px solid #3C3C3C;
  font-size: 0.75rem;
  color: #3C3C3C;
  text-decoration: none;
  background-color: rgba(30, 55, 112, 0.1);
}
.navigation.pagination .nav-links a:hover, .navigation.pagination .nav-links span:hover {
  background: #1e3770;
  color: #BF4417;
  border: 1px solid #BF4417;
}
.navigation.pagination .nav-links .current {
  border: solid 2px #3C3C3C;
}
.navigation.pagination .nav-links .current:hover {
  background: rgba(30, 55, 112, 0.1);
  color: #3C3C3C;
  border: solid 2px #3C3C3C;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
