.modal-background-information {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#information-modal {
    padding: 80px;
    background-color: white;
    width: 79%;
    height: 80%;
    position: relative;
    overflow-y: scroll;
}


#information-modal .title-wrapper {
    position: relative;
}

#information-modal .heading2 {
    font-family: "adobe-garamond-pro", serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 50px 0;
    padding-top: 25px;
}

#information-modal .heading2:before {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    background-color: rgba(0, 35, 104, 1);
    left: 0;
    top:5px;
}

#information-modal .contents {
    justify-content: space-between;
    display: flex;
    position: relative;
    border-top: rgba(216, 216, 216, 1) solid 1px;
    padding: 60px 0 ;
}

#information-modal .contents:last-child {
    border-bottom: rgba(216, 216, 216, 1) solid 1px;
}

#information-modal #information-modalul {
    list-style: inside;
}

#information-modal ul li {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

#information-modal .flow{
    display: flex;
}

#information-modal .flow .flow__title {
    font-family: "adobe-garamond-pro", serif;
    font-size:36px;
    color:rgba(34, 34, 34, 1);
    font-weight: 600;
    line-height: 70px;
}

#information-modal .text {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

#information-modal .annotation {
    padding-top: 15px;
}

#information-modal .sub-title{
    font-family: Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    margin: 20px 0;
    display: inline-block;
}

.close-button {
    position: absolute;
    top: 41px;
    right: 11%;
    font-size: 18px;
    color: white;
    background-position: center bottom;
    cursor: pointer;
}

.close-button:before {
    content: url('../png/close.png');
}

@media screen and (max-width: 860px) {

    #information-modal {
        margin: 13px;
        padding: 30px 20px;
        background-color: white;
        width: auto;
        position: fixed;
        top: 10%;
        left: 0;
    }

    #information-modal .heading2 {
        font-size: 26px;
        font-weight: 600;
        line-height: 31px;
    }

    #information-modal .heading2:before {
        width: 31px;
    }

    #information-modal .contents {
        display: block;
        padding: 40px 0 ;
    }

    #information-modal .contents:last-child {
        border-bottom: rgba(216, 216, 216, 1) solid 1px;
    }

    #information-modal .flow .flow__title {
        font-size:22px;
        line-height: 26px;
        padding: 15px 0;
    }

    #information-modal .annotation {
        padding-top: 15px;
    }

    #information-modal .sub-title{
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        margin: 10px 0;
    }

    .close-button {
        right:5%;
        top:6%;
    }

}
