@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Ubuntu:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*{
    font-family: 'IBM Plex Sans', sans-serif;
}
html, body{
    margin: 0;
    padding: 0;
    background-color: #bbcee6;
}
.bg{
    background-image: url('../img/b1.jpg');
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(5px);
    opacity: 0.3;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
nav{
    display: flex;
    position: fixed;
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
nav #logo{
    font-size: 20px;
    margin: 0 40px 0 10px;
    color: #000;
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 800;
}
nav .nav_icon img{
    height: 40px;
    padding: 10px 20px;
    display: none;
}
nav ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
nav li {
    color: #000
    display: block;
    float: left;
    padding: 20px 10px;
    position: relative;
    text-decoration: none;
}
  
nav li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
}

nav li:hover {
    cursor: pointer;
}

nav ul li ul {
    background: #fff;
    visibility: hidden;
    opacity: 0;
    min-width: 100%;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 20px;
    left: 0;
    display: none;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.06);
    padding: 0 10px 10px 10px;
    margin-left: -10px;
}

nav ul li:hover > ul, nav ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

nav ul li ul li {
    clear: both;
    width: 100%;
    padding: 10px;
}
main{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-areas: 'left right'
        'main main'
    'footer footer';
    grid-template-columns: 31% 67%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 60px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    align-items: stretch;
}
main .left{
    overflow: hidden;
    box-sizing: border-box;
    grid-area: left;
    justify-self: center;
}
main .right{
    overflow: hidden;
    box-sizing: border-box;
    grid-area: right;
    justify-self: center;
}
main .main{
    overflow: hidden;
    box-sizing: border-box;
    grid-area: main;
    justify-self: center;
}
main.main_center{
    grid-template-areas: 'right'
    'footer';
    grid-template-columns: 100%;
}
main .center{
    grid-area: right;
}
main img{
    width: 100%;
    margin-bottom: -5px;
}
main .text{
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
}
main .text img, main .panel img{
    max-width: 200px;
    margin: 0 0 20px 20px;
    padding: 10px;
    border: 1px solid #818181;
    float: right;
}
main .text h1{
    font-size: 1.5em;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 0;
    margin: 0;
}
main .text h2{
    font-size: 1.3em;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 0;
    margin: 0;
}
main .text h3{
    font-size: 1.1em;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px 0;
    margin: 0;
}
main .text p{
    font-size: 0.9em;
    padding: 0 0 10px 0;
    margin: 0;
}
main ul, main ol{
    font-size: 0.9em;
    margin-top: 0;
    padding-left: 20px;
}
main b{
    font-weight: 600;
}
main .item{
    background-color: #fff;
    min-height: 20px;
    margin-top: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
}
.main .item:nth-last-child(1) .title h2{
    background-color: #fae9d0;
}
.main .item:nth-last-child(3) .title h2{
    background-color: #e3d7f4;
}
.main .item:nth-last-child(5) .title h2{
    background-color: #c4eddf;
}
main a{
    color: #000;
    text-decoration: underline;
}
main .title h2{
    background-color: #ececec;
    color: #000;
    padding: 15px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.2em;
    transition: 0.2s;
    font-weight: 600;
    margin: 0;
}
main .akkordeon .accordion {
    background-color: #d4e3eb;
    color: #000;
    padding: 15px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 0.9em;
    transition: 0.2s;
    font-weight: 600;
    margin-top: 20px;
}
main .akkordeon .panel {
    padding: 0 20px;
    background-color: #fff;
    height: auto;
    overflow: hidden;
    font-size: 0.9em;
}
footer{
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 0 !important;
    grid-area: footer;
}
footer .item{
    padding-top: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 700px) {
    main .text img, main .panel img{
        float: none;
        width: 100%;
        margin: 0 auto 20px auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    nav #logo{
        margin-left: 20px;
    }
    nav .nav_icon{
        margin-left: auto;
    }
    nav .nav_icon img{
        display: block;
    }
    nav ul{
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        background-color: #fff;
        padding-bottom: 20px;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.06);
    }
    nav ul.active{
        display: list-item;
    }
    nav ul li{
        width: 100%;
        padding: 10px 20px;
    }
    nav ul li ul{
        margin: 0;
        padding: 10px;
        display: list-item;
        visibility: visible;
        opacity: 1;
        display: block;
        position: relative;
        top: 0;
        box-shadow: none;
    }
    main{
        grid-template-areas: 'right'
            'main'
            'left'
            'footer';
        grid-template-columns: 100%;
        box-sizing: border-box;
    }
    main .left{
        width: 100%;
        max-width: 300px;
        margin: auto;
    }
    main .right{
        width: 100%;
    }
    footer{
        margin-top: 20px !important;
    }
}