:root {

    /* Colors */
    --light-teal: #009792;
    --finsam-teal: #008481;
    --finsam-yellow: #fcc233;

    /* Override BS buttons */
    --bs-btn-active-bg: #FFFFFF;
    --bs-btn-active-border-color: var(--finsam-teal);
    --bs-btn-active-color: var(--finsam-teal);
}

/* 
-----------------------------------------
BASE
-----------------------------------------
*/

::selection {
    background-color: #000000;
    color: #fff;
}

.bg-white {
    background-color: #fff !important;
}

.txt-white {
    color: #fff;
}

.scroll-to {
    display: block;
    position: relative;
    top: -112px;
    visibility: hidden;
}

a, a:link, a:active {
    color: var(--finsam-teal);
    transition: color ease 0.2s;
    font-weight: 400;
    text-underline-offset: 0.2em;
}

a:focus-visible {
    outline: 3px dotted var(--finsam-teal);
    color: var(--finsam-teal);
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: #FFFFFF;
    color: #000000;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
        color: #000000;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
    outline: 3px dotted var(--finsam-teal);
    background-color: transparent;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: none;
}

ul {
    padding-left: 1rem;
}

a:hover {
    color: #000000;
}

img {
    max-width: 100%;
}

figure {
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}

body, p, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 0.964rem + 0.152vw, 1.125rem);
    color: #000;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

b, strong {
    font-weight: 900;
}

p strong {
    font-weight: 500;
}

h1 {
    font-family: 'Staatliches', sans-serif;
    font-family: 'Staatliches', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Staatliches', sans-serif;
    font-size: 1.5rem;
    margin-bottom: .5rem;
    margin-top: 3rem;
}

h3 {
    font-family: 'Staatliches', sans-serif;
    font-size: 1.25rem;
    margin-bottom: .25rem;
    margin-top: 1.5rem;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    margin-bottom: .25rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
}


h1 + h2, p + h2, ul + h2, p + h3, ul + h3 {
    margin-top: 2rem;
}

h2 + h3 {
    margin-top: 1.5rem;
}

p.ingress {
    font-weight: 500;
    font-size: 1.125rem;
}

.max-width-300 {
    max-width: 300px;
}

.bg-green {
    background-color: var(--finsam-teal);
}

.bg-green-25 {
    background-color: rgba(0, 151, 146, 0.25);
}

.bg-yellow {
    background-color: var(--finsam-yellow);
}

.bg-white {
    background-color: #FFFFFF;
}


@media screen and (min-width: 576px) {

    h1 {
        font-size: 1.875rem;
    }
}

@media screen and (min-width: 992px) {

    h1 {
        font-size: 2.125rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

}


@media screen and (min-width: 1700px) {

    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    p.ingress {
        font-size: 1.25rem;
    }
}

article h1 {
    font-size: 1.75rem;
    font-weight: 700;
}

article h2 {
    font-weight: 700;
}


article p:last-child {
    margin-bottom: 0;
}

article p.ingress {
    font-size: 1.25rem;
}

@media screen and (min-width: 992px) {

    article h1 {
        font-size: 2rem;
        
    }

    article h2 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1700px) {

    article h1 {
        font-size: 2.25rem;
    }

    article h2 {
        font-size: 1.75rem;
    }

    article p.ingress {
        font-size: 1.375rem;
    }
}

/* ---------- Padding x space ---------- */

.padding-x-space {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .padding-x-space {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .padding-x-space {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (min-width: 1700px) {
    .padding-x-space {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}


/* ---------- Padding y space ---------- */

.padding-y-space {
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: .5s;
}

@media (min-width: 768px) {
    .padding-y-space {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .padding-y-space {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media (min-width: 1700px) {
    .padding-y-space {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* ---------- Button ---------- */

a.btn, button.btn {
    display: inline-block;
    font-size: 1;
    font-weight: 500;
    background-color: var(--finsam-teal);
    padding: 0.75em 2em;
    color: #FFF;
    transition: all ease 0.2s;
    border-radius: 0;
    border: 2px solid var(--finsam-teal);
    text-transform: uppercase;
}

a.btn:hover,
a.btn:focus,
a.btn:active {
    background-color: #FFFFFF;
    outline: none;
    box-shadow: none;
    color: var(--finsam-teal);
    border: 2px solid var(--finsam-teal);
}

a.btn:focus-visible {
    border: 2px solid #FFFFFF !important;
    outline: 3px dotted var(--finsam-teal);
}

a.btn-white {
    color: #FFFFFF;
    border-color: #FFFFFF;
    background: transparent;
}

a.btn-white:hover {
    color: #9D8955;
    border-color: #9D8955;
    background: transparent;
}

/* ---------- Header section ---------- */

.section-header {
    margin-bottom: 1.5rem;
}

.section-header.container{
    max-width: 600px;
}

    .section-header h2 {
        margin-bottom: 0;
        text-align: center;
    }



@media screen and (min-width: 992px) {

    .section-header {
        margin-bottom: 2rem;
    }
        .section-header h2 {
            font-size: 2rem;

        }
}

@media screen and (min-width: 1200px) {

    .section-header {
        margin-bottom: 2.25rem;
    }

        .section-header h2 {
            margin-bottom: 0.75rem;
            font-size: 2.5rem;
        }
}


/*
-----------------------------------------
NAVBAR
-----------------------------------------
*/

/* ------- Skip to content ------- */

.skip-to-content {
    position: absolute; 
    z-index: 1201;
    opacity: 1;
    left: 1rem;
    height: 0;
}

a.skip-to-content-btn {
    display: inline-block;
    font-size: 1;
    font-weight: 500;
    background-color: var(--finsam-teal);
    padding: 0.75em 2em;
    color: #FFF;
    border: 1px solid #FFFFFF;
    transform: translateY(-100%);
}

a.skip-to-content-btn:hover,
a.skip-to-content-btn:focus {
    background-color: var(--finsam-teal);
    color: #FFF;
    transform: translateY(1rem);
}

/* ------- Navbar ------- */

.navbar {
    justify-content: space-between;
    align-items: initial;
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    transition: all ease 0.4s;
    height: 72px;
    z-index: 1200;
}

.navbar-light {
    background-color: #FFFFFF;
}

.navbar-show {
    transform: none;
}

@media screen and (min-width: 992px) {
    .navbar {
        height: 110px;
    }
}


/* ---------- Logo ---------- */

.navbar-brand {
    display: flex;
}

    .navbar-brand img {
        width: 170px;
        transition: 0.15s;
    }

@media screen and (min-width: 992px) {
    .navbar .navbar-brand img {
        width: 200px;
    }

}

.navbar-dark .logo-dark {
    display: block;
    opacity: 1;
}

.navbar-dark .logo-light {
    display: none;
    opacity: 0;
}

.navbar-light .logo-light {
    display: block;
    opacity: 1;
}

.navbar-light .logo-dark {
    display: none;
    opacity: 0;
}


/* ---------- Mobile menu button ---------- */

.navbar-toggler:focus-visible {
    outline: 3px dotted var(--finsam-teal);
}

.navbar .navbar-toggler {
    width: 45px;
    height: 35px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    box-shadow: none !important;
    border: none;
    z-index: 1032;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0;
}

.navbar-toggler span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000000;
    opacity: 1;
    left: 0;
}

.navbar-dark .navbar-toggler span {
    background: #000;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 10px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

.submenu-submenu .submenu3 {
    margin-left: 15px;
}


@media screen and (min-width: 992px) {
    .navbar .navbar-toggler {
        display: none;
    }
}

/* ----- Offcanvas mobile menu ----- */

.offcanvas-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow-y: auto;
    transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 1032;
    overflow-x: hidden;
}

    .offcanvas-collapse.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
    }

#mob-nav {
    padding: 0;
    overflow-y: scroll;
}

@media screen and (min-width: 400px) {

    .offcanvas-collapse {
        width: 380px;
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

        .offcanvas-collapse.open {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
}

#mobileMenu .nav-item {
    border-bottom: 1px solid #D4D4D6;
}

#mobileMenu button.nav-link {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: none;
    background-color: transparent;
}

#mobileMenu button.nav-link:focus-visible {
    outline: 3px dotted var(--finsam-teal);
}

#mobileMenu .nav-link {
    color: #000000;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

/* Mobile menu close button */

.close-button {
    cursor: pointer;
    font-size: 36px;
    padding: 0 0.25rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    color: #000000;
    height: 30px;
    width: 30px;
    margin-right: 0.75rem;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
}

.close-button:focus-visible {
    outline: 3px dotted var(--finsam-teal);
}

.main-menu-mobile .top-nav-item {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-menu-mobile .top-nav-item span {
    display: block;
    position: absolute;
    height: 2px;
    width: 30px;
    background: #000000;
    opacity: 1;
    right: 0;
}

.main-menu-mobile .top-nav-item span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.main-menu-mobile .top-nav-item span:nth-child(2) {
    top: 15px;
    transform: rotate(-45deg);
}

#mobileMenu #language-menu .nav-link {
    font-weight: 400;
    opacity: 0.8;
}

/* Menu */

#mobileMenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    width: 100%;
    box-shadow: -8px 0px 14px -14px rgba(0,0,0,0.75);
}

#mobileMenu .nav-link {
    position: relative;
    color: #000000;
    font-size: 16px;
    padding-left: 1rem;
    font-family: 'Roboto Condensed', sans-serif;
}

#mobileMenu .caret {
    position: absolute;
    right: 0;
    top: 8px;
    margin: 0;
    padding: 0;
    width: 32px;
    height: 26px;
    line-height: 24px;
    text-align: center;
}

#mobileMenu .caret:before {
    content: '+' !important;
    font-family: monospace;
    font-weight: bold;
}

#mobileMenu .open .caret:before {
    content: '-' !important;
    font-family: monospace;
    font-weight: bold;
}

    #mobileMenu .mainmenu {
        padding: 60px 15px;
    }

        #mobileMenu .mainmenu > .nav-item {
            border-top: 1px solid var(--finsam-teal);
        }

            #mobileMenu .mainmenu > .nav-item:last-child {
                border-bottom: 1px solid var(--finsam-teal);
            }

#mobileMenu .dropdown-menu {
    border: none;
    border-top: 1px solid var(--finsam-teal);
    border-radius: 0;
    padding: 0;
}

#mobileMenu .show .dropdown-menu {
    display: block;
}

#mobileMenu .dropdown-menu .nav-link {
    border-bottom: 1px solid #B3B3B3;
    display: block;
    padding: 10px 25px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

#mobileMenu .dropdown-menu .nav-item:last-child .nav-link {
    border-bottom: none;
}

@media screen and (min-width: 561px) {

    #mobileMenu {
        left: auto;
        min-height: calc(100vh - 90px);
    }
}

@media screen and (min-width: 768px) {

    #mobileMenu {
        display: none;
    }
}

/* Mobile submenu */

.main-menu-mobile .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.main-menu-mobile .offcanvas-submenu-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(0);    
    transform: translateX(0);
    opacity: 1;
    background-color: #fff;
}

.main-menu-mobile .offcanvas-submenu-collapse .top-nav-item {
    justify-content: space-between;
}

.main-menu-mobile .back-button {
    justify-content: flex-start;
    font-size: 30px;
    margin-left: 1rem;
    color: #000000;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
}

.main-menu-mobile .back-button:focus-visible {
    outline: 3px dotted var(--finsam-teal);
}

.main-menu-mobile .submenu {
    list-style: none;
    padding-left: 0;
}

.main-menu-mobile .offcanvas-submenu-collapse .submenu:first-child .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

#mobileMenu .main-menu-mobile .submenu-submenu ul .nav-item {
    border: none;
}

#mobileMenu .main-menu-mobile .submenu-submenu ul .nav-link {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

#mobileMenu .main-menu-mobile .submenu-submenu .nav-item .nav-link {
    white-space: normal;
    font-weight: 400;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu > .nav-item:last-child {
    border-bottom: 1px solid #A1B7B6;
}

.main-menu-mobile .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

.main-menu-mobile .submenu-item .nav-link {
    text-transform: none;
}

/* ---------- Desktop menu ---------- */

#desktopMenu {
    display: none;
}

@media screen and (min-width: 992px) {

    #desktopMenu {
        display: flex;

    }
}

#main-menu {
    flex-direction: row;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-content: flex-end;
}

#main-menu .nav-item {
    position: relative;
}

#main-menu .nav-link {
    font-weight: 500;
    color: #324158;
    padding: 0.5rem 0;
    transition: color ease 0.15s;
    text-transform: uppercase;
    font-size: 1rem;
}

.navbar-dark #main-menu .nav-link:hover {
    color: var(--finsam-teal);
}

.navbar-light #main-menu .nav-link:hover {
    color: var(--finsam-teal);
}

#main-menu .dropdown-menu .nav-link:hover {
    color: #ffffff !important;
    background-color: var(--finsam-teal);
}

#main-menu > .nav-item > .nav-link {
    margin-right: 1rem;
}

#main-menu > .nav-item:last-child > .nav-link {
    margin-right: 0;
    padding-right: 0;
}

.navbar-dark #main-menu .nav-link {
    color: #000;
}

@media screen and (min-width: 1700px) {

    #main-menu > .nav-item > .nav-link {
        margin-right: 1%    ;
    }
}

/* Desktop dropdown menus */

#main-menu .dropdown-toggle::after {
    display: none;
}

#main-menu .dropdown-menu {
    background-color: #FFF;
    border: none;
    border-radius: 0;
    position: absolute;
    top: calc(100% - 2px);
    padding: 0;
    min-width: 260px;
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
}

#main-menu .dropdown-menu .nav-item {   
    position: unset;
}

#main-menu .dropdown-menu .nav-link {
    color: #324158;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 1rem;
    border-top: 1px solid var(--finsam-teal);
    line-height: 1;
}

#main-menu .dropdown-menu .nav-item:last-child .nav-link {
    border-bottom: none;
}


/* Desktop language menu */


#desktopMenu #language-menu {
    flex-direction: row;
}

    #desktopMenu #language-menu .nav-link {
        font-weight: 400;
        font-size: 0.875rem;
        color: #000000;
        padding: 0.5rem 1.5rem 0.5rem 0;
        transition: all ease 0.15s;
    }

    #desktopMenu #language-menu .nav-item:last-child .nav-link {
        padding-right: 0;
    }

.navbar-dark #desktopMenu #language-menu .nav-link {
    color: #FFFFFF;
}

@media screen and (min-width: 1700px) {

    #desktopMenu #language-menu .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1.875rem 0.5rem 0;
    }
}

.slider {
    background-color: #000000;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.4);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slider .hero-caption {
    color: #fff;
    width: 100%;
    font-size: 6rem;
}

.slider .hero-caption h1 {
    text-transform: uppercase;
    font-size: clamp(4rem, 3.304rem + 3.478vw, 7rem);
    line-height: 1;
}

@media screen and (min-width: 960px) {


    .hero-overlay {
        background-color: transparent;
        background: linear-gradient(to right, rgba(50,25,0,0.4) 60%, rgba(0,0,0,0));
    }

    .slider .hero-caption {
        width: 50%;
    }
}

#extra-menu {
    align-self: flex-end;
    margin: 0;
    background-color: transparent;
    margin-bottom: 0;
    margin-top: 10px;
    display: block;
    margin-bottom: 30px;
}

/* ------- Start page blocks ------- */

/* First block on start page */

#offers .offers-inner:first-child {
    background-color: #FCC234;
}

/* Third block on start page */

#offers .offers-inner:nth-child(3n) {
    background-color: var(--finsam-teal);
    color: #fff;
}

/* Fourth block on start page */

#offers .offers-inner:nth-child(4n) {
    background-color: #FCC234;
}

#offers .offers-inner:nth-child(3n) p {
    color: #fff;
}

#offers .offers-inner:nth-child(3n) a.btn {
    border: 2px solid #fff;
}

#offers .offers-inner:nth-child(3n) a.btn:focus-visible {
    border: 2px solid var(--finsam-teal);
    outline: 3px dotted #FFFFFF;
}

#offers h2 {
    text-transform: uppercase;
    margin-top: 0;
}

#offers .offers-inner .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#offers .offers-inner .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

#offers .offers-inner .icon img {
   max-width: 70%
}

#offers .offers-inner .btn {
    width: fit-content;
    min-width: 200px;
    margin: 0 auto;
}

#offers .offers-inner:nth-of-type(even) .row {
    flex-direction: column-reverse;
}

#offers .offers-inner:nth-of-type(odd) .row {
    flex-direction: column-reverse;
}

@media screen and (min-width: 576px) {

    #offers .offers-inner:nth-of-type(even) .row {
        flex-direction: row-reverse;
    }

    #offers .offers-inner:nth-of-type(odd) .row {
        flex-direction: row;
    }

    #offers .offers-inner .btn {
        margin: 0
    }
}

/* ------- END Start page blocks ------- */

#blog .header-blog {
    background-color: #fcc233;
    text-align: center;
    height: 90px;
    display: flex;
    -webkit-box-shadow: inset 0px 6px 16px -6px rgba(0,0,0,0.4);
    -moz-box-shadow: inset 0px 6px 16px -6px rgba(0, 0, 0, 0.4);
    box-shadow: inset 0px 6px 16px -6px rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
    color: #000000;
    text-transform: uppercase;
}

#blog .header-blog h2 {
   margin-top: 10px;
}

#blog .header-blog svg {
    font-size: 26px;
    margin-right: 6px;
}

a.start-blog-item {
    color: #000000; 
    text-decoration: none;
}

a.start-blog-item:hover {
    text-decoration: none;
}

a.start-blog-item:focus-visible {
    display: inline-block;
    color: var(--finsam-teal);
}

#blog h3 {
    margin-bottom: 5px;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

#blog .date {
    margin-bottom: 5px;
    font-size:14px;
}

/*
-----------------------------------------
NEWS PAGE
-----------------------------------------
*/

.selected-news-item {
    margin-bottom: 2rem;
}

.selected-news-item figure {
    margin-bottom: 1rem;
}

.selected-news-item .date {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.selected-news-item h1 {
    margin-bottom: 1rem;
}

.selected-news-item figure img {
    width: 100%;
}

@media screen and (min-width: 768px) {

    .selected-news-item {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1700px) {

    .selected-news-item {
        padding-right: 5rem;
    }
}

.news-list-posts h2 {
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.news-list-post a {
    color: #000000;
    text-decoration: none;
}

@media screen and (min-width: 1700px) {

    .news-list-posts h2 {
        margin-bottom: 1.5rem;
    }
}

a.news-list-post {
    color: #000000;
    text-decoration: none;
}

.news-list-post figure {
    padding-bottom: 1rem;
}

.news-list-post figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

.news-list-post .date {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.news-list-post h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

p.news-list-preview {
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1700px) {

    .news-list-post h3 {
        font-size: 1.375rem;
    }

    p.news-list-preview {
        font-size: 1rem;
    }
}

.news-page a.tag-link {
    margin: 1rem 1rem 1rem 0;
    display: inline-block;
    color: #34434B !important;
}

.news-page a.tag-link.active {
    color: #9D8955 !important;
    border-bottom: 2px solid #9D8955;
}

.pagination {
    margin-bottom: 0;
}

.pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link {
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #000000;
    font-weight: 600;
    padding: 0 0.625rem;
    font-size: 1.125rem;
}

.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link:focus-visible,
.pagination .page-link:active {
    box-shadow: none;
    border: none;
    outline: none;
    color: var(--finsam-teal);
}

.pagination .page-link:focus-visible {
    outline: 3px dotted var(--finsam-teal);
}

.pagination .page-link-arrow {
    color: #34434B;
    font-size: 0.875rem;
    padding: 0 0.25rem;
}

.pagination .page-link-hide {
    visibility: hidden;
}

.pagination .page-item.active .page-link {
    background-color: transparent;
    color: var(--finsam-teal);
}

.sidebar {
    display: none;
}
.sidebar li:first-child {
    border-top: 1px solid #ccc;
}

.sidebar li {
    border-bottom: 1px solid #ccc;
}

.sidebar li a {
    padding: 8px 0 8px 0;
    color: var(--finsam-teal);
}

.sidebar .submenu .submenu a {
    padding: 8px 15px 8px 15px;
    background-color: #f9f9f9;
    cursor: pointer;
}

#subPage .sidebar .submenu .active a{
    font-weight: 500;
}

#subPage .submenu {
    list-style-type: none;
}


#subPage .margin-top {
    background-color: #F8F8F8;
    padding: 5px 0;
}

#subPage .margin-top a, #subPage .margin-top li {
    color: #333333;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    padding: 1.25em 0.25em;
    text-decoration: none;
}

#subPage .margin-top li {
    margin-right: 2px;
}

@media screen and (min-width: 769px) {
    .sidebar{display: block;}
}

footer {
    background-color: var(--finsam-teal);
    color: #fff;
}

footer a:focus-visible {
    outline: 3px dotted #FFFFFF;
} 

footer h3 {
    font-weight: 400;
    border-top: 1px solid #fff;
    padding-top: 10px;
}

footer li, footer .row a, footer .row p {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

footer .row a:hover {
    text-decoration: underline;
}

footer .row ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer .row .phone {
    margin: 1rem 0 0 0;
}

footer .row .email {
    margin-top: 1rem;
}


/* 
-----------------------------------------
OUR SERVICES PAGES
-----------------------------------------
*/        

.ks-page .quote-person,
.ks-page .content-text .quote-person {
	font-size: 1rem;
	margin-top: 1.25rem;
}

.ks-page .quote-person strong,
.ks-page .content-text .quote-person strong {
	font-weight: 700;
}

@media screen and (min-width: 1600px) {

	.ks-page .quote-person,
	.ks-page .content-text .quote-person {
		margin-top: 1.5rem;
		font-size: 1.125rem;
	}
}

#intro-info-section > .d-flex {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

#intro-info-section > .d-flex > div {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
}

#intro-info-section > .d-flex > div:first-child {
	margin-bottom: 1.5rem;
}

#intro-info-section > .d-flex > div:first-child figure {
	position: relative;
	margin-bottom: 0;
}

#intro-info-section > .d-flex > div:first-child figure::after {
	content: "";
	display: block;
	padding-bottom: 75%;
}

#intro-info-section > .d-flex > div:first-child figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media screen and (min-width: 600px) {

	#intro-info-section > .d-flex > div {
		flex-basis: calc(50% - 1rem);
		margin-bottom: 0;
	}

	#intro-info-section > .d-flex > div:first-child figure {
		position: relative;
	}

	#intro-info-section > .d-flex > div:first-child figure::after {
		padding-bottom: 75%;
	}
}

@media screen and (min-width: 768px) {

	#intro-info-section > .d-flex > div:first-child {
		flex-basis: calc(50% - 50px);
		margin-bottom: 0;
	}

	#intro-info-section > .d-flex > div:last-child {
		flex-basis: calc(50% - 16px);
	}
}

@media screen and (min-width: 1200px) {

	#intro-info-section > .d-flex > div:first-child {
		flex-basis: calc(50% - 84px);
		padding-right: 4rem;
	}

	#intro-info-section > .d-flex > div:last-child {
		flex-basis: calc(50% + 84px);
	}

	#intro-info-section p:not(.quote-person) {
		font-size: 1.25rem;
	}
}

@media screen and (min-width: 1600px) {

	#intro-info-section p:not(.quote-person) {
		font-size: 1.375rem;
	}
}

#intro-info-section h2 {
	font-size: 2rem;
}

@media screen and (min-width: 768px) {

	#intro-info-section h2 {
		font-size: 2.25rem;
	}
}

@media screen and (min-width: 1200px) {

	#intro-info-section h2 {
		font-size: 2.5rem;
	}
}

/* Content blocks */

.ks-page .content-block {
	justify-content: space-between;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
}

.ks-page .content-block > .content-text {
	padding: 0;
}

.ks-page .content-block > .content-image {
	padding: 0;
	margin-bottom: 1.5rem;
}

.ks-page .content-image figure {
	position: relative;
	margin: 0;	
}

.ks-page .content-image figure::after {
	content: "";
	display: block;
	padding-bottom: 75%;
}

.ks-page .content-image figure img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.ks-page .content-block a.btn {
	margin-top: 0.5rem;
}

@media screen and (min-width: 600px) {

	.ks-page .content-block > .content-text {
		flex-basis: calc(50% - 1rem);
	}

	.ks-page .content-block > .content-image {
		flex-basis: calc(50% - 1rem);
		margin-bottom: 0;
		min-height: 0;
	}

	.ks-page .content-image figure::after {
		padding-bottom: 75%;
	}
}

@media screen and (min-width: 768px) {

	.ks-page .content-block {
		padding-top: 0;
		padding-bottom: 0;
		align-items: flex-start;
		margin-top: 2rem;
	}

	.ks-page .content-block > .content-text {
		flex-basis: calc(50% - 16px);
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.ks-page .content-block > .content-image {
		flex-basis: calc(50% - 50px);
		margin-top: -2rem;
		padding-bottom: 2rem;
	}
}

@media screen and (min-width: 1200px) {

	.ks-page .content-block p {
		font-size: 1.25rem;
	}

	.ks-page .content-block > .content-text {
		flex-basis: calc(50% + 84px);
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}

	.ks-page .content-block > .content-image {
		flex-basis: calc(50% - 84px);
		padding-bottom: 3.5rem;
		padding-right: 4rem;
	}
}

@media screen and (min-width: 1600px) {

	.ks-page .content-block {
		margin-top: 5rem;
	}

	.ks-page .content-block > .content-text {
		padding-top: 4.625rem;
		padding-bottom: 4.625rem;
	}

	.ks-page .content-block > .content-image {
		margin-top: -4rem;
		padding-bottom: 4.625rem;
	}

	.ks-page .content-block p {
		font-size: 1.375rem;
	}
}

.ks-page .content-text h2 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {

	.ks-page .content-text h2 {
		font-size: 2.25rem;
	}
}

@media screen and (min-width: 1200px) {

	.ks-page .content-text h2 {
		font-size: 2.5rem;
	}
}

.ks-page .bg-yellow .content-text h2,
.ks-page .bg-yellow .content-text p,
.ks-page .bg-yellow .content-text p strong {
	color: #000000;
}

/* Top content blocks */

@media screen and (min-width: 600px) {

	#quote-content-block-top .content-block:nth-child(2n+1) .content-text {
		order: 1;
	}

	#quote-content-block-top .content-block:nth-child(2n+1) .content-image {
		order: 2;
	}

	#quote-content-block-top .content-block:nth-child(2n) .content-text {
		order: 2;
	}

	#quote-content-block-top .content-block:nth-child(2n) .content-image {
		order: 1;
	}

	.ks-page .content-image figure::after {
		padding-bottom: 75%;
	}
}

@media screen and (min-width: 768px) {

	#quote-content-block-top .content-block:nth-child(2n+1) {
		justify-content: flex-start;
	}

	#quote-content-block-top .content-block:nth-child(2n+1) .content-text {
		margin-right: 32px;
	}
}

@media screen and (min-width: 1200px) {

	#quote-content-block-top .content-block:nth-child(2n+1) .content-text {
		margin-right: 0;
	}

	#quote-content-block-top .content-block:nth-child(2n+1) .content-image {
		padding-left: 4rem;
		padding-right: 0;
	}
}

@media screen and (min-width: 1600px) {

	#quote-content-block-top {
		margin-top: 8rem;
	}
}

@media screen and (min-width: 1600px) {

	#quote-content-block-bottom {
		margin-top: 8rem;
	}
}

/* General info section */

.ks-page #general-info-section .section-header h2 {
	text-align: left;
}

.ks-page #general-info-section > .d-flex > div {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
}

.ks-page #general-info-section > .d-flex > div:first-child {
	margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {

	.ks-page #general-info-section > .d-flex > div {
		flex-basis: calc(50% - 1rem);
	}

	.ks-page #general-info-section > .d-flex > div:first-child {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1200px) {

	.ks-page #general-info-section > .d-flex > div {
		flex-basis: calc(50% - 1.75rem);
	}
}

.ks-page #general-info-section > .d-flex {
	flex-wrap: wrap;
	justify-content: space-between;
}

.ks-page #general-info-section h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.ks-page #general-info-section h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.ks-page #general-info-section h3:first-child {
    margin-top: 0;
}

.ks-page #general-info-section p.ingress {
	font-size: 1.25rem;
}

.ks-page #general-info-section li {
	font-size: 1rem;
}

@media screen and (min-width: 768px) {

	.ks-page #general-info-section h2 {
		font-size: 2.25rem;
	}
}

@media screen and (min-width: 1200px) {

	.ks-page #general-info-section h2 {
		font-size: 2.5rem;
	}

	.ks-page #general-info-section p,
	.ks-page #general-info-section li {
		font-size: 1.125rem;
	}

	.ks-page #general-info-section p.ingress {
		font-size: 1.375rem;
	}
}

/* Examples section */

.ks-page .examples-links > .d-flex {
	flex-wrap: wrap;
	justify-content: space-between;
}

.ks-page .examples-links > .d-flex > div {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
	margin-bottom: 2rem;
}

.ks-page .examples-links > .d-flex > div:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 500px) {

	.ks-page .examples-links > .d-flex > div {
		flex-basis: calc(50% - 0.5rem);
		display: flex;
		flex-direction: column;
	}

	.ks-page .examples-links > .d-flex > div:nth-child(3) {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 576px) {

	.ks-page .examples-links > .d-flex > div {
		flex-basis: calc(50% - 1rem);
	}
}

@media screen and (min-width: 768px) {

	.ks-page .examples-links {
		margin-top: 3rem;
	}	
}

@media screen and (min-width: 992px) {

	.ks-page .examples-links > .d-flex > div {
		flex-basis: calc(25% - 1rem);
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1400px) {

	.ks-page .examples-links > .d-flex > div {
		flex-basis: calc(25% - 1.5rem);
	}
}

.ks-page .examples-links .section-header h2 {
	text-align: left;
	font-size: 1.75rem;
}

@media screen and (min-width: 768px) {

	.ks-page .examples-links .section-header h2 {
		font-size: 2.25rem;
		margin-bottom: 1.5rem;
	}
}

@media screen and (min-width: 1200px) {

	.ks-page .examples-links .section-header h2 {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}
}

@media screen and (min-width: 1400px) {

	.ks-page .examples-links .section-header h2 {
		font-size: 2.5rem;
	}
}

@media screen and (min-width: 1600px) {

	.ks-page .examples-links .section-header h2 {
		font-size: 2.625rem;
	}
}

.ks-page .examples-links figure {
	position: relative;
	margin-bottom: 0;
}

.ks-page .examples-links figure::after {
	content: '';
	display: block;
	padding-bottom: 75%;
}

.ks-page .examples-links figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ks-page .examples-links h3 {
	font-size: 1.5rem;
    margin-top: 0;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.ks-page .examples-link-text {
	padding: 1rem;
	background-color: #FFFFFF;
	flex-grow: 1;
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ks-page .examples-links .btn {
	padding: 0.625rem 1.25rem 0.5rem;
	font-size: 1rem;
	width: 100%;
}

@media screen and (min-width: 500px) {

	.ks-page .examples-links .btn {
	}
}

@media screen and (min-width: 1200px) {

	.ks-page .examples-links {
		margin-top: 4rem;
	}

	.ks-page .examples-link-text {
		padding: 1.5rem;
	}
}

@media screen and (min-width: 1600px) {

	.ks-page .examples-links p {
		font-size: 1.125rem;
	}

	.ks-page .examples-links .btn {
		font-size: 1.125rem;
	}
}

/* More info & contact section */

.more-info-contact > .d-flex {
	flex-wrap: wrap;
	justify-content: space-between;
}

.more-info-contact > .d-flex > div {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
}

.more-info-contact > .d-flex > div:first-child {
	margin-bottom: 1.5rem;
}

.more-info-contact a {
    text-decoration: none;
}

@media screen and (min-width: 600px) {

	.more-info-contact > .d-flex > div {
		flex-basis: calc(50% - 1rem);
	}

	.more-info-contact > .d-flex > div:first-child {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 1200px) {

	.more-info-contact p {
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 1400px) {

	.more-info-contact > .d-flex > div {
		flex-basis: calc(50% - 2rem);
	}
}

.more-info-contact figure {
	position: relative;
    margin-bottom: 1rem;
}

.more-info-contact figure::after {
	content: '';
	display: block;
	padding-bottom: 75%;
}

.more-info-contact figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ks-page .more-info-contact h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
}




@media screen and (min-width: 1200px) {

	.more-info-contact figure {
		margin-bottom: 1.5rem;
	}

	.ks-page .more-info-contact h3 {
		font-size: 2.5rem;
	}
}

@media screen and (min-width: 1600px) {

	.more-info-contact figure {
		margin-bottom: 2rem;
	}

	.more-info-contact h3 {
		font-size: 2.625rem;
	}
}

.more-info-contact .contact-info-cols {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.more-info-contact .contact-info-cols > div {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
}

.more-info-contact .contact-info-cols > div:last-child {
	margin-bottom: 0;
}

.more-info-contact .contact-info-cols a {
    text-decoration: none;
}

@media screen and (min-width: 1400px) {

	.more-info-contact .contact-info-cols > div {
		flex-basis: calc(50% - 1rem);
		margin-bottom: 0;
	}
}

/*
�������������������������������������������������
SIDFOT 
�������������������������������������������������
*/

#sidfot {
	background-color: var(--finsam-teal);
	padding: 60px 0 120px
}

#sidfot .container {
	max-width: 100%;
}


@media screen and (min-width: 768px) {

	#sidfot .container {
		max-width: 750px;
	}

	#sidfot .col-sm-4 {
		width: 32%;
	}
}

@media screen and (min-width: 992px) {

	#sidfot .container {
		max-width: 976px;
	}
}

@media screen and (min-width: 1300px) {

	#sidfot .container {
		max-width: 1200px;
	}
}

#sidfot h2,
#sidfot p,
#sidfot a,
#sidfot li a,
#sidfot .svg-inline--fa {
	color: #ffffff;
}

#sidfot h2	{ 
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 28px;
	margin: 0 0 10px;
	line-height: 30px;
	text-transform: none;
	border-top: 1px solid #ffffff;
	padding-top: 10px;
}

#sidfot p {
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0 0 15px;
	line-height:  24px;
	font-size: 16px;
}

#sidfot li {
	font-family: 'Roboto Condensed', sans-serif;
}

#sidfot ul {
 	list-style-type: none;
    margin: .75rem 0;
    padding: 0;
}

#sidfot li {
	padding-bottom: .25rem;
}

#sidfot .svg-inline--fa {
	margin-right: .25rem;
}

#sidfot [class^="col-lg-"] {
	margin-bottom: 0;
	padding-bottom: 3rem;
	border-bottom: none;
}

#sidfot [class^="col-lg-"]:last-child {
	padding-bottom: 0;
}

#sidfot .social {
	display: flex;
}

#sidfot .social .svg-inline--fa {
	font-size: 2.5rem;
	margin-right: 1rem;
}

/* End footer */

#sidfot h4 {
	color: #ffffff;
}

@media (min-width: 992px) { 
	#sidfot [class^="col-lg-"], #end-footer [class^="col-lg-"] { padding-bottom: 0; }
}

/* 
END SIDFOT 
�������������������������������������������������
*/

/* Fixes for IE issues */

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {

	#mainHeadline {
		width: calc(100vh - 100px);
	}

 	.content-text * {
 		max-width: 100%;
 	}

 	.content-image {
 		overflow: hidden;
 		margin: auto;
 	}

 	.content-image .Normal {
 		display: flex;
 		align-items: center;
 	}

	.content-image img {
		display: block !important;
		height: auto !important;
	}

	#info-section .d-flex > div {
		flex-basis: calc(50% - 300px);
	}
}


/* 
�������������������������������������������������
START PAGE 2022
�������������������������������������������������
*/

#hero-startpage {
	background-image: url('https://www.finsamimalmo.se/portals/finsam/Skins/Finsam2017/images/bg-big-start_lg.jpg');
	background-size: cover;
	background-position: center;
}

#hero-startpage .overlay {
	min-height: calc(100vh - 90px);
	display: flex;
	align-items: center;
}

@media screen and (min-width: 768px) {

	#hero-startpage .overlay {
		min-height: calc(100vh - 73px);
	}
}

@media screen and (min-width: 992px) {

	#hero-startpage .overlay {
		min-height: calc(100vh - 112px);
	}
}

#hero-startpage .hero-caption h1 {
	color: #FFFFFF;
	font-size: 3rem;
	line-height: 1.1;
	margin: 0;
}

@media screen and (min-width: 768px) {

	#hero-startpage .hero-caption h1 {
		width: 70%;
		font-size: 5rem;
	}
}

@media screen and (min-width: 1200px) {

	#hero-startpage .hero-caption h1 {
		width: 50%;
		font-size: 5rem;
	}
}

@media screen and (min-width: 1700px) {

	#hero-startpage .hero-caption h1 {
		width: 50%;
		font-size: 6rem;
	}
}

/* ----------- Content blocks ----------- */

.start-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.start-block-image,
.start-block-text {
	flex-basis: 100%;
	flex-grow: 0;
	flex-shrink: 0;
}

@media screen and (min-width: 600px) {

	.start-block-image {
		flex-basis: calc(50% - 1rem);
	}

	.start-block-text {
		flex-basis: calc(50% - 1rem);
	}

	.start-block:nth-child(odd) .start-block-image {
		order: 2;
	}

	.start-block:nth-child(odd) .start-block-text {
		order: 1;
	}
}

@media screen and (min-width: 1200px) {

	.start-block-image {
		flex-basis: 400px;
	}

	.start-block-text {
		flex-basis: calc(100% - 450px);
	}
}

@media screen and (min-width: 1700px) {

	.start-block-image {
		flex-basis: 600px;
	}

	.start-block-text {
		flex-basis: calc(100% - 700px);
	}

	.start-block-image img {
		max-width: 400px;
	}
}

.start-block-image figure {
	margin: 0;
}

.start-block-image img {
	display: block;
	max-width: 200px;
	margin: 0 auto;
}

@media screen and (min-width: 1200px) {

	.start-block-image img {
		max-width: 300px;
	}
}

@media screen and (min-width: 1700px) {
	.start-block-image img {
		max-width: 430px;
	}
}

.start-block-text {
	text-align: center;
}

@media screen and (min-width: 600px) {

	.start-block-text {
		text-align: left;
	}
}

/* Text */

.start-block h2 {
	font-size: 2rem;
}

@media screen and (min-width: 768px) {

	.start-block h2 {
		font-size: 2.25rem;
	}
}

@media screen and (min-width: 1200px) {

	.start-block h2 {
		font-size: 3rem;
	}

	.start-block p {
		font-size: 1.25rem;
	}
}

@media screen and (min-width: 1600px) {

	.start-block h2 {
		font-size: 3.5rem;
	}

	.start-block p {
		font-size: 1.375rem;
	}
}

.start-block.bg-green * {
	color: #FFFFFF;
}

/* Buttons */

.start-block .btn {
	background-color: var(--finsam-teal);
	border: 2px solid var(--finsam-teal);
	color: #FFFFFF;
	margin-top: 0.5rem;
}

.start-block .btn:hover {
	background-color: transparent;
	border: 2px solid var(--finsam-teal);
	color: var(--finsam-teal);
}

.start-block.bg-green .btn {
	background-color: transparent;
	color: #FFFFFF;
	border: 2px solid #FFFFFF;
}

.start-block.bg-yellow .btn:hover,
.start-block.bg-yellow .btn:focus {
	background-color: transparent;
	border-color: #FFFFFF;
	color: #FFFFFF;
}

/* ----------- Buttons for content blocks ----------- */

.ks-page a.btn {
	font-family: 'Roboto', sans-serif;
	padding: 0.625rem 2rem;
	font-size: 1rem;
}

@media screen and (min-width: 1700px) {

	.ks-page a.btn {
		font-size: 1.125rem;
		min-width: 190px;
	}
}

.ks-page .bg-green a.btn {
	border: 2px solid #FFFFFF;
	color: #FFFFFF;
	background-color: transparent;
}

/* ----------- Blogg ----------- */

.start-page #blog .blogheader {
	background-color: #fcc233;
	text-align: center;
	height: 90px;
	display: flex;
	-webkit-box-shadow: inset 0px 6px 16px -6px rgba(0,0,0,0.4);
	-moz-box-shadow: inset 0px 6px 16px -6px rgba(0,0,0,0.4);
	box-shadow: inset 0px 6px 16px -6px rgba(0,0,0,0.4);
}

.start-page #blog .blogheader h2 {
	color: #fff;
	margin-top: 30px;
}

.start-page #blog .blogheader h2 svg {
	margin-right: 5px;
}

.start-page #blog .blog-post-start {
	margin: 60px auto;
	float: none;
	max-width: 800px;
}

.start-page .RankingList_Finsam .article_toplist li .post_title {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 36px;
	margin: 0px 0px 20px;
}

.start-page .RankingList_Finsam .article_toplist li .post_title a {
	text-decoration: none;
	color: #000;
}

.start-page .RankingList_Finsam .post_date {
  margin-bottom: 8px;
  border-top: 1px solid #ccc;
  padding-top: 5px;
  font-size: 14px;
}

.start-page .RankingList_Finsam .article_toplist .post_summary {
    margin: 5px 0px;
    clear: both;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    line-height: 26px;
    color: #000000;
}

.start-page .RankingList_Finsam .post_more {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	background-color: transparent !important;
	text-align: left !important;
}

.start-page .RankingList_Finsam .post_more:hover {
	background-color: transparent !important;
}

.start-page .RankingList_Finsam .post_more a {
	font-family: 'Roboto Condensed', sans-serif !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
    background-color: var(--finsam-teal) !important;
    display: inline-block !important;
    border-radius: 0 !important;
    width: 100% !important;
    padding: .375rem .75rem !important;
    text-align: center !important;
    border: 2px solid var(--finsam-teal) !important;
    line-height: 1.5 !important;
    margin-top: 1rem !important;
}

.start-page .RankingList_Finsam .post_more a:hover {
	background-color: transparent !important;
    color: var(--finsam-teal) !important;
}

@media screen and (min-width: 450px) {

	.start-page .RankingList_Finsam .post_more a {
	    min-width: 204px !important;
	    font-size: 1.25rem !important;
	    width: auto !important;
	}
}

@media screen and (min-width: 1700px) {

	.start-page .RankingList_Finsam .post_more a {
	    font-size: 1.625rem !important;
	}
}

/* Hero section */

#hero-ks-desktop {
	background-image: url(images/hero-bg.jpg);
	background-size: cover;
	background-position: center;
    background-color: #000000;
}

#hero-ks-desktop .overlay {
	min-height: calc(100vh - 90px);
	background-color:rgba(0,0,0,0.4);
	display: flex;
	align-items: center;
	justify-content: space-between;
    flex-wrap: wrap;
}

#hero-ks-desktop #mainHeadline {
	height: auto;
	width: 90%;
	max-width: 400px;
    display: none;
}

#hero-ks-desktop p.ks-top-headline {
    font-size: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
    line-height: 1;
    margin-bottom: 0.5em;
    font-family: 'Staatliches', sans-serif;
    color: #FFFFFF;
    margin-left: 3px;
}

#hero-ks-desktop h1 {
    color: #FFFFFF;
    font-size: clamp(4rem, 3rem + 5vw, 9rem);
    line-height: 1;
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {

	#hero-ks-desktop .overlay {
        background-color: transparent;
        background-image: linear-gradient(to right, rgba(0,0,0,0.45) 50%, rgba(0, 0, 0, 0));
		min-height: 53vw;
		align-items: center;
	}
    
    #hero-ks-desktop h1 {
        width: 50%;
        margin-bottom: 5rem;
    }
}

@media screen and (min-width: 1200px) {

	#hero-ks-desktop #mainHeadline {
		height: calc(53vw - 16rem);
	}
}

@media screen and (min-width: 1700px) {

	#hero-ks-desktop .overlay {
		padding-top: 7rem;
	}

	#hero-ks-desktop #mainHeadline {
		height: calc(53vw - 20rem);
	}

    #hero-ks-desktop p.ks-top-headline {
        margin-left: 4px;
    }
}

.intro-blocks {
	flex-wrap: wrap;
}



.intro-blocks {
    flex-wrap: wrap;
}

.intro-blocks > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

.intro-blocks > div.block-left {
    background-color: #049893;
    background-color: var(--finsam-teal);
}

.intro-blocks > div.block-right {
    background-color: #91C99C;
}

@media screen and (min-width: 768px) {

    .intro-blocks {
        justify-content: flex-start;
        position: relative;
    }

    .intro-blocks > div.block-left {
        flex-basis: calc(50% + 16px);
        padding-right: 64px;
        padding-left: calc(50% - 345px);
        position: relative;
        margin-top: -4rem;
    }

    .intro-blocks > div.block-right {
        flex-basis: calc(50% + 16px);
        margin-left: -32px;
        padding-left: 32px;
        padding-right: calc(50% - 345px);
        z-index: 1;
    }
}

@media screen and (min-width: 850px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 389px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 389px);
    }
}

@media screen and (min-width: 950px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 435px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 435px);
    }
}

@media screen and (min-width: 1050px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 484px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 484px);
    }
}

@media screen and (min-width: 1200px) {

    .intro-blocks > div.block-left {
        flex-basis: calc(50% + 28px);
        padding-right: 112px;
        padding-left: 5vw;
        margin-top: -6rem;
    }

    .intro-blocks > div.block-right {
        flex-basis: calc(50% + 28px);
        margin-left: -56px;
        padding-left: 56px;
        padding-right: 5vw;
    }
}

@media screen and (min-width: 1400px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 600px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 600px);
    }
}

@media screen and (min-width: 1700px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 800px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 800px);
    }
}

.intro-blocks .block-left * {
    color: #FFFFFF;
}

.intro-blocks .block-left h2 {
    font-size: 2.375rem;
    margin-bottom: 0.5rem;
}

.intro-blocks .block-right h3 {
    text-transform: uppercase;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {

    .intro-blocks .block-left h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.1875rem;
    }


    .intro-blocks .block-right h3 {
        margin-bottom: 1rem;
    }

    .intro-blocks .block-right p {
        line-height: 1.6;
    }
}

@media screen and (min-width: 1200px) {

    .intro-blocks .block-left h2 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.25rem;
    }

    .intro-blocks .block-right h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-right p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1400px) {

    .intro-blocks .block-left h2 {
        font-size: 3.75rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.375rem;
    }

    .intro-blocks .block-right h3 {
        font-size: 2rem;
    }

    .intro-blocks .block-right p {
        font-size: 1.125rem;
    }
}


.intro-blocks {
    flex-wrap: wrap;
}

.intro-blocks > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {

    .intro-blocks {
        justify-content: flex-start;
        position: relative;
        background-color: #049893;
    }

        .intro-blocks > div.block-left {
            flex-basis: calc(50% + 16px);
            padding-right: 64px;
            padding-left: calc(50% - 345px);
            position: relative;
            margin-top: -4rem;
        }

        .intro-blocks > div.block-right {
            flex-basis: calc(50% + 16px);
            margin-left: -32px;
            padding-left: 32px;
            padding-right: calc(50% - 345px);
            z-index: 1;
        }
}

@media screen and (min-width: 850px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 389px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 389px);
    }
}

@media screen and (min-width: 950px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 435px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 435px);
    }
}

@media screen and (min-width: 1050px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 484px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 484px);
    }
}

@media screen and (min-width: 1200px) {

    .intro-blocks > div.block-left {
        flex-basis: calc(50% + 28px);
        padding-right: 112px;
        padding-left: 5vw;
        margin-top: -6rem;
    }

    .intro-blocks > div.block-right {
        flex-basis: calc(50% + 28px);
        margin-left: -56px;
        padding-left: 56px;
        padding-right: 5vw;
    }
}

@media screen and (min-width: 1400px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 600px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 600px);
    }
}

@media screen and (min-width: 1700px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 800px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 800px);
    }
}

.intro-blocks .block-left * {
    color: #FFFFFF;
}

.intro-blocks .block-left h2 {
    font-size: 2.375rem;
    margin-bottom: 0.5rem;
}

.intro-blocks .block-right h3 {
    text-transform: uppercase;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {

    .intro-blocks .block-left h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.1875rem;
    }


    .intro-blocks .block-right h3 {
        margin-bottom: 1rem;
    }

    .intro-blocks .block-right p {
        line-height: 1.6;
    }
}

@media screen and (min-width: 1200px) {

    .intro-blocks .block-left h2 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.25rem;
    }

    .intro-blocks .block-right h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-right p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1400px) {

    .intro-blocks .block-left h2 {
        font-size: 3.75rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.375rem;
    }

    .intro-blocks .block-right h3 {
        font-size: 2rem;
    }

    .intro-blocks .block-right p {
        font-size: 1.125rem;
    }
}















/* ____________ Quote ____________ */

blockquote {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--finsam-teal);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    border: none;
    padding: 0;
    line-height: 1.5;
    font-style: normal;
}

    blockquote + p.quote-name {
        margin-top: 0.5rem;
    }

@media screen and (min-width: 992px) {

    blockquote {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1200px) {

    blockquote {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1700px) {

    blockquote {
        font-size: 1.75rem;
    }
}

/* 
�������������������������������������������������
HEADER AND NAVBAR
�������������������������������������������������
*/

 

    .navbar > .container, .navbar > .container-fluid {
        align-items: flex-end;
    }

.navbar-collapse {
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #fff;
}

#navbar-site .container {
    max-width: 100%;
}

/* Navbar width */

@media screen and (min-width: 768px) {

    #navbar-site .container {
        max-width: 750px;
    }
}

@media screen and (min-width: 992px) {

    #navbar-site .container {
        max-width: 976px;
    }
}

@media screen and (min-width: 1300px) {

    #navbar-site .container {
        max-width: 1200px;
    }
}

/* Logo */

.navbar-brand {
    padding: 0 0 0 15px;
}

    .navbar-brand img {
        width: 150px;
        height: auto;
        padding: 0;
        margin: 15px 0;
    }

@media screen and (min-width: 768px) {

    .navbar-brand {
        padding: 0;
    }

        .navbar-brand img {
            width: 150px;
            padding-left: 0;
        }
}

@media screen and (min-width: 992px) {

    .navbar-brand img {
        width: 260px;
    }
}


/* Hamburgemenyn i mobilt läge */

#mobilemenuheader #main-navbar {
    position: absolute;
    right: 0;
    background-color: #fff;
    z-index: 9999;
    width: 500px;
    padding: 60px 30px;
    box-sizing: border-box;
    -webkit-box-shadow: -8px 0px 14px -14px rgba(0,0,0,0.75);
    -moz-box-shadow: -8px 0px 14px -14px rgba(0,0,0,0.75);
    box-shadow: -8px 0px 14px -14px rgba(0,0,0,0.75);
}

#mobilemenuheader .mainmenu {
    height: 100vh;
}

#mobilemenuheader .navbar-nav, #mobilemenuheader .navbar-nav > li {
    float: none;
}

    #mobilemenuheader .navbar-nav > li, #mobilemenuheader .navbar-nav > li.dropdown.open a {
        border-bottom: 1px solid var(--finsam-teal);
    }

        #mobilemenuheader .navbar-nav > li:first-child {
            border-top: 1px solid var(--finsam-teal);
        }

        #mobilemenuheader .navbar-nav > li > a {
            color: #000;
            font-size: 16px;
            padding-left: 0;
            display: block;
            font-family: 'Roboto Condensed', sans-serif;
        }

.navbar-nav.sm-collapsible .caret, .navbar-nav.sm-collapsible ul .caret {
    margin: 0 !important;
    border: none !important;
    top: 11px;
}

.navbar-nav.sm-collapsible .mobile-menu .caret {
    top: 10px;
}

.nav > li > a:hover, .nav > li > a:focus, .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #fff;
    color: var(--finsam-teal) !important;
    text-decoration: none;
}

#mobilemenuheader .navbar-nav .mobile-menu {
    display: none;
}

    #mobilemenuheader .navbar-nav .mobile-menu > li {
        list-style-type: none;
        margin-left: 0;
    }

        #mobilemenuheader .navbar-nav .mobile-menu > li > a, #mobilemenuheader .navbar-nav > li.dropdown.open li a {
            border-bottom: 1px solid #B3B3B3;
            display: block;
            padding: 10px 25px;
            color: #000;
        }

    #mobilemenuheader .navbar-nav .mobile-menu .mobile-menu > li > a {
        border-bottom: 1px solid #E6E6E6;
    }

    #mobilemenuheader .navbar-nav > li.dropdown.open li:last-child a, #mobilemenuheader .navbar-nav .mobile-menu > li:last-child li:last-child > a {
        border-bottom: none;
    }

#mobilemenuheader .navbar-nav > li.dropdown.open li.dropdown.open {
    border-bottom: 1px solid #B3B3B3;
}

    #mobilemenuheader .navbar-nav > li.dropdown.open li.dropdown.open:last-child {
        border-bottom: none;
    }

        #mobilemenuheader .navbar-nav > li.dropdown.open li.dropdown.open:last-child a {
            border-bottom: 1px solid #B3B3B3;
        }

        #mobilemenuheader .navbar-nav > li.dropdown.open li.dropdown.open li a, #mobilemenuheader .navbar-nav > li.dropdown.open li.dropdown.open:last-child li a {
            border-bottom: 1px solid #E6E6E6;
        }

        #mobilemenuheader .navbar-nav > li.dropdown.open li.dropdown.open li:last-child a, #mobilemenuheader .navbar-nav > li.dropdown.open li.dropdown.open:last-child li:last-child a {
            border-bottom: none;
        }

#mobilemenuheader .dropdown-menu > .active > a, #mobilemenuheader .dropdown-menu > .active > a:hover, #mobilemenuheader .dropdown-menu > .active > a:focus {
    background-color: var(--finsam-teal);
    color: #fff !important;
}


#desktopMenu .nav-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    text-transform: none;
    color: #000000;
    font-size: 16px;
    line-height: 16px;
}

.navbar-nav .active > .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .show > .nav-link {
    color: #000000;
}

@media (min-width: 768px) {

    #desktopMenu {
        max-height: auto;
        overflow-y: visible;
    }

    #desktopMenu .nav-link {
        padding: 0.75rem 0.25rem;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
    }
}

@media (min-width: 1200px) {

    #desktopMenu .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem;
    }
}

@media (min-width: 1400px) {

    #desktopMenu .nav-link {
        font-size: 1.125rem;
    }
}

/* Dropdown meny */

#desktopMenu .dropdown-menu {
    width: 250px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    top: calc(100% - 2px);
}

#desktopMenu .dropdown-menu .nav-link {
    color: #000000;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    background-color: #fff;
    border-top: 1px solid var(--finsam-teal);
    padding: 10px 20px;
    display: block;
    font-weight: normal;
    border-left: none;
    border-right: none;
    white-space: inherit;
    margin: 0;
    text-transform: none;
}

#desktopMenu .dropdown-menu .nav-link:hover {
    background-color: var(--finsam-teal);
    color: #ffffff;
}

/* Extra meny */

#extra-menu {
    display: none;
}

.mainmenu,
#extra-menu {
    align-self: flex-end;
    margin: 0;
}

.mainmenu {
    order: 2;
}

#extra-menu {
    margin-bottom: 0;
}

.navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
    display: none !important
}

.navbar-nav.sm-collapsible .sub-arrow::before {
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    margin-left: 0.5em;
    font-weight: 700;
}

/* Menu toggle button */

#navbar-site .navbar-toggler {
    padding: 7px 23px;
    border-left: 1px solid #ccc;
    cursor: pointer;
    border-radius: 0;
    margin: 8px 0;
}

#navbar-site .navbar-toggler .meny-text {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    color: #999999;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

#navbar-site .navbar-toggler .icon-bar {
    border-radius: 1px;
    display: block;
    height: 4px;
    width: 30px;
    margin-bottom: 5px;
    background-color: #999999;
}

#navbar-site .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

#navbar-site .navbar-nav .nav-link:focus,
#navbar-site .navbar-nav .nav-link:hover {
    color: var(--finsam-teal);
}

#navbar-site .navbar-nav .dropdown-menu .nav-link:focus,
#navbar-site .navbar-nav .dropdown-menu .nav-link:hover {
    color: #ffffff;
}

/* Breakpoints Header and navbar */

@media (min-width: 768px) {

    .navbar-nav .active > .nav-link,
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show,
    .navbar-nav .show > .nav-link {
        color: #000;
    }

    .navbar-collapse {
        background-color: #fff;
    }

    .navbar-nav .nav-link {
        color: #000;
        padding: .5rem .5rem .5rem .75rem;
    }

    #extra-menu {
        background-color: transparent;
        margin-bottom: 0;
        margin-top: 10px;
        display: block;
    }

    #search-site {
        padding: 0;
    }

    li.nav-item {
        border-top: none;
    }

    .mainmenu .nav-link:hover {
        background-color: transparent;
        color: #999;
    }

    .dropdown-menu {
        min-width: 200px !important;
    }

    .dropdown-menu .nav-item {
        padding-left: 0;
    }

    .dropdown-menu .nav-item:hover {
        background: #f2f3f4;
    }

    .dropdown-menu .nav-item .nav-link {
        padding-left: 1rem;
    }

    .dropdown-menu .dropdown-menu {
        display: none !important;
    }
}

@media screen and (min-width: 992px) {

    #extra-menu {
        margin-bottom: 30px;
    }
}

/* 
END HEADER AND NAVBAR 
������������������������������������������������� */

/* 
�������������������������������������������������
KOPPLA SAMMAN
�������������������������������������������������
*/

#hero-desktop {
    background-image: url(images/hero-bg.jpg);
    background-size: cover;
    background-position: center;
}

#hero-desktop .overlay {
    min-height: calc(100vh - 90px);
    background-image: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#mainHeadline {
    height: calc(100vh - 255px);
    width: auto;
}

.hero-logo {
    display: none;
    flex-basis: 200px;
    flex-grow: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {

    #hero-desktop .overlay {
        min-height: calc(100vh - 86px);
        align-items: flex-end;
    }

    #hero-desktop h1 {
        font-size: 6rem;
        padding-right: 2rem;
    }

    #hero-desktop h1 span {
        font-size: 2rem;
    }

    .hero-logo {
        display: block;
    }
}

@media screen and (min-width: 992px) {

    #hero-desktop .overlay {
        min-height: calc(100vh - 105px);
    }
}

@media screen and (min-width: 1200px) {

    #quote-content-blocks .content-block:first-child {
        margin-top: 5rem;
    }
}

@media screen and (min-width: 1400px) {

    #quote-content-blocks .content-block:first-child {
        margin-top: 6rem;
    }
}

.bg-white .content-text h3 {
    color: var(--finsam-teal);
}

#example-content-blocks {
    padding-bottom: 0;
}

    #example-content-blocks .content-image {
        padding: 0;
    }

    #example-content-blocks a.btn {
        margin-top: 0.25rem;
    }

@media screen and (min-width: 650px) {
    #example-content-blocks {
        padding-bottom: 2rem;
    }
}

@media screen and (min-width: 992px) {
    #example-content-blocks .content-block:first-child {
        margin-top: 4rem;
    }

    #example-content-blocks {
        padding-bottom: 0.5rem;
    }
}

@media screen and (min-width: 1200px) {
    #example-content-blocks .content-block:first-child {
        margin-top: 5rem;
    }

    #example-content-blocks .content-block:last-child {
        margin-bottom: 7.5rem;
    }

    #example-content-blocks .content-text p {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    #example-content-blocks a.btn {
        margin-top: 0.5rem;
    }
}

@media screen and (min-width: 1700px) {
    #example-content-blocks .content-text p {
        font-size: 1.5rem;
    }
}

#info-section .d-flex {
    flex-wrap: wrap;
    justify-content: space-between;
}

    #info-section .d-flex > div {
        flex-basis: 100%;
        flex-grow: 0;
        flex-shrink: 0;
        margin-bottom: 1rem;
    }

#info-section h3 {
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

#info-section > .d-flex > div:last-child {
    text-align: center;
}

    #info-section > .d-flex > div:last-child h3 {
        margin: 1rem 0 0;
    }

    #info-section > .d-flex > div:last-child img {
        margin: 1rem 0;
        width: 380px;
    }

@media screen and (min-width: 992px) {

    #info-section .d-flex {
        margin-right: -1rem;
        margin-left: -1rem;
    }

        #info-section .d-flex > div {
            flex-basis: calc(50% - 1rem);
            padding: 0 1rem;
        }

            #info-section .d-flex > div:last-child {
                flex-basis: 100%;
            }

    #info-section {
        padding-top: 2rem;
    }

        #info-section h3 {
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            font-size: 1.375rem;
        }
}

@media screen and (min-width: 1200px) {

    #info-section .d-flex > div {
        flex-basis: calc(50% - 215px);
    }

        #info-section .d-flex > div:last-child {
            flex-basis: 386px;
            text-align: left;
        }

            #info-section .d-flex > div:last-child h3 {
                margin-top: 0;
            }
}

/* 
�������������������������������������������������
KOPPLA SAMMAN SUBPAGE 2021
�������������������������������������������������
*/

#subpage-header .content-block {
    background-color: var(--finsam-teal);
}

#subpage-header .content-image {
    padding: 0;
}

#subpage-header .content-text {
    padding: 1.5rem 1rem;
}

    #subpage-header .content-text h1 {
        color: #ffffff;
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }

    #subpage-header .content-text p {
        font-size: 1.125rem;
        color: #ffffff;
    }

#subpage-header .content-block {
    margin-top: 0;
}

@media screen and (min-width: 380px) {

    #subpage-header .content-text h1 {
        font-size: 2rem;
    }
}

@media screen and (min-width: 768px) {

    #subpage-header .content-text {
        padding: 1.75rem;
    }
}

@media screen and (min-width: 992px) {

    #subpage-header {
        padding: 2rem 0;
    }

        #subpage-header .content-block {
            background-color: #ffffff;
            margin: 2rem 0;
        }

        #subpage-header .content-text {
            padding: 2rem 0 2rem 2rem;
        }

            #subpage-header .content-text h1 {
                color: var(--finsam-teal);
                font-size: 2.25rem;
            }

            #subpage-header .content-text p {
                font-size: 1.125rem;
                color: #000000;
            }
}

@media screen and (min-width: 1200px) {

    #subpage-header {
        padding: 3rem 0;
    }

        #subpage-header .content-text {
            padding-left: 2.5rem;
        }

            #subpage-header .content-text h1 {
                color: var(--finsam-teal);
                font-size: 2.5rem;
            }

            #subpage-header .content-text p {
                font-size: 1.25rem;
                line-height: 1.4;
            }
}

@media screen and (min-width: 1400px) {

    #subpage-header .content-text h1 {
        font-size: 2.75rem;
    }
}

@media screen and (min-width: 1700px) {

    #subpage-header {
        padding: 4rem 0;
    }

        #subpage-header .content-text {
            padding-left: 4.5rem 0 4.5rem 4rem;
        }

            #subpage-header .content-text h1 {
                font-size: 4.375rem;
            }

            #subpage-header .content-text p {
                font-size: 1.5rem;
            }
}

#article-section {
    flex-wrap: wrap;
}

#article-section > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
}

.sidebar {
    margin-top: 2.5rem;
}

.sidebar a {
    text-decoration: none;
}

.sidebar .quote {
    margin-bottom: 2rem;
}

.sidebar .download h3 {
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.sidebar .download p {
    max-width: 100%;
    width: 100%;
    margin-top: 0.5rem;
}

@media screen and (min-width: 400px) {

    .sidebar .download img {
        width: 386px;
    }

    .sidebar .download p {
        width: 350px;
    }
}

@media screen and (min-width: 992px) {

    .sidebar {
        margin-top: 0;
    }

    #article-section {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

        #article-section .article {
            flex-basis: calc(100% - 350px);
            max-width: calc(100% - 350px);
        }

        #article-section .sidebar {
            flex-basis: 300px;
            max-width: 300px;
        }

    .sidebar .download {
        padding-top: 1rem;
    }

        .sidebar .download p {
            max-width: 100%;
            width: 350px
        }
}

@media screen and (min-width: 1200px) {

    .article h2 {
        font-size: 2.5rem;
    }

    .article p {
        font-size: 1.125rem;
    }

    #article-section .article {
        flex-basis: calc(100% - 550px);
        max-width: calc(100% - 550px);
    }

    #article-section .sidebar {
        flex-basis: 455px;
        max-width: 455px;
    }

    .sidebar .download {
        padding-top: 2.5rem;
    }
}

@media screen and (min-width: 1700px) {

    .article {
        flex-basis: calc(100% - 540px);
    }

        .article p {
            font-size: 1.25rem;
        }

    .sidebar p {
        font-size: 1rem;
    }
}

/* 
�������������������������������������������������
CONTENT BLOCKS
�������������������������������������������������
*/

.content-block {
    display: flex;
    flex-wrap: wrap;
}

    .content-block > div {
        flex-basis: 100%;
    }

.content-image {
    padding: 1rem 1rem 0;
}

    .content-image img {
        width: 100%;
        height: 66vw;
        display: block;
        object-fit: cover;
        object-position: center;
    }

.content-text {
    padding: 1.5rem 1rem;
}

.bg-green .content-text * {
    color: #FFFFFF;
}

.bg-yellow .content-text * {
    color: #FFFFFF;
}

.content-text h3 {
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    font-size: 1.875rem;
}

@media screen and (min-width: 380px) {

    .content-text h3 {
        font-size: 2rem;
    }
}

@media screen and (min-width: 450px) {

    .content-image {
        padding: 1.5rem 1.5rem 0;
    }

    .content-text {
        padding: 1.5rem;
    }
}

@media screen and (min-width: 650px) {

    .content-block {
        flex-wrap: nowrap;
        margin-top: 2rem;
    }

        .content-block > .content-image {
            flex-basis: 325px;
            flex-grow: 0;
            flex-shrink: 0;
            padding: 0;
            height: auto;
            min-height: 325px;
        }

            .content-block > .content-image div {
                height: 100%;
            }

                .content-block > .content-image div.clear {
                    height: auto;
                }

            .content-block > .content-image img {
                height: 100%;
            }

        .content-block > .content-text {
            flex-basis: calc(100% - 325px);
            flex-grow: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .content-block:nth-child(even) .content-text {
            order: 1;
        }

        .content-block:nth-child(even) .content-image {
            order: 2;
        }
}

@media screen and (min-width: 768px) {

    .content-block > .content-image {
        flex-basis: 380px;
        min-height: 380px;
    }

    .content-block > .content-text {
        flex-basis: calc(100% - 380px);
    }
}

@media screen and (min-width: 992px) {

    .content-block {
        margin: 5rem 0;
        padding: 0 2rem;
    }

    .content-image {
        margin: -1.5rem 0;
        height: auto;
        position: relative;
    }

        .content-image img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: center;
        }

    .content-text {
        padding: 2rem 0 2rem 2rem;
    }

        .content-text h3 {
            font-size: 2.25rem;
        }

        .content-text p {
            font-size: 1.125rem;
        }

    .content-block:nth-child(even) .content-text {
        padding-left: 0;
        padding-right: 2rem;
    }
}

@media screen and (min-width: 1200px) {

    .content-block {
        margin: 8rem 0;
        padding: 0 5vw;
    }

    .content-image {
        margin: -2rem 0;
    }

    .content-text {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .content-text {
        padding-left: 2.5rem;
    }

    .content-block:nth-child(even) .content-text {
        padding-right: 2.5rem;
    }

    .content-text h3 {
        font-size: 2.5rem;
    }

    .content-text p {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 1400px) {

    .content-block {
        padding: 0 7vw;
    }

        .content-block > .content-image {
            flex-basis: 380px;
        }

    .content-text {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .content-text {
        padding-left: 3rem;
    }

    .content-block:nth-child(even) .content-text {
        padding-right: 3rem;
    }

    .content-text h3 {
        font-size: 2.75rem;
    }
}

@media screen and (min-width: 1700px) {

    .content-block > .content-image {
        flex-basis: 480px;
        min-height: 480px;
    }

    .content-block > .content-text {
        flex-basis: calc(100% - 480px);
    }

    .content-text {
        padding-left: 4rem;
    }

    .content-block:nth-child(even) .content-text {
        padding-right: 4rem;
    }

    .content-text {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

        .content-text h3 {
            font-size: 4.375rem;
        }

        .content-text p {
            font-size: 1.25rem;
        }
}

/*
�������������������������������������������������
KOPPLA SAMMAN 2022
�������������������������������������������������
*/

/* Margins */

.section-y-space {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media screen and (min-width: 650px) {

    .section-y-space {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media screen and (min-width: 768px) {

    .section-y-space {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media screen and (min-width: 960px) {

    .section-y-space {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (min-width: 1200px) {

    .section-y-space {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (min-width: 1700px) {

    .section-y-space {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.section-x-space {
    padding-right: 1rem;
    padding-left: 1rem;
}


@media screen and (min-width: 450px) {

    .section-x-space {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media screen and (min-width: 768px) {

    .section-x-space {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media screen and (min-width: 1200px) {

    .section-x-space {
        padding-right: 5vw;
        padding-left: 5vw;
    }
}

@media screen and (min-width: 1400px) {

    .section-x-space {
        padding-right: calc(50% - 600px);
        padding-left: calc(50% - 600px);
    }
}

@media screen and (min-width: 1700px) {

    .section-x-space {
        padding-right: calc(50% - 800px);
        padding-left: calc(50% - 800px);
    }
}

.intro-blocks {
    flex-wrap: wrap;
}

.intro-blocks > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {

    .intro-blocks {
        justify-content: flex-start;
        position: relative;
    }

    .intro-blocks > div.block-left {
        flex-basis: calc(50% + 16px);
        padding-right: 64px;
        padding-left: calc(50% - 345px);
        position: relative;
        margin-top: -4rem;
    }

    .intro-blocks > div.block-right {
        flex-basis: calc(50% + 16px);
        margin-left: -32px;
        padding-left: 32px;
        padding-right: calc(50% - 345px);
        z-index: 1;
    }
}

@media screen and (min-width: 850px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 389px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 389px);
    }
}

@media screen and (min-width: 950px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 435px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 435px);
    }
}

@media screen and (min-width: 1050px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 484px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 484px);
    }
}

@media screen and (min-width: 1200px) {

    .intro-blocks > div.block-left {
        flex-basis: calc(50% + 28px);
        padding-right: 112px;
        padding-left: 5vw;
        margin-top: -6rem;
    }

    .intro-blocks > div.block-right {
        flex-basis: calc(50% + 28px);
        margin-left: -56px;
        padding-left: 56px;
        padding-right: 5vw;
    }
}

@media screen and (min-width: 1400px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 600px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 600px);
    }
}

@media screen and (min-width: 1700px) {

    .intro-blocks > div.block-left {
        padding-left: calc(50% - 800px);
    }

    .intro-blocks > div.block-right {
        padding-right: calc(50% - 800px);
    }
}

.intro-blocks .block-left * {
    color: #FFFFFF;
}

.intro-blocks .block-left h2 {
    font-size: 2.375rem;
    margin-bottom: 0.5rem;
}

.intro-blocks .block-right h3 {
    text-transform: uppercase;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {

    .intro-blocks .block-left h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.1875rem;
    }


    .intro-blocks .block-right h3 {
        margin-bottom: 1rem;
    }

    .intro-blocks .block-right p {
        line-height: 1.6;
    }
}

@media screen and (min-width: 1200px) {

    .intro-blocks .block-left h2 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.25rem;
    }

    .intro-blocks .block-right h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .intro-blocks .block-right p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1400px) {

    .intro-blocks .block-left h2 {
        font-size: 3.75rem;
    }

    .intro-blocks .block-left p {
        font-size: 1.375rem;
    }

    .intro-blocks .block-right h3 {
        font-size: 2rem;
    }

    .intro-blocks .block-right p {
        font-size: 1.125rem;
    }
}

.ks-page .quote-person,
.ks-page .content-text .quote-person {
    font-size: 1rem;
    margin-top: 1.25rem;
}

    .ks-page .quote-person strong,
    .ks-page .content-text .quote-person strong {
        font-weight: 700;
    }

@media screen and (min-width: 1600px) {

    .ks-page .quote-person,
    .ks-page .content-text .quote-person {
        margin-top: 1.5rem;
        font-size: 1.125rem;
    }
}

#intro-info-section > .d-flex {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

    #intro-info-section > .d-flex > div {
        flex-basis: 100%;
        flex-grow: 0;
        flex-shrink: 0;
    }

        #intro-info-section > .d-flex > div:first-child {
            margin-bottom: 1.5rem;
        }

            #intro-info-section > .d-flex > div:first-child figure {
                position: relative;
                margin-bottom: 0;
            }

                #intro-info-section > .d-flex > div:first-child figure::after {
                    content: "";
                    display: block;
                    padding-bottom: 75%;
                }

                #intro-info-section > .d-flex > div:first-child figure img {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }

.stakes .stakes-container {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1.5rem;
}

.stakes div.stakes-container:first-of-type {
    border-top: 1px solid #ccc;
}
                                
.stakes-container img {
    width: 100%;   
}

.stakes-container p:last-child {
    margin-bottom: 0;
}

.stakes-container a.btn {
    margin-top: 1em;
}

.stakes .stakes-container h2 {
    margin-top: 1.3rem;
}

.stakes .top-stakes {
    background-color: #f8f8f8;
    padding: 1rem;
}

.stakes .top-stakes h2 {
    margin-top: 1.3rem;
}

.pod-header {
    background-color: #F8F8F8;
    padding: 1.5rem 1rem;
}

.pod-header a {
    color: #000000;
}

.pod-header a:hover {
    text-decoration: underline;
}
        
.podd img {
    display: block;
}

.podd .pagination {
    margin-top: 1rem;
}

#subPage .podd .btn {
    margin-top: 0.745rem;
}


    #subPage .podd .btn:hover {
        text-decoration: none;
    }


#subPage .row .col {
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}



#subPage .document .accordion-header {
    margin-top: 0;
}


#subPage .document .accordion-body a {
    display: block;
}


#subPage .document .accordion-item .txt {
    display: flex;
    justify-content: space-between;
    width: 100%;
}



    #subPage .document .accordion-item .txt p:first-child {
        width: auto;
    }

    #subPage .document .accordion-item .txt p {
        margin: 0;
    }

    #subPage .document .accordion-item .txt p:last-child {
        padding-right: 15px;
    }

@media screen and (min-width: 768px) {

    .stakes-container img {
        max-width: 500px;
    }


    #subPage .document .accordion-item .txt p:first-child {
        width: 300px;
    }
}

#subPage .contact .contact-container {
    display: block;
    padding: 1rem;
    background-color: #f8f8f8;
}

    #subPage .contact .contact-container h2 {
        margin-top: 5px;
    }

    #subPage .contact .contact-container a {
        color: #000000;
        padding-bottom: 5px;
        text-decoration: none;
    }

    #subPage .contact .contact-container a:hover {
        text-decoration: underline;
    }

    #subPage .contact .contact-container .phone {
        margin-bottom: 10px;
    }

    #subPage .contact .contact-container p {
        margin: 5px 0;
    }

    #subPage .contact img {
       width: 100%;
    }


#subPage .submenu a {
    color: #000;
}

#subPage .submenu .active {
    font-weight: 500;
}

/* Login form */

.login-form button.btn:hover {
    border: 2px solid var(--finsam-teal);
    color: var(--finsam-teal);
    background-color: #FFFFFF;
}

.login-form input.form-control {
    width: 100%;
    max-width: 400px;
}

.login-form input:focus {
    box-shadow: none;
    border-color: var(--finsam-teal);
}