
:root {
  --base: #025159;
  --accent: #F25C05;
  --accent2: #cf4627;
  --accent3: #ffc107;
  --white: #fff;
  --primary: rgba(16,24,40,1);
  --light: #f1ece7;
  --dark: #222;
  --body-bg: #fff;
  --body-color: #0D0D0D;
  --body-size: 1.2rem;
  --border-radius-sm: 8px;
  --border-radius: 10px;
  --border-radius-lg: 10px;
  --border-radius-xl: 500px;
}

/* GLOBAL */

body {
    background: var(--body-bg);
    font-family: "Ubuntu Sans", sans-serif;
    font-size: var(--body-size);
    line-height: 1.35;
    color: var(--body-color);
    font-weight: 400;
    word-wrap: break-word;
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: "Ubuntu Condensed", sans-serif;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}
h1,.h1 {
    font-size: 4rem;
}
h2,.h2 {
    font-size: 3.25rem;
}
h3,.h3 {
    font-size: 2.5rem;
}
h4,.h4 {
    font-size: 2.25rem;
}
h5,.h5 {
    font-size: 2rem;
}
h6,.h6 {
    font-size: 1.85rem;
    margin-bottom: 0.85rem;
}
.lead {
    font-size: 1.55rem;
    font-weight: 300;
}
.fs-4 {
    font-size: 1.4rem !important;
}
strong,
.fw-bold {
    font-weight: 500;
}
figure {
    margin: 0;
    width: 100%;
    overflow: hidden;
}
img {
    max-width: 100%;
    height: auto;
}
.rounded {
    border-radius: var(--border-radius-lg) !important;
}
a {
    color: var(--base);
}
a:hover,
a:focus {
    text-decoration: none;
}
.ribbon {
    position: absolute;
    top: 20px;
    left: 0;
    transform: translateX(-27%) rotate(-45deg);
    width: 200px;
    padding: 0.5rem 0;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    background: linear-gradient(60deg, rgba(153, 32, 5, 1) 1%, rgba(242, 92, 5, 1) 100%);
    color: var(--white);
    font-size: 1.1rem;
    z-index: 200;
}
.ribbon span {
    width: 100%;
    display: block;
    width: 100px;
    margin: 0 auto;
}
.badge {
    color: var(--accent2);
    border: 1px solid var(--accent2);
    width: fit-content;
    margin-bottom: 0.75rem;
    padding: 0.4rem 0.6rem 0.4rem 0.6rem;
}

.form-select,
.form-control {
    padding: 1rem;
    border-color: var(--base);
}
textarea.form-control {
    min-height: 120px;
}


.action {
    font-weight: 600;
    font-size: 1.55rem;
    display: flex;
    padding:0.15rem 0;
    font-family: "Ubuntu Condensed", sans-serif;
    margin-top: 1.5rem;
    color: inherit;
    align-items: center;
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: 0.4s;
}
.action i {
    margin-left: 0.25rem;
}
.action i.bi-arrow-right-short {
    font-size: 160%;
    line-height: 1;
}
.action::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right; /* start från höger */
    transition: transform 0.3s ease-in-out;
}
.action.active::after,
.action:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

blockquote {
  position: relative;
  margin: 2rem 0;
  padding: 3rem 3rem 3rem 6rem;
  border-radius: var(--border-radius);
  border:2px solid var(--accent2);
  border-left: 10px solid var(--accent2);
  color: var(--body-color);
  font-size: 1.65rem;
  line-height: 1.4;
  font-weight: 500;
}
blockquote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 6rem;
  color: var(--accent2);
  font-family: serif;
}
blockquote footer {
    margin-top: 1.5rem;
}

.text-primary {
    color: var(--accent2) !important;
}

.btn {
    font-family: "Ubuntu Sans", sans-serif;
    font-size: 100%;
    font-weight: 600;
    padding:0.85rem 1.75rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    width: fit-content;
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Text */
.btn span {
    z-index: 2;
    position: relative;
}
/* Bakgrunds-animation */
.btn::before {
    content: "";
    position: absolute;
    bottom: 0;          /* start från botten */
    left: 0;
    width: 100%;
    height: 0;          /* börja på 0 höjd */
    z-index: 1;
    border-radius: 4px;
    transition: height 0.4s ease;
}
.btn:hover::before {
    height: 100%;       /* fyll uppåt */
}
.btn-sm {
    padding:0.65rem 1.5rem 0.65rem 1.5rem !important;
    font-size: 90% !important;
}
.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.btn-primary::before {
    background: var(--accent2);
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent);
    border-color: var(--accent2);
}
.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-light::before {
    background: var(--accent);
}
.btn-outline-light:hover,
.btn-outline-light:focus {
    background: none;
    color: white !important;
    border-color: var(--accent);
}
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background: var(--base);
    border-color: var(--accent);
    color: var(--accent);
}
.btn-check-link {
    background: none;
    border-color: var(--accent2);
    color: var(--accent2);
}
.btn.btn-check-link:hover,
.btn.btn-check-link:focus {
    background: var(--accent2);
    border-color: var(--accent2);
    color: var(--white);
}
.btn-outline-primary {
    border-color: var(--base);
    color: var(--base);
}
.btn-outline-primary::before {
    background: var(--base);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: none;
    border-color: var(--base);
}

.modal .modal-header {
    padding: 1.5rem;
}
.modal .modal-title {
    font-weight: 500;
}
.modal .modal-body img {
    border-radius: var(--border-radius-sm);
}
.modal .modal-body {
    font-size: 85%;
    padding:1rem 1.5rem 1.5rem 1.5rem;
}
.modal .modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-holder {
    margin-bottom: 8rem;
}
.content-holder {
    margin-bottom: 5rem;
}
.content-holder-sm {
    margin-bottom: 3rem;
}
.content-top-holder {
    margin-top: 4rem;
}
.container {
    max-width: 1550px;
}
.container,
.container-fluid {
    padding: 0 3rem;
}
.intro {
    max-width: 950px;
    margin: 0 auto 3rem auto;
    text-align: center;
}
.intro-sm {
    margin-bottom: 2rem;
}
.usp {
    margin-bottom: 2rem;
}

.flickity-button {
    backdrop-filter: blur(5px) contrast(100%);
    -webkit-backdrop-filter: blur(5px) contrast(100%);
    background: rgba(255, 255, 255, 0.75);
    border:1px solid var(--base);
    top: 35%;
    position: absolute;
    border-radius: 500px;
    line-height: 1;
}
.flickity-button:hover,
.flickity-button:focus {
    background: var(--white);
}
.flickity-button-icon {
    fill: var(--base);
}
.flickity-prev-next-button.next,
.flickity-prev-next-button.previous {
    width: 60px;
    height: 60px;
    transition: 0.3s;
}
.flickity-prev-next-button .flickity-button-icon {
    width: 38%;
    height: 38%;
    left: 32%;
    top: 32%;
}
.flickity-page-dots {
    display: none !important;
}
.flickity-prev-next-button.next {
    right: 1.5rem;
}
.flickity-prev-next-button.previous {
    left: 1.5rem;
}

.site-header {
    z-index: 1000;
    width: 100%;
    background: #fff;
    transition: all 0.25s ease-in-out;
}
.header-topbar {
    border-top: 1px solid var(--light);
    background: var(--light);
}
.header-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:0 1rem;
}
.topbar-checklist,
.topbar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.topbar-checklist li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--base);
}
.topbar-checklist li i {
    color: var(--base);;
    font-size: 1rem;
}
.topbar-links li a {
    color: #000;
    font-family: "Ubuntu Condensed", sans-serif;
    font-weight: 500;
    padding:0.2rem 0;
    margin: 0.3rem 0;
    text-decoration: none;
    font-weight:600;
    font-size: 115%;
    display: block;
    transition: color 0.25s ease;
    position: relative;
}
.topbar-links li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right; /* start från höger */
    transition: transform 0.3s ease-in-out;
}
.topbar-links li.current-menu-item a::after,
.topbar-links li a.active::after,
.topbar-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-main__inner {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.header-logo .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
}
.header-logo img {
    width: 100%;
    max-width:290px;
    height: auto;
    display: block;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-phone-block {
    display: flex;
    align-items: center;
    gap: 0 1.25rem;
}
.header-help-text {
    display: block;
    font-size: 1.1rem;
}
.header-phone-link {
    padding: 0;
    text-decoration: none;
    line-height: 1;
    display: flex;
    font-weight: 600;
    align-items: center;
}
.header-phone-link i {
    color: #EEBC17;
    margin-right: 0.6rem;
    font-size: 1.35rem;
}
.header-phone-link:hover {
    color: #EEBC17;
}
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    border-radius: 999px;
    background: #d63a32;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08rem;
    transition: all 0.25s ease;
}
.header-cta-btn:hover {
    background: #e24a42;
    color: #fff;
}
.navbar-toggler {
    border: 0;
    padding: 0;
    font-size: 2.6rem;
    margin-left: 0.5rem;
    display: none;
}
/* NAVBAR */
.header-nav {
    background: var(--base);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header-nav .navbar {
    padding: 0;
}
.header-nav .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.header-nav .navbar .nav-item .nav-link {
    font-weight: 600;
    color: #fff;
    padding:0;
    letter-spacing: 0.5px;
    margin:0.6rem 0.85rem;
    font-size: 1.55rem;
    position: relative;
    font-family: "Ubuntu Condensed", sans-serif;
}
.header-nav .navbar .nav-item .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--light);
    transform: scaleX(0);
    transform-origin: right; /* start från höger */
    transition: transform 0.3s ease-in-out;
}
.header-nav .navbar .nav-item .nav-link.active,
.header-nav .navbar .nav-item .nav-link:hover,
.header-nav .navbar .nav-item .nav-link:focus {
    color: var(--light);
}
.header-nav .navbar .nav-item .nav-link.active::after,
.header-nav .navbar .nav-item .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


#breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 3rem 0;
    padding: 0;
}
#breadcrumb li {
    width: 100%;
    flex: 1 0 0;
    height: 50px;
}
#breadcrumb li > span {
    color: #fff;
    display: block;
    background: var(--base);
    text-decoration: none;
    position: relative;
    height: 50px;
    line-height: 50px;
    padding: 0 10px 0 5px;
    text-align: center;
    opacity: 1;
    font-weight: 600;
    overflow: hidden;
}
#breadcrumb li > span span {
    opacity: 0.45;
    display: flex;
    align-items: center;
    justify-content: center;
}
#breadcrumb li > span:before,
#breadcrumb li > span:after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid #025159;
  border-width: 25px 15px;
  width: 0;
  height: 0;
  opacity: 1;
}
#breadcrumb li > span:before {
  left: -20px;
  border-left-color: transparent;
}
#breadcrumb li > span:after {
  left: 100%;
  border-color: transparent;
  border-left-color: #F25C05;
}
#breadcrumb li.active > span span {
    text-decoration: none;
    opacity: 1;
}
#breadcrumb li.done > span span {
    opacity: 1;
    position: relative;
    opacity: 0.45;
}
#breadcrumb li.done > span span::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    text-decoration: none;
    font-size: 130%;
}
#breadcrumb li.active > span,
#breadcrumb li.active > span:after,
#breadcrumb li.active > span:before {
    opacity: 1;
}
#breadcrumb li:first-child > span:after,
#breadcrumb li:first-child > span:before {
    display: none;
}
#breadcrumb li:nth-child(2) > span {
  background-color: #036974;
}
#breadcrumb li:nth-child(2) > span:before {
  border-color: #036974;
  border-left-color: transparent;
}
#breadcrumb li:nth-child(2) > span:after {
  border-left-color: #036974;
}
#breadcrumb li:nth-child(3) > span {
  background-color: #00828f;
}
#breadcrumb li:nth-child(3) > span:before {
  border-color: #00828f;
  border-left-color: transparent;
}
#breadcrumb li:nth-child(3) > span:after {
  border-left-color: #00828f;
}
#breadcrumb li:nth-child(4) > span {
  background-color: var(--accent);
}
#breadcrumb li:nth-child(4) > span:before {
  border-color: var(--accent);
  border-left-color: transparent;
}
#breadcrumb li:nth-child(4) > span:after {
  border-left-color: var(--accent);
}

#breadcrumb li:first-child > span {
  -moz-border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  -webkit-border-radius: var(--border-radius-sm);
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  background: #025159;
}
#breadcrumb li:first-child > span:before {
  border: none;
}
#breadcrumb li:last-child > span {
  -moz-border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  -webkit-border-radius: var(--border-radius-sm);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
#breadcrumb li:last-child > span:after {
  border: none;
}

.pulse-circle {
    position:absolute;
    top: 1.5rem;
    right: 1.5rem;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:10;
    transition: 0.3s;
}
.pulse-circle .icon {
    font-size:20px;
    color:var(--accent);
    z-index:2;
}
.pulse-circle::before,
.pulse-circle::after {
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background: var(--white);
    z-index:-1;
    opacity:.5;
    animation:pulse 2.5s infinite;
}
.pulse-circle::after {
    animation-delay:1.5s;
}
@keyframes pulse {
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    70%{
        transform:scale(1.8);
        opacity:0;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

.breadcrumbs {
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 85%;
}

.card {
    background: none;
    border:0;
}
.card .card-wrapper {
    color: var(--body-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    border:1px solid var(--base);
    display: flex;
    flex-flow: column wrap;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.card .card-wrapper:hover .btn::before,
.card .card-wrapper:focus .btn::before  {
    height: 100%;
}
.card .card-wrapper:hover .action,
.card .card-wrapper:focus .action {
    color: var(--accent);
}
.card .card-wrapper:hover .action::after,
.card .card-wrapper:focus .action::after {
    transform: scaleX(1);
    transform-origin: left;
}
.card .card-video-holder {
    position: relative;
}
.card .card-wrapper video,
.card .card-wrapper figure {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    position: relative;
}
.card .card-wrapper video {
    height: 100%;
}
.card .card-wrapper video,
.card .card-wrapper figure img {
    object-fit: cover;
    transition: 0.4s;
    width: 100%;
    height: 250px;
}
.card .card-wrapper .card-body {
    padding: 1.5rem;
    display: flex;
    flex-flow: column wrap;
    align-content: flex-start;
    flex: auto;
    width: 100%;
}
.card .card-wrapper .card-body p {
    font-size: 90%;
}
.card .card-wrapper .card-body .card-price {
    font-size: 2rem;
    line-height: 1;
    color: var(--accent);
    font-weight: 600;
    background: var(--white);
    border:1px solid var(--accent);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 1.25rem;
    font-family: "Ubuntu Condensed", sans-serif;
}
.card .card-wrapper .card-body .card-price.card-price-sm {
    font-size: 1.65rem;
}
.card .card-wrapper .card-body-inner {
    margin-top: auto;
    display: grid;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
}
.card .card-wrapper .card-body ul {
    list-style: none;
    padding: 0;
    display: grid;
    margin: 0 0 1rem 0;
}
.card .card-wrapper .card-body ul li {
    display: block;
    gap:1rem;
    line-height: 1.65;
}
.card .card-wrapper .card-body ul li a {
    text-decoration: none;
    font-weight: 500;
}
.card .card-wrapper .btn,
.card .card-wrapper .action {
    margin-top: 0;
}
.card a.card-wrapper:hover video,
.card a.card-wrapper:focus video,
.card a.card-wrapper:hover figure img,
.card a.card-wrapper:focus figure img {
    transform: scale(1.1);
}

.card-mask .card-wrapper img,
.card-mask .card-wrapper video {
    height: 500px !important;
    object-fit: cover;
}
.card-mask .card-wrapper .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0.75rem;
    text-align: center;
}
.card-mask .card-wrapper .card-body-inner {
    backdrop-filter: blur(5px) contrast(100%);
    background: rgba(255, 255, 255, 0.75);
    border:1px solid var(--white);
    padding: 1.5rem 0.75rem;
    width: 100%;
    border-radius: var(--border-radius);
    display: grid;
    justify-content: center;
    gap: 0.5rem 0;
}
.card-mask .card-wrapper .card-body h3 {
    max-width: 500px;
}
.card-mask .card-video-holder,
.card-mask figure img {
    height: 500px;
    object-fit: cover;
}
.card-mask .btn {
    width: 100%;
    background: var(--base);
    border-color: var(--base);
}
.card-mask .btn::before {
    background: var(--accent);
}
.hf-hero-grid {
    padding: 1rem;
    overflow: hidden;
}
.hf-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 650px;
    gap:1rem;
}
.hf-grid-pages {
    grid-template-columns: 1fr ;
}
.hf-grid-pages .hf-card-lg {
    grid-column: 1;
}
.hf-grid-pages .hf-card-lg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    /*
    background: #025159;
    background: #025159;
    background: linear-gradient(51deg, rgba(2, 81, 89, 1) 16%, rgba(255, 255, 255, 0) 67%);
    */
}
.hf-hero-lg-caption {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 100;
    display: flex;
}
.hf-hero-lg-caption h1 {
    backdrop-filter: blur(5px) contrast(100%);
    -webkit-backdrop-filter: blur(5px) contrast(100%);
    background: rgba(2, 81, 89, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    color: var(--white);
    max-width: 700px;
}
.hero-ticker {
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
}
.hero-ticker .ticker-item {
    display: none;
    white-space: nowrap;
}
.ticker-item u {
    color: var(--accent2);
}
.hf-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}
.hf-card img {
    transition: 0.3s;
}
.hf-card-sm:hover img,
.hf-card-sm:focus img {
    transform: scale(1.1);
}
.hf-card:hover .pulse-circle::before,
.hf-card:hover .pulse-circle::after,
.hf-card:hover .pulse-circle {
    background:var(--accent);
}
.hf-card:hover .pulse-circle .icon {
    color: var(--white);
}
.hf-card:focus img {
    transform: scale(1.1);
}
.hf-card .google-ribbon {
    position: absolute;
    top: -3rem;
    left: 0rem;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
}
.hf-card .google-ribbon img {
    max-width: 350px;
    height: 100% !important;
}
a.hf-card {
    text-decoration: none;
    min-height: 280px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.hf-card-sm {
    text-align: center;
}
.hf-card-sm .btn {
    margin-left: auto;
    margin-right: auto;
}
.hf-card-sm:first-child {
    grid-column: 1;
    grid-row: 1;
}
.hf-card-sm:last-child {
    grid-column: 1;
    grid-row: 2;
}
.hf-card-lg {
    grid-column: 2;
    grid-row: 1 / span 2;
}
.hf-card-video,
.hf-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.hf-card-lg img,
.hf-card-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hf-grid-pages video,
.hf-grid-pages figure,
.hf-grid-pages img {
    height: 650px;
}
.hf-card-overlay {
    position: absolute;
    inset: 0;
    background: #025159;
    background: linear-gradient(0deg, rgba(2, 81, 89, 1) 15%, rgba(255, 255, 255, 0.15) 63%);
}
.hf-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.hf-feature-box {
    position: absolute;
    right: 1.5rem;
    bottom: 0;
    z-index: 3;
    width: min(500px, 82%);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 3.5rem 2rem 0.75rem 2rem;
    border: 1px solid var(--white);
    border-bottom: 0;
    backdrop-filter: blur(20px) contrast(100%);
    -webkit-backdrop-filter: blur(20px) contrast(100%);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06), 0 4px 14px rgba(0, 0, 0, 0.03);
}
.hf-feature-box h2 {
    max-width: 500px;
    text-align: center;
    margin: 0 auto 1.5rem auto;
}
.hf-feature-box p {
    text-align: center;
}
.hf-feature-box span strong {
    font-weight: 700 !important;
    color: var(--accent);
}
.hf-feature-box .ticker-cta {
    display: block;
    margin-top: 0.35rem;
}
.hf-feature-box .ticker-cta span {
    background: var(--base);
    color: var(--white);
    display: inline-block;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
}
.hf-feature-box form {
    margin-top: 0;
}

:root {
    --hus-teal: #005f66;
    --hus-teal-dark: #004e54;
    --hus-orange: #f97300;
    --hus-offwhite: #f3ebde;
    --hus-text: #1e1e1e;
    --hus-muted: #5f5f5f;
    --hus-white: #ffffff;
    --hus-border: rgba(0, 95, 102, 0.12);
  }

.hus-why-choose {
    position: relative;
}
.hus-image-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
}
.hus-main-image {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}
.hus-content {
    padding:6rem 2rem 10rem 2rem;
}
.hus-stats-box {
    position: relative;
    z-index: 3;
    margin-top: -6.5rem;
    background: var(--light);
    border:1px solid var(--light);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-left: auto;
    width: 81%;
    overflow: hidden;
}
.check-wrap,
.hus-stat-item-wrap {
    height: 100%;
    padding: 0 2rem;
    border-left: 1px solid var(--accent);
}
.check-wrap:first-child,
.hus-stat-item-wrap:first-child {
    border-left: 0;
    padding-left: 0;
}
.hus-stat-item img {
    max-width: 80px;
    margin-bottom: 1.25rem;
}
.check {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 1rem;
    margin-top: 1.52rem;
    font-weight: 500;
    border-top: 1px solid var(--accent);
    font-size: 85%;
}
.hus-stat-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--hus-orange);
    margin-bottom: 18px;
    font-family: "Ubuntu Condensed", sans-serif;
}
.hus-stat-text {
    font-size: 90%;
    margin-bottom: 0;
}

.reviews .stat-rating {
    display: flex;
    color: var(--accent2);
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
    gap:0.3rem;
}
.reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
}
.reviews .review-card {
    border-radius: var(--border-radius);
    padding: 1.5rem;
    background: white;
    border:1px solid var(--base);
    display: flex;
    font-size: 1.25rem;
    flex-direction: column;
}
.reviews .review-card p {
    margin-bottom: 1.5rem;
}
.reviews .review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.reviews .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 90%;
}
.reviews .review-avatar.pink {
    background: #fce7f6;
}
.reviews .review-header strong {
    display: block;
    line-height: 1;
}
.reviews .review-header span {
    font-size: 14px;
    color: #667085;
}
.reviews .review-stars {
  display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.reviews .review-invite {
    color: #027a48;
    font-weight: 600;
    font-size: 14px;
}
.reviews .review-text {
    font-size: 85%;
    margin-bottom: 10px;
}
.reviews .review-more {
    font-size: 85%;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: auto;
}
.reviews .review-footer {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #f2f4f7;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #667085;
}
.reviews .trustpilot-stars {
    height:20px;
    width:auto;
    display:block;
}

.carousel-cards {
    position: relative;
    overflow: hidden;
}
.carousel-cards-bg {
    z-index: 1;
    width: 100%;
    display: block;
    height: 562px;
    position: absolute;
    inset: 0% 0% auto;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}
.carousel-cards-bg::after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    background: #ffffff;
    background: linear-gradient(206deg, rgba(255, 255, 255, 0) 0%, rgba(2, 81, 89, 1) 72%);
}
.carousel-cards .container,
.carousel-cards .carousel {
    position: relative;
    z-index: 100;
}
.carousel-cards .container {
    color: var(--white);
    text-align: center;
    padding-top: 8rem;
}
.carousel-cards .carousel-cards-intro {
    max-width: 850px;
    margin: 0 auto 4rem auto;
}
.carousel-cards .carousel-cell {
    width: 550px;
    margin-right: 1.5rem;
    counter-increment: carousel-cell;
}

.half-half {
    background: linear-gradient(135deg, var(--base) 0%, #01363d 100%);
    color: var(--white);
    margin-left:1rem;
    margin-right: 1rem;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-lg);
}
.half-half::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 25%), radial-gradient(circle at 80% 30%, rgba(242, 92, 5, 0.2), transparent 30%);
}
.half-half .container-fluid {
    position: relative;
    z-index: 10;
}
.half-half:nth-of-type(even) .container-fluid .row {
    flex-direction: row-reverse;
}
.half-half-thumbnail {
    position: relative;
}
.half-half-thumbnail figure {
    position: relative;
    width: 100%;
    height: 100%;
}
.half-half-thumbnail figure img {
    height: 100%;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-top-right-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}
.half-half-content-txt {
    max-width: 750px;
    padding: 8rem 4rem;
}
.half-half ul {
    width: fit-content;
}
.half-half ul li {
    display: flex;
    width: fit-content;
    align-items: center;
    font-weight: 500;
    font-size: 90%;
}

.half-half ul li:first-child {
    border-top: 0;
    padding-top: 0;
}
.half-half ul li i {
    color: var(--light);
}
.half-half ul {
    margin-right: auto;
    text-align: left;
}

.steps-section {
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: var(--border-radius-lg);
}
.steps-section .container {
    position: relative;
    z-index: 50;
}
.steps-head {
    max-width: 760px;
    margin: 0 auto;
}
.steps-head p {
    margin: 0 auto;
    max-width: 760px;
}
.steps-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.steps-line {
    position: absolute;
    top: 128px;
    left: 120px;
    right: 120px;
    height: 0;
    border-top:1px solid var(--base);
    z-index: 0;
}
.steps-line .line-arrow {
    position: absolute;
    top: -12px;
    color: var(--base);
    font-size: 1.5rem;
    line-height: 1;
}
.steps-line .arrow-1 { left: 17.7%; }
.steps-line .arrow-2 { left: 49.1%; }
.steps-line .arrow-3 { left: 80.5%; }
.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    min-width: 0;
}
.step-circle {
    width: 126px;
    height: 126px;
    margin: 0 auto 28px;
    border-radius: 50%;
    color: var(--accent2);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--base);
    background: var(--white);
}
.step-circle img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    padding: 1.75rem;
}
.step-item h3 {
    margin: 0 0 16px;
}
.step-item p {
    margin: 0 auto;
    max-width: 350px;
}

.contact-highlight__wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 0.95fr;
    align-items: center;
    gap: 0;
}
.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap:1rem;
    margin-top: 1.5rem;
}
.contact-highlight__content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding:4rem 9rem 4rem 3rem;
    border: 1px solid var(--light);
    background: var(--light);
    border-radius: var(--border-radius);
}
.contact-highlight__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 2rem;
}
.contact-point {
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--base);
    background: var(--white);
}
.contact-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.15rem;
}
.contact-point span {
    display: block;
    font-size: 1.1rem;
    line-height: 1.25;
}
.contact-highlight__form-card {
    position: relative;
    z-index: 2;
    margin-left: -90px;
    max-width: 600px;
}
.contact-highlight__form-card figure {
    max-width: 170px;
    margin-left: 3rem;
}
.contact-form {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--base) 0%, #01363d 100%);
    color: var(--white);
    border-radius: var(--border-radius);
}
.contact-form form {
    display: grid;
    gap:0.5rem;
}
.contact-form label {
    color: var(--white);
}
.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

label {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #22302b;
}
.form-group label {
    color: var(--white);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--white);
    border-radius: var(--border-radius-sm);
    background: #fbfcfb;
    font: inherit;
    color: #18211e;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    appearance: none;
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
}
.contact-form__meta {
    margin: 14px 0 0;
    text-align: center;
    font-size: 0.9rem;
}
.contact-direct {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}
.contact-direct__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding:0 2rem;
    border-left: 1px solid var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-direct__item .icon {
    margin-right: 0.5rem;
}
.contact-direct__item small {
    display: block;
    font-weight: 600;
    color: var(--body-color);
}

.feature-showcase {
    overflow: hidden;
    width: 100%;
}
.feature-visual {
    position: relative;
}
.feature-visual__bg {
    position: absolute;
    left: 2.5rem;
    right: 2.5rem;
    top: 7rem;
    bottom: 0;
    background: linear-gradient(135deg, var(--base) 0%, #01363d 100%);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}
.feature-visual__bg::before,
.feature-visual__bg::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 96px;
    height: 96px;
    background: var(--white);
    border-radius: 50%;
    transform: translateY(-50%);
}
.feature-visual__bg::before {
    left: -48px;
}
.feature-visual__bg::after {
    right: -48px;
}
.payment-card {
    position: relative;
    z-index: 3;
    max-width: 460px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(16, 24, 40, 0.16);
    overflow: hidden;
}
.payment-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    background: var(--accent);
}
.payment-card__inner {
    padding: 3.5rem 2rem 2rem 2rem;
}
.payment-card__label {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--base);
    color: var(--base);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto 2rem auto;
    width: fit-content;
}
.payment-card__icon {
    display: flex;
    justify-content: center;
}
.payment-card__icon-ring {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

/* inner cirkel (din befintliga) */
.payment-card__icon-ring::before {
    content: "";
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    z-index: 2;
}

/* pulse layer */
.payment-card__icon-ring::after {
    content: "";
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--accent2);
    z-index: 1;
    opacity: 0.4;
    transform: scale(1);
    animation: pulseRing 2s infinite ease-out;
}
@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
.payment-card__icon-ring i {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 3.5rem;
}
.payment-card__content {
    margin: 2rem 0;
}
.payment-card__amount {
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.payment-card__amount__old {
    text-decoration: line-through;
    color: var(--base);
}

.feature-visual__bottom {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 4.5rem auto 0;
    text-align: center;
    padding-bottom: 4.5rem;
}
.feature-visual__divider {
    width: 100%;
    border-top: 1px solid var(--white);
    margin-bottom: 3rem;
}
.feature-visual__bottom h2 {
    color: var(--white);
    margin: 0;
}
.feature-content-intro {
    margin-bottom: 2rem;
}
.feature-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.feature-collapse-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.25s ease;
}
.feature-collapse-card:hover {
    transform: translateY(-2px);
}
.feature-collapse-card--light {
    border: 1px solid var(--light);
    background: var(--light);
}
.feature-collapse-card--green {
    border: 1px solid var(--light);
    background: var(--light);
}
.feature-collapse-card--dark {
    border: 1px solid var(--light);
    background: var(--light);
}
.feature-collapse-card__toggle {
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 1.6rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    text-align: left;
}
.feature-collapse-card__toggle > div {
    width: 100%;
}
.feature-collapse-card__toggle > div .h5 {
    color: var(--body-color) !important;

}
.feature-collapse-card__body {
    padding: 0 1.5rem 1.6rem;
}
.feature-icon-circle,
.feature-icon-plain {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-circle {
    width: 55px;
    height: 55px;
    background: var(--accent2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.75rem;
    font-family: "Ubuntu Condensed", sans-serif;
}

.hf-sky-banner {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: var(--border-radius-lg);
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}
.hf-sky-banner__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}
.hf-sky-banner__bg::before {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    background: #025159;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(90deg, rgba(2, 81, 89, 1) 5%, rgba(255, 255, 255, 0) 80%);
}
.hf-sky-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}
.hf-sky-banner__fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 240px;
    z-index: -1;
    background: linear-gradient(to top, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 40%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.hf-sky-banner .container {
    height: 100%;
}
.hf-sky-banner__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hf-sky-banner__eyebrow i {
    color: #cf4627;
    font-size: 0.9rem;
}
.hf-sky-banner__title em {
    font-style: italic;
    font-weight: 500;
    opacity: 0.96;
}
.hf-sky-banner__text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.94);
    text-wrap: pretty;
}
.hf-sky-banner__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}
.hf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 28px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hf-btn:hover {
    transform: translateY(-2px);
}
.hf-btn--dark {
    background: #141414;
    color: #fff;
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}
.hf-btn--dark:hover {
    color: #fff;
    background: #0f0f0f;
}
.hf-btn--light {
    background: rgba(255,255,255,0.92);
    color: #121212;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.hf-btn--light:hover {
    color: #121212;
    background: #fff;
}
.hf-floating-card {
    position: absolute;
    z-index: 2;
}
.hf-floating-card--left {
    left: 4rem;
    top: 4rem;
    transform: rotate(8deg);
}
.hf-floating-card--right {
    right: 4rem;
    bottom: 4rem;
    transform: rotate(-14deg);
}
.hf-mini-card {
    width: 290px;
    border-radius: var(--border-radius);
    padding: 1.25rem;
}
.hf-mini-card--light {
    backdrop-filter: blur(5px) contrast(100%);
    -webkit-backdrop-filter: blur(5px) contrast(100%);
    background: rgba(255, 255, 255, 0.75);
    border:1px solid var(--white);
}
.hf-mini-card--blue {
    backdrop-filter: blur(5px) contrast(100%);
    -webkit-backdrop-filter: blur(5px) contrast(100%);
    background: rgba(255, 255, 255, 0.75);
    border:1px solid var(--white);
}
.hf-mini-card__top,
.hf-mini-card__row,
.hf-mini-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.hf-mini-card__top strong,
.hf-mini-card__row strong {
    font-size: 1.25rem;
    line-height: 1.2;
}
.hf-mini-card__top span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--accent2);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
}
.hf-mini-card__big {
    margin-top: 18px;
    font-size: 4.4rem;
    line-height: 0.95;
    letter-spacing: -0.08em;
    font-weight: 700;
    color: var(--accent);
}
.hf-mini-card p {
    margin: 14px 0 18px;
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 700;
}
.hf-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 18px;
}
.hf-mini-bars span {
    display: block;
    width: 34px;
    border-radius: 999px;
    background: var(--accent);
}
.hf-mini-bars span:nth-child(1) { height: 40px; opacity: 0.55; }
.hf-mini-bars span:nth-child(2) { height: 62px; opacity: 0.68; }
.hf-mini-bars span:nth-child(3) { height: 46px; opacity: 0.78; }
.hf-mini-bars span:nth-child(4) { height: 70px; opacity: 0.9; }
.hf-mini-bars span:nth-child(5) { height: 82px; }
.hf-mini-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent2);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.hf-mini-card__price {
    margin: 1rem 0 1rem;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
}
.hf-progress {
    width: 100%;
    height: 18px;
    border-radius: 999px;
    background: rgba(242, 92, 5, 0.10);
    overflow: hidden;
    margin-bottom: 14px;
}
.hf-progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--accent);
}
.hf-mini-card__bottom small {
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 700;
}

.custom-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-icon: none;
    --bs-accordion-btn-active-icon: none;
    --bs-accordion-bg: transparent;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: flex-start;
}
.custom-accordion-lg {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.custom-accordion .accordion-item {
    border: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px var(--base) solid;
    overflow: hidden;
}
.custom-accordion .accordion-header {
    margin: 0;
}
.custom-accordion .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding:0.85rem 1.25rem;
    background: transparent;
    box-shadow: none;
    border: 0;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    font-family: "Ubuntu Sans", sans-serif;
    border-radius: 0 !important;
    text-align: left;
    transition: none;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: #1d1b19;
    background: transparent;
    box-shadow: none;
}
.custom-accordion .accordion-button:hover,
.custom-accordion .accordion-button:focus {
    color: #1d1b19;
    background: transparent;
    box-shadow: none;
}
.custom-accordion .accordion-button::after {
    display: none !important;
}
.custom-accordion .accordion-icon {
    position: relative;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    margin-left: auto;
    background: var(--accent2);
    border-radius: var(--border-radius-xl);
}
.custom-accordion .accordion-icon::before,
.custom-accordion .accordion-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.custom-accordion .accordion-icon::before {
    width: 16px;
    height: 2px;
}
.custom-accordion .accordion-icon::after {
    width: 2px;
    height: 16px;
}
.custom-accordion .accordion-button:not(.collapsed) .accordion-icon {
    background: var(--base);
}
.custom-accordion .accordion-button:not(.collapsed) .accordion-icon::after {
    opacity: 0;
}
.custom-accordion .accordion-collapse {
    border: 0;
}
.custom-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.section-holder.faq .container > h2 {
    text-align: center;
}
.accordion.inner-accordion {
    display:grid;
    gap:1rem;
}

.why-husfixarna {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    padding: 10rem 0;
    position: relative;
    margin-left: 1rem;
    border-radius: var(--border-radius-lg);
    margin-right: 1rem;
}
.why-husfixarna::after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    background: #025159;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(90deg, rgba(2, 81, 89, 1) 5%, rgba(255, 255, 255, 0) 80%);
}
.why-husfixarna .container {
    position: relative;
    z-index: 50;
}
.why-husfixarna-grid {
    display: grid;
    grid-template-columns: minmax(320px, 500px) 1fr;
    gap: 5rem;
    align-items: start;
}
.why-husfixarna-intro {
    position: sticky;
    top: 150px;
    color: var(--white);
}
.why-husfixarna-intro .gallery-caption-form {
    margin-left: 0;
    margin-top: 3.5rem;
    max-width: 100%;
    border-radius: var(--border-radius);
}
.why-husfixarna-intro .gallery-caption-form figure {
    max-width: 115px;
}
.why-husfixarna-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 2rem;
    align-items: start;
}
.why-husfixarna-column {
    display: grid;
    gap: 2rem;
    align-content: start;
}
.why-husfixarna-column-right {
    margin-top: 9rem;
}
.why-card {
    position: relative;
    backdrop-filter: blur(5px) contrast(100%);
    -webkit-backdrop-filter: blur(5px) contrast(100%);
    background: rgba(0, 81, 89, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    min-height: 210px;
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.why-card-icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(60deg, rgba(153, 32, 5, 1) 1%, rgba(242, 92, 5, 1) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 22px;
}
.why-card-content h3 {
    margin-bottom: 0.75rem;
}
.why-card-content p {
    margin: 0;
}

.husfixarna-hero .container {
    margin-bottom: -15rem
}
.husfixarna-hero__card {
    background: var(--light);
    border-radius: var(--border-radius);
    position: relative;
}
.husfixarna-hero__content {
    padding: 4rem;
}
.husfixarna-hero__image-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
}
.husfixarna-hero__image {
    max-height: 600px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    border-bottom-right-radius: var(--border-radius);
}
.beforeAfter .twentytwenty-wrapper {
    overflow: hidden;
}
.twentytwenty-overlay {
    display: none !important;
}
.beforeAfter .twentytwenty-container {
    height: 600px !important;
}
.beforeAfter .twentytwenty-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
}

.footer-section {
    background: var(--base);
}
.footer-top {
    border-bottom: 1px solid #ffffff36;
    padding:18rem 0 3rem 0;
    color: var(--white);
}
.footer-top i {
    color: var(--light);
}
.footer-middle .stat-inner {
    padding: 5rem 3rem;
    color: var(--light);
    border-left: 1px #ffffff36 solid;
}
.footer-middle .stat:first-child .stat-inner {
    border-left: 0;
    padding-left: 0;
}
.footer-middle .stat:last-child .stat-inner {
    padding-right: 0;
}
.footer-middle .stat-inner p.stat-description {
    margin: 0;
    font-size: 90%;
}
.footer-bottom {
    padding: 5rem 0;
    background: var(--light);
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.footer-bottom a {
    color: var(--base);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.footer-bottom a:hover,
.footer-bottom a:focus {
    color: var(--accent);
}
.footer-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-bottom ul li a {
    display: block;
    margin-top: 0;
    padding: 0.6rem 0;
    border-top: 1px var(--base) solid;
}
.footer-bottom ul li a:hover,
.footer-bottom ul li a:focus {
    color: var(--accent);
}
.footer-bottom-left-list {
    display: flex;
    flex-direction: column;
}
.random {
    border-top: 1px var(--base) solid;
    padding-top: 2rem;
    margin-top: 2rem;
}

.content-row {
    gap:4rem;
    align-items: flex-start;
}
.content img {
    display: none !important;
}
.content figure img {
    max-height: 5000px;
    object-fit: cover;
    width: 100%;
}
.content h2 {
    font-size: 2.75rem;
    margin-top: 1.5rem;
}
.content a {
    font-weight: 600;
}
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 375px;
}
.sidebar .sidebar-recruitment {
    display: grid;
    gap: 0.5rem;
}
.sidebar .contact-form-title figure {
    max-width: 105px;
}
.sidebar .gallery-caption-form {
    border-radius: var(--border-radius) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sidebar .contact-form-holder {
    overflow: hidden;
}
.sidebar .contact-form-title .h4,
.sidebar .contact-form-title .h5 {
    font-size: 1.85rem;
}
.sidebar-menu .nav-link {
    color: var(--base);
    border: 1px solid var(--base);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    margin: 4px 0;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.sidebar-menu .nav-link:hover {
    background: var(--light);
    color: var(--base);
    transform: translateX(4px);
    border-left: 4px solid var(--base);
}
.sidebar-menu .nav-link.active {
    background: var(--base);
    color: var(--white);
    border-left: 4px solid var(--accent);
    font-weight: 500;
}
.sidebar-menu .nav-link.active i {
    color: var(--white);
}

.button-wrapper {
    display: flex;
    justify-content: center;
    gap:1rem;
}

/* HERO */
.recruitment-hero {
    background: linear-gradient(135deg, var(--base) 0%, #01363d 100%);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    overflow: hidden;
    position: relative;
}
.recruitment-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 25%),
      radial-gradient(circle at 80% 30%, rgba(242,92,5,0.2), transparent 30%);
}
.recruitment-hero-content,
.recruitment-hero-visual {
    position: relative;
    z-index: 2;
}
.recruitment-hero-content a {
    color: var(--white);
}
.recruitment-badge {
    padding: 6px 14px;
    border-radius: var(--border-radius-xl);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
/* STATS */
.recruitment-stat-card {
    backdrop-filter: blur(20px) contrast(100%);
    -webkit-backdrop-filter: blur(20px) contrast(100%);
    background: rgba(2, 81, 89, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
}
.recruitment-stat-card strong {
    font-size: 1.6rem;
    font-weight: 700;
}
.recruitment-stat-card span {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

/* GLASS CARD */
.recruitment-glass-card {
    backdrop-filter: blur(20px) contrast(100%);
    -webkit-backdrop-filter: blur(20px) contrast(100%);
    background: rgba(2, 81, 89, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--border-radius);
    padding: 2rem;
}
.recruitment-glass-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
/* SECTIONS */
.recruitment-section-kicker {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 0.08em;
}
/* FEATURE CARDS */
.recruitment-feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--base);
    transition: all 0.25s ease;
}
.recruitment-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    background: var(--accent2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}
/* JOB LIST */
.recruitment-jobs-wrap {
    display:grid;
    gap:2rem;
}
.recruitment-job-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid var(--base);
    transition: all 0.25s ease;
}
.recruitment-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.recruitment-job-card h3 {
    color: var(--primary);
    font-weight: 700;
}
.recruitment-job-info span {
    color: var(--base);
    font-weight: 700;
}
/* PROCESS */
.recruitment-step-card {
    background: var(--light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
}
.recruitment-step-card span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 0.08em;
}
.recruitment-step-card h4 {
    font-weight: 700;
    color: var(--primary);
}
/* CTA */
.recruitment-cta {
    position: relative;
    background: linear-gradient(135deg, var(--base) 0%, #01363d 100%);
    color: var(--white);
    border-radius: var(--border-radius-lg);
}
.recruitment-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 25%), radial-gradient(circle at 80% 30%, rgba(242, 92, 5, 0.2), transparent 30%);
}
.recruitment-cta-box {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.05);
}
.recruitment-cta-box label,
.recruitment-cta-box .recruitment-section-kicker {
    color: var(--white);
}

.sidebar-recruitment-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.recruitment-job-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: var(--light);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.recruitment-job-info strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: #243447;
}

.recruitment-job-info span {
    font-size: 0.95rem;
    color: #5b6b7c;
    text-align: right;
}


.hero-single {
    position: relative;
}
.hero-single figure img {
  object-fit: cover;
  width: 100%;
  height: 500px;
}
.hero-single .caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding-top: 6rem;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    justify-content: center;
    text-align: center;
}
.hero-single .caption p,
.hero-single .caption h1 {
    color: var(--white);
    position: relative;
    z-index: 100;
}

.contact-hero {
    position: relative;
    padding: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(302deg, var(--accent), var(--accent2));
    color: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.contact-hero a {
    color: var(--white);
}
.contact-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,193,7,0.16);
}
.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,125,14,0.16);
}
.contact-hero > * {
    position: relative;
    z-index: 2;
}
.contact-hero .breadcrumb-item+.breadcrumb-item::before,
.contact-hero .breadcrumb-item.active,
.contact-hero .breadcrumb-item a {
    color: var(--white);
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-hero-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
}

.mini-stat + .mini-stat {
    margin-top: 1.25rem;
}

.mini-stat-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-hero-card a,
.contact-hero-card p {
    color: var(--white);
}
.contact-hero-card a:hover,
.contact-hero-card a:focus {
    color: var(--white);
}
.contact-hero-card a::after {
    background: var(--white);
}

.info-card {
    height: 100%;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    background: var(--white);
    border: 1px solid var(--base);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 500px;
    font-size: 1.5rem;
    color: var(--white);
    background: var(--accent2);
}

.accent-card {
    background: var(--dark);
    color: var(--white);
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 90%;
}

.contact-form .form-select {
    min-height: 58px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(20,41,27,0.12);
    background: #fff;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(255,125,14,0.14);
}
.custom-check .form-check-input {
    margin-top: 0.2rem;
}

.form-note {
    font-size: 1.1rem;
}

.contact-sidebar .sidebar-box {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    background: var(--white);
    border: 1px solid var(--base);
}
.contact-list li + li {
    margin-top: 1.2rem;
}
.contact-list a {
    color: var(--accent2);
    text-decoration: none;
    font-weight: 700;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--base);
}
.hours-list li:last-child {
    border-bottom: 0;
}
.bottom-cta {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,193,7,0.16), rgba(255,125,14,0.12));
    border: 1px solid rgba(255,125,14,0.14);
}
.bottom-cta h2 {
    color: var(--base);
    font-weight: 800;
}
.bottom-cta p {
    color: rgba(13,13,13,0.72);
}

.four-four {
    color: var(--accent2);
    font-size: 12rem;
    font-weight: 900;
}

.hus-contact-page {
    background: var(--body-bg);
    color: var(--body-color);
}
.hus-contact-intro {
    background: linear-gradient(135deg, var(--base) 0%, #01363d 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.hus-contact-intro .badge {
    background: var(--accent2);
    color: var(--white);
}
.hus-contact-intro::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 10px;
    background: linear-gradient(90deg, rgba(2,81,89,0.15) 0%, var(--base) 100%);
}
.hus-contact-intro__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.hus-contact-intro__inner p {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.hus-contact-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: var(--border-radius-xl);
    background: rgba(2,81,89,0.08);
    color: var(--base);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.hus-contact-intro h1 {
    margin-bottom: 1.25rem;
}
.hus-contact-main {
    background: #efebe7;
}
.hus-contact-form-wrap {
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 4rem 4rem 4rem 2rem;
    background: var(--light);
}
.hus-contact-form-card {
    width: 100%;
    max-width: 610px;
    position: relative;
    z-index: 2;
}
.hus-contact-form {
    display: grid;
    gap: 1rem;
}
.custom-check {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1rem 0 0.1rem;
    margin-left: 2rem;
}

.custom-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    border-radius: 6px;
    border: 1px solid rgba(16,24,40,0.22);
    box-shadow: none;
}

.custom-check .form-check-input:checked {
    background-color: var(--base);
    border-color: var(--base);
}

.custom-check .form-check-label {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(16,24,40,0.76);
}

.hus-contact-visual {
    min-height: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hus-contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 880px;
    object-fit: cover;
    display: block;
}

.hus-contact-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,81,89,0.06) 0%, rgba(16,24,40,0.20) 100%);
}

.hus-contact-visual__overlay {
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 2rem;
    width: fit-content;
    z-index: 2;
}

.hus-contact-visual__card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(16,24,40,0.14);
    border: 1px solid rgba(255,255,255,0.55);
}

.fluentform .ff-step-header {
    margin-bottom: 5px !important;
}
.fluentform .ff-el-group {
    margin-bottom: 10px !important;
}
.fluentform .ff-el-progress {
    background: var(--white) !important;
    border:1px solid var(--base);
}
.fluentform .ff-el-progress-bar span {
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
}
.ff-default .ff-el-form-control {
    border-color: var(--base) !important;
}
.fluentform .ff-el-progress-bar span,
.fluentform .ff-el-progress {
    height: 1.7rem !important;
}
.fluentform .ff-el-progress-bar {
    background: var(--accent2) !important;
    color: var(--white) !important;
}
.fluentform .ff_upload_btn.ff-btn {
    border-radius: 4px !important;
    background: var(--white) !important;
    color: var(--base) !important;
    padding: 8px 15px 7px 15px !important;
    font-weight: 500 !important;
    font-size: 85% !important;
    border: 1px solid var(--base) !important;
}
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check {
    margin-bottom: 0 !important;
    display: inline-block !important;
    margin-right: 0.2rem !important;
    margin-bottom: 0.2rem !important;
}
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label>span {
    background: var(--white) !important;
    color: var(--base) !important;
    border-radius: 4px !important;
    padding: 12px 10px 11px 10px !important;
    border:1px solid var(--base) !important;
    font-size: 17px !important;
}
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label>span,
.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected:first-child label>span {
    background: var(--base) !important;
    border-color: var(--base) !important;
    color: var(--white) !important;
    box-shadow: none !important;
}
.ff-btn-submit,
.ff-default .ff-btn-secondary {
    background: var(--accent) !important;
    color: var(--white) !important;
    border: none !important;
    margin-top: 1rem !important;
    font-family: "Sora", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 1rem 0 !important;
    width: 100% !important;
    transition: 0.3s !important;
    height: 60px !important;
}
.ff-default .ff-btn-secondary.ff-btn-prev {
    padding: 0.5rem !important;
    font-size: 1rem !important;
    font-size: 1rem !important;
    background: var(--white) !important;
    border: 1px solid var(--base) !important;
    color: var(--base) !important;
    transition: 0.3s !important;
}
.ff-btn-submit:hover,
.ff-btn-submit:focus,
.ff-default .ff-btn-secondary:hover,
.ff-default .ff-btn-secondary:focus,
.ff-default .ff-btn-secondary:hover,
.ff-default .ff-btn-secondary:focus {
    background: var(--accent2) !important;
    color: var(--white) !important;
}
.ff-default .ff-uploaded-list {
    margin-bottom: 1rem !important;
}
.step-nav.ff_step_nav_last {
    display: flex !important;
    gap:1rem;
}
.fluentform .ff-step-t-container {
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
}
.fluentform .ff-step-t-container .ff-t-cell,
.fluentform .ff-step-t-container .ff-t-cell .btn-primary {
    width: 100% !important;
}
.fluentform .mb-0 {
    margin-bottom: 0 !important;
}
.ff-el-progress-status {
    display: none !important;
}

.mobile-menu-toggle {
    width: 50px;
    height: 50px;
    border: 0;
    background: var(--accent2);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}
/* Modal overlay */
.mobile-menu-modal .modal-dialog {
    margin: 0 0 0 auto;
    max-width: 420px;
    height: 100%;
}
.mobile-menu-modal .modal-content {
    height: 100vh;
    border: 0;
    border-radius: 0;
    background: var(--light);
    color: var(--body-color);
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
    overflow: hidden;
}
/* Slide from right */
.mobile-menu-modal.fade .modal-dialog {
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.mobile-menu-modal.show .modal-dialog {
    transform: translateX(0);
}
.mobile-menu-modal .modal-dialog-end {
    margin-left: auto;
    margin-right: 0;
}
.mobile-menu-modal .modal-backdrop,
.mobile-menu-modal + .modal-backdrop {
    backdrop-filter: blur(4px);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(20,41,27,.08);
    background: var(--base);
}
.mobile-menu-brand {
    font-size:1.8rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -.02em;
}
.mobile-menu-close {
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 999px;
    background: var(--accent2);
    position: relative;
    transition: background .2s ease, transform .2s ease;
}
.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
}
.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu-body {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 84px);
    padding: 1.25rem;
    overflow-y: auto;
}
.mobile-menu-nav {
    flex: 1 1 auto;
}
.mobile-menu-list,
.mobile-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list > li {
    border-bottom: 1px solid var(--accent2);
}
.mobile-menu-list > li:last-child {
    border-bottom: 0;
}
.mobile-menu-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding:0.75rem 0 0.65rem 0;
    color: var(--base) !important;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
    padding-right: 3rem;
    transition: color .2s ease, transform .2s ease;
}
.mobile-menu-list:first-child > li > a {
    font-size: 1.8rem;
}
.mobile-menu-list > li > a::after {
    display: none !important;
}
.mobile-menu-list > li > a:hover {
    color: var(--accent2);
    transform: translateX(4px);
}
.mobile-menu-list .current-menu-item > a,
.mobile-menu-list .current-menu-ancestor > a {
    color: var(--accent2);
}
.mobile-menu-list .sub-menu {
    padding: .25rem 0 1rem 0;
}
.mobile-menu-list .sub-menu li a {
    padding: .6rem 0 ;
    color: var(--base) !important;
    font-size: 1.25rem;
    position: relative;
    width: 100%;
}
.mobile-menu-actions {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--accent2);
    display: grid;
    gap: .85rem;
}
.mobile-menu-actions ul li .action {
    font-size: 105%;
}
.mobile-menu-actions ul li .action::after {
    display: none !important;
}
.modal-backdrop.show {
    opacity: .45;
}
.mobile-menu {
    display: flex;
    align-items:center;
    flex-wrap: wrap;
    gap:0.75rem;
}
.mobile-menu > * {
    flex: 0 0 auto !important;
    margin-top: 0 !important;
}
.mobile-menu > .btn {
    width: auto !important;
}
.mobile-menu-list .menu-item-has-children {
    position: relative;
}
.mobile-submenu-toggle {
    position: absolute;
    top: .55rem;
    right: 0;
    width: 35px;
    height: 35px;
    border: 0;
    background: var(--accent2);
    border-radius: 999px;
    transition: background .2s ease, transform .2s ease;
}
.mobile-submenu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    transform: translate(-50%, -50%);
}
.mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}
.menu-item-has-children.is-open > .mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
}
.mobile-checklist .topbar-checklist {
    background: var(--base);
    color: var(--white);
    gap:0.3rem;
    padding: 0.3rem 1rem;
    font-size: 60%;
    font-weight: 500;
}
.topbar-checklist li i {
    font-size: 100%;
}
.mobile-checklist .topbar-checklist li,
.mobile-checklist .topbar-checklist li i {
    color: var(--white);
}
@media (max-width: 1500px) {
    .header-logo img {
        max-width: 240px;
    }
    .header-nav .navbar .nav-item .nav-link {
        font-size: 1.45rem;
    }
    .fs-4 {
        font-size: 1.35rem !important;
    }
    .container, .container-fluid {
        padding: 0px 3rem;
    }
    .husfixarna-hero__image {
        max-height: 500px;
    }
    .section-holder {
        margin-bottom: 6rem;
    }
}
@media (max-width: 1300px) {
    body {
        font-size:  1.05rem;
    }
    h1, .h1,
    h2, .h2 {
        font-size:3rem;
    }
    h3, .h3 {
        font-size: 2.5rem;
    }
    h4, .h4 {
        font-size: 2rem;
    }
    .husfixarna-hero__image {
        max-height: 400px;
    }
    .section-holder {
        margin-bottom: 6rem;
    }
}
@media (max-width: 1200px) {
    .action {
        font-size: 1.45rem;
    }
    .header-main__inner {
        justify-content: flex-start;
        gap:0.5rem;
        padding: 0.5rem 0;
    }
    .header-actions  {
        margin-left: auto;
    }
    .container, .container-fluid {
        padding: 0px 1rem;
    }
    .hf-hero-grid {
        padding: 0 1rem 0 1rem;
    }
    .hf-grid {
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr);
    }
    .hf-grid-pages .hf-card-lg,
    .hf-card-lg {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 100%;
    }
    .hf-card:not(.hf-card-lg) {
        grid-row: auto;
    }
    .hf-card-video {
        height: 400px;
        position: relative;
        border-radius: var(--border-radius-sm);
    }
    .hf-feature-box {
        height: auto;
        position: relative;
        width: 100%;
        right: 0;
        border-radius: var(--border-radius-sm);
    }
    .hf-hero-lg-caption {
        bottom: auto;
        top: 0.5rem;
        left: 0.5rem;
    }
    .hf-hero-lg-caption h1 {
        padding: 0.5rem 1rem;
    }
    .hf-grid-pages .hf-card-lg::after {
        display: none;
    }
    .content-row {
        gap:0;
    }
    .half-half-thumbnail figure img {
        max-height: 400px;
        width: 100%;
    }
    .half-half-content-txt {
        padding: 2.5rem;
        max-width: 100%;
    }
    .content-top-holder {
        margin-top: 2.5rem;
    }
    .recruitment-job-card {
        padding: 2rem;
    }
    .sidebar {
        width: 290px;
    }
    .hf-card-video,
    .hf-grid-pages video,
    .hf-grid-pages figure,
    .hf-grid-pages img {
        height: 450px;
    }
    .hus-contact-form-wrap {
        padding: 1.5rem;
        justify-content: flex-start;
    }
    .hus-contact-intro {
        padding: 3rem 0;
    }
    .section-holder {
        margin-bottom: 5rem;
    }
    .hus-stats-box {
        margin-top: -6.5rem;
        padding: 2rem;
        width: 98%;
    }
    .hus-content {
        padding: 4rem 0 9rem 0;
    }
    .why-husfixarna {
        padding: 3rem 0;
    }
    .why-husfixarna-intro {
        position: relative;
        top: 0;
        max-width: 500px;
    }
    .why-husfixarna-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-highlight__points {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        margin-top: 1rem;
    }
    .contact-highlight__content {
        padding: 3rem 8rem 3rem 2rem;
    }
}
@media (min-width: 992px) {
    .mobile-menu-modal {
        display: none !important;
    }
}
@media (max-width: 998px) {
    #breadcrumb {
        margin: 0 0 1.5rem 0;
    }
    #breadcrumb li > span span {
        width: 20px;
        margin: 0 auto;
        padding-right: 1.25rem;
        font-size: 1.4rem;
    }
    .husfixarna-hero__image-wrap {
        position: relative;
    }
    .hus-stat-number {
        font-size: 4rem;
    }
    .husfixarna-hero__content,
    .contact-highlight__content,
    .contact-form {
        padding: 1.5rem;
    }

    .footer-bottom {
        padding: 2rem 0;
        margin: 2rem 1rem 0 1rem;
    }
    .footer-middle .stat-inner {
        border:0;
        padding: 0.75rem 0;
    }
    .hf-card-video,
    .hf-grid-pages video,
    .hf-grid-pages figure,
    .hf-grid-pages img {
        height: 380px;
    }
    .section-holder {
        margin-bottom: 4rem;
    }
    .hus-stats-box {
        margin-top: 0;
        width: 100%;
    }
    .hus-content {
        padding: 2rem 0;
    }

    .custom-accordion,
    .contact-highlight__points,
    .contact-highlight__wrap {
        grid-template-columns: 1fr;
    }
    .contact-highlight__form-card {
        margin-left: 0;
        max-width: 100%;
    }
    .contact-highlight__form-card figure {
        max-width: 100px;
        margin-left: auto;
        margin-top: -5rem;
    }
    .steps-flow {
        padding-top: 2rem;
        padding-bottom: 0;
        gap:2rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-line {
        display: none;
    }
}
@media (max-width: 768px) {
    body {
        font-size: 1.05rem;
    }
    .content h2,
    h1, .h1,
    h2, .h2 {
        font-size: 2rem;
    }
    h3, .h3,
    h4, .h4 {
        font-size: 1.85rem;
    }
    .fs-4 {
        font-size: 1.1rem !important;
    }
    .ff-btn-submit, .ff-default .ff-btn-secondary {
        height: 50px !important;
        padding:0.5rem 0 !important;
    }
    blockquote {
      margin: 1rem 0;
      padding: 1rem 1rem 1rem 4rem;
      font-size: 1.25rem;
    }
    blockquote::before {
        font-size: 5rem;
    }
    .btn {
        margin-top: 1rem;
    }
    .action {
        font-size: 1.35rem;
    }
    .pulse-circle {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
    }
    .header-main__inner {
        flex-wrap: wrap;
        padding: 0.5rem 0 0 0;
    }
    .header-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 0.5rem;
        order:1;
    }
    .header-actions  {
        order:3;
        width: 100%;
        background: var(--light);
        padding: 0.15rem 1rem;
        border-radius: var(--border-radius-sm);
    }
    .mobile-menu-toggle {
        order:2;
        margin-left: auto;
    }
    .header-logo img {
        max-width:190px;
    }
    .container, .container-fluid {
        padding: 0 1rem;
    }
    .content-holder-sm,
    .content-holder {
        margin-bottom: 1.5rem;
    }
    .content-top-holder {
        margin-top: 1.5rem;
    }
    .section-holder {
        margin-bottom: 3rem;
    }
    .hf-hero-grid {
        padding: 1rem 1rem 0 1rem;
    }
    .carousel-cards .carousel-cell {
        width: 95%;
    }
    .flickity-prev-next-button.next,
    .flickity-prev-next-button.previous {
        width: 50px;
        height: 50px;
    }
    .flickity-prev-next-button.previous {
        left: 0.5rem;
    }
    .flickity-prev-next-button.next {
        right: 0.5rem;
    }
    .ticker-item {
        font-size: 1.75rem;
    }
    .hf-feature-box .ticker-cta span {
        padding: 0.25rem 0.45rem;
    }
    .hf-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    .hf-grid > *:first-child {
        order:2;
    }
    .hf-card-lg {
        grid-column: auto;
        grid-row: auto;
        min-height: 700px;
        order: 1;
    }
    .hf-card-sm {
        order: 3;
    }
    .hf-feature-box {
        width: 100%;
        padding: 3.5rem 0 0 0;
        left: 0;
    }
    .hf-card-content {
        margin-top: auto;
    }
    .steps-section {
        margin-left: 0;
        margin-right: 0;
    }
    .why-husfixarna {
        padding: 2rem 0;
        margin-left: 0;
        margin-right: 0;
    }
    .why-husfixarna-column {
        gap:1rem;
    }
    .why-husfixarna-intro {
        margin-bottom: 1.5rem;
    }
    .why-card-icon {
        width: 90px;
        height: 90px;
    }
    .why-husfixarna-column-right {
        display: none;
    }
    .why-husfixarna-cards,
    .why-husfixarna-grid {
        display: block;
    }
    .why-husfixarna-intro {
        position: relative;
        top: 0;
    }
    .why-husfixarna {
        background-attachment: unset;
    }
    .hf-grid-pages video,
    .hf-grid-pages figure,
    .hf-grid-pages img {
        height: 250px;
    }
    .ribbon {
        font-size: 1rem;
    }
    .feature-visual__bg {
        right: 0;
        left: 0;
    }
    .payment-card {
        max-width: 85%;
    }
    .feature-visual__bg::before, .feature-visual__bg::after {
        width: 60px;
        height: 60px;
    }
    .feature-visual__bg::before {
        left: -40px;
    }
    .feature-visual__bg::after {
        right: -40px;
    }
    .payment-card__icon-ring::before {
        width: 80px;
        height: 80px;
    }
    .feature-visual__bottom {
        margin-top: 3rem;
    }
    .feature-visual__divider {
        margin-bottom: 2rem;
    }
    .feature-visual__bottom {
        padding-bottom: 2rem;
    }
    .beforeAfter .twentytwenty-container {
        height: 250px !important;
    }
    .carousel-cards .container {
        padding-top: 3rem;
    }
    .carousel-cards .carousel-cards-intro {
        margin-bottom: 3rem;
    }
    .hus-stats-box {
        margin-top: 0;
        padding: 1.5rem;
        width: 100%;
    }
    .hus-content {
        padding: 1.5rem 0;
    }
    .check-wrap, .hus-stat-item-wrap {
        padding: 0;
        border: 0;
    }
    .half-half-content-txt {
        padding: 1.5rem;
    }
    .hero-badges {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap:0.5rem;
        margin-top: 1.25rem;
    }
    .steps-flow {
        padding-top: 2rem;
        padding-bottom: 0;
        gap:1rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .hf-sky-banner {
        padding: 3rem 0;
        min-height: auto;
    }
    .custom-accordion .accordion-button {
        padding: 0.35rem 0.75rem;
    }
    .card-mask .card-video-holder,
    .card-mask figure img,
    .card-mask .card-wrapper img,
    .card-mask .card-wrapper video {
        height: 400px !important;
    }
    .card-mask .card-wrapper .card-body {
        padding: 0.5rem;
    }
    .contact-highlight__points {
        margin-top: 0;
    }
    .footer-top {
        border: 0;
        padding: 16rem 0 0 0;
    }
    .info-card,
    .hus-contact-form-wrap,
    .contact-sidebar .sidebar-box,
    .recruitment-feature-card,
    .recruitment-glass-card,
    .recruitment-hero,
    .contact-hero,
    .recruitment-cta-box,
    .recruitment-step-card,
    .recruitment-job-card,
    .contact-hero-card {
        padding: 1.5rem;
    }
    .recruitment-section-kicker {
        margin-bottom: 0.5rem;
    }
    .sidebar {
        width: 100%;
    }
    .hf-card-video,
    .hf-grid-pages video,
    .hf-grid-pages figure,
    .hf-grid-pages img {
        height: 250px;
    }
    .hus-contact-intro {
        padding: 1.5rem 0;
    }
}


.hf-eyebrow,
.hf-section-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: #f45b12;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hf-area-search input {
  width: 100%;
  height: 62px;
  padding: 0 22px;
  border: 1px solid var(--base);
  border-radius: var(--border-radius);
  background: #fff;
  font-size: 110%;
}

.hf-area-search input::placeholder {
    color: var(--base);
    font-weight: 700;
}

.hf-section-head {
  margin-bottom: 30px;
}

.hf-service-slider.flickity-enabled {
  display: block;
  position: relative;
  box-shadow: none !important;
  outline: none !important;
}

.hf-service-slider .flickity-button {
    top: 40%;
}
.flickity-prev-next-button.previous {
    left: -1rem;
}
.flickity-prev-next-button.next {
    right: -1rem;
}

.flickity-viewport {
  width: 100%;
  overflow: hidden;
}

.flickity-slider {
  display: flex;
  align-items: stretch;
}

.hf-service-slide {
  width: 33.333%;
  padding: 0 12px 0 0;
  box-sizing: border-box;
}

.hf-service-slide.is-hidden {
  display: none;
}

.hf-service-slide .card-wrapper {
  display: block;
  height: 100%;
  text-decoration: none;
}

.hf-service-slide .card-video-holder {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hf-service-slide .card-video-holder picture,
.hf-service-slide .card-video-holder img {
  display: block;
  width: 100%;
  height: 100%;
}

.hf-service-slide .card-video-holder img {
  object-fit: cover;
}

.hf-service-slide .card-body {
  width: 100%;
}

.hf-service-slide .card-body-inner {
  width: 100%;
}

.hf-county-list,
.hf-city-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
}

.hf-county-row,
.hf-city-row {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 14px 20px 14px 14px;
  border: 1px solid var(--base);
  border-radius: var(--border-radius);
  color: #005f66;
  text-decoration: none;
  transition: .2s ease;
}

.hf-row-media {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 13px;
  background: #eef5f5;
}

.hf-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hf-row-content strong {
  display: block;
  color: var(--base);
  font-size: 110%;
  font-weight: 700;
}

.hf-row-content small {
  display: block;
  margin-top: 4px;
  color: var(--body-color);
}

.hf-county-row:hover,
.hf-city-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 95, 102, .11);
}

.flickity-page-dots {
  position: relative;
  bottom: auto;
  margin-top: 25px;
}

.flickity-page-dots .dot {
  background: #005f66;
}

@media (max-width: 1199px) {
  .hf-county-list,
  .hf-city-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hf-area-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hf-service-slide {
    width: calc(50% - 24px);
  }
}

@media (max-width: 767px) {

  .hf-service-slide {
    width: calc(82% - 24px);
  }

  .hf-county-list,
  .hf-city-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599px) {
  .hf-service-slide {
    width: calc(100% - 0px);
  }
  .flickity-prev-next-button.next {
      right: -0.5rem;
  }
  .flickity-prev-next-button.previous {
      left: -0.5rem;
  }
}
.hf-search-item.is-hidden {
  display: none !important;
}

.hf-no-results {
  margin-top: 18px;
  border-radius: var(--border-radius);
  font-weight: 700;
}

.hf-no-results[hidden] {
  display: none !important;
}












.hf-city-list-collapsible:not(.is-expanded):not(.is-searching) .hf-search-item:nth-child(n+7) {
  display: none;
}

.hf-city-list-collapsible:not(.is-expanded):not(.is-searching)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    #fff 85%
  );
}

.hf-city-list-toggle-wrap {
  margin-top: 28px;
  text-align: center;
}

.hf-city-list.is-expanded + .hf-city-list-toggle-wrap .js-hf-city-toggle span::before {
  content: 'Visa färre städer & områden';
}

.hf-city-list:not(.is-expanded) + .hf-city-list-toggle-wrap .js-hf-city-toggle span::before {
  content: 'Se alla städer & områden';
}

.js-hf-city-toggle span {
  font-size: 0;
}

.js-hf-city-toggle span::before {
  font-size: 1rem;
}

.hf-search-item.is-hidden {
  display: none !important;
}
