/* Bridgeskolan */

/* Typsnitt – Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500;600;700&display=swap");

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

    /* 	Colors */
    --primary-color: 20, 107, 79;
    --primary-dark-color: 0, 66, 45;
    --primary-light-color: 62, 168, 106;
    --black-color: 0, 0, 0;
    --gray-dark-color: 51, 51, 51;
    --gray-color: 122, 122, 122;
    --gray-light-color: 250, 250, 250;
    --white-color: 255, 255, 255;

    /* farger till enskild kurs*/
    --accent-pink-color: 231, 22, 54;
    --accent-orange-color: 249, 143, 30;
    --accent-yellow-color: 251, 238, 2;
    --accent-brown-color: 102, 61, 30;
    --accent-blue-color: 31, 103, 166;
    --accent-silver-color: 183, 188, 183;
    --accent-purple-color: 146, 37, 142;
    --accent-black-color: 35, 30, 32;
    --accent-red-color: 255, 0, 0;
    --accent-red-dark-color: 255, 0, 0, 0.796;
    --accent-red-light-color: 244, 81, 81, 0.796;
    --accent-red: 255, 0, 0;
    --accent-green-color: 0, 128, 0;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1230;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
}

/* Layout
========================================================================== */
.section-block {
    padding: 7rem 4rem;
}

/* Paddings */
.p-0 .section-block,
.pa-0 {
    padding: 0;
}

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

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

.pt-0 .section-block {
    padding-top: 0;
}

.pt-2 {
    padding-top: 2rem;
}

.pb-0 {
    padding-bottom: 0rem !important;
}

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

.pb-0-2 {
    padding-bottom: 0.2rem;
}

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

.pb-6 {
    padding-bottom: 6rem;
}

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

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Speciella margins */

.mt-2 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 5rem !important;
}

.mt--10 {
    margin-top: -10rem;
}

.ml-1 {
    margin-left: 1rem;
}


.ml-2 {
    margin-left: 2rem;
}

.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,
    .p-4 .section-block {
        padding: 5rem 2rem;
    }
}

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

/* Rubriker */
.text-label {
    font-size: 1.6rem;
    color: rgb(var(--primary-color));
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 1rem;
}

.section-title {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 400;
    padding-bottom: 3rem;
}

.small-title {
    padding-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
}

h2,
h3 {
    color: rgb(var(--gray-color));
    margin: 0;
}

/* Brodtext och lankar */
p {
    font-size: var(--base-size);
    font-weight: 300;
    color: rgb(var(--gray-dark-color));
    padding-bottom: 0.8em;
}

a {
    text-decoration: none;
    font-size: var(--base-size);
    color: var(--primary-color);
    font-weight: 600;
}

/* Listor */
.styled-list {
    list-style: none;
}

.styled-list li {
    position: relative;
    padding-left: 0.5rem;
}

.styled-list li::before {
    content: "\f111";
    position: absolute;
    top: 50%;
    left: -2rem;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: "Font Awesome 5 Pro";
    transform: translateY(-50%);
}



/* lista med enskilda farger */
.styled-list.pink li::before {
    color: rgb(var(--accent-pink-color));
}

.styled-list.green li::before {
    color: rgb(var(--primary-color));
}

.styled-list.orange li::before {
    color: rgb(var(--accent-orange-color));
}

.styled-list.yellow li::before {
    color: rgb(var(--accent-yellow-color));
}

.styled-list.brown li::before {
    color: rgb(var(--accent-brown-color));
}

.styled-list.purple li::before {
    color: rgb(var(--accent-purple-color));
}

.styled-list.black li::before {
    color: rgb(var(--accent-black-color));
}

.styled-list.silver li::before {
    color: rgb(var(--accent-silver-color));
}

.styled-list.blue li::before {
    color: rgb(var(--accent-blue-color));
}

/* ovriga klasser */
.text-bold {
    font-weight: 600;
}

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

.text-block {
    max-width: 77rem;
}

.text-block-center {
    margin: 0 auto;
}

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

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

.box-center {
    margin: auto;
}

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

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

@media only screen and (max-width: 610px) {
    .f-1-5 {
        font-size: 1.5rem !important;
        margin-bottom: 0.2rem !important;
    }
}

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

    p,
    li {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

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

.btn-wrapper .btn {
    margin: 5px;
}

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

.btn,
.SubscribeForm input[type="submit"],
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.8rem 3rem;
    font-weight: 400;
    font-size: 1.5rem;
    border-radius: 0.8rem;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn-sub {
    justify-content: flex-start;
}

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

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

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

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

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

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

.btn-red {
    background: rgb(var(--accent-red-dark-color));
    border: 1px rgb(var(--accent-red-dark-color));
}

.btn-red:hover {
    background: rgb(var(--accent-red-light-color));
    border: 1px rgb(var(--accent-red-dark-color));
}

.SubscribeForm input[type="submit"] {
    display: block;
    cursor: pointer;
    border: 1px solid rgb(var(--primary-light-color));
    background-color: rgb(var(--primary-light-color));
    color: rgb(var(--white-color));
}

.SubscribeForm input[type="submit"]:hover,
.SubscribeForm input[type="submit"]:focus {
    background-color: transparent;
}

/* Pulse btn */
.pulse-btn {
    box-shadow: 0 0 0 0 rgb(var(--primary-color));
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(var(--primary-color), 0);
    }
}

@-moz-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(var(--primary-color), 0);
    }
}

@-ms-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(var(--primary-color), 0);
    }
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(var(--primary-color), 0);
    }
}

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

    .btn-wrapper {
        display: block;
    }

    .btn-wrapper .btn {
        margin-bottom: 1rem;
        max-width: 25rem;
    }
}

/* Speciella lankar */
.arrow-link {
    padding-right: 1rem;
    font-weight: 700;
}

.arrow-link::after {
    content: " \f178";
    display: inline-block;
    margin-left: 0.5rem;
    font-family: "Font Awesome 5 Pro";
    transition: transform 0.3s ease;
}

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

.arrow::after {
    content: " \f178";
    display: inline-block;
    margin-left: 0.5rem;
    font-family: "Font Awesome 5 Pro";
    transition: transform 0.3s ease;
}

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

/* Styled lank */
.styled-link {
    font-weight: 700;
    margin-top: 1rem;
    text-transform: uppercase;
    font-size: 1.5rem;
}

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

/* Bakgrundsfarger */

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

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

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

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

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

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

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

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

.text-grey {
    color: rgb(var(--gray-color)) !important;
}

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

.green-text {
    color: rgb(var(--accent-green-color)) !important;
}

.text-red {
    color: rgb(var(--accent-red)) !important;
}

.text-underlined-red {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--accent-red));
}

.text-orange {
    color: rgb(var(--accent-orange-color)) !important;
}

.text-yellow {
    color: rgb(var(--accent-yellow-color)) !important;
}

.text-blue {
    color: rgb(var(--accent-blue-color)) !important;
}

/* Grafiska element */

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

/* Borders */
.br-1 {
    border-radius: 1rem;
}

.border {
    border-bottom: 1px solid rgb(var(--black-color), 0.2);
    margin-bottom: 2rem;
}

.no-border {
    border-bottom: none !important;
}

/*Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    margin-top: calc(-1 * var(--menu-height));
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0) 100%);
}

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

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

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

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

.split-image {
    width: 50%;
}

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

/* Paddings */
.split-content.pl-0 {
    padding-left: 0;
}

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

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

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

    .split-content {
        padding: 0 0 3rem 0;
    }
}

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

.cards-wrapper.flex-end {
    justify-content: flex-end;
    flex-wrap: nowrap;
}

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

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

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

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

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

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

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

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

/* Cards 2 */
.cards-2 .card-item {
    padding: 2rem;
    display: flex;
    align-items: center;
}

.cards-2 .icon-wrapper,
.cards-2 .date-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    padding: 2rem;
    margin-right: 2rem;
    text-align: left;
    border-radius: 2rem;
    background-color: rgb(var(--primary-color));
}

.cards-2 .icon-wrapper i {
    color: rgb(var(--white-color));
    font-size: 3.5rem;
}

.cards-2 .date-wrapper p {
    padding-bottom: 0;
    font-weight: 600;
}

.cards-2 .small-title {
    padding: 0;
}

/* Alt-design kontakt sida */
.cards-2.alt-2 .card-item {
    display: block;
    border: 1px solid rgb(var(--primary-color));
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.cards-2.alt-2 .card-item:hover {
    background-color: rgb(var(--primary-dark-color));
}

.cards-2.alt-2 .card-item:hover .small-title {
    color: rgb(var(--white-color));
}

.cards-2.alt-2 .card-item .small-title {
    font-size: 2rem;
}

.cards-2.alt-2 .icon-wrapper {
    width: 5rem;
    height: 5rem;
    padding: 2rem;
    margin-bottom: 2rem;

}

.cards-2.alt-3 .icon-wrapper {
    width: 5rem;
    height: 5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    margin: auto;
}

.cards-2.alt-2 .icon-wrapper i {
    font-size: 2.5rem;
}

@media only screen and (max-width: 375px) {
    .cards-2.alt-2 .card-item .small-title {
        font-size: 1.8rem;
    }
}

/* Card 3-1 */
.card-3-1 .image-wrapper {
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
}


/* Card 3-4 */
.card-3-4 .card-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    border-radius: 5px;
}

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

.card-3-4 .image-wrapper {
    width: 20rem;
    border-radius: 5px;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
}

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

@media only screen and (max-width: 580px) {
    .card-3-4 .card-item {
        flex-wrap: wrap;
    }

    .card-3-4 .card-body {
        flex: unset;
        width: calc(100% - 3rem);
        padding: 1rem 0 0 1rem;
    }
}

/* Cards 7*/
.cards-7 .card-item {
    text-decoration: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cards-7 .image-wrapper {
    height: 30rem;
    overflow: hidden;
}

.cards-7 .btn {
    padding: 1rem 2rem;
}

.cards-7 .text-wrapper {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    flex: 1;
}

.cards-7 .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 0.1rem solid rgb(var(--black-color), 0.2);
    display: flex;
    justify-content: space-between;
}

/* Header / Navigation
========================================================================== */
header {
    background-color: transparent;
}

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

header .container {
    max-width: none;
}

/* Header logo */
header .header-logo a {
    height: 6.6rem;
    width: 18rem;
    background-image: url('/assets/images/bride-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

header.scrolled .header-logo a {
    padding: 5px 0;
    background-image: url('/assets/images/logo-bride-black.png');
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.header-logo a {
    font-size: 2rem;
    line-height: 1.2;
    color: rgb(var(--white-color));
}

header.scrolled .header-logo a {
    color: rgb(var(--primary-color));
}

/* Top header */
/* .top-header {
    width: 100%;
    max-width: var(--section-width);
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    transition: .3s ease;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.scrolled .top-header {
    height: 0;
}

.top-header p {
    font-size: 1.5rem;
    align-self: center;
} */

/* nav */
.EditMode .TemplateMenu ul {
    max-height: 60rem;
    overflow-y: scroll;
}

nav.mainmenu {
    flex-grow: 1;
    padding-left: 2rem;
}

.TemplateMenu a {
    font-weight: 400;
    font-size: 1.5rem;
    color: rgb(var(--white-color));
}

.TemplateMenu ul a,
.mobile-menu .TemplateMenu a {
    color: rgb(var(--black-color));
}

header.scrolled .TemplateMenu a {
    color: rgb(var(--gray-dark-color));
}

.TemplateMenu>li:first-child {
    display: none;
}

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

nav.mainmenu a:hover {
    color: rgb(var(--primary-light-color));
}

/* Dropdown */
.TemplateMenu>li>ul {
    width: 23rem;
}

/* mobilmenyn */
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    background-color: rgb(var(--white-color));
}

header.scrolled .hamburger-inner,
.hamburger.is-clicked .hamburger-inner,
header.scrolled .hamburger-inner::before,
.hamburger.is-clicked .hamburger-inner::before {
    background-color: rgb(var(--primary-color));
}

header.scrolled .hamburger-inner::after {
    color: rgb(var(--primary-color));
}

.hamburger.is-clicked .hamburger-inner::after {
    color: transparent;
    background-color: rgb(var(--primary-color));
}

.mobile-menu .header-logo a {
    font-size: 1.5rem;
}

.mobile-menu nav.mainmenu,
.mobile-menu .TemplateMenu ul {
    padding-left: 0;
}

.mobile-menu .TemplateMenu ul>li>a {
    background-color: rgb(var(--primary-color), 0.1);
    font-size: 1.35rem;
    padding-left: 3rem;
}

.hamburger-inner::after {
    content: 'Meny';
    color: rgb(var(--white-color));
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
}

@media screen and (max-width: 1300px) {
    /* Nav */
    .TemplateMenu a {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 440px) {
    /* Header logo */
    header .header-logo a {
        width: 16rem;
        background-size: auto 4.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 95vh;
    margin-top: -11rem;
    background: linear-gradient(90deg,
            rgb(var(--black-color), 0.6) 20%,
            rgb(var(--black-color), 0.6));
    overflow: hidden;
    padding-top: 10rem;
}

.top-info-box {
    background: rgb(255, 255, 255);
    max-width: 56rem;
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 2rem;
}

.top-info-box p {
    color: rgb(var(--primary-color));
    font-size: 1.7rem;
    padding-bottom: 0;
}

.top-section h1 {
    font-weight: 900;
    font-size: 5rem;
    line-height: 1.2;
    color: rgb(var(--white-color));
    padding-bottom: 2rem;
}

.top-section .text-block {
    max-width: 60ch;
}

.top-section .text-red {
    max-width: 50rem;
}

.top-section .rotate {
    transform: rotate(-30deg);
    display: inline-block;
    font-style: italic;
    font-size: 3.5rem;
    position: relative;
    top: -2rem;
    right: -1rem;
    padding: 0;
}

.top-section .btn-wrapper {
    align-items: center;
}

.btn-top-section {
    min-width: 15rem;
}

/* DROPDOWN KNAPP */
.topsection-cta-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.topsection-cta-wrapper li {
    margin: 0;
}

.dropdown-list {
    position: relative;
    cursor: pointer;

}

.dropdown-list .btn {
    padding: 1.3rem 3rem;
}

.dropdown-list ul {
    display: none;
    position: absolute;
    width: calc(100%);
    padding: 0;
    text-align: center;
    list-style: none;
}

.dropdown-list.show ul {
    display: block;
}

.dropdown-list ul .btn {
    width: 100%;
    padding: 1rem;
    max-width: 20rem;
}


@media only screen and (max-width: 950px) {
    .top-section .btn {
        width: calc((100% / 2) - 2rem);
        margin: 1rem;
    }

    .top-section .btn-wrapper {
        justify-content: flex-start;
    }

    .top-section .arrow-link {
        margin-left: 0rem;
        margin-top: 1rem;
    }

    .top-section h1 {
        font-size: 3.5rem;
    }

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

@media only screen and (max-width: 600px) {
    .top-section {
        height: calc(100vh + 3rem);
        align-items: flex-start;
    }

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

    .top-section h1 {
        font-size: 4rem;
        line-height: 1.1;
        max-width: 40rem;
    }

    .top-section .btn {
        margin: 1rem 0;
        font-size: 1.5rem;
    }

    .top-section p,
    .top-section a,
    .top-section .text-red {
        line-height: 1.3;
    }

    .schema-link.pl-2 {
        padding-left: 0;
    }

    .topsection-cta-wrapper {
        display: block;
    }

    .dropdown-list ul .btn {
        max-width: none;
    }


    .top-section .arrow-link {
        margin-left: 0rem;
    }

    .top-section .rotate {
        transform: rotate(0deg);
        top: 0rem;
        right: 0rem;
    }
}

@media only screen and (max-width: 480px) {
    .top-section .btn-wrapper {
        justify-content: center;
        text-align: center;
    }
}


/* section-aktuellt

.section-aktuellt .cards-7 .card-item {
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
    position: relative;
}

.section-aktuellt .cards-7 .card-item .text-wrapper {
    padding: 4rem;
}

.section-aktuellt .badge {
    z-index: 1;
    position: absolute;
    right: 0;
    width: auto;
    top: 2rem;
    padding: 1.5rem;
    background-color: rgb(var(--primary-color));
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
}

.section-aktuellt .text-label {
    padding: 0;
} */

/* Karta
========================================================================== */
.section-map {
    font-size: 0;
}

.section-map iframe {
    max-block-size: 45rem;
}

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

/* Header
========================================================================== */
.hero {
    background-color: rgb(var(--black-color), 0.4);
    margin-top: calc(-1 * var(--menu-height));
}

.hero.bg-primary-dark {
    background-color: rgb(var(--primary-dark-color));
    margin-top: calc(-1 * var(--menu-height));
}

.hero .section-block {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    min-height: 35vh;
    padding: 2rem 5rem;
}

.hero .section-block .col-0 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

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

.hero h1 {
    /*padding-bottom: 0;*/
    font-weight: 900;
    font-size: 6rem;
}

.hero p {
    padding-bottom: 0rem;
}

.hero .of-wrapper.top img {
    object-position: center 15%;
}

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

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

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

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

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero .section-block {
        min-height: 45vh;
    }

    .hero p {
        font-size: 1.5rem;
    }
}

/* andra hero - andra nivan
=========================================================================  */
.hero.hero-2 {
    background-color: rgb(var(--primary-dark-color));
}

/* ==========================================================================
Undersida: Terminskurser
========================================================================== */

.section-course .text-wrapper {
    margin: 2rem 0 2rem;
    padding: 3rem 3rem 1rem;
    border-radius: 1rem;
}

.section-course .text-wrapper.flex {
    display: flex;
    justify-content: space-between;
}

.section-course .text-wrapper li {
    font-weight: 300;
    color: rgb(var(--gray-color));
}

.section-course .text-wrapper ul {
    padding-inline-start: 3rem !important;
}

.section-course .text-wrapper img {
    width: 25rem;
    margin-top: 0rem;
}

.text-wrapper2 {
    padding-right: 0 !important;
}

.section-course .text-wrapper2 img {
    width: 22rem;
    padding: 2rem;
}

.book-wrapper {
    margin: auto;

}

.course-heading {
    display: flex;
}

.teach {
    font-weight: 500;
    color: rgb(var(--gray-color));
    padding-left: 2rem;
}

.text-column .layout-2 .col-1 {
    align-self: center;
}

/* Special for knapparna i kurserna */
.section-all-courses .cards-7 .btn {
    min-width: 13rem;
}

.course-full {
    position: relative;
    left: 2rem;
}

.course-full h2 {
    position: absolute;
    font-size: 4rem;
    z-index: 1;
    -webkit-transform: rotate(30deg);
    top: -100px;
    left: 200px;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}


/* Farger for terminskurser */

/* Bridge A */
.styled-list.bridge-purple li::before {
    color: rgb(104, 46, 124);
}

.text-purple {
    color: rgb(104, 46, 124);
}

.styled-list.bridge-blues li::before {
    color: rgb(38, 60, 116);
}

.text-blues {
    color: rgb(38, 60, 116);
}

li.blue::marker {
    color: rgb(44, 180, 212);
}

.styled-list.bridge-light-blue li::before {
    color: rgb(44, 180, 212);
}

.text-light-blue {
    color: rgb(44, 180, 212);
}

.styled-list.bridge-light-green li::before {
    color: rgb(12, 161, 94);
}

.text-light-green {
    color: rgb(12, 161, 94);
}

.styled-list.bridge-light-yellow li::before {
    color: #e7cf5c;
}

.text-light-yellow {
    color: #e7cf5c;
}

.styled-list.bridge-primary li::before {
    color: rgb(20, 107, 79);
}

.styled-list.bridge-orange li::before {
    color: rgb(204, 94, 41)
}

.text-orange {
    color: rgb(204, 94, 41)
}

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

    .section-course .layout-2 .col-0,
    .section-course .layout-2 .col-1 {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .section-course .text-wrapper img {
        width: 10rem;
        margin-top: 0rem;
    }

    .section-course .text-wrapper img {
        margin-top: 0rem;
    }

    .section-course .text-wrapper {
        padding: 2rem;
    }

    .section-course .text-wrapper.flex ul {
        width: 130%;
    }

    .course-heading {
        flex-direction: column;
    }
}

@media only screen and (max-width: 500px) {
    .section-course .text-wrapper.flex {
        flex-direction: column-reverse;
        overflow: hidden;
    }

    .section-course .text-wrapper img {
        margin-bottom: 2rem;
    }

    .course-full h2 {
        left: 100px;
    }
}

@media only screen and (max-width: 425px) {
    .course-full h2 {
        left: 50px;
        font-size: 3rem;
    }
}

/* ==========================================================================
Undersida: Fredagsgodis
========================================================================== */
.hero-text {
    position: relative;
    bottom: -7rem;
    padding: 3rem;
    border-radius: 5px 5px 0 0;
    max-width: 40rem;
    margin: 0 0 0 auto;
}

@media only screen and (max-width: 1024px) {
    .hero-text {
        bottom: -5rem;
    }
}

@media only screen and (max-width: 580px) {
    .hero-text {
        bottom: -5rem;
    }
}

/* ==========================================================================
Undersida: Kursschema - dold sida
========================================================================== */

.section-calendar .section-block {
    display: flex;
    justify-content: center;
}

.section-calendar iframe {
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
    border: none !important;
    padding: 3rem;
    background-color: rgb(var(--white-color));
    border-radius: 2px;
    margin: 0 auto;
    width: 100rem;
    max-width: 100%;
    position: relative;
    top: -5rem;
}

.cover-frame {
    height: 5rem;
    width: 16rem;
    background-color: rgb(var(--primary-color));
    margin-left: auto;
    position: relative;
    top: -12rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding: 1rem;
    padding-top: 7px;
}

.cover-frame p {
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .section-calendar iframe {
        width: 70rem;
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 550px) {
    .cover-frame {
        top: -11rem;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .small-title {
    font-size: 1.8rem;
    word-break: break-all;
}

/* Karta + nyhetsbrev
========================================================================== */
.map-news-letter {
    display: flex;
}

.map-wrapper {
    flex: 1 1 auto;
    padding-right: 2rem;
}

.news-letter {
    width: 65rem;
    background-color: #f1f1f1;
    padding: 4rem 0 0;
    position: relative;
    border-radius: 5px;
}

.paloma-body .text-wrapper {
    max-width: 55rem;
}

/*Nyhetsbrev*/
.paloma-body,
#palomaFrame body {
    margin: 0;
    padding: 0;
    background-color: transparent;
}

#palomaFrame .container {
    margin: 0;
}

.SubscribeForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 550px;
    margin: 50px auto 0;
    width: 98% !important;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 50px -30px rgb(0 0 0);
    -moz-box-shadow: 0 10px 50px -30px rgba(0, 0, 0, 1);
    box-shadow: 0 10px 50px -30px rgb(0 0 0);
    border-radius: 0 0 0 0;
    padding: 15px 15px 15px 15px;
    border: 1px solid #e6e6e6;
}

.SubscribeFormField {
    width: 100%;
    margin: 0 0 15px;
    padding: 5px 10px 10px;
    border-radius: 3px;
    background-color: rgb(var(--white-color));
    border: 1px solid #e6e6e6;
}

.SubscribeForm label {
    position: relative;
    font-size: 14px;
    color: rgb(var(--gray-dark-color));
}

.SubscribeForm input[type="text"] {
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 10px 0;
}

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

    .section-paloma .section-block {
        padding: 0;
    }

    .map-news-letter {
        flex-wrap: wrap;
    }


    .map-wrapper {
        width: 100%;
        height: 40rem;
        padding: 0 0 2rem;
        flex: none;
    }

    .news-letter {
        width: 100%;
        border-radius: 0;
        padding: 4rem 2rem 0;
    }

    .map-news-letter {
        display: block;
    }
}

/* ==========================================================================
Undersida: Anmlaningsformular
========================================================================== */
.section-submission .section-block-wrapper {
    max-width: 70rem;
}

/* Formular */
.ContactForm p {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(var(--primary-color));
}

.asterisk p:after {
    content: "*";
    font-size: 1.5rem;
    margin-left: 6px;
    color: red;
}

/* Bekraftelseruta */
.ContactSentMessage {
    padding: 1rem 1rem 1rem 7rem;
    margin-bottom: 2rem;
    border-radius: .5rem;
    background-color: rgba(var(--primary-color), .2);
    background-image: url(/assets/images/icons/message-sent.svg);
    background-size: 4rem;
    background-position: 1.5rem center;
    background-repeat: no-repeat;
}

.ContactSentMessage p {
    padding: 0;
}

/* ==========================================================================
Undersida Kalender
========================================================================== */
/* Taggar */
.tags-heading {
    display: none;
}

.tag {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 0.8rem 0.8rem 0 0;
    cursor: pointer;
    transition: .3s ease;
    margin-bottom: 3rem;
}

.tag:hover,
.tag.tag-picked {
    background: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

.iframe-wrapper {
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
    background-color: rgb(var(--white-color));
    padding: 2rem;
    border-radius: 2rem;
    max-width: 100rem;
    margin: auto;
}

.responsive-iframe-container iframe,
.vresponsive-iframe-container object,
.vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 20rem;
    height: 0;
}


/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--primary-dark-color));
    color: rgb(var(--white-color));
}

.footer-container {
    padding: 0 2rem;
    margin: 0 auto;
}

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

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

.footer-menu-large {
    width: 45%;
    align-self: center;
}

.footer iframe {
    border-radius: 3px;
}

.footer p,
.footer li,
.footer a {
    font-weight: 300;
    font-size: 1.7rem;
    color: rgb(var(--white-color));
}

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
    font-weight: 600;
    color: rgb(var(--primary-light-color));
}

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

.footer em {
    width: 3rem;
}

.footer a:hover {
    text-decoration: underline;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
}

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
}

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

/* WebbEss Stamp */
.webbess-stamp {
    min-width: 20rem;
}

.webbess-stamp a {
    padding: 0;
    font-size: 1.3rem;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

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

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

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

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

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

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

    .webbess-stamp a {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
}

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

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

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