/*-------------------- Section1 (Start) --------------------*/
.sect1 {
    position: relative;
}

.sect1 .title {
    width: 100%;
    padding: 120px 100px 10px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    font-weight: bold;
    font-size: 32px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 2s, transform 1.5s;
}

.sect1 .titleTranslate {
    opacity: 1;
    transform: translateX(0);
}

.sect1 .cover {
    height: 750px;
    background: url(../img/greenReportCover.jpg) center no-repeat;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect1 .title {
        padding: 120px 80px 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect1 .title {
        padding: 80px 20px 10px;
        font-size: 28px;
    }
}
    
@media screen and (min-width: 401px) and (max-width: 450px) {
}

@media screen and (min-width: 451px) and (max-width: 550px) {
}

@media screen and (min-width: 551px) and (max-width: 767px) {
}
/*-------------------- Section1 (End) --------------------*/


/*-------------------- Section2 (Start) --------------------*/
.sect2 {
    padding: 30px;
    box-sizing: border-box;
}

.greenReport {
    width: 100%;
    margin: 30px 0;
    /* display: none; */
}

.greenReport .greenReportTitle {
    margin: 0 0 30px;
    text-align: center;
    font-weight: bold;
    font-size: 36px;
    color: #fff;
    text-shadow: 0 0 3px #000000, 0 0 5px #000000;
}

.greenReport .greenReportList {
    margin: 10px auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
}

.greenReport .greenReportList li {
    flex: 0 0 32%;
    margin: 10px 0 20px;
    box-sizing: border-box;
    float: left;
    border: solid 1px #008855;
    transition: 0.3s box-shadow;
    background: rgba(255, 255, 255, 0.9);
}

.greenReport .greenReportList li:nth-child(3n+2) {
    margin: 10px 2% 20px;
}

.greenReport .greenReportList li:hover {
    /* border: solid 1px #e0e0e0; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.greenReport .greenReportList li .year {
    padding: 10px 10px 5px;
    border-bottom: solid 1px #008855;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: #008855;
    background: #e5f3ee;
}

.greenReport .greenReportList li .cont {
    width: 100%;
    height: 180px;
    padding: 5px 5px 10px;
    box-sizing: border-box;
    text-align: center;
}

.greenReport .greenReportList li .cont a {
    width: 33.3%;    
    padding: 10px 8px;
    box-sizing: border-box;
    float: left;
    text-align: center;
    font-size: 20px;
    color: #505050;    
    transition: 0.5s color, 0.5s transform;    
}

.greenReport .greenReportList li .cont .file:hover {
    color: #008855;
    transform: scale(1.2);
}

.greenReport .greenReportList li .cont .empty {
    text-align: center;
    color: #d0d0d0;
}

.greenReport .greenReportList li .yearFile a {
    width: 100%;
    margin: 15px 0 0;
    padding: 5px 10px;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    color: #505050;
    background: #ddd;            
}

.greenReport .greenReportList li .yearFile a div {
    transition: 0.5s color, 0.5s transform;
}

.greenReport .greenReportList li .yearFile a div:hover {
    color: #008855;
    transform: scale(1.2);
}


@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect2 {
        padding: 50px 0 100px;
    }
    
    .sect2 .ctx {
        /* width: 1000px; */
        padding: 0 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect2 {
        padding: 100px 0;
    }

    .sect2 .ctx {
        width: 100%;
    }

    .greenReport .greenReportList li {
        flex: 1 0 100%;
    }
}
/*-------------------- Section2 (End) --------------------*/