/* T2 Installationskonsult AB */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 14, 57, 97;
    --primary-light-color: 165, 197, 232;
    --primary-dark-color: 11, 49, 107;
    --secondary-color: 73, 112, 155;
    --black-color: 30, 30, 30;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 222, 224, 224;
    --gray-light-color: 244, 244, 244;
    --white-color: 255, 255, 255;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1024;
    --mobile-menu-height: 8rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

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

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

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

.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

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

.p-4 .section-block,
.p-4:not(.section-wrapper) {
    padding: 4rem;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 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;
}

/* Margins */
.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.justify-center {
    justify-content: center;
}

.align-center .section-block-wrapper {
    align-items: center;
}

@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: "Inter", sans-serif;
    /*font-family: 'Montserrat', sans-serif;*/
}

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

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

.text-label {
    padding-bottom: 1rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;

}

.text-role {
    padding-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Piller */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-pills li {
    display: flex;
    align-items: center;
    margin: 1rem;
    font-size: 1.5rem;
}

.list-pills li::before {
    content: '\f00c';
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin-right: 5px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--secondary-color));
}

@media only screen and (max-width: 580px) {
    .list-pills {
        justify-content: flex-start;
    }

    .list-pills li {
        width: 100%;
        margin: 3px 0;
        font-size: 1.4rem;
        text-align: left;
    }

    .list-pills li::before {
        text-align: center;
    }
}

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

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-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: 700;
}

.text-italic {
    font-style: italic;
}

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

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

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

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

    .text-label {
        font-size: 1.4rem;
    }
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2.5rem;
    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: 1px solid;
    transition: all .4s ease;
}

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

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

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

.btn-secondary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border-color: rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

/* 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;
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    margin: .5rem;
    font-size: 0;
    border-radius: 50%;
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    text-decoration: none;
    transition: .3s ease;
}

.circle-icon:hover {
    background-color: rgb(var(--gray-dark-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: 1.4rem;
}

.icon-links {
    padding: 5px 10px;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
    line-height: 1;
    border-radius: 2rem;
    text-decoration: none;
    transition: all .3s ease;
}

.icon-links:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--black-color));
}

/* Animation knapp */
.bouncing-btn::after {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(10px);
    }

    60% {
        transform: translateX(5px);
    }
}

/* @media only screen and (max-width: 420px) {
    .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
} */

/* Farger
========================================================================== */
/* Bakgrunder */

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

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* 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 .card-item {
    margin-bottom: 4rem;
    text-decoration: none;
}

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

.cards-wrapper.w-25 .card-item {
    width: calc((100% / 4) - 2rem);
    margin: 1rem;
}

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

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

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

/* Bredder */
@media only screen and (max-width: 1150px) {
    .cards-wrapper.w-20 .card-item {
        width: calc((100% / 4) - 1rem);
        margin: 1rem;
    }

}

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

    .cards-wrapper.w-20 .card-item,
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 1rem);
        margin: 1rem;
    }

}

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

    .cards-wrapper.w-20 .card-item,
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }
}

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

    .cards-wrapper.w-20 .card-item,
    .cards-wrapper.w-25 .card-item {
        width: calc(100% - 4rem);
        margin: 1rem;
    }
}

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

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 750px) {
    .cards-wrapper.w-100 .card-item {
        width: 100%;
        margin: 1rem;
    }
}

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

    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 1-1 */
.card-1-1 .card-item {
    position: relative;
    min-height: calc(70vh / 2 - 2rem);
}

.card-1-1 .card-footer p {
    font-size: 1.4rem;
}

.card-1-1 .icon-wrapper {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
}

.card-1-1 .icon-wrapper i {
    opacity: .3;
    font-size: 13rem;
    transform: rotate(6deg)
}

@media only screen and (max-width: 1600px) {
    .card-1-1 .icon-wrapper i {
        font-size: 9rem;
    }
}

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

/* Card 2-1 */
.card-2-1 .card-item {
    border-radius: 2rem;
}

.card-2-1 .small-title {
    padding-bottom: .3em;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
}

.card-2-4 .card-header i {
    font-size: 3rem;
}

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 0 2rem;
}

.card-2-4 .text-small {
    font-size: 1.4rem;
}

@media only screen and (max-width: 520px) {
    .card-2-4 .card-item {
        align-items: center;
        margin-top: 0;
    }

    .card-2-4 .card-body {
        padding: 1rem;
    }

    .card-2-4 .card-header {
        width: 6rem;
        height: 6rem;
    }
}

/* Card 3-2 */
.card-3-2 .image-wrapper {
    display: inline-block;
    max-width: 13rem;
    height: 13rem;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.card-3-2 .image-wrapper:hover {
    border: 2px solid rgb(var(--black-color), .5);
}

/* Card 3-3 */
.card-3-3 .card-body {
    z-index: 1;
    position: relative;
    width: 90%;
    margin: -3rem auto 0;
}

.card-3-3 .contact-item {
    padding-bottom: 0.2rem;
}

.card-3-3 .contact-item i {
    margin-right: 1rem;
}

.card-3-3 .contact-item a {
    font-size: 1.5rem;
    word-break: break-all;
}

.card-3-3 .card-item .text-label {
    font-size: 1.4rem;
}

.card-3-3 .card-item .small-title {
    font-size: 2.1rem;
}

@media only screen and (max-width: 480px) {
    .card-3-3 .card-body {
        z-index: 1;
        position: relative;
        width: 90%;
        margin: -3rem auto 0;
    }
}

/* Card 3-5 */
.card-3-5 .card-item {
    position: relative;
    min-height: calc(70vh / 2 - 2rem);
}

.card-3-5 .card-item.mh-70 {
    min-height: 70vh;
}

.card-3-5 .card-item.mh-50 {
    min-height: calc(90vh / 2 - 2rem);
}

.card-3-5 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-5 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .2);
}

.card-3-5 .card-body,
.card-3-5 .card-footer {
    z-index: 1;
    position: relative;
}

/* 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%;
    height: 70vh;
}

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

/* Bredder & hojder */
.split-wrapper .w-50 {
    width: 50%;
}

.split-wrapper .w-50 {
    width: 50%;
}

/* Overlay */
.split-image.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .2);
}

/* Text i split-image */
.split-image .text-block {
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 4rem;
}

.split-image .text-block .small-title {
    font-size: 3.2rem;
}

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

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

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

    .split-image {
        width: 100%;
    }

    /* Bredder */
    .split-wrapper .w-50,
    .split-wrapper .w-50 {
        width: 100%;
    }

    /* Split i full-width sektion */
    .mw-none.pl-0 .split-content,
    .mw-none.p-0 .split-content {
        padding: 0 3rem 3rem;
    }

    /* Text i split-image */
    .split-image .text-block {
        padding: 3rem;
    }

    .split-image .text-block .small-title {
        font-size: 2.8rem;
    }
}

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

    /* Split i full-width sektion */
    .mw-none.pl-0 .split-content {
        padding: 0 2rem 3rem;
    }

    /* Text i split-image */
    .split-image .text-block {
        padding: 2rem;
    }

    .split-image .text-block .small-title {
        font-size: 2rem;
    }
}

/* Header / Navigation
========================================================================== */
header {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

/*header:not(.scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
} */

/* Header logo */
header:not(.scrolled) .header-logo {
    background-color: rgb(var(--white-color));
    border-radius: 50%;

}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
    margin-top: 1rem;
}

header:not(.mobile-menu) .container {
    height: var(--menu-height);
}

header:not(.mobile-menu) .header-logo {
    align-self: flex-start;
}

header:not(.mobile-menu) .header-logo img {
    padding: 1rem;
    transition: .3s ease;
}

.header-logo img {
    padding: 0.5rem !important;
}

header:not(.scrolled, .mobile-menu) .header-logo img {
    max-height: 15rem;
}

header.scrolled .header-logo img {
    padding-bottom: 0;
    padding-top: 0.8rem;
}

.mobile-menu .container {
    margin-bottom: 0.5rem;
}

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

.TemplateMenu a:hover {
    color: rgb(var(--secondary-color));
}

header:not(.scrolled, .mobile-menu) .TemplateMenu>li>a:not(:hover) {
    color: rgb(var(--black-color));
}

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

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .5);
}

.top-section .section-block {
    width: 100%;
    padding: 13rem 4rem;
}

.top-section .text-block {
    max-width: 65rem;
}

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

.top-section p {
    max-width: 65rem;
}

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

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

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

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

/* Tjanster
========================================================================== */
.split-slider .slick-list {
    width: 100%;
}

.split-slider .slick-list,
.split-slider .slick-track,
.split-slider .split-image {
    height: 100%;
}

.split-slider .slick-slide {
    margin: 0;
}

.split-slider .overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: rgba(var(--black-color), .2);
}

/* Knappar */
.split-slider .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 3rem;
    width: 2rem;
    padding: 0;
}

.split-slider .slick-prev {
    right: 9rem;
}

.split-slider .slick-next {
    right: 2rem;
}

.split-slider .slick-arrow::after {
    font-weight: 400;
    transition: .3s ease;
}

.split-slider .slick-arrow::after {
    color: rgb(var(--gray-light-color));
}

.split-slider .slick-arrow:hover::after {
    color: rgb(var(--primary-color), .8);
}

/* Dots */
.split-slider .custom_paging {
    z-index: 1;
    position: absolute;
    top: 2.9rem;
    right: 5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.split-slider .custom_paging li {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    pointer-events: none;
    color: rgb(var(--white-color), .8);
}

.split-slider .custom_paging li:not(.slick-active) {
    display: none;
}

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

    /* Knappar */
    .split-slider .slick-arrow {
        top: unset;
        bottom: 3rem;
    }

    /* Dots */
    .split-slider .custom_paging {
        top: unset;
        bottom: 2.6rem;
    }
}

/* Text-divider
========================================================================== */
.section-text-divider .section-block {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.section-text-divider .col-0 {
    width: calc(35% - 1.5rem);
    padding-right: 5rem;
}

.section-text-divider .col-1 {
    width: 65%;
    padding-left: 0;
}

.section-text-divider.bg-primary .arrow-link::after {
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 1024px) {
    .section-text-divider .section-block {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .section-text-divider .col-0 {
        width: 100%;
        padding-right: 0;
    }

    .section-text-divider .col-1 {
        width: 100%;
    }
}

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

/* Referenser
========================================================================== */
.scroll-container {
    overflow: hidden;
}

.scroll-wrapper.cards-wrapper {
    margin: 0 16rem 3rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
    margin: 0 2rem;
    transition: all .3s ease;
}

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

/* Slick dots */
.scroll-wrapper .slick-dots {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
}

.slick-dots li::before {
    content: '\f0c8';
    font-size: 1.2rem;
    color: rgb(var(--gray-color));
}

.scroll-wrapper li.slick-active::before {
    opacity: 1;
    color: rgb(var(--primary-color));
    transition: all .2s ease;
}

@media only screen and (max-width: 1300px) {
    .scroll-wrapper.cards-wrapper {
        margin: 0 4rem 3rem;
    }
}

@media only screen and (max-width: 750px) {
    .scroll-wrapper.cards-wrapper {
        margin: 0 2rem 3rem;
    }

    .scroll-wrapper.cards-wrapper .card-item {
        margin: 0 5px;
    }
}

@media only screen and (max-width: 520px) {
    .scroll-wrapper.cards-wrapper {
        margin: 0 1rem 3rem;
    }
}

/* CTA
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-evenly;
}

/* Kolumn 2 */
.section-contact .col-1 {
    max-width: 50rem;
    justify-content: center;
    padding: 0;
    border-radius: 1rem;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    overflow: hidden;
}

.section-contact .ContactSubmit:hover {
    color: rgb(var(--white-color));
    background: transparent;
}

.section-contact .ContactForm {
    padding: 3rem;
}

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

@media only screen and (max-width: 980px) {
    .section-contact .col-1 {
        max-width: 50rem;
        margin: 5rem auto 0;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 60vh;
    padding-top: var(--menu-height);
    margin-top: calc(-1 * var(--menu-height));
    text-align: center;
    background-color: rgb(var(--black-color), .67);
}

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

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

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

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

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

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

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

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

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

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

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

.footer-top p,
.footer-top a,
.social-menu li {
    font-size: 1.5rem;
    text-decoration: none;
}

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

.footer-container p,
.footer-container li {
    color: rgb(var(--white-color));
}

/* Sociala medier */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgb(var(--white-color));
}

.social-menu li {
    font-size: 1.4rem;
    margin-left: 1rem;
}


/* 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;
    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%;
    }
}

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

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

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

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

    .social-menu {
        margin-top: -7.5rem;
    }

    .social-menu li {
        margin: 0;
    }

}