﻿.app-bar-toolbar .app-logo {
    text-indent: -9999px;
    width: 90px;
    padding: 0;
    background-image: url("/images/logoBlack.png");
    background-size: auto 55px;
    background-position: center center;
}

.jumbotron {
    background-image: url("../images/home.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.jumbotron h1,
.jumbotron .h1 {
    color: #ffffff;
}

.jumbotron p,
.jumbotron .p {
    color: #ffffff;
}

.accordion {
    max-width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    background-color: #0089ce;
}

.accordion__label, .accordion__content {
    padding: 14px 20px;
}

.accordion__label {
    display: block;
    color: white;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: background-color 0.1s;
}

.accordion__label:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.accordion__content {
    background: white;
    line-height: 1.6;
    font-size: 0.85em;
    display: none;
}

.accordion__input {
    display: none;
}

.accordion__input:checked ~ .accordion__content {
    display: block;
}



