/*
font-family: 'Montserrat', sans-serif;
*/

::selection {
    background-color: #2088A0;
    color: #ffffff;
}

[type="button"] {
    -webkit-appearance: none;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #3B454E;
    background-color: #fff !important;
    overflow-x: hidden;
}

a,
a:link,
a:active {
    color: #2088A0;
}


.subpage a {
    text-decoration: underline;
    font-weight: 600;
}

.subpage p {
    margin-bottom: 1.5rem;
}

.subpage a:hover {
    text-decoration: underline;
    color: #2088A0;
}




a:hover {
    text-decoration: none;
}

ol, ul {
    padding-left: 1.25rem;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––
TEXT AND TYPOGRAPHY
–––––––––––––––––––––––––––––––––––––––––––––––––*/


h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    text-transform: initial;
    color: #000;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

h5 {
    font-size: 1.125rem;
    margin-bottom: .25rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: .25rem;
}


p, li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

img + p, img + h2, img + h3, img + h4, video + p {
    margin-top: 1.5rem;
}

img {
    width: 100%
}

p + h2, p + h3, p + h4, ul + h3 {
    margin-top: 1.5em;
}

.ingress {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
}

    .ingress:last-child {
        margin-bottom: 0;
    }


.blue {
    background-color: #E9F4F6;
    padding: 2rem;
    display: block;
    width: 100%;
}

.hr-divider {
    border-bottom: 1px solid #a7a7a7;
    display: inline-block;
    margin-bottom: 1.7rem;
}

.subpage .umbraco-forms-form input.text, .subpage .umbraco-forms-form textarea {
    max-width: 700px !important;
}

.umbraco-forms-form .checkboxlist label {
    float: none !important;
}

/* Breakpoints Text and typography
––––––––––––––––––––––––––––––––– */
@media (min-width: 576px) {
    h1, h2, h3, h4, h5, h6 {
        -webkit-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual; /*hyphen only at &hyphen; or &shy; (if needed)*/
    }
}

@media screen and (min-width: 768px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    p.ingress {
        font-weight: 600;
        font-size: 1.125rem;
        line-height: 1.4;
    }
}

@media screen and (min-width: 1700px) {

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p.ingress {
        font-weight: 600;
        font-size: 1.125rem;
        line-height: 1.2;
    }
}


/* ______ Spacing utilites X _______ */

.padding-x-row {
    padding-left: 15px;
    padding-right: 15px;
    transition: .5s;
}

@media (min-width: 768px) {
    .padding-x-row {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (min-width: 1200px) {
    .padding-x-row {
        padding-left: 7vw;
        padding-right: 7vw;
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* _______ Spacing utilites y ________ */

.padding-y-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: .5s;
}

@media (min-width: 768px) {
    .padding-y-row {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1200px) {
    .padding-y-row {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}


/* _______ Container ________ */

.container.narrow {
    max-width: 900px;
}

.default-btn {
    background-color: #2088A0;
    color: #fff;
    border-radius: 30px;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: 700;
}

.subpage-section .default-btn {
    background-color: #2088A0;
    color: #fff;
}

.default-btn:hover {
    background-color: #004858;
    color: #fff;
}

/* 
--------------------------------------------------------------------------------------------------------------------------------------------------
NAVBAR
--------------------------------------------------------------------------------------------------------------------------------------------------
*/

.main-nav-container {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

#main-nav {
    transition: 0.75s ease;
    align-items: flex-start;
    position: absolute;
    position: relative;
}



.navbar-dark {
    background: transparent;
}


.navbar-brand img {
    width: 65px;
    height: auto;
}

#main-nav .navbar-brand {
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {

    .navbar-brand img {
        width: 80px;
    }
}


#desktop-menu {
    flex-direction: column !important;
    justify-content: space-between;
    align-items: flex-end;
}




@media screen and (min-width: 992px) {
    #desktop-menu {
        height: 100px;
    }
}

@media screen and (min-width: 1700px) {
    #desktop-menu {
        height: 100px;
    }
}




.navbar-dark .navbar-toggler, .navbar-light .navbar-toggler {
    border: 1px solid rgba(255,255,255,1);
    background-color: rgba(32, 136, 160, .9);
}

    .navbar-dark .navbar-toggler:hover {
        background-color: rgba(32, 136, 160, 1);
    }



/* Desktop main menu */
.nav-container {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .nav-container form {
        margin: 17px 0 7px;
    }

#main-nav input {
    background-color: #fff;
    color: #000;
    font-size: 0.75rem;
    border: 0;
    border-radius: 15px;
    padding: 7px 0 7px 15px;
    position: relative;
    left: 35px;
    width: 100px;
    border: 1px solid #2088A0;
}

#main-nav form button {
    background-color: transparent;
    color: #2088A0;
    border: 0;
    top: 2px;
    position: relative;
    right: 5px;
}

#main-nav .fa-search {
    font-size: 14px;
}

.search-mobile {
    display: none;
}

.subpage .row, .news .row, .news-item .row {
    flex-direction: column-reverse;
}

.news .container .row {
    flex-direction: initial;
}

@media screen and (min-width: 992px) {
    #main-nav input {
        width: 246px;
    }
}

@media screen and (min-width: 1200px) {



    .subpage .row, .news .row, .news-item .row {
        flex-direction: row;
    }
}




#desktop-menu .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    color: #000;

}

/* Desktop dropdown menu */

#desktop-menu .dropdown:hover > .dropdown-menu {
    display: block;
}

#desktop-menu .dropdown-menu {
    border: none;
    background: #fff;
    color: #3b454e;
    padding: 0;
    width: 290px;
    border-radius: 5px;
    top: 40px;
    padding-top: 0.4rem;
}

#desktop-menu .dropdown:last-child .dropdown-menu {
    right: 10px;
    left: auto;
}

#desktop-menu .dropdown:last-child .dropdown-submenu {
    left: 210px;
}



#desktop-menu .fas {
    color: #2088A0;
}




.navbar-light #desktop-menu .dropdown-menu {
    border-top: 1px solid #dcddde;
}



#desktop-menu .dropdown-item {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #3b454e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    border-radius: 5px;
    text-transform: uppercase;
}


    #desktop-menu .dropdown-item:hover,
    #desktop-menu .dropdown-item:active,
    #desktop-menu .dropdown-item:focus {
        background-color: transparent;
    }

#desktop-menu .dropdown-divider {
    margin: 0
}

#desktop-menu .dropdown-submenu {
    list-style: none;
    padding-left: 0;
    padding-bottom: 0;
    display: none;
    background-color: #C0DCE3;
    border-radius: 0 5px 5px;
    margin-left: 40px;
}

.container-item {
    position: relative;
}

    .container-item:hover .dropdown-submenu {
        display: block !important;
        position: absolute;
        background-color: #fff;
        left: 250px;
        top: 0px;
    }

#desktop-menu .container-item a:hover {
    background-color: #E7F5F9;
}

#desktop-menu .dropdown-submenu .dropdown-item {
    font-size: 0.875rem;
    text-transform: none;
}



#desktop-menu .dropdown-menu .dropdown-submenu li:hover a {
    background-color: #2088A0 !important;
    color: #fff !important;
    border-radius: 0;
}





@media (min-width: 992px) {

    #desktop-menu form {
        display: flex;
    }



    #desktop-menu .envelope {
        margin-right: 0;
    }



    #desktop-menu .comments {
        margin-left: 25px !important;
    }

    #desktop-menu .fa-user {
    }



    #desktop-menu .comments, #desktop-menu .envelope, #desktop-menu .user {
        display: flex;
        background-color: #2088A0;
        color: #fff;
        border-radius: 25px;
        padding: 9px;
        cursor: pointer;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin-left: 6px;
    }

        #desktop-menu .comments:hover, #desktop-menu .envelope:hover, #desktop-menu .user:hover {
            background-color: #ccc;
        }

    .nav-container {
        width: 100%;
    }
}


/* Close button */

.top-nav-item {
    height: 55px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.close-button {
    font-size: 30px;
    color: #2088A0;
    padding: 0 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

#mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    padding-top: 60px;
    overflow-y: auto;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 1032;
}

    #mobile-menu.open {
        -webkit-transform: translateX(-1rem);
        transform: translateX(-1rem);
    }

#mobile-menu {
    margin-top: 0;
    width: 100%;
    height: fit-content;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 10;
    padding: 0 1rem;
    box-shadow: none;
    background-color: #fff;
    -webkit-appearance: none !important;
}

    #mobile-menu .offcanvas-submenu-collapse.open {
        padding: 0 30px;
        background-color: #fff;
        padding: 0 15px;
    }


#main-nav-mobile .submenu-item {
    background-color: #f8f8f8;
}

    #main-nav-mobile .submenu-item svg {
        float: right !important;
        margin: 15px;
    }


#main-nav-mobile .submenu-submenu .nav-item .submenu {
    display: none;
}


@media (min-width: 768px) {
    #mobile-menu {
        width: 50%;
        transform: translateX(200%);
    }

        #mobile-menu.open {
            width: 49%;
            transform: translateX(calc(100% - 1rem));
        }
}



@media (min-width: 1199px) {
    #mobile-menu {
        display: none !important;
    }
}

.mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    border-bottom: 1px solid #2088A0;
    z-index: 10;
}

#mobile-menu .nav-link {
    color: #3B454E;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    border-top: 1px solid #2088A0;
    padding: 0.875rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f8f8;
    color: #2088A0;
}

span.nav-link {
    cursor: default;
}

#mobile-menu .nav-link svg {
    color: #273583;
    margin-right: 0.25rem;
}

#mobile-menu .back-button {
    justify-content: flex-start;
    color: #2088A0;
    font-size: 24px;
}


.primary {
    background-color: #2088A0;
    color: #fff;
    border-radius: 30px;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: 700;
}

    .primary:hover {
        background-color: #026b83;
        color: #fff;
    }

#main-nav-mobile .submenu .nav-link.submenu-title {
    border-top: 1px solid #B2B3B4;
    border-bottom: 1px solid #B2B3B4;
    font-weight: 600;
    text-transform: uppercase;
}

/* Mobile submenu */

#mobile-menu .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10;
    background-color: #f8f8f8;
    padding: 0 1rem;
    opacity: 0;
}

    #mobile-menu .offcanvas-submenu-collapse.open {
        -webkit-transform: translateX(-1rem);
        transform: translateX(-1rem);
        opacity: 1;
    }

.offcanvas-submenu-collapse .top-nav-item {
    justify-content: space-between;
}

#mobile-menu .submenu {
    list-style: none;
    padding-left: 0;
}

#mobile-menu .offcanvas-submenu-collapse .submenu:first-child .nav-item:first-child .nav-link {
    border-top: none;
}

#mobile-menu .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

    #mobile-menu .submenu-submenu .submenu a {
        padding-left: 25px !important;
    }

.navbar-collapse .submenu-submenu .submenu-item .nav-link {
    font-weight: 700 !important;
}

.navbar-collapse .submenu-submenu .submenu-item .submenu .nav-link {
    font-weight: 400 !important;
}






#mobile-menu .submenu-submenu .nav-item .nav-link {
    border-top: 1px solid #B2B3B4;
    text-transform: none;
    font-weight: 400;
    display: block;
}

#mobile.menu .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

#mobile-menu .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

#mobile-menu .submenu-submenu > .nav-item:last-child {
    border-bottom: 1px solid #B2B3B4;
}

#mobile-menu .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

#mobile-menu .submenu-item .nav-link {
    text-transform: none;
}

/* 3rd level menu in submenu */

#mobile-menu .submenu-submenu .submenu .nav-link {
    text-transform: none;
    border-top: none;
    padding-left: 3rem;
    font-size: 0.875rem
}

#mobile-menu .submenu-submenu .submenu .nav-item:first-child .nav-link {
    padding-top: 0;
}

#mobile-menu .submenu-submenu .submenu .nav-item:last-child .nav-link {
    padding-bottom: 1rem;
    border-bottom: none;
}


/* carousel */

#carousel .carousel-text {
    width: 100%;
    display: flex !important;
    position: relative;
    background-color: #2088A0;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

#carousel .default-btn {
    background-color: #004858;
    color: #fff;
    font-size: 0.875rem;
}

    #carousel .default-btn:hover {
        background-color: #026b83;
        color: #fff;
    }


#carousel .carousel-text h2 {
    font-size: 1.125rem;
    color: #fff;
    text-transform: uppercase;
}

.carousel-indicators {
    display: none;
}

#carousel img {
    filter: brightness(96%);
    min-height: 150px;
    object-fit: cover;
}


.carousel-item .padding-x-row {
    padding-left: 0;
    padding-right: 0;
}




@media (min-width: 768px) {
    #carousel img {
        min-height: 320px;
    }

    #carousel .carousel-text {
    }

    #carousel .default-btn {
        font-size: 1rem;
    }

    #carousel .carousel-text h2 {
        font-size: 2rem;
    }
}


@media (min-width: 992px) {
    .carousel-item .padding-x-row {
        padding-left: 7vw;
        padding-right: 7vw;
    }

    #carousel .carousel-text {
        background-color: transparent;
        top: 37%;
        position: absolute;
        max-width: 550px;
        text-align: left;
        align-items: start;
    }

    #carousel .default-btn {
        background-color: #2088A0;
        color: #fff;
        margin-top: 5px;
    }

        #carousel .default-btn:hover {
            background-color: #026b83;
            color: #fff;
        }

    .carousel-indicators {
        display: flex;
    }
}


@media (min-width: 1200px) {
}

/* news */

#news h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
}

#news h3 {
    text-transform: uppercase;
    font-size: 1.125rem;
}

#news img {
    border-radius: 5px;
    flex: 1 1 0;
    margin-bottom: 15px;
}

#news .btn {
    margin: 0 auto;
    display: block;
}

#news .news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #C4C4C4;
    padding: 1rem 0;
    cursor: pointer;
}

    #news .news-container .news-txt {
        flex: 2 1 0;
        padding: 0 1.245rem;
    }


.news-container a {
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 15px;
    display: block;
    margin-top: 6px;
    text-align: right;
    margin-right: 15px;
}

#news .news-container button {
    cursor: pointer;
}

#news .news-container img {
    width: 150px;
}



#news .row .facebook {
    text-align: center;
}



#puff-segemnt .news-txt h3, #puff-segemnt .calendar-headline {
    color: #000;
    bottom: 0;
    text-align: left;
}


#news .news-container.calendar {
    align-items: flex-start;
}

    #news .news-container.calendar p {
        margin-bottom: 0;
    }

    #news .news-container.calendar h3 {
        margin-top: 0;
    }

#puff-segemnt .news-txt h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

#puff-segemnt .news-container .news-txt {
    padding: 0;
}






@media (min-width: 768px) {
    #news .news-container {
        flex-direction: row;
    }

    #news img {
        margin-bottom: 0;
    }
}




/* #puff-segemnt */

#puff-segemnt {
    margin: 0 1rem;
}

    #puff-segemnt img {
        border-radius: 5px;
    }

    #puff-segemnt h2 {
        color: #fff;
    }


    #puff-segemnt h3 {
        color: #fff;
        position: relative;
        border: -25px;
        bottom: 73px;
        text-align: center;
        font-weight: 700;
        font-size: 1.25rem;
    }




    /* relevant styles */
    #puff-segemnt .img-wrap {
        position: relative;
        margin-bottom: 1.8rem;
    }



    #puff-segemnt .hovertext {
        border-radius: 5px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        visibility: hidden;
        background: rgba(32, 136, 160, 0.72);
        color: #fff;
        opacity: 0;
        transition: opacity .2s, visibility .2s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        visibility: visible;
        opacity: 1;
        transition: opacity .2s, visibility .2s;
    }


    #puff-segemnt .img-wrap:hover .hovertext .default-btn {
        background: rgba(32, 136, 160, 0.1);
        border: 1px solid #fff;
        font-weight: 600;
    }



        #puff-segemnt .img-wrap:hover .hovertext .default-btn:hover {
            background-color: #2088A0;
        }


    #puff-segemnt .img-wrap:hover .hovertext .fas {
        margin-left: 2px;
        font-size: 14px;
    }


    #puff-segemnt .img-wrap:hover .hovertext {
    }




    #puff-segemnt .img-wrap .hovertext h2 {
        font-weight: 700;
        font-size: 1.45rem;
       text-transform: uppercase;
    }

    #puff-segemnt .img-wrap .hovertext p {
        overflow: hidden;
    }




/* bottom  */

#bottom-segemnt {
    background-image: url("/media/e11dioa4/bottom_bgw.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

    #bottom-segemnt .txt {
        margin: 6rem 0;
        text-align: center;
    }

    #bottom-segemnt h2 {
    }


/* sub page top  */
#top-segment {
    height: 190px;
    background-size: cover;
    justify-content: center;
    align-items: center;
    background-position: 76% 3%;
}

    #top-segment .txt-container {
        position: relative;
    }

    #top-segment .top-image {
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        position: absolute;
        margin-top: 2.25rem;
        line-height: 1.34;
        font-size: 1.875rem;
        text-align: center;
        font-size: 1.7rem;
        margin-top: 18rem;
    }

        #top-segment .top-image span {
            overflow-wrap: normal;
        }


    #top-segment::before {
        content: '';
        display: block;
        position: absolute;
        background-color: #000;
        opacity: 0.1;
        width: 100%;
        height: 190px;
    }

#breadcrumb, .breadcrumb {
    background-color: #E9F4F6;
}


    #breadcrumb .breadcrumb {
        padding: 0.75rem 0;
    }

    #breadcrumb li {
        text-transform: uppercase;
    }

    #breadcrumb .divider {
        padding: 0 3px 0 1px;
    }
    
    
#breadcrumb {
    margin-top: 92px;
}

@media (min-width: 768px) {

    #breadcrumb {
        margin-top: 110px;
    }
}

/* footer  */
#footer {
    background-color: #E9F4F6;
    background-image: url("/template/img/bottom_logo_bg.png");
    background-repeat: no-repeat;
    background-position: center;
}

    #footer h3 {
        text-transform: uppercase;
    }

    #footer .newsl img {
        width: 32px;
        height: 32px;
        margin-top: 10px;
    }

        #footer .newsl img:hover {
            filter: invert(5%);
        }




    #footer .logo-txt {
        display: block;
    }

    #footer div {
        text-align: center;
    }

    #footer .newsl {
        margin: 2rem 0;
    }

    #footer .logo-txt img {
        display: none;
    }

    #footer .row {
        margin-left: 0;
        margin-right: 0;
    }





@media (min-width: 980px) {


    #top-segment {
        height: 400px;
    }

        #top-segment::before {
            height: 400px;
        }

    #top-segment {
        background-position: center 14%;
    }

    #puff-segemnt {
        margin: 0;
    }


    #top-segment .top-image {
        font-size: 2.45rem;
    }


    #footer {
        background-position: 97% center;
    }

        #footer .logo-txt img {
            width: 140px;
            height: auto;
            padding: 0;
            padding-bottom: 0.7rem;
            display: block;
            margin: 0 auto
        }
}


@media (min-width: 992px) {
    #footer .newsl {
        margin: 0;
    }

    #footer div {
        text-align: left;
    }
}


@media (min-width: 1200px) {



    #footer .logo-txt {
        display: flex;
        flex-direction: row;
        text-align: left;
    }
}










/* Vänstermenyn på undersidorna heter submenu */

#side-bar {
    padding-left: 15px;
}

    #side-bar nav ul li a::before {
        content: "\f105";
        font-family: FontAwesome;
        margin-right: 0.5em;
    }

    #side-bar nav ul {
        list-style-type: none;
        padding: 0;
        width: 100%;
    }

.submenu li {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(204,204,204,1)
}



    .submenu li a {
        display: block;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
        color: #000;
        padding: 1rem 0.745rem;
        font-family: 'Poppins', sans-serif;
    }


        .submenu li a:hover {
            background-color: #2088A0;
            border-radius: 0 5px 5px 0;
            color: #fff;
            text-decoration: none;
        }


#mobile-menu .submenu li a:hover {
    background-color: transparent;
    border-radius: 0 5px 5px 0;
    color: #000;
    text-decoration: none;
}

.submenu li:last-child {
    border-bottom: 0;
}

.submenu li:first-child a {
}

.submenu li.selected {
    border-radius: 0 5px 5px 0;
}

    .submenu li.selected a {
        border-radius: 0 5px 5px 0;
    }

.submenu svg {
    float: right !important;
    margin: 15px;
}

.submenu .selected svg {
    color: #fff;
}

#side-bar nav ul li a:hover {
    color: rgba(204,204,204,1);
}


/* Sub-sub-menyn */



.submenu ul, .submenu li {
    list-style-type: none;
}


.submenu {
    padding-left: 0;
}

    .submenu .submenu {
        display: none;
        margin: 0;
    }

.selected .submenu {
    display: inherit;
}

    .selected .submenu a {
        color: rgba(0,15,30,0.75);
    }

#side-bar nav ul ul {
    margin-top: 0;
}



.selected a {
    background-color: #2088A0;
    border-radius: 0 5px 5px 0;
    color: #ffffff !important;
}

.selected .submenu .selected a:first-child {
    border-radius: 0 5px 5px 0;
}

.submenu .submenu .submenu .level3 a {
    background-color: #fff !important;
    color: #000 !important;
    margin-left: 1.5rem;
    font-weight: 400;
}



.selected ul a:first-child {
    background-color: #fff;
    border-radius: 0;
    color: #000 !important;
}

.selected .submenu .selected a, .selected .submenu .selected .selected a {
    color: #2088A0 !important;
}




.selected .level2 {
    border: 0;
}

.subpage .submenu .level2 a {
    font-weight: 100;
}


.selected .level2 a {
    margin-left: 0.545rem;
    border: 0;
}



/* Sub-page */

.subpage ul {
    margin: 0.3rem 0.45rem 1rem;
}


.page-1379 .subpage-section {
    padding: 2rem 0;
    border-top: 2px solid #ccc;
}

.page-1379 .subpage-section {
    padding: 2rem 0;
    border-top: 2px solid #ccc;
}




.subpage-section .plr {
}

.quote svg {
    font-size: 1.4rem;
    margin: 6px;
}

.subpage-section {
    clear: both;
}

    .subpage-section .img-left {
        float: left;
        padding: 15px;
        max-width: 350px;
    }

    .subpage-section .img-right {
        float: right;
        padding: 15px;
        width: 300px;
    }


/* news */
.news .news-container {
    display: flex;
    margin-top: 5px;
    flex-direction: column;
}

    .news .news-container .txt {
        padding: 1rem 0;
        font-size: 1.125rem;
    }


.news span {
    font-weight: 600;
}

.news .row .row .col-12 {
    border-bottom: 1px solid;
    padding: 30px 0 30px 0;
}

.news-item img {
    margin-bottom: 1rem;
    /* float: right; */
    width: auto;
}



.staff a, .staff span {
    font-weight: 800;
}

.staff img {
    padding: 1rem;
}

.staff .txt {
    padding: 0 1rem;
}

.staff .col-12 {
    margin-bottom: 0rem;
}


.blueBoxPuff {
    flex-direction: row
}

    .blueBoxPuff .container-box {
        background-color: #E9F4F6;
        height: 100%;
    }

    .blueBoxPuff .txt {
        padding: 15px;
    }

    .blueBoxPuff a {
        display: block;
        text-align: right;
    }

        .blueBoxPuff a .svg-inline--fa {
            font-size: 1.2rem;
        }



    .blueBoxPuff .col-12 {
        margin-bottom: 1rem;
    }

.image-section {
    margin-bottom: 1.65rem;
}




.news .nav {
    justify-content: center;
}

    .news .nav li {
        font-weight: 600;
        font-size: 1.2rem;
        padding: 1rem;
    }

        .news .nav li a:hover {
            color: #000;
        }




@media (min-width: 992px) {


    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: 0.5rem;
    }


    .staff .col-12 {
    }

    .staff .txt {
        padding: 5px 0 0;
    }

    .staff img {
        padding: 0;
    }

    .news .news-container .txt {
        padding: 0 1rem;
        font-size: 1.125rem;
    }

    .news .news-container {
        flex-direction: row;
    }

        .news .news-container img {
            width: 290px;
        }
}






@media (min-width: 1450px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: 1.6rem;
    }
}



/* Sticky buttons desktop view*/

#subpage {
    position: relative;
}

.sticky-column {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 5;
}

.sticky-buttons {
    position: sticky;
    top: 165px;
    right: 0;
    height: 450px;
}

@media screen and (max-width: 768px) {

    .sticky-column {
        display: none
    }
}


/* Chat button desktop view */

#chat-button-desktop,
#chat-button-desktop * {
    box-sizing: border-box;
}

#chat-button-desktop {
    display: block;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 299;
}

/* Closed chat box */

#chat-closed-desktop {
    width: 40px;
    text-align: center;
    padding: 16px 6px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 9px 0 0 9px;
    background-color: #0087a0;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    height: 145px;
}

#chat-open-desktop,
#chat-open-desktop * {
    box-sizing: border-box;
}


#chat-open-desktop {
    width: 380px;
    padding: 1.5rem;
    text-align: center;
    transform: translateX(380px);
    transition: all ease-in-out 0.7s;
    border-radius: 9px 0 0 9px;
    background-color: #0087a0;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 302;
    visibility: hidden;
}

#close-chat-desktop {
    display: none;
    position: absolute;
    right: 1rem;
    top: 0.75rem;
    cursor: pointer;
}

#chat-button-desktop svg.fa-comments-alt {
    color: #ffffff;
    width: 100%;
}

#chat-button-desktop .preview-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}

#chat-closed-desktop.hide {
    display: none;
}

#chat-open-desktop.show {
    display: block;
    cursor: default;
    transform: translateX(0);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    visibility: visible;
}

#close-chat-desktop.show {
    display: block;
}

#chat-open-desktop svg.fa-times {
    color: #ffffff;
    height: 16px;
}

#chat-open-desktop h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 0.75rem;
}

#chat-open-desktop p {
    color: #ffffff;
}

#chat-open-desktop .btn {
    border-radius: 0px;
    margin: 1rem 0 0;
    padding: 9px 12px;
    display: inline-block;
    border: none;
    background: #000 !important;
    box-shadow: none;
    text-align: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

@media screen and (max-width: 768px) {

    #chat-button-desktop {
        display: none;
    }
}












/* Newsletter button */

/* Desktop */

#newsletter-button-desktop,
#newsletter-button-desktop * {
    box-sizing: border-box;
}

#newsletter-button-desktop {
    display: block;
    width: auto;
    height: auto;
    position: absolute;
    top: 160px;
    bottom: auto;
    right: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 300;
}


/* Closed newsletter box */

#newsletter-closed-desktop {
    width: 40px;
    text-align: center;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0087a0;
    border-radius: 9px 0 0 9px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    position: absolute;
    bottom: auto;
    right: 0;
    height: 250px;
}

    #newsletter-closed-desktop svg {
        color: #ffffff;
        margin-right: 0;
        margin-bottom: 0.5rem;
        height: 16px;
    }

#close-newsletter-desktop {
    position: absolute;
    right: 1rem;
    top: 0.75rem;
    cursor: pointer;
}

#newsletter-button-desktop svg.fa-comments-alt {
    color: #066779;
    width: 100%;
}

#newsletter-button-desktop .preview-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.1em;
}


/* Opened newsletter box */

#newsletter-closed-desktop.hide {
    display: none;
}

#newsletter-open-desktop,
#newsletter-open-desktop * {
    box-sizing: border-box;
}


#newsletter-open-desktop {
    display: block;
    width: 380px;
    padding: 1.5rem;
    text-align: center;
    background-color: #0087a0;
    border-radius: 9px 0 0 9px;
    height: 430px;
    transform: translateX(380px);
    transition: all ease-in-out 0.7s;
    box-shadow: 0 0 10px rgba(0,0,0,0);
    visibility: hidden;
    position: absolute;
    z-index: 301;
    top: 160px;
    bottom: auto;
    right: 0;
}

    #newsletter-open-desktop.show {
        transform: translateX(0);
        box-shadow: 0 0 10px rgba(0,0,0,0.4);
        cursor: default;
        visibility: visible;
    }

#close-newsletter-desktop.show {
    display: block;
}

#newsletter-open-desktop svg.fa-times {
    color: #ffffff;
}

#newsletter-open-desktop h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

#newsletter-open-desktop p {
    color: #ffffff;
}

#newsletter-open-desktop .btn {
    border-radius: 0px;
    margin: 1rem 0 0;
    padding: 9px 12px;
    display: inline-block;
    border: none;
    background: #faaa00 !important;
    box-shadow: none;
    text-align: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.newsletter-desktop {
    display: none;
}

@media screen and (max-width: 768px) {

    #newsletter-button-desktop {
        display: none;
        top: auto;
        left: auto;
        bottom: 80px;
        right: 0.5rem;
        border-radius: 9px;
    }

        #newsletter-button-desktop svg.fa-comments-alt {
            height: auto;
        }

    #newsletter-closed-desktop {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    #newsletter-open-desktop.show {
        width: calc(100vw - 16px);
        max-width: 440px;
    }

    #newsletter-button-desktop .preview-text {
        display: none;
    }

    #newsletter-button-desktop h3 {
        font-size: 1.125rem;
        margin: 0.5rem 0;
    }

    #newsletter-closed-desktop svg {
        margin-right: 0;
        font-size: 24px;
    }
}










/* Mobile version */

#newsletter-button,
#newsletter-button * {
    box-sizing: border-box;
}

#newsletter-button {
    width: auto;
    height: auto;
    position: fixed;
    top: auto;
    bottom: 8px;
    right: 1rem;
    border-radius: 9px 9px 0 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 298;
    display: none;
}

/* Closed newsletter box */

#newsletter-closed {
    width: 170px;
    text-align: center;
    padding: 8px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00a0b4;
    border-radius: 9px;
}

    #newsletter-closed svg {
        color: #ffffff;
        margin-right: 0.5rem;
    }

#newsletter-open {
    display: none;
    width: 380px;
    padding: 1.5rem;
    text-align: center;
    background-color: #00a0b4;
    border-radius: 9px;
}

#close-newsletter {
    display: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

#newsletter-button svg.fa-comments-alt {
    color: #ffffff;
    width: 100%;
}

#newsletter-button .preview-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}


/* Opened newsletter box */

#newsletter-closed.hide {
    display: none;
}

#newsletter-open.show {
    display: block;
    cursor: default;
}

#close-newsletter.show {
    display: block;
}

#newsletter-open {
}

#newsletter-button svg.fa-times {
    color: #ffffff;
}

#newsletter-open h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#newsletter-open p {
    color: #ffffff;
}

#newsletter-open .btn {
    border-radius: 0px;
    margin: 1rem 0 0;
    padding: 9px 12px;
    display: inline-block;
    border: none;
    background: #faaa00 !important;
    box-shadow: none;
    text-align: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.newsletter-desktop {
    display: none;
}

@media screen and (max-width: 768px) {

    #newsletter-button {
        display: block;
        top: auto;
        left: auto;
        right: 0.5rem;
        border-radius: 9px;
        bottom: 62px;
    }

    #newsletter-button2 {
        width: auto;
        height: auto;
        position: fixed;
        top: auto;
        bottom: 6px;
        right: 1rem;
        border-radius: 9px 9px 0 0;
        box-shadow: 0 0 15px rgb(0 0 0 / 20%);
        padding: 0;
        box-sizing: border-box;
        cursor: pointer;
        z-index: 298;
        display: block;
        top: auto;
        left: auto;
        right: 0.5rem;
        border-radius: 9px;
        color: #fff;
    }

        #newsletter-button2 .fa-user {
            font-size: 22px;
        }



    #newsletter-button svg.fa-comments-alt {
        height: auto;
    }

    #newsletter-closed {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    #newsletter-open.show {
        width: calc(100vw - 16px);
        max-width: 440px;
    }

    #newsletter-button .preview-text {
        display: none;
    }

    #newsletter-button h3 {
        font-size: 1.125rem;
        margin: 0.5rem 0;
    }

    #newsletter-closed svg {
        margin-right: 0;
        font-size: 24px;
    }
}





/* Chat button mobile view */

#chat-button,
#chat-button * {
    box-sizing: border-box;
}

#chat-button {
    display: block;
    width: auto;
    height: auto;
    position: fixed;
    top: 194px;
    right: 0;
    border-radius: 9px 0 0 9px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 298;
}

/* Closed chat box */

#chat-closed {
    background-color: #00a0b4;
    width: 40px;
    text-align: center;
    padding: 8px 6px;
    border-radius: 9px 0 0 9px;
}

#chat-open {
    background-color: #00a0b4;
    border-radius: 9px;
    display: none;
    width: 380px;
    padding: 1.5rem;
    text-align: center;
}

#close-chat {
    border-radius: 9px;
    display: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

#chat-button svg.fa-comments-alt {
    color: #ffffff;
    width: 100%;
}

#chat-button .preview-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}


/* Opened chat box */

#chat-closed.hide {
    display: none;
}

#chat-open.show {
    display: block;
    cursor: default;
}

#close-chat.show {
    display: block;
}

#chat-button svg.fa-times {
    color: #ffffff;
}

#chat-open h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#chat-open p {
    color: #ffffff;
}

#chat-open .btn {
    border-radius: 0px;
    margin: 1rem 0 0;
    padding: 9px 12px;
    display: inline-block;
    border: none;
    background: #000 !important;
    box-shadow: none;
    text-align: center;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.chat-mobile {
    display: none;
}

#chat-button.test-page {
    display: none;
}

#newsletter-button2 {
    display: block;
}

@media (min-width: 798px) {
    .chat-desktop, #newsletter-button2 {
        display: none;
    }
}


@media screen and (max-height: 775px) {


    .chat-mobile {
        display: block;
    }
}


@media screen and (max-width: 768px) {

    #chat-closed {
        border-radius: 9px;
    }

    #chat-button {
        position: fixed;
        display: block;
        top: auto;
        bottom: 0.5rem;
        right: 0.5rem;
        border-radius: 9px;
    }

        #chat-button.test-page {
            bottom: 118px;
            display: block;
        }

        #chat-button svg.fa-comments-alt {
            height: auto;
        }

    #chat-closed {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    #chat-open.show {
        width: calc(100vw - 16px);
        max-width: 440px;
    }

    #chat-button .preview-text {
        display: none;
    }

    #chat-button h3 {
        font-size: 1.125rem;
        margin: 0.5rem 0;
    }
}

/* Quiz page */

button.dark {
    background: #004858;
}

#accordionExample {
    padding-top: 5rem;
}

    #accordionExample .accordion-card {
        padding-bottom: 5rem;
    }

/* mailer light newsletter form */


#mlb2-1816276.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: transparent !important;
}

    #mlb2-1816276.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, #mlb2-1816276.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
        padding: 0 !important;
    }

.ml-form-embedContent {
    display: none !important;
}


#mlb2-1816276.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
    background: #DD9B26 !important;
}

#carousel .carousel-item .carousel-text {
    display: none !important;
}

/* Newsletter page */

.newsletter-page input[type=submit],
#footer input[type=submit] {
    background-color: #2088A0;
    color: #fff;
    border-radius: 30px;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
}

    .newsletter-page input[type=submit]:hover,
    #footer input[type=submit]:hover {
        background-color: #004858;
        color: #fff;
    }

#footer input[type=submit] {
    margin: 1rem 0;
}


.chat-puff {
    margin-bottom: 1rem;
}

.chat-puff h2  {
    margin: 0;
}

.subpage .umbraco-forms-form input.text, .subpage .umbraco-forms-form textarea {
    margin-top: 0;
}

.subpage .umbraco-forms-form label.umbraco-forms-label {
    margin-bottom: 0;
}