* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

body {
    background-image: url('../../res/img/join/process.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 35, 72, 0.6), rgba(18, 35, 72, 0.6));
    z-index: -1;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.req_1 hr {
    background-color: #cda757;
    height: 4px;
    width: 400px;
    border: none;
    margin: 10px auto;
    display: block;
    border-radius: 3px;
    margin-top: -10px;
}

h1 {
    font-family: 'Bree Serif', serif;
    font-size: 45px;
    color: white;
    text-align: center;
    margin-bottom: 5px;
}

/* Accordion */
.accordion {
    width: 85%;
    border-radius: 5px;
    margin: 20px auto;
    animation: fadeIn 1s ease-in forwards 0.5s;
}

.accordion-item {
    border-bottom: 3px solid rgba(205, 168, 87, 0.8);
}

.accordion-header {
    background-color: rgba(255, 255, 255, 0.8);
    color: #122348;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 2px;
}

.accordion-header:hover {
    background-color: #122348;
    color: white;
}

.accordion-header.active {
    background-color: #122348 !important;
    color: white !important;
}

.accordion-header::before {
    content: "+";
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.accordion-header.active::before {
    content: "-";
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
}

.accordion-content p {
    display: block;
    padding: 5px 0;
    color: #122348;
    text-decoration: none;
    font-size: 20px;
}

.accordion-content ul {
    display: block;
    padding: 5px 0;
    color: #122348;
    text-decoration: none;
    font-size: 20px;
    margin-left: 30px;
}

.accordion-content {
    display: none;
    padding: 10px;
}

.accordion-content.active {
    display: block;
}

@media screen and (max-width: 480px) {

    h1 {
        font-size: 25px;
    }

    .req_1 hr {
        height: 3px;
        width: 300px;
    }

    .seal {
        display: block;
    }

    .seal_logo {
        width: 90px;
        margin: 0;
    }

    .seal h2 {
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .seal_description h3 {
        font-size: 1.5rem;
    }

    /* Accordion */
    .accordion-header {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 25px;
    }

    .req_1 hr {
        height: 3px;
        width: 300px;
    }

    .seal {
        display: block;
    }

    .seal_logo {
        width: 90px;
        margin: 0;
    }

    .seal h2 {
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .seal_description h3 {
        font-size: 1.5rem;
    }

    /* Accordion */
    .accordion-header {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .seal h2 {
        font-size: 2.2rem;
        margin-top: 10px;
    }

    .seal_description h3 {
        font-size: 1.5rem;
    }

    /* Accordion */
    .accordion-header {
        font-size: 1.5rem;
    }
}