/* Inclusive Tourism */

/* Typsnitt > Acumin, Adobe Fonts. */
@import url("https://use.typekit.net/bth4slw.css");

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --section-width: 90rem;
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;

    /* 	Colors */
    --primary-color: 36, 44, 84;
    --secondary-color: 223, 186, 33;

    --white-color: 255, 255, 255;
    --gray-color: 242, 242, 242;
    --gray-light-color: 249, 249, 249;
    --accent-blue-gray-color: 184, 189, 201;

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

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

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

/* Specifika margins */
.mt-0 .section-block,
.mt-0:not(.section-wrapper) {
    margin-top: 0;
}

.mt-3 .section-block,
.mt-3:not(.section-wrapper) {
    margin-top: 3rem;
}

.mt-10 .section-block,
.mt-10:not(.section-wrapper) {
    margin-top: 10rem;
}

.mb-5 .section-block,
.mb-5:not(.section-wrapper) {
    margin-bottom: 5rem;
}

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

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

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

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

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

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

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

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

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

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

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

.pl-5 {
    padding-left: 5rem;
}

/* Specifika bredder */
.mw-500 {
    max-width: 50rem;
}

.mw-600 {
    max-width: 60rem;
}

.mw-900 .section-block-wrapper {
    max-width: 90rem;
}

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

.mw-1500 .section-block-wrapper {
    max-width: 150rem;
}

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

/* Ovrigt */
.justify-center {
    justify-content: center;
}

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

@media only screen and (max-width: 1000px) {
    .pr-0 .section-block,
    .pr-0:not(.section-wrapper) {
        padding-right: 2rem;
    }
}

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

    .mb-5 .section-block, .mb-5:not(.section-wrapper) {
        margin-bottom: 2rem;
    }
}

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

/* Rubriker */
.text-label {
    position: relative;
    padding-bottom: .9em;
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.section-title {
    padding-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

.small-title {
    padding-bottom: .5em;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(17, 17, 17);
}

.text-title {
    font-size: var(--base-size);
    font-weight: 700;
}

/* Brodtext och lankar */
p {
    font-weight: 400;
    color: #353535;
    padding-bottom: 1em;
}

a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
}

/* Styled-list */
.styled-list li::before {
    position: absolute;
    content: "\f00c";
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: -4rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 3rem;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--primary-color);
    background-color: rgba(var(--primary-color), .3);
}

.styled-list {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.styled-list li {
    position: relative;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1em;
}

/* Textblock */
.text-block {
    max-width: 100rem;
}

.text-block-center {
    margin: 0 auto;
    text-align: center;
    max-width: 80rem;
}

/* Ovriga klasser */
.text-bold {
    font-weight: 700;
}

.title {
    font-weight: 600;
}

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

.text-center {
    text-align: center;
}
.box-center{
    justify-content: center;
}

.text-shadow {
    text-shadow: 0 1rem 2rem rgb(0 0 0 / 46%);
}

/* Listor */
ul.centered-list {
    display: flex;
    justify-content: space-between;
}

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

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

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

    .text-block {
        padding: 4rem 2rem;
    }
}

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

    ul {
        padding-inline-start: 2rem;
    }
}

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

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

.btn-wrapper.flex-end {
    justify-content: flex-end;
}

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.3rem 3rem;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 8px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
}

.ContactSubmit {
    margin-top: 3rem;
}

.btn::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

.btn:hover::after {
    transform: translateX(1rem);
    transition: transform .4s ease;
}

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

.btn-primary-border {
    color: #fff;
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
}

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

.btn-white-filled {
    color: rgb(17, 17, 17);
    border: 1px solid #fff;
    background-color: #fff;
}

.ContactSubmit:hover,
.ContactSubmit:focus {
    color: #000;
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
}

.arrow-link::after {
    content: ' \f178';
    display: inline-block;
    margin-left: .5rem;
    font-family: 'Font Awesome 5 Pro';
    font-size: .7em;
    transition: transform .4s ease;
}

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

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

.circle-icon:hover {
    color: #fff;
    background-color: rgb(var(--secondary-color));
}

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

@media only screen and (max-width: 550px) {
    .btn-wrapper.flex-end {
        justify-content: center;
    }
}

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

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

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

.bg-light {
    background-color: rgba(var(--primary-color), .3);
}

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

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

.text-muted {
    color: rgba(255, 255, 255, .7);
}

.gradient-bottom-light .section-block {
    background-image: linear-gradient(to bottom, #eaecf6 50%, #FFF 50%);
}

.bg-primary *:not(.btn),
.text-white {
    color: #fff;
}

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

/* Specifika bredder */
.cards-wrapper.w-15 .card-item {
    width: calc((100% / 7) - 1rem);
    margin: .5rem;
}

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

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

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

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

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

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

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

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

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

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

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

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
}

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

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

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

.card-2-5 .card-item .small-title {
    transition: .3s ease;
}
  
.card-2-5 .card-item:hover .small-title {
    color: rgb(var(--secondary-color));
}

@media only screen and (max-width: 480px) {
    .card-2-5 .card-item {
        flex-direction: column;
    }

    .card-2-5 .card-header {
        width: 4.5rem;
        height: 4.5rem;
    }

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

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

/* Cards 3 */
.cards-3 .card-item {
    margin: 0 1rem;
    padding: 4rem;
}

.cards-3 .icon-wrapper img {
    width: auto;
    max-height: 12rem;
    padding-bottom: 3rem;
}

.cards-3 .small-title {
    border-bottom: 1px dotted rgb(var(--primary-color));
    margin-bottom: 2rem;
}

.icon-wrapper i {
    font-size: 0;
}

.icon-wrapper i::before,
.icon-wrapper i::after {
    font-size: 9rem;
    color: rgb(var(--secondary-color));
}

.icon-wrapper i::after {
    color: rgb(var(--primary-color));
    opacity: 1;
}

.cards-3 .icon-wrapper {
    margin-bottom: 3rem;
}

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

/* Cards 7 */
.cards-start {
    position: relative;
    top: -10rem;
}

.cards-7 .card-item {
    text-decoration: none;
    background: #FFF;
    overflow: hidden;
    padding: 1rem;
    border-radius: 3px;
    transition: all .2s ease;
}

.cards-7 a.card-item:hover {
    background-color: #eaecf6;
    transition: all .2s ease;
}

.cards-7 .card-item .image-wrapper {
    height: 25rem;
    overflow: hidden;
}

.cards-7 .icon-wrapper i::before,
.cards-7 .icon-wrapper i::after {
    font-size: 4rem;
}

.cards-7 .text-wrapper {
    padding: 2rem 0;
}

.cards-7 .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 1px dotted rgb(var(--primary-color));
}

/* Overflow text hidden */
.cards-7 .overflow-wrapper {
    overflow: hidden;
}

.cards-7 .overflow-wrapper .overflow-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cards-7 .overflow-wrapper p {
    padding: 0;
}

.cards-7 .arrow-link {
    padding-top: 1rem;
}

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

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

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

.split-image {
    width: 50%;
}

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

/* Speciella margins */
.split-wrapper .mt--10rem {
    margin-top: -10rem;
}

/* Speciella bredder */
.split-wrapper .w-60 {
    width: 60%;
}

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

@media screen and (max-width: 2000px) {
    .split-content {
        padding: 9rem 7rem;
    }
}

@media screen and (max-width: 1500px) {
    .split-content {
        padding: 10rem 7rem;
    }
}

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

@media screen and (max-width: 1000px) {
    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

    .split-image {
        width: 100%;
        order: 0;
    }

    .split-content {
        order: 1;
    }

    /* Speciella margins */
    .split-wrapper .mt--20 {
        margin-top: 0;
    }

    /* Split image med grid */
    .split-images-grid {
        padding: 1rem;
    }

    .split-images-grid .split-content {
        width: 100%;
    }

    .split-image-grid {
        width: 100%;
        margin: 0;
    }

    .split-image-grid .split-image {
        position: relative;
    }
}

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

    .split-content.bg-primary {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .split-wrapper.bg-primary .split-content {
        padding: 2rem;
    }

    /* Split image med grid */
    .split-images-grid .split-content {
        padding: 2rem 1rem;
    }
}

/* Grafiska element
========================================================================== */
/* Object-position */
.of-wrapper img.op-bottom-center {
    object-position: bottom center;
}   

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
}

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

.bg-image-wrapper.op-cb img {
    object-position: center bottom;
}

.bg-image-wrapper.op-cb-80 img {
    object-position: center 80%;
}

/* Parallax
========================================================================== */
.parallax {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media only screen and (hover:none) {
    .parallax {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Halvsektionsparallax */
.parallax-half {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-half .section-block {
    padding-top: 45rem;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to top, white, white);
    background-size: 100% 55rem, 100% auto;
    background-position: center top, center 55rem;
    background-repeat: no-repeat;
}


/* Responsive Table
========================================================================== */
.responsive-table {
    width: 100%;
    max-width: 110rem;
    margin: 0 auto;
    overflow: hidden;
}

.table {
    width: 100%;
    display: table;
    margin: 0;
}

.table.space-between .row {
    justify-content: space-between;
}

.row.header {
    color: #ffffff;
    background: rgb(var(--primary-color));
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.row.header:hover {
    background-color:rgb(var(--primary-color));
}

.row {
    display: table-row;
    /* background: #fff; */
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.cell {
    display: table-cell;
}

.row .cell {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
    color: #111;
    line-height: 1.2;
    font-weight: unset !important;
    border-bottom: 1px solid #eee;
    text-transform: none;
    font-weight: 600;
    letter-spacing: normal;
}

.row.header .cell {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 800 !important;
    padding-top: 19px;
    padding-bottom: 19px;
}

.row .cell:nth-child(2),
.row .cell:nth-child(3) {
    text-align: right;
}

.table,
.row {
    width: 100% !important;
}

.row:hover {
    background-color: #f8f8f8;
    cursor: default;
}


@media screen and (max-width: 550px) {
    .row.header .cell {
        font-size: 1.5rem;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
    }

    .row .cell {
        width: unset;
        font-size: 1.3rem;
        padding: 1.5rem 0.8rem;

    }
}

/* Forms
========================================================================== */
.LayoutPage .grecaptcha-badge {
    box-shadow: none !important;
    display: none !important;
}

.ContactForm p {
    color: rgb(var(--primary-color));
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem;
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm textarea {
    border: 1px solid rgb(var(--accent-blue-gray-color));
    border-radius: 4px;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    background: rgb(var(--gray-light-color));
}

.ContactForm input[type="text"]:hover,
.ContactForm input[type="email"]:hover,
.ContactForm input[type="tel"]:hover,
.ContactForm textarea {
    border: 2px solid rgba(46, 105, 255, .5);
    box-shadow: 0 0 0 2px rgba(46, 105, 255, .25);
}

/* GDPR */
.ContactForm label {
    font-size: 1.5rem;
}

.ContactForm span {
    color: red;
  }

.ContactForm input[type="checkbox"] {
    display: inline-block;
    width: auto;
    appearance: auto;
}

.field-2:not(input[type="tel"]) {
    display: none;
}

.ContactForm select {
    width: 100%;
    height: 4rem;
}

/* Sent message confirmation */
.ContactSentMessage {
    padding: 3rem 3rem 3rem 10rem;
    margin-bottom: 2rem;
    border: 1px solid rgb(var(--primary-color));
    border-radius: .5rem;
    background-color: rgba(var(--white-color), .9);
    background-image: url(/assets/images/icons/message-sent.svg);
    background-size: 4rem;
    background-position: 3rem center;
    background-repeat: no-repeat;
}

.ContactSentMessage p {
    padding: 0;
}

/* Header / Navigation
========================================================================== */
header {
    background-color: transparent;
    transition: all .2s ease;
}

header.scrolled {
    background-color: rgb(var(--white-color));
    box-shadow: 0 1rem 3rem rgba(17, 17, 17, .1);
}

header .container {
    max-width: none;
}

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

.header-logo svg {
    max-width: 20rem;
}

.header-logo a {
    display: block;
}

#inclusivetourism-logo {
    fill: white;
    transition: all .4s ease;
}

.scrolled .cls-1,
.SubPage .cls-1 {
    fill: rgb(var(--secondary-color));
}

.scrolled .cls-2,
.SubPage .cls-2 {
    fill: rgb(var(--primary-color));
}

/* nav */
/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/20/transfer/"],
body:not(.EditMode) .TemplateMenu a[href="/17/44/at-disposal/"] {
    pointer-events: none;
}

nav.mainmenu a {
    font-weight: 400;
    font-size: 1.5rem;
    color: #333;
}

nav.mainmenu a:hover:not(.TemplateMenu ul li a) {
    color: rgb(var(--secondary-color)) !important;
}

.scrolled nav.mainmenu a:hover:not(.TemplateMenu ul li a) {
    color: rgb(var(--primary-color)) !important;
}

/*.TemplateMenu li:nth-child(3) ul  {
    column-count: 2;
}*/

.TemplateMenu ul li a {
    white-space: nowrap;
    font-size: 1.3rem;
}

.TemplateMenu ul li a:hover {
    color: rgb(var(--primary-color));
    background-color: #eaecf6;
}

/* Hides Hem / Home in menu */
nav.mainmenu ul.TemplateMenu>li:first-child {
    display: none;
}

.EditMode nav.mainmenu ul.TemplateMenu>li:first-child {
    display: inline-block;
}

nav.mainmenu a {
    color: #333;
}

header:not(.scrolled) .TemplateMenu>li>a {
    color: #FFF;
}

.SubPage header:not(.scrolled) .TemplateMenu>li>a {
    color: #111;
}

/* CTA  */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-basis: 0;
    flex: 1 1 5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 3rem;
}

/* mobilmeny */
.mobile-menu .TemplateMenu ul {
    column-count: unset;
}

.mobile-menu .TemplateMenu>li>a {
    color: #000 !important;
}

header.mobile-menu .container {
    padding: .5rem 0;
}

header.mobile-menu .header-logo {
    padding-left: 1rem;
    max-width: 20rem;
}

header.mobile-menu .header-cta-wrapper .btn {
    font-size: 1.2rem;
    padding: 1rem;
}

.mobile-menu .TemplateMenu>li>a {
    --menu-height-scrolled: 5rem;
}

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

/* Top-section
========================================================================== */
.top-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 95vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2));
    margin-top: calc(-1 * var(--menu-height));
}

.top-section h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.3em;
    color: #fff;
    padding-bottom: .3em;
    text-align: center;
}

.top-section .small-title {
    font-size: 3rem;
    font-weight: 300;
}

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

@media only screen and (max-width: 1200px) {
    .top-section {
        min-height: 90vh;
    }
}

@media only screen and (max-width: 550px) {
    .top-section h1 {
        font-size: 3rem;
    }

    .top-section .btn-wrapper {
        flex-direction: column;
    }

    .top-section .btn-wrapper a {
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 330px) {
    .top-section h1 {
        font-size: 2rem;
    }

    .top-section .small-title {
        font-size: var(--base-size);
    }
}

/* ==========================================================================
Undersidor 
========================================================================== */
.SubPage nav.mainmenu a {
    color: #111;
}

.SubPage nav.mainmenu a:hover:not(.TemplateMenu ul li a) {
    color: rgb(var(--primary-color)) !important;
}


.SubPage header {
    background-color: #fff;
}

/* Hero, bakgrundsbild
========================================================================== */
.hero-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    min-height: 60vh;
    background: linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
    overflow: hidden;
}

.hero-2 .section-block {
    background-color: transparent;
    padding: 0;
}

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

.hero-2 h1 {
    font-size: 5rem;
    text-align: center;
    
}

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

@media screen and (max-width: 600px) {
    .hero-2 {
        min-height: 40vh;
    }

    .hero-2 h1 {
        font-size: 3.2rem;
    }
}

/* ==========================================================================
Undersida: Our tours > Plan your own day
========================================================================== */

/* Sektion Priser (.section-prices)
========================================================================== */
.section-price .table {
    width: 100%;/* Ta bort klick */
    body:not(.EditMode) .TemplateMenu a[href=""] {
        pointer-events: none;
    }
    max-width: 110rem;
    margin: 0 auto;
    margin-top: 3rem;
}

.section-price .row.table-heading p {
    font-weight: 800;
}

.section-price .row.table-heading p.pb-0 {
    padding-bottom: 0;
}

.section-price .row.table-heading p.pb-3 {
    padding-bottom: 3rem;
}

.section-price .row.table-heading span.text-light {
    font-weight: 300;
}

.section-price .row.table-heading:hover {
    background-color:rgb(var(--primary-color));
}

.section-price .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #eee; 
}

.section-price .row:hover {
    background-color: #f8f8f8;
    cursor: default;
}

.section-price .cell {
    width: calc(100% / 5);
    padding: 1.5rem;
    border-bottom: unset; 
}

.section-price .row .cell:not(:nth-child(1)) {
    text-align: right;
}

@media only screen and (max-width: 750px) {
    .section-price .table-heading {
        display: none;
    }

    .section-price .cell {
        width: 100%;
    }

    .section-price .cell:before {
        content: attr(data-title);
        display: block;
        font-size: 1.3rem;
        color: #666;
        text-transform: uppercase;
        text-align: left;
        margin-bottom: 13px;
    }

    .section-price p {
        text-align: left;
    }
}

/* ==========================================================================
Undersida: Transfer > Resp undersida
========================================================================== */
.section-vehicle .cards-wrapper {
    margin-left: -.5rem;
    margin-right: -.5rem;
    margin-top: .5rem;
}

@media only screen and (max-width: 1000px) {
    .section-vehicle .split-wrapper {
        flex-direction: column-reverse;
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 750px) {
    .section-vehicle .cards-wrapper {
        margin: 0;
    }
}

/* ==========================================================================
Undersida: Vehicles > Resp undersida
========================================================================== */
.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.gallery-box {
    display: flex;
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
    max-height: 20rem;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.gallery-box:hover {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.gallery-box.w-100 {
    width: 100%;
}

.gallery-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-box img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1000px) {
    .gallery-box {
        display: flex;
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
        max-height: 40rem;
    }
}

@media only screen and (max-width: 580px) {
    .gallery-box {
        display: flex;
        width: 100%;
        margin: 1rem;
        max-height: 40rem;
    }
}

 .section-limousine .cards-wrapper.w-25 .card-item {
    width: calc((100% / 3) - 6rem);
    margin: 3rem;
}

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

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

/* ==========================================================================
Undersida: Contact us
========================================================================== */

/* Split for kontaktformular 
========================================================================== */
.section-contact .col-0 {
    display: flex;
    align-items: center;
}

.section-contact .col-1 {
    display: flex;
    align-items: center;
    background-color: rgb(var(--primary-color));
    padding: 4rem;
}

.section-contact .col-1 .col-wrapper {
    width: 100%;
}

.section-contact .ContactForm p {
    color: #fff;
}

.section-contact .ContactSubmit:not(:hover, :focus) {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}



@media only screen and (max-width:1000px) {
    .contact-reverse .section-block-wrapper {
        flex-direction: column-reverse;
    }

    .section-contact .ContactForm {
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 1310px) {
    .section-contact .section-block-wrapper {
        flex-direction: column;
    }

    .section-contact .col-block {
        width: 100%;
        display: block;
    }

    .section-contact .col-0 {
        padding: 0;
        order: 1;
    }

    .section-contact .col-0 .image-wrapper {
        max-height: 60rem;
    }
}

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

/* ==========================================================================
Footer
========================================================================== */
.footer-container {
    max-width: none;
    padding: 0 2rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8rem 2rem 4rem 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

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

.footer-menu:first-child {
    width: 10%;
}

.footer-menu:nth-child(2) {
    width: 30%;
}

.footer img {
    max-width: 100%;
    width: 20rem;
}

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    min-width: 15rem;
}

.footer a:not(.btn, .circle-icon) {
    color: inherit;
}

.footer a:not(.btn):hover {
    color: rgb(var(--primary-color));
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2rem;
}

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

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
}


@media only screen and (max-width: 1200px) {
    /* Footer top */
    .footer-menu,
    .footer-menu:nth-child(1),
    .footer-menu:nth-child(2) {
        width: 48%;
    }
}

@media only screen and (max-width: 750px) {
    /* Footer top */
    .footer-top {
        padding-left: 0;
        padding-right: 0;
        padding-top: 2rem;
    }

    .footer-menu,
    .footer-menu:nth-child(1),
    .footer-menu:nth-child(2) {
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 2rem 0;
    }

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }

    .footer img {
        max-width: 10rem;
    }
}

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

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}