.max-width-800 { 
    max-width: 1170px;
    margin: auto;
}
.table-header {
    font-size: 16px;
    color: #2a3d8b;
    /* width: 100%; */
    text-align: left;
    /* border-bottom: 2px solid #2a3d8b; */
}
.tbl {
    /* border-spacing: 5px; */
    border-collapse: separate;
  border-spacing: 5px;
}
table tr td {
    vertical-align: baseline;
    /* padding: 5px; */
    text-align: left;
    /* border: 1px solid blue; */
}
table {
    width: 100%;
}
.no-style-list {
    list-style: none;
    margin: 30px 0px;
    padding: 0px;
}
.title {
    font-size: 22px;
    text-align: center;
    color: #616161;

}
.subtitle {
    font-size: 22px;
    color: #2a3d8b;
    padding: 0px;
}

.center {
    display: flex;
    justify-content: center;
}

.center a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.download-file {
    /* margin-bottom: 100px; */
    padding: 24px;
}
.collapsible {
    font-size: 16px;
    background-color: transparent;
    border-bottom: 5px solid black;
    padding: 0px;
    cursor: pointer;
    padding: 18px 0px;
    width: 100%;
    text-align: left;
    border:none ;
    font-family: 'Montserrat';
}
.content-collapse {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}
.arrow {
    vertical-align: middle;
    margin: 0;
    padding: 0;
    /* display: inline-block; */
    float: right;
    transition: .3s;
}

.arrow img {
    width: 20px;
    height: 20px;
}

.center {
    text-align: center;
    margin: 25px 0;
}

.button {
    display: inline-block;
    padding: 0.75rem 3.5rem;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,43,99);
    background: linear-gradient(240deg, rgba(0,43,99,1) 0%, rgba(1,66,149,1) 61%);
    border-radius: 5px;
    border-bottom: 4px solid rgb(0,43,99);
    /* text-transform: uppercase; */
    z-index: -2;
}

.button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 5px;
    background-color: #2a3d8b;
    transition: all 0.3s;
    z-index: -1;
}

.button:hover {
    color: #fff;
}

.button:hover:before {
    width: 100%;
}