/*-------------------- Section1 (Start) --------------------*/
.sect1 .title {
    padding: 120px 100px 10px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 32px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 2s, transform 1.5s;
}

.sect1 .titleTranslate {
    opacity: 1;
    transform: translateX(0);
}

@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: 0 100px;
    box-sizing: border-box;
    background: #000;
}

.sect2 .ctx {
    width: 100%;
    background: #242834;
}

.sect2 .ctx .art {
    width: 800px;
    margin: auto;
    padding: 50px 0;
    color: #fff;
}

.sect2 .ctx .art .title {
    line-height: 1.2em;
    font-weight: bold;
    font-size: 40px;
}

.sect2 .ctx .art .date {
    padding: 10px 0 0;
    font-size: 14px;
}

.sect2 .ctx .art .cover {
    width: 100%;
}

.sect2 .ctx .art {
    line-height: 1.5em;
    font-size: 20px;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect2 {
        padding: 0 80px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .sect2 .ctx {
        width: 100%;
        padding: 0 50px;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect2 {
        padding: 0;
    }

    .sect2 .ctx .art {
        width: 100%;
    }

    .sect2 .ctx .art .title {
        padding: 30px 0 10px;
        font-size: 24px;
    }
    
    .sect2 .ctx .art .date {
        padding: 10px 0 30px;
        font-size: 16px;
    }
    
    .sect2 .ctx .art .cover {
        width: 100%;
        margin: 0;
    }
    
    .sect2 .ctx .art .article {
        padding: 10px 0;
        letter-spacing: 0px;
    }
}
/*-------------------- Section2 (End) --------------------*/