﻿/*@import url("https://fonts.googleapis.com/css?family=Hind:300,400&display=swap");

* {
    box-sizing: border-box;
}

    *::before, *::after {
        box-sizing: border-box;
    }

body {
    margin: 0;
    padding: 0;
    font-family: "Hind", sans-serif;
    background: #fff;
    color: #4d5974;
    display: flex;
    min-height: 100vh;
}*/

/*.container {
    margin: 0 auto;
    padding: 4rem;
    width: 48rem;
}
*/

h2, h1.title {
    margin: 1.3em 0.5em;
}

.accordion {
/*    padding: 0;
    margin: auto;*/
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

    .accordion .accordion-item button[aria-expanded=true] {
        /*border-bottom: 1px solid #03b5d2;*/
        border-bottom: 1px solid #e30613;
        font-weight: bold;
    }

.accordion button {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
    padding: 1em 1em;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

    .accordion button:hover, .accordion button:focus {
        cursor: pointer;
        /*color: #03b5d2;*/
        color: #e30613a6;
    }

        .accordion button:hover::after, .accordion button:focus::after {
            cursor: pointer;
            color: #03b5d2;
            border: 1px solid #03b5d2;
        }

    .accordion button .accordion-title {
        padding: 0em 0em 0em 2.5em;
        display: inline-block;
    }

    .accordion button .icon {
        display: inline-block;
        position: absolute;
        top: 29%;
        left: 15px;
        width: 22px;
        height: 22px;
        border: 1px solid;
        border-radius: 22px;
    }

        .accordion button .icon::before {
            display: block;
            position: absolute;
            content: "";
            top: 12px;
            left: 5px;
            width: 10px;
            height: 1px;
            background: currentColor;
        }

        .accordion button .icon::after {
            display: block;
            position: absolute;
            content: "";
            top: 5px;
            left: 9px;
            width: 2px;
            height: 11px;
            background: currentColor;
        }

    .accordion button[aria-expanded=true] {
        /*color: #03b5d2;*/
        color: #e30613;
    }

        .accordion button[aria-expanded=true] .icon::after {
            width: 0;
        }

        .accordion button[aria-expanded=true] + .accordion-content {
            opacity: 1;
            /*max-height: 9em;*/
            max-height: fit-content;
            transition: all 200ms linear;
            will-change: opacity, max-height;
        }

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;

    display: flex;
    justify-content: space-between;
}

    .accordion .accordion-content p {
        font-size: 1rem;
        font-weight: 300;
        /*margin: 2em 0;
        margin-left: 4em;*/
        line-height: 27px;
        color: gray;
        padding: 20px;  
    }

    .accordion .accordion-content img {        
        margin: 2em 0;
        border-radius: 7px;
    }

    .accordion .accordion-content a {
        font-size: 10pt;
        font-weight: bold;
        opacity: .7;
        margin-right: 9px;
        white-space: nowrap;
        margin-top: 2px;
        position: absolute;
        color: #e30613;
    }
