/*-------------------- 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: 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: 20px 30px;
    box-sizing: border-box;
    border-bottom: solid 1px #4be3bd;
    background: #242834;
}

.sect2 .ctx {
    width: 100%;
}

.sect2 .ctx .title {    
    padding: 10px 0;
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.sect2 .ctx .gallery {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.sect2 .ctx .gallery .slideContainer {    
    display: flex;
    position: relative;
    left: 0;
    top: 0;
}

.sect2 .ctx .gallery .slideContainer .item {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 5px;
    cursor: pointer;
}

.sect2 .ctx .gallery .slideContainer .item .coverCont {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.sect2 .ctx .gallery .slideContainer .item .coverCont .cover {
    flex: 0 1 100%;
    height: 400px;
    transition: transform 1s;
}

.sect2 .ctx .gallery .slideContainer .item:hover .coverCont .cover {
    transform: scale(1.1);
}

.sect2 .ctx .gallery .slideContainer .item .brief {
    height: 60px;
    padding: 10px 10px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    color: #fff;
    background: #000;
}

.sect2 .ctx .gallery .leftArrow {
    padding: 20px;
    display: none;
    position: absolute;
    left: 0;
    top: 40%;
    font-size: 52px;
    color: #fff;
    cursor: pointer;
}

.sect2 .ctx .gallery .rightArrow {
    padding: 20px;
    position: absolute;
    right: 0;
    top: 40%;
    font-size: 52px;
    color: #fff;
    cursor: pointer;
}

.sect2 .popup {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: space-around;    
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: #fff;
}

.sect2 .popup .left {
    flex: 0 1 75%;
    align-self: center;
    padding: 100px;
    box-sizing: border-box;
    /*background: #ccc;*/
}

.sect2 .popup .left .carousel .prevI {    
    padding: 15px 10px;
    position: absolute;
    top: 45%;
    left: -70px;
    z-index: 101;
    border-radius: 1px;
    line-height: 0.85;
    font-size: 44px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: #808080;
    cursor: pointer;    
}

.sect2 .popup .left .carousel .nextI {
    padding: 15px 10px;
    display: inline-block;
    position: absolute;
    top: 45%;
    right: -70px;    
    z-index: 101;    
    border-radius: 1px;
    line-height: 0.85;
    font-size: 44px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: #808080;
    cursor: pointer;
}

.sect2 .popup .left .carousel .pic {
    width: 100%;
    height: 750px;    
}

.sect2 .popup .right {
    flex: 0 1 25%;
    padding: 120px 80px 120px 0;
    box-sizing: border-box;
    position: relative;
    /*background: #aaa;*/
}

.sect2 .popup .right .txt {    
    font-size: 24px;
}

.sect2 .popup .right .closeBtn {
    position: absolute;
    right: 40px;
    top: 30px;
    font-size: 40px;
    color: #808080;
    cursor: pointer;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .sect2 .ctx .gallery .slideContainer .item .coverCont .cover {
        height: 350px;
    }

    .sect2 .ctx .gallery .slideContainer .item .brief {
        height: 50px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect2 .ctx .gallery .slideContainer .item .coverCont .cover {
        height: 300px;
    }

    .sect2 .ctx .gallery .slideContainer .item .brief {
        height: 50px;
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect2 {
        padding: 20px 0;
    }
    
    .sect2 .ctx .gallery .slideContainer .item {
        flex: 0 0 100%;
    }

    .sect2 .ctx .gallery .leftArrow {
        top: 30%;
    }
    
    .sect2 .ctx .gallery .rightArrow {
        top: 30%;
    }

    .sect2 .popup {
        flex-wrap: wrap;
    }

    .sect2 .popup .left {
        flex: 0 1 100%;
        order: 2;
        padding: 20px 20px 200px;
    }

    .sect2 .popup .left .carousel .prevI { 
        top: 40%;
        left: 0px;
        color: #fff;
    }

    .sect2 .popup .left .carousel .nextI { 
        top: 40%;
        right: 0px;
        color: #fff;
    }

    .sect2 .popup .right {
        flex: 0 1 100%;
        order: 1;
        padding: 80px 20px 20px;
    }

    .sect2 .popup .left .carousel .pic {
        width: 100%;
        height: 250px;    
    }

    .sect2 .popup .right .closeBtn {
        position: absolute;
        right: 20px;
        top: 20px;
    }
}
/*-------------------- Section2 (End) --------------------*/


/*-------------------- Section3 (Start) --------------------*/
.sect3 {
    padding: 30px 0;
    border-bottom: solid 1px #4be3bd;
    background: #242834;
}

.sect3 .ctx {
    width: 100%;
    height: 500px;
    background: linear-gradient(to top, rgba(0, 0, 8, 0.35) 0%, rgba(0, 0, 8, 0.35) 100%), url(../img/achievementAfcGallery_01.jpg) center no-repeat;
    background-size: cover;
}

.sect3 .ctx .tit {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    line-height: 2em;
    text-align: center;
    color: #fff;
}

.sect3 .ctx .tit .main {
    font-size: 24px;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .sect3 .ctx {
        height: 450px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect3 .ctx {
        height: 400px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
}
/*-------------------- Section3 (End) --------------------*/


/*-------------------- Section4 (Start) --------------------*/
.sect4 {
    padding: 20px 30px;
    box-sizing: border-box;
    border-bottom: solid 1px #4be3bd;
    background: #242834;
}

.sect4 .ctx {
    width: 100%;
}

.sect4 .ctx .title {    
    padding: 10px 0;
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.sect4 .ctx .gallery {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.sect4 .ctx .gallery .slideContainer {    
    display: flex;
    position: relative;
    left: 0;
    top: 0;
}

.sect4 .ctx .gallery .slideContainer .item {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 5px;
    cursor: pointer;
}

.sect4 .ctx .gallery .slideContainer .item .coverCont {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.sect4 .ctx .gallery .slideContainer .item .coverCont .cover {
    flex: 0 1 100%;
    height: 400px;
    transition: transform 1s;
}

.sect4 .ctx .gallery .slideContainer .item:hover .coverCont .cover {
    transform: scale(1.1);
}

.sect4 .ctx .gallery .slideContainer .item .brief {
    height: 60px;
    padding: 10px 10px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    color: #fff;
    background: #000;
}

.sect4 .ctx .gallery .leftArrow {
    padding: 20px;
    display: none;
    position: absolute;
    left: 0;
    top: 40%;
    font-size: 52px;
    color: #fff;
    cursor: pointer;
}

.sect4 .ctx .gallery .rightArrow {
    padding: 20px;
    display: none;
    position: absolute;
    right: 0;
    top: 40%;
    font-size: 52px;
    color: #fff;
    cursor: pointer;
}

.sect4 .popup {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: space-around;    
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background: #fff;
}

.sect4 .popup .left {
    flex: 0 1 75%;
    align-self: center;
    padding: 100px;
    box-sizing: border-box;
    /*background: #ccc;*/
}

.sect4 .popup .left .carousel .prevII {    
    padding: 15px 10px;
    position: absolute;
    top: 45%;
    left: -70px;
    z-index: 101;
    border-radius: 1px;
    line-height: 0.85;
    font-size: 44px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: #808080;
    cursor: pointer;    
}

.sect4 .popup .left .carousel .nextII {
    padding: 15px 10px;
    display: inline-block;
    position: absolute;
    top: 45%;
    right: -70px;    
    z-index: 101;    
    border-radius: 1px;
    line-height: 0.85;
    font-size: 44px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    color: #808080;
    cursor: pointer;
}

.sect4 .popup .left .carousel .pic {
    width: 100%;
    height: 750px;    
}

.sect4 .popup .right {
    flex: 0 1 25%;
    padding: 120px 80px 120px 0;
    box-sizing: border-box;
    position: relative;
    /*background: #aaa;*/
}

.sect4 .popup .right .txt {    
    font-size: 24px;
}

.sect4 .popup .right .closeBtn {
    position: absolute;
    right: 40px;
    top: 30px;
    font-size: 40px;
    color: #808080;
    cursor: pointer;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .sect4 .ctx .gallery .slideContainer .item .coverCont .cover {
        height: 350px;
    }

    .sect4 .ctx .gallery .slideContainer .item .brief {
        height: 50px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect4 .ctx .gallery .slideContainer .item .coverCont .cover {
        height: 300px;
    }

    .sect4 .ctx .gallery .slideContainer .item .brief {
        height: 50px;
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect4 {
        padding: 20px 0;
    }
    
    .sect4 .ctx .gallery .slideContainer .item {
        flex: 0 0 100%;
    }
    
    .sect4 .ctx .gallery .slideContainer .item .coverCont .cover {
        height: 300px;
    }

    .sect2 .ctx .gallery .leftArrow {
        top: 30%;
    }
    
    .sect4 .ctx .gallery .rightArrow {
        padding: 20px;
        display: inline-block;
        top: 30%;
    }

    .sect4 .popup {
        flex-wrap: wrap;
    }

    .sect4 .popup .left {
        flex: 0 1 100%;
        order: 2;
        padding: 20px 20px 200px;
    }

    .sect4 .popup .left .carousel .prevII { 
        top: 40%;
        left: 0px;
        color: #fff;
    }

    .sect4 .popup .left .carousel .nextII {
        display: inline-block; 
        top: 40%;
        right: 0px;
        color: #fff;
    }

    .sect4 .popup .right {
        flex: 0 1 100%;
        order: 1;
        padding: 80px 20px 20px;
    }

    .sect4 .popup .left .carousel .pic {
        width: 100%;
        height: 250px;    
    }

    .sect4 .popup .right .closeBtn {
        position: absolute;
        right: 20px;
        top: 20px;
    }
}
/*-------------------- Section4 (End) --------------------*/


/*-------------------- Section5 (Start) --------------------*/
.sect5 {
    padding: 30px 0;
    border-bottom: solid 1px #4be3bd;
    background: #242834;
}

.sect5 .ctx {
    width: 100%;
    height: 500px;
    background: linear-gradient(to top, rgba(0, 0, 8, 0.35) 0%, rgba(0, 0, 8, 0.35) 100%), url(../img/achievementGeothermalGallery_01.jpg) center bottom no-repeat;
    background-size: cover;
}

.sect5 .ctx .tit {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    line-height: 2em;
    text-align: center;
    color: #fff;
}

.sect5 .ctx .tit .main {
    font-size: 24px;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .sect5 .ctx {
        height: 450px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect5 .ctx {
        height: 400px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
}
/*-------------------- Section5 (End) --------------------*/