/* BR Allerts */

/* typsnitt - open sans, Ubuntu*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,400;0,700;1,400;1,700&display=swap");

/* ==========================================================================
Generellt
========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

@media only screen and (hover: none) {
    *,
    *::before,
    *::after {
        background-attachment: scroll !important;
        background-position: center center;
    }
}

html {
    font-size: 62.5%;
}

body {
    background-position: center center;
    overflow-x: hidden !important;
}

body.isMobile .body-background {
    background-position: center center;
    background-size: cover;
}

/* Video background */
.fullscreen-bg-video {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.display-none {
    display: none;
}

.EditMode .display-none {
    display: block;
}

/* Layout
========================================================================== */
.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
    padding: 12rem 5rem;
}

.section-block-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Speciella paddings */
.LayoutPage .pt-0 .section-block {
    padding-top: 0;
}

.LayoutPage .pb-5 .section-block {
    padding-bottom: 5rem;
}

.LayoutPage .pb-0 .section-block {
    padding-bottom: 0rem;
}

.LayoutPage .pt-5 .section-block {
    padding-top: 5rem;
}

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

.mw-1000 .section-block .section-block-wrapper {
    max-width: 100rem;
}

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

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

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

@media only screen and (max-width: 480px) {
    .LayoutPage .section-block,
    .SubPage .LayoutPage .section-block {
        padding: 5rem 1.5rem;
    }
}

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

/* Rubriker */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.15;
    padding: 0 0 0.5em;
    color: #111;
    text-transform: normal;
}

.section-title {
    font-size: 3.2rem;
    line-height: 1.3em;
}

.small-title {
    font-size: 2.2rem;
    font-weight: 600;
    padding: 3rem 0 2rem;
}

.text-label {
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding-bottom: 1em;
}

/* Brodtext & lankar */
p {
    line-height: 1.8;
    font-size: 1.6rem;
    color: #444;
    font-family: inherit;
    font-weight: 400;
    text-decoration: none;
}

a,
li {
    line-height: inherit;
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
}

p a {
    text-decoration: underline;
    color: inherit;
    text-decoration-color: #42499B;
    position: relative;
    z-index: 0;
}

a:hover {
    text-decoration: underline;
    color: inherit;
    text-decoration-color: #e9701d;
}

/* Ovriga klasser */
.smalltext-type {
    max-width: none;
}

/* stora "ABC"-blocket */
.normaltext-type {
    max-width: 80rem;
    margin: 0 auto;
    text-align: left;
}

.small-textblock {
    width: 100%;
    max-width: 85rem;
    padding-left: 10rem;
    margin: 0 auto;
}

.text-block {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
}

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

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

@media only screen and (max-width: 550px) {
    .small-title {
        font-size: 2.1rem;
        padding: 2.5rem 0 1.5rem;
        line-height: 1.4;
    }
}

/* Knappar & lankar
========================================================================== */

.btn {
    max-width: 50rem;
    width: auto;
    box-sizing: border-box;
    padding: 1.6rem 4rem;
    border-radius: 4rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    line-height: 1em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: inline-block;
}

.btn::after {
    display: inline-block;
    content: " \2023";
    margin-left: 1rem;
    transition: all 0.4s ease;
}

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

.btn-primary,
.btn-primary:hover {
    background-color: #a1c3ec;
    border-color: #a1c3ec;
    color: #111;
}

.btn-secondary,
.btn-secondary:hover {
    background-color: #42499B;
    border-color: #42499B;
    color: #fff;
}

.btn-wrapper {
    margin-top: 3rem;
}

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

@media only screen and (max-width: 480px) {
    .btn {
        display: block;
        width: 100%;
    }

    .btn-wrapper .btn {
        margin: 1.5rem 0;
    }
}

/* Farger
========================================================================== */
/* Textfarger */
.text-white {
    color: #fff;
}

.text-primary {
    color: #a1c3ec;
}

.text-secondary {
    color: #42499B;
}

/* Bakgrunder */
.bg-darkblue .section-block {
    background-color: #42499B;
}

.bg-gray .section-block {
    background-color: #f2f2f2;
}

.linear-gradient-gray .section-block {
	background-image: linear-gradient(to bottom, rgb(255, 255, 255) 20%, #f2f2f2 20%);
}

.gradient-gray-primary .section-block  {
    background-image: linear-gradient(to bottom, rgb(255, 255, 255) 50%, #42499B 50%);
}


/* Bilder
========================================================================== */
.of-wrapper {
    position: relative;
    overflow: hidden;
}

.of-wrapper img {
    position: static;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

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

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

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    box-shadow: var(--box-shadow);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgb(0, 0, 0, 0.08);
    border-bottom: 3px solid #42499B;
}

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

.cards-7 .image-wrapper {
    position: relative;
    padding-top: 50%;
}

.cards-7 .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0);
}

.cards-7 .small-title {
    text-align: center;
    padding: 0 0 1rem 0;
}

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

@media only screen and (max-width: 580px) {
    .cards-7 .text-wrapper {
        padding: 2rem 2rem;
    }

    .cards-7 .btn-wrapper {
        margin-top: 0rem;
    }
}

/* Split Wrapper
========================================================================== */
.split-section .normaltext-type {
    max-width: none;
}

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

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

.split-content {
    width: 50%;
    padding: 10rem 7rem 10rem 0;
    text-align: left;
}

.split-content.align-center {
    align-self: center;
}

.split-wrapper.reverse .split-content {
    padding: 10rem 0rem 10rem 7rem;
}

.split-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: unset !important;
}

@supports (object-fit: cover) {
    .split-image img {
        position: relative;
        transform: none;
        top: unset;
        left: unset;
        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }
}


/* Split image med grid */
.split-images-grid {
    justify-content: space-between;
    background-color: #FFF;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .05);
    border-radius: 5px;
    padding-right: 1rem;
}

.split-images-grid .split-content {
    padding: 7rem 4rem;
    border-radius: 2px;
    width: calc(50% - 1rem);
}

.split-image-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    gap: 1rem;
    width: 50%;
    margin: -1rem 0;
}

.split-image-grid .grid-image {
    position: relative;
    width: 100%;
}

.split-image-grid>.grid-image:nth-child(1) {
    grid-column: 1 / 3;
    -ms-grid-column: 1;
    grid-row: 1 / 3;
    -ms-grid-row: 1;
}

.split-image-grid>.grid-image:nth-child(2) {
    grid-column: 2 / 3;
    -ms-grid-column: 2;
    grid-row: 1 / 2;
    -ms-grid-row: 1;
}

.split-image-grid .split-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}



@media screen and (max-width: 1000px) {
    .split-wrapper.reverse {
        flex-direction: row;
    }

    .split-wrapper.reverse .split-content,
    .split-content {
        width: 100%;
        padding: 6rem 0;
    }

    .split-image {
        width: 100%;
        padding: 0;
        max-height: 40rem;
    }
     /* 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: 550px) {
    .split-wrapper.reverse .split-content,
    .split-content {
        padding: 4rem 0;
    }
}

/* Header / Navigation
========================================================================== */

header {
    background-color: transparent;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
    box-shadow: none;
    height: 8rem;
}

header.scrolled {
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.1);
    transition: all 500ms linear;
}

header .container {
    max-width: 160rem;
    padding: 0 5rem;
}

header .container::after {
    content: "";
    display: table;
    clear: both;
}

/* Header logo */
header .header-logo {
    width: 14rem;
    padding: 0;
    line-height: 8rem;
    z-index: 11;
    display: block;
    background-color: #42499B;
    border-radius: 0 0 5px 5px;
    transition: all 500ms linear;
}

/* Nav */
nav.mainmenu ul.TemplateMenu > li {
    line-height: auto;
    height: auto;
    transition: all 500ms linear;
}

nav.mainmenu {
    text-align: center;
}


nav.mainmenu a {
    font-family: inherit;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 1rem;
    transition: all 500ms linear;
}

nav.mainmenu li:hover,
nav.mainmenu li.active {
    background-color: transparent;
}

nav.mainmenu li:hover a,
nav.mainmenu li.active a {
    color: #a1c3ec !important;
    text-decoration: none;
}

.nav-dropdown:after {
    font-size: 0.7em;
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    content: "\f0d7";
    margin-left: 7px;
    text-decoration: none;
    display: inline-block;
}

nav.mainmenu li:hover .nav-dropdown:after {
    text-decoration: none !important;
}

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

/* Media query for only showing scrolled effect above 981px */
@media only screen and (min-width: 981px) {
    .hamburger {
        display: none;
    }

    header.scrolled {
        height: 8rem;
        background-color: #42499B;
        transition: all 500ms linear;
    }

    header.scrolled nav.mainmenu ul.TemplateMenu > li {
        line-height: 8rem;
        transition: all 500ms linear;
    }

    header.scrolled nav.mainmenu a {
        color: #fff;
        line-height: 8rem;
        transition: all 500ms linear;
    }

    header.scrolled .header-logo {
        line-height: 8rem;
        transition: all 500ms linear;
    }
}

@media only screen and (max-width: 980px) {
    /* The Hamburger is by default placed on the left, use left: unset if wanted on the right side */
    .hamburger {
        position: absolute;
        left: auto;
        right: 1rem;
        z-index: 99;
        padding: 15px;
        padding-top: 10px;
    }

    .nav-languages, body.en .nav-languages.lang-eng,
    body.es .nav-languages.lang-es {
        display: block;
		right: 7rem;
        top: 1rem;
	}

    .hamburger-inner {
        top: 20px;
    }
    .hamburger-inner,
    .hamburger-inner::after,
    .hamburger-inner::before {
        background-color: #fff;
    }

    header {
        height: 6rem;
        width: 100vw !important;
        background-color: #42499B;
    }

    header .header-logo {
        width: 10rem;
        padding: 0;
        line-height: 6rem;
        float: left;
    }

    nav.mainmenu {
        width: 100vw;
        background-color: #42499B;
        text-align: left;
        box-shadow: none;
    }

    nav.mainmenu .Padding {
        border-top: none !important;
    }

    nav.mainmenu li a {
        font-size: 1.6rem;
        border-bottom: none;
        margin: 2rem 0;
        color: #fff !important;
        padding-left: 4rem;
        line-height: 5rem;
    }

    nav.mainmenu li:hover a,
    nav.mainmenu li.active a {
        color: #fff !important;
    }

    nav.mainmenu li:hover,
    nav.mainmenu li.active {
        background-color: transparent;
    }
}

/* Languages Dropdown */
.nav-languages {
    display: none;
    position: absolute;
    right: 2rem;
    top: 2rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}


/* installningar */
body.en .nav-languages.lang-eng {
    display: inline-block;
}

body.en .nav-languages.lang-es, body.en .nav-languages.lang-es {
    display: none;
}

.nav-languages.lang-es {
    display: inline-block;
}

body.es .nav-languages.lang-es {
    display: inline-block;
}

body.es .nav-languages.lang-eng, body.es .nav-languages.lang-eng {
    display: none;
}

.nav-languages .lang-drop {
    position: relative;
    display: inline-block;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.nav-languages .btn-lang {
    background: #fff;
    display: flex;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    color: #111;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    padding: 0.2rem 1rem;
    vertical-align: middle;
    text-decoration: none;
    line-height: normal;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.nav-languages .btn-lang .button-content {
    align-self: center;
    width: 3rem;
    padding: 0 !important;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    text-decoration: none;
}

.nav-languages .lang-content {
    display: none;
    z-index: 10;
    border-bottom-right-radius: 0.8rem;
    border-bottom-left-radius: 0.8rem;
}

.nav-languages .lang-drop:hover .lang-content {
    display: block;
}

.nav-languages .lang-drop:hover .lang-content .btn-lang {
    background: #f8f8f8;
}

.nav-languages .lang-drop:hover .btn-lang {
    cursor: pointer;
}

.lang-flag {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    position: relative;
    top: 0;
    overflow: hidden;
    font-size: 0;
    padding: 0 !important;
}

.flag-eng {
    background: url("/assets/images/eng.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.flag-es {
    background: url("/assets/images/spanish.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}


/* ==========================================================================
Startsida
========================================================================== */
/* top-section
========================================================================== */
.top-section {
    height: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.3),
        transparent
    );
}

.EditMode .top-section::after {
    display: none;
}

.top-section::after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 30%;
    background: url("/assets/images/wave-blue-2.svg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    left: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.page-title-wrap {
    position: static;
    transform: none;
    width: 100%;
    max-width: 160rem;
    text-align: left;
    padding: 0 5rem;
}

.page-title-innerwrap {
    max-width: 80rem;
}

.page-title-wrap h1 {
    font-size: 5rem;
    font-weight: 300;
    color: #fff;
    padding: 0 0 3rem;
    line-height: 1.2em;
}

.page-title-wrap h2 {
    font-size: 1.8rem;
    max-width: 60rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.4em;
}

.page-title-wrap .btn-wrapper {
    margin-top: 5rem;
}

@media only screen and (max-width: 1200px) {
    .page-title-innerwrap {
        max-width: 60rem;
	}
	
    .page-title-wrap h1 {
        font-size: 5rem;
    }
}

@media only screen and (max-width: 1024px) {
    .top-section::after {
        height: 12%;
    }
}

@media only screen and (max-width: 550px) {
    .top-section {
        height: auto;
    }

    .page-title-wrap {
        padding: 0 2rem;
    }

    .page-title-wrap h1 {
        font-size: 3rem;
    }
}

/* Sektion Call to action (.cta-contact)
========================================================================== */

.cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    background-color: #f2f2f2;
    padding: 4rem;
    border-radius: 3px;
}

.EditMode .cta-wrapper {
    transform: none;
}

.cta-content {
    max-width: 65rem;
    padding: 0 5rem 0 0;
}

.cta-wrapper .btn-wrapper {
    align-self: center;
    justify-content: flex-end;
    margin: 0;
    flex: 1 1 0%;
}

.cta-title {
    padding-bottom: 1rem;
}

@media only screen and (max-width: 1300px) {
    .cta-wrapper {
        transform: translateY(-1rem);
    }
}

@media only screen and (max-width: 1100px) {
    .cta-wrapper {
        flex-wrap: wrap;
    }

    .cta-content {
        padding: 0 0 2rem;
    }

    .cta-content {
        max-width: 50rem;
        padding: 0 5rem 0 0;
    }

    .cta-wrapper .btn-wrapper {
        flex: unset;
    }
}

@media only screen and (max-width: 850px) {
    .cta-wrapper {
        padding: 3rem 2rem;
    }

    .cta-content {
        max-width: 70rem;
        padding: 0 5rem 0 0;
    }

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

@media only screen and (max-width: 480px) {
    .cta-wrapper .btn-wrapper {
        flex: 1 1 0%;
    }
}

/* ==========================================================================
Undersidor - galler alla undersidor
========================================================================== */

.SubPage .top-section {
    display: none;
}

/* Hero-undersidor
========================================================================== */
.SubPage .hero .section-block {
    position: relative;
    background-color: #42499B;
    padding: 15rem 10rem;
}

.EditMode .hero .section-block::after {
    display: none;
}

.hero .section-block::after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 15rem;
    background: url("/assets/images/wave-blue-2.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center bottom;
    left: 0;
    bottom: 0;
    pointer-events: none;
    transform: scaleX(-1);
}

.hero h1 {
    color: #fff;
    text-align: left;
    padding: 0;
}

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

    .hero .section-block::after {
        height: 7.5rem;
    }
}

/* =======================================================================
Undersida galleri
========================================================================== */
.gallery-wrapper {
    padding-top: 5rem;
    display: flex;
    flex-wrap: wrap;
}

.gallery-box {
    display: flex;
    width: calc((100% / 3) - 3rem);
    margin: 1.5rem;
    max-height: 40rem;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.gallery-box:hover {
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
}

.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;
    }
}

/* =======================================================================
Undersida Services
========================================================================== */
.table-section .section-block {
    background-color: rgb(66, 73, 155,.2);
    padding: 0 5rem 5rem;
    display: flex;
    justify-content: center;
}

.table-wrapper img {
    margin-top: -5rem;
    width: 80rem;
}

/* ==========================================================================
Subpage Kontakt
========================================================================== */
.SubPage .contact-form-section .section-block {
    padding-top: 0;
}

.contact-form-section .section-block-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.contact-form-page .contact-form-section .col-0 {
    flex: 1;
    padding: 10rem 7.5rem 0 0;
}

.contact-form-page .contact-form-section .col-1 {
    position: relative;
    z-index: 1;
    top: -10rem;
    align-self: flex-start;
    width: 44rem;
    padding: 4rem 4rem 3rem;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
}

.contact-form-section .col-0 .smalltext-type {
    max-width: 60ch;
    margin-bottom: 5rem;
}

.grecaptcha-badge {
    display: none;
}

/* Contact Wrapper  */

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-card {
    display: flex;
    flex-direction: column;
    position: relative;
    width: calc(50% - 1rem);
    margin: 0;
    padding: 3rem 3rem 4rem 4rem;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-image {
    position: absolute;
    right: 3rem;
    width: 10rem;
    height: 10rem;
    border-radius: 5rem;
    overflow: hidden;
    margin-top: -5rem;
    margin-bottom: 3rem;
}

.contact-name {
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.3;
    color: #111;
}

.contact-card a {
    text-decoration: underline;
}

.contact-card a:hover {
    text-decoration: none;
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-card address {
    font-style: normal;
    margin-top: 2rem;
}

.contact-link {
    position: relative;
    display: inline-block;
    margin-right: 1.5rem;
}

.contact-link::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "";
    color: #42499B;
    display: inline-block;
    width: 2.5rem;
}

.contact-link.mail {
    display: block;
    margin-top: 1rem;
}

.contact-link.mail::before {
    content: "\f1fa";
}

.contact-link.phone::before {
    content: "\f67d";
}

.contact-link.mobile::before {
    content: "\f3ce";
}

/* Simple Contact Option  */
.simple-contact-option-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.simple-contact-option {
    width: 50%;
    text-align: left;
    margin-bottom: 2rem;
}

.simple-contact-option-link {
    position: relative;
    display: block;
    transition: all 0.3s ease;
    padding: 2rem 2rem 2rem 7rem;
}

.simple-contact-option-link:hover {
    text-decoration: none;
    background-color: hsl(213, 67%, 94%);
    transition: all 0.3s ease;
}

.contact-icon {
    display: flex;
    justify-content: center;
    width: 5rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #a1c3ec;
}

.simple-contact-text {
    font-style: normal;
    line-height: 1.5;
}

.simple-contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #42499B;
}

.simple-contact-card address {
    font-style: normal;
    margin-top: 1rem;
}

.simple-contact-link {
    position: relative;
    display: inline-block;
    margin-right: 1.5rem;
}

/* Kontaktformular */
.Contact .ContactForm div.ContactFormMessage p,
.Contact .ContactForm .ContactFormEmail p,
.Contact .ContactForm .ContactFormField p,
.Contact .ContactForm .ContactFormName p {
    color: #333;
    font-size: 1.4rem;
}

.ContactForm {
    display: flex;
    flex-wrap: wrap;
}

.contact-form-page .LayoutPage .contact-form-section .ContactFormName,
.contact-form-page .LayoutPage .contact-form-section .ContactFormEmail,
.contact-form-page .LayoutPage .contact-form-section .ContactFormField,
.contact-form-page .LayoutPage .contact-form-section div.ContactFormMessage {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
}

.contact-form-page .LayoutPage .contact-form-section .ContactForm input,
.contact-form-page .LayoutPage .contact-form-section .ContactForm textarea {
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 1em;
    height: 15rem;
}

.contact-form-page .LayoutPage .contact-form-section input:focus,
.contact-form-page .LayoutPage .contact-form-section textarea:focus {
    border-color: #42499B !important;
}

.contact-section ::placeholder {
    font-family: "Open Sans", sans-serif;
    color: #c3c3c3;
    font-weight: 400;
    font-size: 1.3rem;
}

.contact-form-page
    .LayoutPage
    .contact-form-section
    .ContactForm
    .ContactSubmit {
    width: 100% !important;
    max-width: none;
    padding: 1.6rem 4rem;
    margin: 0;
    background-color: #42499B;
    border: 2px solid #42499B;
    color: #fff;
    display: block;
    border-radius: 4rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 1.4rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    font-family: inherit;
}

.contact-form-page
    .LayoutPage
    .contact-form-section
    .ContactForm
    .ContactSubmit:hover {
    background-color: hsl(213, 67%, 38%);
    border: 2px solid hsl(213, 67%, 38%);
    color: #fff;
}

.LayoutPage .Contact .ContactForm div.ContactFormMessage p {
    margin-top: 10px;
}

@media screen and (-ms-high-contrast: active),
    screen and (-ms-high-contrast: none) {
    .contact-form-page
        .LayoutPage
        .contact-form-section
        .ContactForm
        input:not(.ContactSubmit),
    .contact-form-page .LayoutPage .contact-form-section .ContactForm textarea {
        padding: 0 !important;
    }
}

@media only screen and (max-width: 1200px) {
    .contact-form-page .contact-form-section .col-0 {
        padding: 10rem 3rem 0 0;
    }

    .contact-form-page .contact-form-section .col-1 {
        padding: 3rem 2rem 2rem;
    }

    .contact-card {
        width: 100%;
        margin-bottom: 2rem;
        padding: 3rem 2rem 3rem 3rem;
    }
}

@media only screen and (max-width: 1000px) {
    .contact-form-page .contact-form-section .col-0 {
        width: 100%;
        flex: none;
        padding: 10rem 0 0 !important;
    }

    .contact-form-page .contact-form-section .col-1 {
        width: 100%;
        top: 0;
    }

    .contact-card {
        width: calc(50% - 1rem);
    }

    .simple-contact-option {
        width: 33%;
    }
}

@media only screen and (max-width: 750px) {
    .simple-contact-option {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .contact-card {
        width: 100%;
        padding: 3rem 1rem 4rem 3rem;
    }

    .contact-wrapper::after {
        display: none;
    }

    .contact-image {
        right: 2rem;
        width: 7rem;
        height: 7rem;
        margin-bottom: 3rem;
    }
}

@media only screen and (max-width: 550px) {
    .contact-form-page .contact-form-section .col-1 {
        padding: 3rem 2rem 2rem !important;
    }
}

/* Sektion Karta (.section-map) 
========================================================================== */
.map-widget {
    height: 50rem;
}

@media only screen and (max-width: 1000px) {
    .map-widget {
        height: 30rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: #42499B;
    padding: 0;
    color: #fff;
    position: relative;
}

.footer .container {
    padding: 0 5rem;
    max-width: 160rem;
}

.footer p,
.footer a {
    text-align: left;
    font-size: 1.6rem;
    color: inherit;
}

.footer-container {
    display: flex;
    flex-direction: column;
    padding: 10rem 0 0;
    position: relative;
}

/* Footer Menu */
.footer-nav {
    width: 100%;
    margin-bottom: 10rem;
}

.footer-menu-wrapper {
    display: flex;
    list-style-type: none;
    padding-inline-start: 0;
    margin: 0;
    justify-content: center;
}

.footer-menu {
    text-align: left;
    width: 25%;
}

.footer .footer-heading {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    padding-bottom: 1em;
}

/* Footer Submenu */
.footer-submenu {
    padding-inline-start: 0;
    list-style-type: none;
}

.footer-submenu li {
    text-align: left;
}

.footer-menu-link {
    font-size: 1.6rem;
    line-height: 2em !important;
}

.footer-menu-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #6c83a0;
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    line-height: 1rem;
}

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

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

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

@media only screen and (max-width: 1024px) {
	.footer-menu-wrapper {
		justify-content: start;
	}
	
    .footer .container {
        padding: 0 2rem 0;
    }

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-menu-wrapper {
        flex-wrap: wrap;
    }

    .footer-menu {
        width: 50%;
        margin-bottom: 5rem;
    }
}

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

    .footer-nav {
        margin: 0 0 5rem;
    }

    .footer-menu {
        width: 100%;
        margin-bottom: 3rem;
    }

    .footer-bottom{
        flex-direction: column;
    }
}
