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

.download-file a {
    text-decoration: none;
    margin: 4px auto;
}

.download-file {
    text-align: center;
    margin-bottom: 100px;
}

.button {
    text-decoration: none;
    display: inline-block;
    padding: 0.75rem 3.5rem;
    color: #fff;
    width: 200px;
    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%;
}
.subtitler {
    display: flex;
    font-size: 24px;
    color: #2a3d8b;
    font-weight: 600;
    width: 100%;
    padding: 30px 0px 0px 0px;
    justify-content: center;
}

.max-width-800 { 
    max-width: 800px;
    margin: auto;
}

.main-process-section {
    margin-top: 10px;
    transform: translateY(15%);
}

.collapsible {
    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';
    font-size: 16px;
    color: inherit;
}
.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;
}