@import url('https://fonts.verwaltungsportal.de/css?family=Montserrat:200,300,400,500,600,700&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #737373;
    background: #ffffff;
    font-size: 1rem; /* 1rem = 16px */
    line-height: 1.5;
    padding-bottom: 0;
    position: relative;
}

@media (min-width: 768px) {
    body {
        font-size: 1.125rem;
    }
}

a {
    color: #020181;
}

a:hover {
    color: #020181;
}

b, strong {
    font-weight: 700;
}

@media (min-width: 992px) {
    body.intro {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100vh;
      overflow: auto;
    }
  }

  main{
      background-image: url('../img/mainbg.png');
      background-position: center bottom;
      background-repeat: no-repeat;
  }
/* ----------------------------------------------- logo ----------------------------------------------- */

#logo {
    display: inline-block;
}

#logo img {
    display: block;
    margin-bottom: -85px;
}

@media (max-width: 991px) {
    #logo img {
        max-width: 210px;
        width: 100%;
        position: relative;
        z-index: 60;
    }
}

/* ------------------------------------------------ styler ---------------------------------------------- */

#style {
    height: 85px;
    float: right;
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 49;
}

#style button {
    line-height: 1;
    border: none;
    background-color: #ffffff;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    text-align: center;
    padding-top: 6px;
    border: 4px solid #020181;
    background-image: url('../img/styler.png');
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: 100ms linear;
    -moz-transition: 100ms linear;
    -ms-transition: 100ms linear;
    -o-transition: 100ms linear;
    transition: 100ms linear;

}

#style button:hover {
    background-color: rgb(234, 234, 234);
}

#style button:hover:nth-child(1) {
    background-size: 35%;
}

#style button:hover:nth-child(2) {
    background-size: 45%;
}

#style button:hover:nth-child(3) {
    background-size: 55%;
}


#style button+button {
    margin-left: 10px;
}

#style button:nth-child(1) {
    background-size: 30%;
}

#style button:nth-child(2) {
    background-size: 40%;
}

#style button:nth-child(3) {
    background-size: 50%;
}

/* -------------------------------------------- navigation -------------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        position: relative;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
    }
    #burgerButton:before, #burgerButton:after, #burgerButtonInner {
        background-color: #a88873;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 2px;
        -webkit-transition: transform 200ms linear, opacity 200ms linear;
        -moz-transition: transform 200ms linear, opacity 200ms linear;
        -ms-transition: transform 200ms linear, opacity 200ms linear;
        -o-transition: transform 200ms linear, opacity 200ms linear;
        transition: transform 200ms linear, opacity 200ms linear;
    }
    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        -webkit-transform: rotate(-45deg) translate(-6px, 6px);
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    #burgerButton[aria-expanded="true"]:before {
        opacity: 0;
    }
    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }
    #burgerButtonInner {
        top: 10px;
    }
    #burgerButton:before {
        top: 18px;
    }
    #burgerButton:after {
        top: 26px;
    }
    #burgerButton:before, #burgerButton:after {
        content: "";
        display: block;
    }
    .navbar-nav {
        margin: 20px 0;
    }
    .navbar-collapse {
        top: 0;
        background: #f5ead6;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }
    .navbar-collapse.collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-header {
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        background-color: #ffffff;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }
    .navbar-collapse.in:after {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
        display: block;
        width: 90px;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }
    .navbar-collapse.collapse.in:after {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav {
        position: relative;
        z-index: 60;
        background: #ffffff;
    }
    #menu {
        background-color: #ffffff;
        padding-top: 6px;
        padding-bottom: 6px;
    }    
    nav.horizontally .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }
    nav.horizontally .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }
    nav.horizontally .navbar-nav>li, nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        position: relative;
    }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav>li>a {
    color: #020181;
    font-weight: 500;
    text-align: center;
    padding: 10px 5px;
    font-size: 1.125rem;
}

.navbar-default .navbar-nav>li>a::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 90px;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    background-image: url('../img/bg-nav.png');
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: 300ms linear;
    -moz-transition: 300ms linear;
    -ms-transition: 300ms linear;
    -o-transition: 300ms linear;
    transition: 300ms linear;
    pointer-events: none;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 25px 15px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        display: block;
    }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a,
.navbar-nav > li.open > a:hover,
.navbar-nav > li.open > a:focus,
.navbar-nav > li[class$="_over"] > a,
.navbar-nav > li[class$="_over"] > a:hover,
.navbar-nav > li[class$="_over"] > a:focus {
    color: #020181;
}

.navbar-nav > li > a:hover::before,
.navbar-nav > li > a:focus::before,
.navbar-nav > li.open > a::before,
.navbar-nav > li.open > a:hover::before,
.navbar-nav > li.open > a:focus::before,
.navbar-nav > li[class$="_over"] > a::before,
.navbar-nav > li[class$="_over"] > a:hover::before,
.navbar-nav > li[class$="_over"] > a:focus::before {
    color: #020181;
    opacity: 1;
    top: 0;
}
/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: #f9f5f1;
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 15px;
    }
}

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 20px;
        left: 50%;
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-left: 8px;
    }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #737373;
    font-weight: 400;
    text-align: center;
    padding: 8px 25px;
    font-size: 1rem;
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus {
    background: #dadae6;
    color: #737373;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

#slider {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    body.index #slider {
        max-height: 490px;
    }

    #slider {
        max-height: 400px;
    }

    #headerpic a.nivo-prevNav {
        left: 65px;
    }

    #headerpic a.nivo-nextNav {
        right: 65px;
    }
}

#headerpic {
    margin: 0 auto;
    position: relative;
    width: 100%;
    background-attachment: fixed;
    overflow: hidden;
}

#bg-intro .nivoSlider{
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#bg-intro .nivoSlider .nivo-main-image{
    background-attachment: fixed;
    background-size: cover;
}

.slider-wrapper, #slider {
    height: 100%;
}

.slider-mask {
    display: none;
}

/* ------------------------------------------------ content ----------------------------------------------- */

#content {
    text-align: left;
    padding-top: 100px;
}

body:not(.index) #content {
    padding-bottom: 60px;
}

/* ------------------------------------------------ contact ----------------------------------------------- */

#contact {
    margin-top: 30px;
}

@media (min-width: 992px) {
    #contact {
        margin-top: 45px;
    }
}

#contact img {
    display: block;
}

#contactTab {
    border-top: 2px solid #ededed;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 992px) {
    #contactTab {
        border-top: 2px solid #ededed;
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

/* ------------------------------------------ h1, #content .legacy_h1, .legacy_h1 - h6, #content .legacy_h6, .legacy_h6, newslink ----------------------------------------- */

.h4link a:link, .h4link a:hover, .h4link a:visited, h6, #content .legacy_h6, .legacy_h6, h5, #content .legacy_h5, .legacy_h5, h4, #content .legacy_h4, .legacy_h4, h3, #content .legacy_h3, .legacy_h3, h2, #content .legacy_h2, .legacy_h2, h1, #content .legacy_h1, .legacy_h1 {
    color: #020181;
    font-weight: normal;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

h1, #content .legacy_h1, .legacy_h1, .h1 {
    font-size: 2.1875rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    h1, #content .legacy_h1, .legacy_h1, .h1 {
        font-size: 1.875rem;
    }
}

h2, #content .legacy_h2, .legacy_h2, .h2 {
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    h2, #content .legacy_h2, .legacy_h2, .h2 {
        font-size: 1.7rem;
    }
}

h3, #content .legacy_h3, .legacy_h3, .h3 {
    font-size: 1.6rem;
}

h4, #content .legacy_h4, .legacy_h4, .h4, .h4link a:link, .h4link a:hover, .h4link a:visited {
    font-size: 1.5rem;
}

h5, #content .legacy_h5, .legacy_h5, .h5 {
    font-size: 1.4rem;
}

h6, #content .legacy_h6, .legacy_h6, .h6 {
    font-size: 1.3rem;
}

#newslinks, #newsmandate {
    border: 1px solid #886f5f;
}

/* ---------------------------------------------- footer ---------------------------------------------- */

footer {
    background: #fff8f2;
}

#footer {
    background-color: #fff8f2;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #938e89;
}

@media (min-width: 992px) {
    #footer {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* ---------------------------------------------- tab ---------------------------------------------- */

.tab {
    background-color: #f5ead6;
    position: relative;
    min-height: 100%;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .tab {
        padding-right: 50%;
    }
}

.tabContent {
    padding: 30px;
    color: #886f5f;
    line-height: 1.4;
}

.tabHeadline {
    margin: 0 0 20px 0;
    color: #886f5f;
    font-size: 1.5rem;
}

@media (min-width: 992px) {
    .tabHeadline {
        font-size: 1.75rem;
    }
}

.tabImg {
    height: 150px;
    width: 100%;
    background-color: #a88873;
    background-position: center;
    background-size: cover;
}

@media (min-width: 768px) {
    .tabImg {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        height: auto;
    }
}

.tab_link_title a, .tab_link_mandat a {
    font-weight: 400;
    color: #886f5f;
}

.tab_spacer {
    height: 12px;
}

.tab_link_mehr {
    color: transparent;
    font-size: 0;
}

.tab_link_mehr a {
    color: #886f5f;
    padding: 4px 10px;
    font-size: 1rem;
    display: inline-block;
    text-transform: uppercase;
}

.tab_link_mehr a:after {
    content: "\003e";
}

/* ---------------------------------------------- buttons ---------------------------------------------- */

#buttons {
    line-height: 1.3;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    #buttons {
        margin-top: 30px;
    }
}

#buttons p+p, #buttons a+a, #buttons p+a {
    margin-top: 15px;
}

#buttons a {
    background-color: #a88873;
    padding: 14px 50px 14px 14px;
    color: #ffffff;
    display: block;
    position: relative;
    font-size: 1.2rem;
}

@media (min-width: 1200px) {
    #buttons a {
        font-size: 1.5rem;
    }
}

#buttons a:hover {
    background-color: #836a5a;
}

#buttons a::before, #buttons a::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
}

#buttons a::before {
    content: "\203A";
    right: 21px;
    color: #a88873;
    z-index: 1;
    font-weight: bold;
    font-size: 34px;
    line-height: 1;
    margin-top: -21px;
}

#buttons a::after {
    right: 10px;
    height: 34px;
    width: 34px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-top: -17px;
}

/* ----------------------------------------------- search ----------------------------------------------- */

#search {
    background: #f4f4f4;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    width: 100%;
}

@media (min-width: 768px) {
    #search {
        border-radius: 30px;
        height: 38px;
    }
}

#search_input {
    color: #6e6e6e;
    font-size: 0.8125rem;
    font-weight: 300;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 38px;
    padding-left: 14px;
    padding-right: 14px;
    height: 38px;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    #search_input {
        padding-right: 47px;
        text-align: left;
    }
}

#search_submit {
    width: 100%;
    height: 38px;
    background: #01005d url('../img/lupe-icon.png') center no-repeat;
    border: none;
    background-size: 14px 14px;
    padding: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    display: block;
    -webkit-transition: transform 150ms linear;
    -moz-transition: transform 150ms linear;
    -ms-transition: transform 150ms linear;
    -o-transition: transform 150ms linear;
    transition: transform 150ms linear;
}

@media (min-width: 768px) {
    #search_submit {
        position: absolute;
        border-radius: 50%;
        top: -5px;
        right: -5px;
        width: 48px;
        height: 48px;
        border: 1px solid #01005d;
    }
    #search_submit:hover {
        -moz-transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@media (min-width: 992px) {
    #search_submit {
        border-color: #ffffff;
    }
}

#search_input::-ms-input-placeholder, #newsletter_input::-ms-input-placeholder {
    color: #6e6e6e !important;
}

#search_input::-webkit-input-placeholder, #newsletter_input::-webkit-input-placeholder {
    color: #6e6e6e !important;
}

#search_input::-moz-placeholder, #newsletter_input::-moz-placeholder {
    opacity: 1;
}

#search_input:-moz-placeholder, #newsletter_input:-moz-placeholder {
    opacity: 1;
}


/* --------------------------------------------- vernetzt -------------------------------------------- */

#vernetzt {
    text-align: right;
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 0 auto;
    position: relative;
}

#vernetzt b {
    color: #ffffff;
}

#vernetzt span {
    color: #ffffff;
    display: block;
    font-weight: 300;
}

#vernetzt img {
    margin: 0 0 10px auto;
    display: block;
}

@media(max-width: 991px){
    #vernetzt {
        text-align: center;
        font-size: 0.875rem;
        color: #ffffff;
        line-height: 1.3;
        margin: 0 auto 0 auto;
    }
    
    #vernetzt b {
        color: #ffffff;
    }
    
    #vernetzt span {
        color: #ffffff;
        display: block;
        font-weight: 300;
    }
    
    #vernetzt img {
        margin: 0 auto 10px auto;
        display: block;
    }

    .vernutzt::after{
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: #e5e5e5;
        margin: -10px 0;
    }
}

@media(min-width:992px){
    .vernutzt{
        justify-content: flex-end;
    }
}

@media(max-width: 767px){
    .footernav{
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ---------------------------------------------- gallery ---------------------------------------------- */

#gallery .row {
    max-width: none;
    margin: 0;
}

#gallery .template-page div[class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

#gallery p {
    margin: 0 0 4px 0;
}

#gallery div[class*="col-"] {
    display: flex;
    flex-wrap: wrap;
}

#gallery div[class*="col-"] p {
    flex-basis: 100%;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

@media (min-width: 500px) {
    #gallery {
        margin-left: -4px;
    }

    #gallery div[class*="col-"] p {
        flex-basis: 50%;
    }

    #gallery div[class*="col-"] p img {
        padding-left: 4px;
    }
}

@media (min-width: 768px) {
    #gallery div[class*="col"] p {
        flex-basis: 33.33%;
    }
}

@media (min-width: 992px) {
    #gallery div[class*="col"] p {
        flex-basis: 20%;
    }
}

#gallery img {
    width: auto;
    height: auto;
    flex-grow: 1;
}

#gallery .cleaner {
    display: none;
}

/* ---------------------------------------------- innerfooter ---------------------------------------------- */

#innerfooter {
    margin-top: -4px;
    padding: 40px 0;
    background-image: url('../img/footerbg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    font-size: 1rem;
    margin-top: 20px;
    background-size: cover;
}

body.intro #innerfooter{
    margin-top: 0;
}

#innerfooter a {
    color: #f1f1ed;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    margin-left: 10px;
}

#innerfooter .footernav a::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0%;
    margin: 0 auto;
    height: 1px;
    background: #e5e5e5;
    -webkit-transition: 300ms linear;
    -moz-transition: 300ms linear;
    -ms-transition: 300ms linear;
    -o-transition: 300ms linear;
    transition: 300ms linear;
    pointer-events: none;
}

#innerfooter .footernav a:hover::before {
    width: 100%;
    margin: 0 0 auto 0;
}

#innerfooter .footernav a::after {
    content: "\a";
    white-space: pre;
    color: #f1f1ed;
    padding: 15px 0;
}

/* -------------------------------- CSS Introsite --------------------------------- */

body.intro main{
    margin: 100px 0 60px 0;
}

body.intro .tab{
    min-height: 450px;
    margin-bottom: 20px;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding-right: 0;
    height: 95%;
}

body.intro .tabHeadline{
    background: rgba(2,1,129,0.8) radial-gradient(ellipse at center, rgba(74,74,162,1) 0%,rgba(255,255,255,0) 100%);
    width: 100%;
    text-align: center;
    position: relative;
    left: 0;
    right: 0;
    padding: 10px 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.375rem;
}

body.intro .tabcontent{
    padding: 20px;
}

body.intro .tab a{
    font-weight: bold;
    color: #020181;
}