/* HOME HELPER Skane AB */

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 187, 205, 231;
    --primary-dark-color: 26, 55, 91;
    --secondary-color: 242, 143, 82;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 222, 224, 224;
    --gray-light-color: 247, 246, 246;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 9rem;
    --menu-height-scrolled: 9rem;
    --section-width: 150rem;

    /* 	Typography */
    --base-size: 1.6rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1150;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--primary-dark-color);
    --menu-color: var(--white-color);
}

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}

/* Paddings */
.p-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
    padding-top: 0;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
    padding-bottom: 0;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

/* Margins */
.mb-2 {
    margin-bottom: 2rem;
}

/* Bredder */
.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 8rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }
}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Poppins', sans-serif;
}

/* Rubriker */
.section-title {
    padding-bottom: 0.2em;
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Brodtext och lankar */
p,
li {
    color: rgb(var(--gray-dark-color));
}

.ingress {
    font-size: 1.9rem;
}

/* List-check */
.list-check {
    padding: 0;
    list-style: none;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 600;
}

@media only screen and (max-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }

    .small-title {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-title {
        font-size: 2.3rem;
    }

    .small-title {
        font-size: 1.8rem;
    }

    .ingress {
        font-size: var(--base-size);
    }

    /* Ovriga klasser */
    .text-center {
        text-align: left;
    }
}

/* Knappar och speciella lankar 
========================================================================== */
.btn-wrapper {
    margin-top: 2rem;
}

.btn-wrapper.center {
    text-align: center;
}

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.1rem 2.2rem;
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all .4s ease;
}

.btn-white-filled {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

.btn-white-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
}

.btn-primary-dark-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: rgb(var(--primary-dark-color));
}

.btn-primary-dark-filled:hover {
    color: rgb(var(--primary-dark-color));
    border: 1px solid rgb(var(--primary-dark-color));
    background-color: transparent;
}

/* Arrow link */
.arrow-link {
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.arrow-link::after {
    content: ' \f061';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--secondary-color));
    transition: transform .4s ease;
}

.arrow-link:hover::after {
    transform: translateX(5px);
    transition: transform .4s ease;
}

/* Cirkelikon */
.square-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--primary-color));
    text-decoration: none;
    border-radius: 3px;
    border: 2px solid rgb(var(--secondary-color));
    background-color: rgb(var(--primary-dark-color));
    transition: .3s ease;
}

.square-icon:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--secondary-color));
}

.square-icon em:before,
.square-icon i:before {
    font-size: var(--base-size);
}

/* Farger
========================================================================== */
/* Bakgrunder */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-primary-dark {
    background-color: rgb(var(--primary-dark-color));
}

.bg-gray-light {
    background-color: rgb(var(--gray-light-color));
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-white {
    color: rgb(var(--white-color));
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-video {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper,
.bg-video-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
}

/* Bredder */
.cards-wrapper.w-33 .card-item {
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
}

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 1-1 */
.card-1-1 .card-item {
    transition: .3s ease;
}

.card-1-1 .card-item:hover {
    background: rgb(var(--gray-light-color));
}

.card-1-1 .card-header {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-1-1 .card-header i {
    margin-right: 1rem;
    font-size: 2.3rem;
    color: rgb(var(--primary-dark-color));
}

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid rgb(var(--primary-color));
    transition: .3s ease;
}

.card-2-5 a.card-item:hover {
    background-color: rgb(var(--primary-color));
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    border-radius: 3px;
}

.card-2-5 .card-header i {
    font-size: 2.5rem;
}

.card-2-5 .card-body {
    padding: 0 2rem;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.split-wrapper.reverse {
    flex-direction: row-reverse;
}

.split-content {
    width: 50%;
    padding: 5rem;
}

.split-image {
    width: 50%;
}

/* Centrera content */
.split-wrapper .align-center {
    align-self: center;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding: 3rem;
    }
}

@media screen and (max-width: 1000px) {

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 0 0 3rem;
        background: transparent;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }

    /* Centrera content */
    .split-wrapper .align-center {
        align-self: flex-start;
    }
}

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--primary-dark-color));
}

body:not(.EditMode) header {
    position: relative;
}

/* Logo */
.header-logo {
    flex: 1 1 0;
}

.header-logo img {
    padding: 5px 0;
}

/* Nav */
.TemplateMenu a {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(var(--white-color));
}

body:not(.EditMode) .TemplateMenu>li:nth-child(1) {
    display: none;
}

/* CTA  */
.header-cta-wrapper {
    z-index: 9;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0 0 0 1rem;
    line-height: 1;
    white-space: nowrap;
}

/* Mobilmeny */
.mobile-menu .TemplateMenu {
    text-align: center;
}

@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper {
        margin: 0 0 0 1rem;
    }

    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background-color: rgb(var(--black-color), .5);
}

.top-section .section-block {
    width: 100%;
}

.top-section .section-block-wrapper {
    justify-content: space-between;
}
.reco-wrapper img{
    max-width: 12rem;
}

.top-section .col-1 {
    width: calc(100% - 50rem);
}

.top-section .col-2 {
    width: 50rem;
}

.top-section .text-label {
    font-size: 3rem;
}

.top-section .section-title {
    font-size: 5.5rem;
    font-weight: 600;
}

.top-section p:not(.section-title) {
    max-width: 55rem;
    font-size: 2rem;
}

/* Formular */
.top-section .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-section .ContactForm>div {
    width: 49%;
}

.top-section .ContactForm div.place {
    order: -1;
    width: 100%;
}

.top-section .ContactForm div.ContactFormName,
.top-section .ContactForm div.textarea-field,
.top-section .ContactForm div.submit-button-container {
    width: 100%;
}

.ContactForm select {
    height: 4.3rem;
}

.ContactForm .ContactSubmit {
    margin: 0;
}

@media only screen and (max-width: 1250px) {
    .top-section .col-1 {
        width: calc(100% - 45rem);
    }

    .top-section .col-2 {
        width: 45rem;
    }

    .top-section .text-label {
        font-size: 2rem;
    }

    .top-section .section-title {
        font-size: 4.5rem;
    }

    .top-section p:not(.section-title) {
        font-size: 1.7rem;
    }
}

@media only screen and (max-width: 980px) {
    .top-section .col-1 {
        width: 100%;
        text-align: center;
    }

    .top-section .col-2 {
        width: 100%;
        max-width: 50rem;
        margin: 3rem auto 0;
    }

    .top-section p:not(.section-title) {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 680px) {
    .top-section .ContactForm>div {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .top-section .text-label {
        font-size: 1.5rem;
    }
    
    .top-section .section-title {
        font-size: 3rem;
    }

    .top-section p:not(.section-title) {
        font-size: 1.5rem;
    }
}

/* Tjanster 
========================================================================== */
@media only screen and (max-width: 580px) {
    .section-services .card-item {
        padding: 1rem; 
    }
}

/* Omdomen
========================================================================== */
.section-reviews{
    overflow: hidden;
}
/* Texten ovanfor korten */
.google-review .AGaFi,
.google-review .dwiVrq,
.google-review .iybaAt {
    color: rgb(var(--gray-dark-color));
}

/* Kortet */
.bMMjYH .swiper-slide {
    border-radius: 3px;
    background: rgb(var(--white-color));
    overflow: hidden;
}

/* Text i kortet */
.google-review .es-review-content-text * {
    font-size: 15px;
}

.google-review .kBfvhj,
.google-review .es-review-content-text,
.google-review .cwZklo {
    color: rgb(var(--gray-dark-color));
}

/* Lank i kort */
.google-review .djXUQz {
    margin-top: 5px;
    color: rgb(var(--primary-dark-color));
}

/* CTA
========================================================================== */
.section-cta .section-block {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: rgb(var(--primary-color));
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.cta-wrapper .logo {
    margin-right: 5rem;
    border-radius: 3px;
    overflow: hidden;
}

.cta-wrapper .logo {
    display: flex;
    flex-direction: row;
}
.cta-wrapper .logo img{
    max-width: 14rem;
    padding: 1rem;
}

.cta-wrapper .text-block {
    flex-grow: 1;
    max-width: none;
}

.cta-wrapper .text-block p {
    max-width: 65rem;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cta-wrapper .logo {
        margin: 0 0 3rem;
    }

    .cta-wrapper .btn-wrapper {
        margin-top: 1rem; 
    }
}

@media only screen and (max-width: 580px) {
    .cta-wrapper .logo {
        margin: 0 0 2rem;
    }
    .cta-wrapper .logo {
    flex-direction: column;
}
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background-color: rgb(var(--black-color), .5);
}

.hero .section-block {
    width: 100%;
}

.hero .section-title {
    font-size: 6rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 40rem;
    }

    .hero .section-title {
        font-size: 4rem;
    }

    .hero .text-center {
        text-align: center;
    }
}

/* Hero: Hero-split
========================================================================== */
.hero-split {
    background: linear-gradient(to left, rgba(var(--white-color), .85) 70%, rgb(var(--white-color)) 0);
}

.hero-split .split-image {
    min-height: 50vh;
    border-radius: 3px;
}

.hero-split .section-title {
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
    font-size: 4.8rem;
}

.hero-split .section-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    margin-right: 2rem;
    border-radius: 50%;
    font-size: 2rem;
    color: rgb(var(--primary-color)); 
    background: rgb(var(--primary-dark-color));
}

@media only screen and (max-width: 1100px) {
    .hero-split {
        background: rgba(var(--white-color), .85); 
    } 

    .hero-split .split-content {
        width: 100%;
        padding-left: 0;
        padding-bottom: 5rem;
    }

    .hero-split .split-image {
        width: 100%;
        min-height: unset;
    }
}

@media only screen and (max-width: 580px) { 
    .hero-split .section-title {
        font-size: 3rem;
    }

    .hero-split .section-title i {
        width: 5rem;
        height: 5rem; 
        margin-right: 1rem;
    }
}

/* Accordion
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.accordion-wrapper.w-50 .accordion-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    /* border-radius: 1rem; */
    border-bottom: 1px solid rgb(var(--gray-color));
    transition: .3s ease;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--primary-dark-color));
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 2rem 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 0;
    }

    .accordion-header::after { 
        right: 1rem;
    }

    .accordion-body {
        padding: 0 0 1.5rem;
    }
}

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
    align-items: flex-start;
}

.section-contact .col-2 {
    width: 55rem;
    max-width: 50%;
    padding: 5rem;
    background-color: rgb(var(--primary-dark-color));
    border-radius: 3px;
}

.ContactForm p {
    display: none;
}

.ContactForm input[type="text"],
.ContactForm input[type="number"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm input[type="date"],
.ContactForm input[type="datetime-local"],
.ContactForm select,
.ContactForm option,
.ContactForm textarea {
    font-size: 1.5rem;
    border-radius: 3px;
    border: none;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-2 {
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-contact .col-2 {
        padding: 3rem 2rem 2rem;
    }
}

/* ==========================================================================
Footer 
========================================================================== */
.footer {
    padding: 0 5rem;
    background: rgb(var(--primary-dark-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
}

.footer-menu {
    width: 20rem;
    margin: 0 0 3rem;
}

.footer-menu-large {
    width: 30%;
}

.footer .text-label {
    padding: 0 0 1rem;
    font-weight: 600;
    color: rgb(var(--secondary-color));
    line-height: 1;
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top li,
.footer-top p,
.footer-top a {
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    text-decoration: none;
}

.footer-top a:hover {
    color: rgb(var(--primary-color));
    text-decoration: none;
}

/* Sociala medier */
.footer-socials {
    display: flex;
    align-items: center;
}

.footer-socials::before,
.footer-socials::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0%;
    border-top: 1px solid rgb(var(--white-color));
}

.footer-socials::before {
    margin-right: 2rem;
}

.footer-socials::after {
    margin-left: 2rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    opacity: .6;
    filter: invert();
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 33.333%;
    }

    .footer-menu-large {
        width: 100%;
    }

    .footer-menu-large p {
        max-width: 55rem;
    }
}

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

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 580px) {
    .footer {
        padding: 0 2rem;
    }

    /* Footer top */
    .footer-top {
        padding: 5rem 0 1rem;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}