/* Extra small devices (phones, less than 768px) */
body {
    margin: 0;
    padding: 0;
    font-family: 'Domine';
}
h1 {
    text-align: left;
    font-size: 40px;
    font-weight: normal;
}
p {
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
}
li {
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
}
.circle {
    list-style-type: circle;
    margin-left: 20px;
}

/* Heading */
#heading {
    text-align: center;
    color: #003F83;
    margin-top: 10%;
}

/* Buttons */
.button_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 10%;
}
.button {
    width: 200px;
    border: none;
    color: white;
    margin: 10px 20px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    border-radius: 10px;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    font-size: 16px;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -100px;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* Accordions */
.accordion {
    background-color: white;
    color: #003F83;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    border-top: 1px solid #003F83;
    text-align: left;
    outline: none;
    transition: 0.4s; 
    font-size: 20px;
    line-height: 1.5em;
    font-family: 'Domine';
}
.accordion:after {
    content: '\002B';
    color: #003F83;
    float: right;
    margin-left: 5px;
    font-weight: bold;
    font-size: 30px;
}
.active:after {
    content: "\2212";
}
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion_block {
    margin-left:10%;
    margin-right:10%;
    margin-bottom:10%;
}

/* Images */
.img_pss {
    display: block;
    margin: 0 auto;
    width: 300px;
    padding-bottom: 5%;
}

.img_pss_new {
    display: block;
    margin: 0 auto;
    width: 700px;
    padding-bottom: 5%;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .img_pss {
        width: 600px;
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .button_container {
        margin-bottom: 5%;
    }
    #heading {
        margin-top: 5%;
    }
    .img_pss {
        width: 900px;
    }
    .accordion_block {
        margin-left: 20%;
        margin-right: 20%;
        margin-bottom: 5%;
    }
}
