* {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    background: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
}

.wrapper-secondary {
    width: 80%;
    margin: 0 auto;
}
#activities {
    padding: 166px 0;
    /* height: 460px; */
    /* background: linear-gradient(90deg, #032A58 43.86%, rgba(3, 42, 88, 0) 100%), url(../images/test.jpg); */
    background-size: cover;
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
}

#activities .wrapper {
}

#activities .title {
    width: 30%;
}

#activities .title h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 57px;
    line-height: 64px;
    color: #ffffff;
}

#activities .title h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-top: 16px;
}

#activities-card {
    padding: 100px 0px;
}

#activities-card .items {
}

#activities-card .items ul {
    width: 76%;
    margin: 0 auto;
}

#activities-card .items ul li {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 24px;
}

#activities-card .items ul li:hover {
    box-shadow: 7px 11px 30px rgb(0 0 0 / 6%);
    border: 1px solid transparent;
}

#activities-card .items ul li:last-child {
    margin-bottom: 0;
}

#activities-card .items ul li .img-container {
    width: 150%;
    margin-right: 20px;
}

#activities-card .items ul li .img-container img {
    width: 100%;
    display: block;
}

#activities-card .items ul li .contents {
}

#activities-card .items ul li .contents h2 {
    font-size: 28px;
    font-weight: 400;
    font-family: "poppinsregular";
    margin-bottom: 5px;
}

#activities-card .items ul li .contents p {
    color: rgba(130, 130, 130, 1);
    font-size: 16px;
    letter-spacing: 0.6px;
}
#download {
    padding: 80px 0;
}
#download .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
#download .top h1 {
    font-size: 26px;
    color: #232323;
    font-weight: 400;
}
#download .top .view-type {
    display: flex;
    align-items: center;
    gap: 20px;
}
#download .top .view-type .card-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}
#download .top .view-type .card-icon.active {
    background-color: #e1e1e1;
}
#download .top .view-type .list-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
}
#download .top .view-type .list-icon.active {
    background-color: #e1e1e1;
}
#download .bottom {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px; */
    display: none;
}
#download .bottom.active {
    display: block;
}
#download .bottom .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

#download .bottom .content .download-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #eee;
}
#download .bottom .content .download-card .name {
    display: flex;
    align-items: center;
    gap: 10px;
}
#download .bottom .content .download-card .name .icon {
    width: 18px;
}
#download .bottom .content .download-card .name h2 {
    font-size: 16px;
    color: #232323;
}
#download .bottom .content .download-card .image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}
#download .bottom .content .download-card .download {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#download .bottom .content .download-card .download h3 {
    color: #828282;
    font-size: 14px;
    font-weight: 500;
}
#download .bottom .content .download-card .download .download-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

#download .list-view-box {
    /* display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e1e1; */
    display: none;
}
#download .list-view-box.active {
    display: block;
}
#download .list-view-box .content {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

#download .list-view-box .content .first-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e1e1e1;
}

#download .list-view-box .content .first-row h2 {
    color: #232323;
    font-size: 16px;
    font-weight: bold;
}
#download .list-view-box .content .first-row .right {
    display: flex;
    align-items: center;
    gap: 50px;
}
#download .list-view-box .content .first-row .right .date {
    color: #232323;
    font-size: 16px;
    font-weight: bold;
}
#download .list-view-box .content .first-row .right .download {
    color: #232323;
    font-size: 16px;
    min-width: 120px;
    text-align: center;
    font-weight: bold;
}
#download .list-view-box .content .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
    padding: 16px;
}
#download .list-view-box .content .row:nth-child(odd) {
    background-color: #f9f9f9;
}
#download .list-view-box .content .row .left {
    display: flex;
    align-items: center;
    gap: 8px;
}
#download .list-view-box .content .row .left .pdf-icon {
    width: 18px;
}
#download .list-view-box .content .row .left h2 {
    font-size: 16px;
    color: #232323;
}
#download .list-view-box .content .row .right {
    display: flex;
    align-items: center;
    gap: 25px;
}
#download .list-view-box .content .row .right .date {
    color: #828282;
    font-size: 16px;
}
#download .list-view-box .content .row .right .download {
    width: 16px;
    height: 16px;
    cursor: pointer;
    min-width: 120px;
}

#download .pagination {
    width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

#download .pagination .left-arrow-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

#download .pagination .left-arrow-box .icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

#download .pagination .left-arrow-box span {
    color: #232323;
    opacity: 0.5;
    font-weight: 500;
    font-size: 16px;
    font-family: "poppinsmedium";
}

#download .pagination .middle {
    display: flex;
    align-items: center;
    gap: 20px;
}

#download .pagination .middle .page-number {
    border-radius: 6px;
    height: 40px;
    width: 40px;
    padding: 8px;
    background: #fdfdfd;
    color: #032a58;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "poppinsmedium";
}

#download .pagination .middle .page-number.active {
    border: 1px solid #032a58;
}

#download .pagination .right-arrow-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

#download .pagination .right-arrow-box .icon {
    width: 16px;
    height: 16px;
}

#download .pagination .right-arrow-box span {
    color: #232323;
    font-weight: 500;
    font-size: 16px;
    font-family: "poppinsmedium";
}

@media all and (max-width:980px){
    #download .bottom .content {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    #activities .title{
        width: 50%;
    }
}
@media all and (max-width:786px){
    #download .bottom .content {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}
@media all and (max-width:640px){
    #download .bottom .content {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    #download .pagination{
        gap: 0px;
    }
    #download .pagination .middle{
        gap: 0px;
    }
    #activities{
        padding: 120px 0px;
    }
    #activities .wrapper .title{
        margin: 0 auto;
        width: 80%;
        font-size: 50px;
    }
    #activities .title h2{
        text-align: center;
        font-size: 50px;
    }
    #activities .title h4{
        text-align: center;
    }
}
@media all and (max-width:480px){
    #download .pagination .right-arrow-box span{
        display: none;
    }
    #download .pagination .left-arrow-box span{
        display: none;
    }
    #activities-card {
        padding: 50px 0px;
    }
    #download {
        padding: 50px 0;
    }
    #activities .wrapper .title{
        width: 100%;
    }
    #activities .title h2{
        text-align: center;
        font-size: 30px;
        font-family: unset;
    }
    #activities .title h4{
        text-align: center;
        margin-top: 0;
        font-size: 14px;
    }
    #activities{
        padding: 100px 0px;
    }
}