@charset "iso-8859-1";
/* CSS Document */

/* =========================================================
   SITE OVERRIDE
   Neutral färgstruktur för återanvändning mellan webbplatser
   ========================================================= */

:root {
  --site-primary: #6B3F5B;
  --site-primary-dark: #271A22;
  --site-primary-soft: #E8DDE4;
  --site-primary-pale: #F5F0F3;

  --site-heading: #271A22;
  --site-heading-soft: #4A3A43;
  --site-heading-light: #6E6168;

  --site-accent: #A7B29A;
  --site-accent-2: #A14A2F;
  --site-accent-3: #D8CEC8;

  --site-cream: #FAF8F7;
  --site-cream-dark: #F1ECE9;
  --site-text: #2B2B2B;
  --site-text-soft: #665B62;
  --site-grey-bg: #F5F2F1;
  --site-white: #FFFFFF;
  --site-border: #D9CBD3;
}

/* =========================
   GRUND
   ========================= */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--site-text);
  background: #fff;
}

p,
.post-content ul li,
.post-content ol li,
blockquote footer {
  color: var(--site-text);
}

a,
a:hover {
  color: var(--site-primary-dark);
  text-decoration-color: rgba(39, 26, 34, 0.35);
}

.font-weight-bold {
  font-weight: 900 !important;
}

/* =========================
   TYPOGRAFI
   ========================= */
h1, h2, h3, h4, h5, h6,
#header .header-nav-main nav > ul > li > a,
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu,
.badge {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 1.65em;
  line-height: 40px;
  margin: 0 0 20px 0;
  font-weight: 800;
  color: var(--site-heading);
}

h2 {
  color: var(--site-heading);
  font-weight: 700;
}

h3 {
  color: var(--site-primary);
  font-weight: 700;
  text-transform: none;
  line-height: 1.2em;
  margin-top: 20px;
  margin-bottom: 20px;
}

h4 {
  color: var(--site-primary);
  font-weight: 600;
}

h2.start-heading {
  color: var(--site-primary);
  font-weight: 700;
  text-transform: none;
  line-height: 1.2em;
  margin-top: 10px;
  margin-bottom: 20px;
}

.post-content h2 {
  font-size: 1.35em;
  line-height: 1.3;
  margin: 22px 0 12px 0;
}

.post-content h3,
.post-block h3,
.accordion h3 {
  font-size: 1.15em;
  margin: 18px 0 10px 0;
  font-weight: 700;
  text-transform: none;
}

.blog-posts h2 {
  font-size: 1.35em;
  line-height: 1.3;
  margin: 10px 0 12px 0;
}


.text-5 {
  font-size: 1.1em !important;
}

.text-6 {
  font-size: 1.6em !important;
}

p.lead strong {
	font-weight: 700;
}

p.lead a {
	font-weight: 700;
}

/* =========================
   HEADER / FOOTER
   ========================= */
#header .header-body {
  background-color: var(--site-primary-pale);
  border-bottom: 1px solid var(--site-border);
}

#footer,
#footer .footer-copyright {
  background: var(--site-heading);
}

.footer-top-border {
  border-top: 1px solid var(--site-heading) !important;
}

/* =========================
   DESKTOP-NAVIGATION
   ========================= */
#header .header-nav-main nav > ul > li > a {
  font-weight: 600;
  color: var(--site-heading);
}

#header .header-nav-main nav > ul > li > a:hover,
#header .header-nav-main nav > ul > li.active > a {
  color: var(--site-primary);
}

/* Dropdown desktop */
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
  font-size: 0.95rem;
  padding: 0;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu .dropdown-item {
  font-size: 1rem !important;
  line-height: 1.35;
  padding: 9px 16px;
  font-weight: 600;
}

#header .header-nav-main nav > ul > li.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--site-primary-pale);
  color: var(--site-primary-dark);
}

#header .dropdown-menu a {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Mobilmenyknapp */
#header .header-btn-collapse-nav {
  background: var(--site-primary);
  border-color: var(--site-primary);
}

/* =========================
   HERO
   ========================= */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  z-index: 3;
}

.hero-text h1 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-text h1 span {
  display: block;
  font-weight: 600;
}

.header-size-1 {
  color: var(--site-heading);
  font-size: 57px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-size-2 {
  color: #FFF;
  font-size: 32px;
}

/* Desktop hero */
@media (min-width: 768px) {
  .hero-text {
    left: 210px;
    top: 58%;
    transform: translateY(-50%);
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0));
    padding: 20px 30px;
    border-radius: 6px;
  }

  .hero-text h1 {
    font-size: 57px;
    line-height: 1.1;
    color: #C6A5B8;
    text-shadow: 0 6px 24px rgba(0,0,0,0.5);
    margin-bottom: 6px;
  }

  .hero-text h1 span {
    font-size: 0.45em;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    letter-spacing: 0.03em;
    font-weight: 500;
    white-space: nowrap;
  }

  .hero-text h1 span .dot {
    color: var(--site-primary);
    opacity: 0.7;
    margin: 0 10px;
  }
}

/* =========================
   TOGGLES / BADGES / KNAPPAR
   ========================= */
html .toggle-primary .toggle label,
html .toggle-primary .toggle .toggle-title {
  color: var(--site-primary);
  border-left-color: var(--site-primary);
  border-right-color: var(--site-primary);
}

html .toggle-primary .toggle.active > label,
html .toggle-primary .toggle.active > .toggle-title {
  background-color: var(--site-primary);
  border-left-color: var(--site-primary);
  border-right-color: var(--site-primary);
  color: #fff;
}

.badge-dark {
  background-color: var(--site-primary) !important;
  color: #FFF;
}

html .bg-color-primary,
html .bg-primary {
  background-color: var(--site-primary) !important;
}

html .btn-light {
  background-color: var(--site-primary-pale);
  border-color: var(--site-border);
  color: var(--site-heading);
}

.btn-primary,
html .btn-primary {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(107, 63, 91, 0.16);
}

.btn-primary:hover,
html .btn-primary:hover {
  background-color: var(--site-primary-dark) !important;
  border-color: var(--site-primary-dark) !important;
  color: #fff !important;
}

/* =========================
   ACCORDION / INNEHÅLLSLÄNKAR
   ========================= */
.accordion .card-header a {
  color: var(--site-heading);
}

.card-body a,
.post-content a {
  font-weight: 700;
}

/* =========================
   TESTIMONIALS
   ========================= */
html .testimonial-primary blockquote {
  background: var(--site-primary);
}

html .testimonial-primary .testimonial-arrow-down {
  border-top-color: var(--site-primary);
}

html .testimonial-secondary blockquote {
  background: var(--site-heading);
}

html .testimonial-secondary .testimonial-arrow-down {
  border-top-color: var(--site-heading);
}

html .testimonial-tertiary blockquote {
  background: var(--site-accent);
}

html .testimonial-tertiary .testimonial-arrow-down {
  border-top-color: var(--site-accent);
}

html .blockquote-tertiary {
  border-color: var(--site-accent) !important;
}

html .testimonial-quaternary blockquote {
  background: var(--site-accent-2);
}

html .testimonial-quaternary .testimonial-arrow-down {
  border-top-color: var(--site-accent-2);
}

.testimonial blockquote:before {
  content: "";
}

/* =========================
   OWL
   ========================= */
.owl-carousel.carousel-center-active-item-2 .owl-item.active > div {
  background: var(--site-primary);
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] {
  background: var(--site-primary);
  border-color: var(--site-primary);
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:hover {
  background: var(--site-heading);
  border-color: var(--site-heading);
}

/* =========================
   BLOGG / KORT
   ========================= */
.blog-posts:not(.blog-posts-no-margins) article {
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-meta {
  margin-top: 10px;
}

.post-meta .btn {
  padding: 8px 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.post-content-1,
.post-content-2,
.post-content-3,
.post-content-4,
.post-content-5 {
  background-color: var(--site-primary-pale);
  border: 1px solid var(--site-border);
  border-radius: 0 0 8px 8px !important;
}

.post-content-1,
.post-content-2,
.post-content-4,
.post-content-5 {
  padding: 10px;
}

.post-content-3 {
  padding: 12px 14px;
}

.post-content-1 {
  min-height: 230px;
}

.post-content-4 {
  min-height: 255px;
}

.post-content-5 {
  min-height: 125px;
}

div.thumb-info-show-more-content > p {
  font-size: 1em !important;
}

.thumb-info .thumb-info-type {
  font-size: 0.7em;
}

/* =========================
   STARTSIDANS SEKTIONER
   ========================= */
.bg-color-grey {
  background-color: var(--site-primary-soft) !important;
}

.bg-color-black {
  background-color: var(--site-heading) !important;
}

.startimage1 {
  position: absolute;
  top: 400px;
  left: 350px;
}

.card-1 {
  min-height: 280px;
}

/* =========================
   MÖRKA BOXAR
   ========================= */
.bg-color-444-read-more,
.bg-color-444 {
  background-color: var(--site-heading);
  border-radius: 8px;
}

.bg-color-444-read-more {
  padding: 2rem;
}

.bg-color-444 {
  min-height: 288px;
}

.bg-color-444-read-more h4,
.bg-color-444 h4,
.bg-color-444-read-more ul li,
.bg-color-444 ul li {
  color: #FFF;
}

.bg-color-444-read-more ul,
.bg-color-444 ul {
  padding-left: 1rem;
}

.bg-color-444-read-more .readmore-overlay {
  bottom: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1;
}

.position-relative {
  height: 224px;
}

/* =========================
   FORM / TABELL / CTA
   ========================= */
.form-check-input:checked {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
}

.table {
  --bs-table-striped-bg: rgba(107, 63, 91, 0.10);
}

.call-to-action.with-borders {
  border-color: var(--site-border);
  background: var(--site-primary-pale) !important;
}

.call-to-action h3 strong {
  color: var(--site-primary-dark);
}

/* =========================
   BOK-CTA
   ========================= */
.book-cta-box {
  background: var(--site-primary-pale);
  border: 1px solid var(--site-border);
  border-radius: 8px;
  padding: 22px 30px;
  margin: 0 0 30px 0;
}

.book-cta-box h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--site-heading);
}

.book-target,
.book-proof {
  color: var(--site-text-soft);
}

.book-cta-box p:last-child {
  margin-bottom: 0;
}

.book-cta-box .book-price {
  font-size: 1.15rem;
  margin: 18px 0;
}

.book-cta-box .btn {
  padding: 14px 28px;
  font-weight: 700;
}

.book-cta-box .btn:hover {
  transform: translateY(-1px);
}

.book-cta-box .book-proof {
  font-size: 1rem;
}

/* =========================
   FOOTER
   ========================= */
#footer h3,
#footer p,
#footer a,
#footer li,
#footer .social-icons li a {
  color: #fff;
}

#footer .social-icons li a {
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}

#footer .social-icons li a:hover {
  background: var(--site-primary);
}

/* =========================
   SPELNINGAR / GIG
   ========================= */

.gig-section {
  margin-bottom: 50px;
}

.gig-empty-box {
  background: var(--site-primary-pale);
  border: 1px solid var(--site-border);
  border-radius: 8px;
  padding: 22px 24px;
}

.gig-empty-box p:last-child {
  margin-bottom: 0;
}

.gig-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gig-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--site-border);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

.gig-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--site-primary-pale);
  border-radius: 8px;
  padding: 10px 8px;
  min-height: 88px;
}

.gig-date-day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--site-primary);
}

.gig-date-month,
.gig-date-year {
  font-size: 0.85rem;
  color: var(--site-text-soft);
}

.gig-content h3 {
  margin: 0 0 6px 0;
  color: var(--site-primary);
}

.gig-meta,
.gig-type {
  margin: 0;
}

.gig-meta {
  color: var(--site-text);
}

.gig-type {
  margin-top: 4px;
  color: var(--site-text-soft);
  font-size: 0.95rem;
}

.gig-action .btn {
  white-space: nowrap;
}

.gig-year-group {
  margin-top: 30px;
}

.gig-year-group h3 {
  margin-bottom: 14px;
}

.gig-history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gig-history-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  line-height: 1.6;
}

.gig-history-list li strong {
  color: var(--site-heading);
}

/* =========================
   BOK
   ========================= */

.book-hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 25px;
}

.book-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.book-intro p {
  margin-bottom: 14px;
}

.book-box {
  background: var(--site-primary-pale);
  border: 1px solid var(--site-border);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 30px 0 35px 0;
}

.book-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.book-lead {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.book-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.book-meta li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.book-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.book-note {
  font-size: 0.9rem;
  color: var(--site-text-soft);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .book-hero {
    grid-template-columns: 1fr;
  }

  .book-image {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .gig-card {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .gig-date {
    width: 88px;
  }

  .gig-action {
    margin-top: 4px;
  }
}

/* =========================
   MOBIL / TABLET
   ========================= */
@media (max-width: 768px) {
  /* Hero */
  .hero-image-wrap {
    position: relative;
    overflow: hidden;
  }

  .hero-text {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    top: auto;
    transform: none;
    z-index: 3;
    padding: 14px 16px;
    margin: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.58), rgba(0,0,0,0.18));
    border-radius: 8px;
  }

  .hero-text h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.05;
    color: #C6A5B8;
    text-shadow: 0 3px 10px rgba(0,0,0,0.45);
  }

  .hero-text h1 span {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    margin-top: 4px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    white-space: normal;
    letter-spacing: 0.02em;
    font-weight: 600;
  }

  .hero-image-wrap img {
    display: block;
    height: 340px;
    width: 100%;
    object-fit: cover;
    object-position: 52% 35%;
  }

  .hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.52), transparent 45%);
    z-index: 1;
    pointer-events: none;
  }

  /* Introsektion */
  .bg-color-grey.section-height-3 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .intro-text {
    padding-top: 0 !important;
    margin-bottom: 20px;
  }

  .video-start1 {
    padding-top: 0 !important;
    margin-bottom: 0;
  }

  /* Välkomsttext */
  .bg-color-grey h2.text-6,
  h2.font-weight-normal.text-6.mb-3 {
    font-size: 1.2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .bg-color-grey .text-4 {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
  }

  .bg-color-grey .text-4 + .text-4 {
    margin-top: 10px;
  }

  /* Mobilmeny */
  #header .header-nav-main nav {
    background: #fff;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  #header .header-nav-main nav > ul {
    margin-top: 0 !important;
    padding-top: 6px !important;
  }

  #header .header-nav-main nav > ul > li > a {
    padding: 15px 18px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    background: transparent !important;
    color: #333 !important;
  }

  #header .header-nav-main nav > ul > li > a:hover {
    color: var(--site-primary) !important;
  }

  #header .header-nav-main nav > ul > li.active > a {
    color: var(--site-primary) !important;
    background: transparent !important;
    font-weight: 700 !important;
  }

  #header .header-nav-main nav ul li {
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  #header .header-nav-main nav ul ul {
    background: #fafafa;
    margin-left: 14px;
    border-radius: 8px;
    padding: 6px 0;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu .dropdown-item {
    font-size: 0.92rem !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    padding: 10px 14px !important;
  }

  #header .header-nav-main nav > ul > li.dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--site-primary) !important;
    background: rgba(107, 63, 91, 0.05) !important;
  }

  /* Övrigt mobil */
  h4 {
    font-size: 1em;
    font-weight: 600;
    line-height: 27px;
    margin: 0 0 14px 0;
  }

  .post-content h1 {
    margin-top: 20px;
    font-size: 1.1em;
    line-height: 24px;
  }

  .post-content h3 {
    font-size: 1em;
  }

  .thumb-info .thumb-info-type {
    font-size: 0.8em;
  }

  .hide-mobile {
    display: none;
  }

  .startimage1 {
    left: 25px;
    top: 160px;
  }

  .header-size-1 {
    font-size: 34px;
    line-height: 34px;
  }

  .header-size-2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/* Små mobiler */
@media only screen and (max-width: 600px) {
  h1 {
    margin-top: 20px;
    font-size: 1.4em;
    line-height: 32px;
  }

  #start-presentation-profile-image {
    display: none !important;
  }
}

/* Desktopkort */
@media (min-width: 992px) {
  .media-cards > [class*="col-"] {
    display: flex;
  }

  .media-cards .card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .media-cards .card-body {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* iPad landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1180px) and (orientation: landscape) {
  .startimage1 {
    position: absolute;
    top: 250px;
    left: 100px;
  }

  .startimage1 h1 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 32px;
  }

  .header-size-2 {
    color: #FFF;
    font-size: 24px;
  }

  .video-start1 {
    padding-top: 1rem !important;
  }
}

/* iPad portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .startimage1 {
    position: absolute;
    top: 250px;
    left: 100px;
  }

  .startimage1 h1 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 32px;
  }

  .header-size-2 {
    color: #FFF;
    font-size: 24px;
  }

  .video-start1 {
    padding-top: 1rem !important;
  }
}

/* Större desktop */
@media (min-width: 1281px) {
  .video-start1 {
    margin-top: -30px !important;
  }

  blockquote.enlarge {
    min-height: 288px !important;
  }
}

@media only screen and (min-width: 400px) {
  .desktop-visible {
    display: none;
  }
}

.ratio {
  margin-bottom: 20px;
}

/* =========================
   PROFILE BOX - GLOBAL (ACCORDION)
   ========================= */

.profile-box.accordion.accordion-modern .card,
.profile-box.accordion .card {
  border: 1px solid var(--site-border) !important;
  border-radius: 0 !important;
  background: var(--site-grey-bg) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  margin-top: 0 !important;
}

.profile-box .card-header {
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.profile-box .card-header a {
  display: block !important;
  background-color: var(--site-primary-soft) !important;
  padding: 18px 30px !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: var(--site-heading) !important;
  text-decoration: none !important;
  border: 0 !important;
  border-bottom: 1px solid var(--site-border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.profile-box .card-header a:hover,
.profile-box .card-header a:focus,
.profile-box .card-header a:active {
  color: var(--site-heading) !important;
  text-decoration: none !important;
}

.profile-box .card-body {
  background-color: var(--site-grey-bg) !important;
  padding: 30px !important;
  border: 0 !important;
}

.profile-box .collapse,
.profile-box .collapsing {
  border: 0 !important;
  background: var(--site-grey-bg) !important;
}

.profile-box .card-body p:last-child {
  margin-bottom: 0 !important;
}

/* =========================
   FACT BOX – GLOBAL
   ========================= */

.fact-box {
  background: var(--site-primary-pale);
  border: 1px solid var(--site-border);
  border-radius: 4px;
  padding: 24px 26px 22px 26px;
  margin: 30px 0;
}

.fact-box-secondary {
  background: var(--site-cream-dark);
}

.fact-box h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--site-primary);
  font-size: 1.2em;
}

.fact-box ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.fact-box li {
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
  padding-left: 18px;
}

.fact-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--site-primary);
  border-radius: 50%;
}

.fact-box li:last-child {
  margin-bottom: 0;
}

/* =========================
   /FACT BOX – GLOBAL
   ========================= */

/* =========================
   DARK INFO BOXES – GLOBAL
   ========================= */

.bg-color-444-read-more,
.bg-color-444 {
  background-color: var(--site-heading);
  border-radius: 4px;
}

.bg-color-444-read-more {
  padding: 2rem;
}

.bg-color-444 {
  min-height: 288px;
}

.bg-color-444-read-more h2,
.bg-color-444 h2,
.bg-color-444-read-more h4,
.bg-color-444 h4,
.bg-color-444-read-more ul li,
.bg-color-444 ul li {
  color: #FFF;
}

.bg-color-444-read-more ul,
.bg-color-444 ul {
  padding-left: 1rem;
}

.bg-color-444-read-more a,
.bg-color-444-read-more a:hover,
.bg-color-444-read-more a:focus {
  color: #fff !important;
}

.bg-color-444 p,
.bg-color-444-read-more p {
  color: #fff !important;
}

.bg-color-444-read-more .readmore-overlay {
  bottom: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* =========================
   /DARK INFO BOXES – GLOBAL
   ========================= */


/* =========================
   TESTIMONIAL BOXES – GLOBAL
   ========================= */

.references-section {
  margin-top: 0;
  margin-bottom: 0;
}

.references-section .row {
  margin-top: 10px;
  margin-bottom: 0;
}

.testimonial-box-1 blockquote,
.testimonial-box-2 blockquote,
.testimonial-box-3 blockquote {
  border-radius: 4px;
}

.testimonial-box-1 .testimonial-author,
.testimonial-box-2 .testimonial-author,
.testimonial-box-3 .testimonial-author {
  padding-top: 0;
}

.testimonial-box-1 .testimonial-author p,
.testimonial-box-2 .testimonial-author p,
.testimonial-box-3 .testimonial-author p {
  margin: 0;
}

.testimonial-box-1 blockquote {
  background-color: var(--site-primary);
}

.testimonial-box-1 .testimonial-arrow-down,
.testimonial-box-1 .testimonial-arrow-down:before {
  border-top-color: var(--site-primary);
}

.testimonial-box-2 blockquote {
  background-color: var(--site-accent-2);
}

.testimonial-box-2 .testimonial-arrow-down,
.testimonial-box-2 .testimonial-arrow-down:before {
  border-top-color: var(--site-accent-2);
}

.testimonial-box-3 blockquote {
  background-color: var(--site-accent);
}

.testimonial-box-3 .testimonial-arrow-down,
.testimonial-box-3 .testimonial-arrow-down:before {
  border-top-color: var(--site-accent);
}

.testimonial-box-1 .testimonial-author p,
.testimonial-box-1 .testimonial-author strong,
.testimonial-box-2 .testimonial-author p,
.testimonial-box-2 .testimonial-author strong,
.testimonial-box-3 .testimonial-author p,
.testimonial-box-3 .testimonial-author strong {
  color: var(--site-text);
}

.testimonial blockquote::before {
  left: 22px;
  top: 21px;
  color: rgba(255,255,255,0.8);
  content: "“";
  font-size: 85px;
  font-style: normal;
  line-height: 1;
  position: absolute;
}

.testimonial blockquote p {
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 1.1em;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .references-section .row {
    margin-top: 8px;
    margin-bottom: 0;
  }
}

/* =========================
   /TESTIMONIAL BOXES – GLOBAL
   ========================= */

/* =========================
   GLOBAL – BORDER RADIUS 4PX
   ========================= */

.rounded,
.fact-box,
.profile-box.accordion.accordion-modern .card,
.profile-box.accordion .card,
.book-cta-box,
.gig-card,
.post-content-1,
.post-content-2,
.post-content-3,
.post-content-4,
.post-content-5,
.container .call-to-action,
.btn,
.badge {
  border-radius: 4px !important;
}

.form-contact-form.p-4.rounded.bg-color-grey {
  border-radius: 4px !important;
}

/* =========================
   /GLOBAL – BORDER RADIUS 4PX
   ========================= */

/* =========================
   POST CARDS – RUNDAD TOPP
   ========================= */

.post {
  border-radius: 4px;
  overflow: hidden;
}

.post-image img {
  border-radius: 0 !important;
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

/* =========================
   /POST CARDS – RUNDAD TOPP
   ========================= */

/* =========================
   POST CARDS – RÄTT RADIUS
   ========================= */

.post {
  border-radius: 4px;
  overflow: hidden;
}

.post-content-1,
.post-content-2,
.post-content-3,
.post-content-4,
.post-content-5 {
  border-radius: 0 0 4px 4px !important;
}

/* =========================
   POST CARDS – TOPIC BOX ONLY
   ========================= */

/* Gäller ENDAST ämnesboxar */
.topic-box-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 12px;
  min-height: 48px;
}

.topic-box-content h2 {
  margin: 0 !important;
  line-height: 1.2;
}

/* =========================
   /POST CARDS – TOPIC BOX ONLY
   ========================= */

/* =========================
   TOGGLE – JUSTERA PADDING
   ========================= */

.toggle > .toggle-title {
	font-size: 0.95em;
}

/* =========================
   STARTSIDA – CTA/RUBRIK SPACING
   ========================= */

.startpage-blocks .btn.btn-modern.btn-primary {
    margin-top: 6px !important;
    margin-bottom: 16px !important;
}

.startpage-blocks > .start-heading:first-of-type {
    margin-top: 22px !important;
}

.startpage-blocks .start-heading {
    margin-top: 0 !important;
}

/* =========================
   STARTSIDA – PRENUMERERA-BOX
   ========================= */

#examples {
    margin-bottom: 38px;
}

#examples .call-to-action {
    margin-bottom: 0 !important;
}

/* =========================
   STARTSIDA – SISTA CTA
   ========================= */

.startpage-blocks a[href*="tjanster"].btn.btn-modern.btn-primary {
    margin-top: 6px !important;
    margin-bottom: 0px !important;
}

/* =========================
   FOOTER – SOCIAL ICONS
   ========================= */

.social-icons a,
.social-icons a i {
    color: #fff !important;
}

/* =========================
   BLOGG / ARTIKELKORT - BILD 100%
   ========================= */

.blog-posts .post-image {
  margin-bottom: 0;
  height: auto;
  overflow: hidden;
}

.blog-posts .post-image img,
.post .post-image img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: cover;
}

/* Tar bort glapp mellan bild och textbox */
.blog-posts .post-image + .post-content-1,
.blog-posts .post-image + .post-content-2,
.blog-posts .post-image + .post-content-3,
.blog-posts .post-image + .post-content-4,
.blog-posts .post-image + .post-content-5 {
  border-top: 0;
}

/* =========================
   POST CARDS – KNAPPAR
   ========================= */

.post .btn.btn-light,
.blog-posts .btn.btn-light {
  background: transparent !important;
  border: 1px solid var(--site-primary) !important;
  color: var(--site-primary-dark) !important;
  font-weight: 700;
}

.post .btn.btn-light:hover,
.blog-posts .btn.btn-light:hover {
  background: var(--site-primary) !important;
  border-color: var(--site-primary) !important;
  color: #fff !important;
}

/* =========================
   RECAPTCHA / FORM SPACING
   ========================= */

/* Grund */
#sidebar-contactform1 .g-recaptcha,
#sidebar-newsletterform1 .g-recaptcha,
#newsletterform-large2 .g-recaptcha,
#bookingform1 .g-recaptcha,
#contactform1 .g-recaptcha {
  display: inline-block;
}

/* SIDEBAR CONTACT FORM */
#sidebar-contactform1 .text-xs-center {
  text-align: left;
  padding-top: 14px;
  padding-bottom: 14px;
}

#sidebar-contactform1 .g-recaptcha {
  transform: scale(0.70);
  transform-origin: left top;
}

#sidebar-contactform1 .btn {
  margin-top: 0;
}

/* SIDEBAR NEWSLETTER FORM */
#sidebar-newsletterform1 .text-xs-center {
  text-align: left;
  padding-top: 0px;
  padding-bottom: 6px;
}

#sidebar-newsletterform1 .g-recaptcha {
  transform: scale(0.70);
  transform-origin: left top;
}

#sidebar-newsletterform1 .btn {
  margin-top: 0;
}

/* LARGE NEWSLETTER */
#newsletterform-large2 .text-xs-center {
  text-align: center;
  padding-top: 26px;
  padding-bottom: 24px;
}

#newsletterform-large2 .g-recaptcha {
  transform: scale(1);
  transform-origin: center top;
}

/* BOOKING FORM */
#bookingform1 .text-xs-center {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 25px;
}

#bookingform1 .g-recaptcha {
  transform: scale(1);
  transform-origin: center top;
}

/* CONTACT FORM - MAIN */
#contactform1 .text-xs-center {
  text-align: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

#contactform1 .g-recaptcha {
  transform: scale(1);
  transform-origin: center top;
}

/* RECAPTCHA GROUP */
.recaptcha-group {
  margin-bottom: -20px !important;
}

.recaptcha-group .text-xs-center {
  padding-top: 0px !important;
  padding-bottom: 8px !important;
}

/* TABLET + MOBIL */
@media (max-width: 991px) {

  #sidebar-contactform1 .g-recaptcha,
  #sidebar-newsletterform1 .g-recaptcha,
  #contactform1 .g-recaptcha,
  #bookingform1 .g-recaptcha,
  #newsletterform-large2 .g-recaptcha {
    transform: scale(0.95);
    transform-origin: center top;
  }

  #sidebar-contactform1 .text-xs-center,
  #sidebar-newsletterform1 .text-xs-center,
  #contactform1 .text-xs-center,
  #bookingform1 .text-xs-center,
  #newsletterform-large2 .text-xs-center {
    text-align: center;
  }

  #sidebar-contactform1 .text-xs-center {
    padding-top: 16px;
    padding-bottom: 10px;
  }

  #sidebar-newsletterform1 .text-xs-center {
    padding-top: 18px;
    padding-bottom: 12px;
  }

  #contactform1 .text-xs-center {
    padding-top: 20px;
    padding-bottom: 14px;
  }
	.recaptcha-group {
  margin-bottom: 0px !important;
  }
}

/* SMAL MOBIL */
@media (max-width: 380px) {

  #sidebar-contactform1 .g-recaptcha,
  #sidebar-newsletterform1 .g-recaptcha,
  #contactform1 .g-recaptcha,
  #bookingform1 .g-recaptcha,
  #newsletterform-large2 .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left top;
  }

  #sidebar-contactform1 .text-xs-center,
  #sidebar-newsletterform1 .text-xs-center,
  #contactform1 .text-xs-center,
  #bookingform1 .text-xs-center,
  #newsletterform-large2 .text-xs-center {
    text-align: left;
  }

  #sidebar-contactform1 .text-xs-center {
    padding-bottom: 8px;
  }

  #sidebar-newsletterform1 .text-xs-center {
    padding-bottom: 10px;
  }
	.recaptcha-group {
  margin-bottom: 0px !important;
  }
}

/* DESKTOP FIX START */
@media (min-width: 992px) {
  #bookingform1 .recaptcha-group,
  #contactform1 .recaptcha-group,
  #newsletterform-large2 .recaptcha-group {
    margin-bottom: 12px !important;
  }

  #bookingform1 .recaptcha-group .text-xs-center,
  #contactform1 .recaptcha-group .text-xs-center,
  #newsletterform-large2 .recaptcha-group .text-xs-center {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}
/* DESKTOP FIX END */

/* =========================
   PRESSBILDER
   ========================= */

.press-gallery > [class*="col-"] {
	margin-bottom: 24px;
}
.press-gallery > h3 {
	width: 100%;
	margin-top: 0;
	margin-bottom: 20px;
}