@charset "utf-8";

/* CSS Document */



@font-face {
    font-family: 'Roboto-Regular';
    font-weight: normal;
    font-style: normal;
    src: local('Roboto-Regular'), local('Roboto-Regular'), url('../font/Roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Bold';
    font-weight: normal;
    font-style: normal;
    src: local('Roboto-Bold'), local('Roboto-Bold'), url(../font/Roboto/ROBOTO-BOLD.TTF) format('truetype');
}

@font-face {
    font-family: 'Roboto-Medium';
    font-weight: normal;
    font-style: normal;
    src: local('Roboto-Medium'), local('Roboto-Medium'), url(../font/Roboto/ROBOTO-MEDIUM.TTF) format('truetype');
}

@font-face {
    font-family: 'Roboto-Light';
    font-weight: normal;
    font-style: normal;
    src: local('Roboto-Light'), local('Roboto-Light'), url(../font/Roboto/ROBOTO-LIGHT.TTF) format('truetype');
}

@font-face {
    font-family: 'Bell MT';
    font-weight: normal;
    font-style: normal;
    src: local('Bell MT'), local('Bell-Regular'), url(../font/BELL.TTF) format('truetype');
}

@font-face {
    font-family: 'Bell-Bold';
    font-weight: bold;
    font-style: normal;
    src: local('Bell-Bold'), local('Bell-Bold'), url(../font/BELLI.TTF) format('truetype');
}

@font-face {
    font-family: 'Bell-Italic';
    font-weight: normal;
    font-style: normal;
    src: local('Bell-Italic'), local('Bell-Italic'), url(../font/BELLI.TTF) format('truetype');
}

@font-face {
    font-family: 'JosefinSans-Light';
    font-weight: normal;
    font-style: normal;
    src: local('JosefinSans-Light'), local('JosefinSans-Light'), url('../font/Josefin_Sans/JosefinSans-Light.ttf');
}


::before,
::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: #205441;
    color: #fff;
}

* {
    box-sizing: border-box;
    transition: ease-in 0.15s;
}

html {
    font-size: 10px;
    font-family: 'Roboto-Regular', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


a {
    text-decoration: none;
    color: #092C61;
    display: block;
}

    a:hover {
        text-decoration: none;
        cursor: pointer;
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    margin: 0 auto;
}

.validate {
    color: red;
}

.messagePopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

.messagePopupContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #00733f;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 50%;
    max-height: 50%;
}

    .messagePopupContent h3 {
        color: #494949;
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    .messagePopupContent button {
        background: #00733f;
        border: none;
        border-radius: 20px;
        color: #fff;
        font-size: 14px 14px !important;
        padding: 10px 50px;
    }

.slick-dots {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slick-dots li {
        display: inline;
    }

        .slick-dots li button {
            border: none;
            background: #fff;
            color: #fff;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            margin-left: 15px;
        }

            .slick-dots li button::before {
                display: none;
            }

.wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    background: #fff;
}

.backTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    display: none;
}

    .backTop img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .backTop:hover img {
        border: none;
    }

.hotlineDock {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 70px;
}

    .hotlineDock img {
        width: 40px;
        height: 40px;
    }

.inquiryDock {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 120px;
    cursor: pointer;
    margin: 0;
}

    .inquiryDock img {
        width: 40px;
        height: 40px;
    }

.backToSNI {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    background: #00733f;
    border-radius: 14px;
}

    .backToSNI h5 {
        color: #fff;
        font-size: 15px;
        padding: 8px 20px;
        font-family: 'Roboto-Light', sans-serif;
    }

.transition {
    -webkit-transition: ease-in 0.5s; /* For Safari 3.1 to 6.0 */
    transition: ease-in 0.5s;
}

.is-visible {
    opacity: 1;
}

.not-visible {
    opacity: 0;
    transition: opacity .5s .25s ease-out;
}

.topMenuHolder {
    width: 100%;
    position: fixed;
    height: 50px;
    top: 0;
    z-index: 999;
    background: #fff;
}

.whiteBG {
    height: 50px;
    background: #fff;
    border-bottom: 0.5px solid #d4ebe1;
}


.topMenu {
    width: 100%;
}

.logoHolder {
    background: none;
    height: 50px;
    position: absolute;
    padding: 10px 20px;
    align-items: center;
    text-align: center;
    float: left;
    left: 50%;
    transform: translateX(-50%);
}

.whiteBG .logoHolder {
    background: none;
    height: 50px;
}

.logoImg {
    height: 100%;
    position: relative;
}
.mobileMenuIcon{
    display:block;
    position: relative;
    height: 50px;
    padding: 14px;
    float: left;
}
.mobileMenuIcon img {
    height: 25px;
    width: 25px;
}
.rightMenu {
    float: left;
    width: 50%;
    background: #fff;
    padding: 20px 0;
    margin-top: 50px;
    position: absolute;
    margin-left: -55%;
}

.rightMenu.open{
    margin-left: 0;
}


.mainMenuItem {
    float: left;
    font-size: 18px;
    font-family: 'Roboto-Light', sans-serif;
    color: #494949;
    text-transform: uppercase;
    width: 100%;
    padding: 15px 30px;

}

.whiteBG .mainMenuItem {
    color: #00733f;
}

.childMenu {
    display: none;
    position: fixed;
    background: #fff;
    z-index: 9999;
    border-radius: 8px;
}

    .childMenu a {
        background: #fff;
        color: #2c2c2c;
        font-size: 16px;
        font-family: 'Roboto-Regular', sans-serif;
        display: block;
        margin: 15px 30px;
        text-transform: capitalize;
        transition: ease-in 0.15s;
        border-bottom: 2px solid #fff;
    }


.banner {
    width: 100%;
    position: relative;
    margin-top: 50px;
    float:left;
    height: 700px;
}

    .banner > img {
        height: 100%;
        position: relative;
        display: block !important;
        width: 100%;
        object-fit: cover;
    }
.banner.homeBanner{
    width:100%;
    height: auto;
}
    .banner.homeBanner > div {
        width: 100%;
    }
.homeBanner img {
    /*object-fit: cover;
    object-position: center;*/
    width: 100%;
    height: auto;
}

.bannerTextHolder::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg,#0c3d37 4.48%,rgba(10,99,108,0) 74.78%);
    transform: rotate(-180deg);
    z-index: 2;
}

.bannerTextHolder {
    width: 100%;
    align-content: center;
    justify-content: center;
    display: flex;
}

.bannerText {
    width: 100%;
    border-left: 3px solid #fff;
    height: 100px;
    margin: 0 0 0 10px;
    position: absolute;
    bottom: 0;
    z-index: 10;
}

    .bannerText h3 {
        position: relative;
        font-size: 24px;
        color: #fff;
        display: inline-block;
        line-height: 100px;
        margin-left: 10px;
        font-family: 'JosefinSans-Light', sans-serif;
    }

.blockHolder {
    width: 100%;
    position: relative;
    float: left;
    margin-bottom: 0 !important;
}

.block {
    position: relative;
    width: 100%;
    float: left;
}

.only1366 {
    max-width: 1366px;
    margin: 0 auto;
}

.leftBlock {
    width: 100%;
    float: left;
    overflow: hidden;
    display:none;
}

    .leftBlock img {
        height: 100%;
    }

.rightBlock {
    width: 100%;
    float: right;
    overflow: hidden;
    display: block;
    background-position: center;
    background-size: cover;
    height: 400px;
    order: 2;
}

    .rightBlock img {
        height: 100%;
        position: absolute;
        bottom: 0;
    }

.maxHeight800 {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.introContentBlock {
    background: #fff;
    padding: 20px 20px;
    position: relative;
    float:left;
    text-align: center;
    align-content: center;
    width: 100%;
    order: 1;
}

.headerBlock .headerTitle {
    font-size: 22px;
    font-family: 'Roboto-Bold', sans-serif;
    color: #00733f;
    text-transform: uppercase;
    text-align: center;
}

.headerDivider {
    width: 200px;
}

.headerBlock p {
    color: #494949;
    font-size: 18px;
    font-family: 'Roboto-Light', sans-serif;
    text-align: justify;
}

.blockHighlightProject {
    position: relative;
    height: auto;
}

    .blockHighlightProject img {
        width: 100%;
        height: auto;
        float:left;
    }

.topProjectHolder {
    position: absolute;
    right: 0;
    width: 100%;
    background: none;
    top: 50%;
    transform: translate(0, -50%); /*  make center   */
}

.topProjectBG {
    background: none;
    text-align: center;
    width: 100%;
}

    .topProjectBG img {
        width: 30%;
        position: relative;
        padding: 20px;
        height: auto;
        background: #fff;
    }

    .topProjectBG a {
        width: 30%;
        font-size: 12px;
        font-family: 'Roboto-Regular', sans-serif;
        font-style: italic;
        color: #a98253;
        padding: 10px;
        background: #fff;
    }

.topProjectText {
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Roboto-Bold', sans-serif;
    background: #205441;
    background-image: url('/public/assets/blueBG-01.png');
    color: #fff;
    padding: 20px 30px;
    text-align: center;
    display: table;
    margin: 0 auto;
    width: 100%;
}

.blockPartner {
    background-image: url('../assets/partnerBR-01.png');
    padding: 50px 0;
    background-size: cover;
    background-position: center;
    float:left;
}

.outsideBlock {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
    padding: 20px;
    float: left;
}

.insideBlock {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 0.58);
    text-align: center;
    align-content: center;
    padding: 20px 0 0 0;
    float: left;
}

.w50 {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 30px;
}

.insideBlock .w50 {
    width: 100%;
    float: left;
}

.partnerImg {
    width: 50%;
    padding: 10px 10px 0px 10px;
    float: left;
}

.blockNews {
    padding: 50px 0;
}

.newestNewsBlock, .recentNewsBlock {
    width: 100%;
    float: left;
    padding: 30px 20px 0 20px;
}

.newestNews {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
}

    .newestNews .newestNewsImage {
        width: 100%;
        overflow: hidden;
        height: 250px;
    }

        .newestNews .newestNewsImage a {
            width: 100%;
            height: 100%;
        }

        .newestNews .newestNewsImage img {
            height: 100%;
        }

.newestNewsContent {
    padding: 20px 40px;
}

    .newestNewsContent a {
        color: #636363;
        font-size: 16px;
        font-family: 'Roboto-Regular', sans-serif;
    }

    .newestNewsContent .date {
        color: #b9b9b9;
        font-size: 12px;
        font-family: 'Roboto-Light', sans-serif;
    }

.recentNews {
    width: 100%;
    float: left;
}

.recentNewsItem {
    width: 100%;
    float: left;
    border: 1px solid #e5e5e5;
    height: 80px;
    margin-bottom: 20px;
}

.recentNewsDate {
    height: 100%;
    width: 20%;
    border-right: 1px solid #e5e5e5;
    padding: 10px 5px;
    float: left;
    text-align: center;
    margin: 0;
}

    .recentNewsDate h5 {
        color: #767676;
        font-size: 18px;
        font-family: 'Roboto-Medium', sans-serif;
        margin: 0;
        margin-bottom: 8px;
        margin-top: 8px;
    }

    .recentNewsDate p {
        color: #b9b9b9;
        font-size: 12px;
        font-family: 'Roboto-Light', sans-serif;
        margin: 0;
    }

.recentNewsContent {
    width: 80%;
    height: 100%;
    float: left;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    overflow: hidden;
}

    .recentNewsContent h3 {
        color: #808080;
        font-size: 14px;
        font-family: 'Roboto-Regular', sans-serif;
        margin: 0;
        text-transform: capitalize;
    }

.newsViewmore {
    clear: both;
    width: 50%;
    display: block;
    background: #0c3d37;
    padding: 5px 20px;
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto-Light', sans-serif;
    margin: 0 auto;
    border: 1px solid rgb(255 255 255 / 0.00);
    border-radius: 20px;
    text-align: center;
}

    .newsViewmore:hover {
        background: #fff;
        color: #0c3d37;
        border: 1px solid #0c3d37;
    }

.newsListingPage {
    padding: 30px 0;
}

.otherServices {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

    .otherServices .newsHeaderTitle {
        width: 100%;
        padding: 10px 20px;
        color: #0c3d37;
        font-size: 18px;
        font-family: 'Roboto-Light', sans-serif;
    }

        .otherServices .newsHeaderTitle h2 {
            color: #00733f;
            font-size: 20px;
            font-family: 'Roboto-Light', sans-serif;
            margin: 0;
            text-transform: uppercase;
            border-bottom: 1px solid #00733f;
        }

.newsItem {
    width: 100%;
    float: left;
    padding: 15px 30px;
}

    .newsItem > a {
        width: 30%;
        float: left;
        height: auto;
        
    }

    .newsItem img {
        width: 100%;
        float: left;
        height: auto;
    }


.newsContent a h4 {
    color: #494949;
    font-size: 14px;
    font-family: 'Roboto-Regular', sans-serif;
    margin: 5px 0;
    text-transform: capitalize;
}

.newsContent {
    width: 70%;
    float: left;
    padding: 0 0 0 20px;
    transition: ease-in 0.15s;
}

.viewListNews {
    width: 100%;
    float: left;
}

    .viewListNews a {
        width: 40%;
        display: block;
        font-family: 'Roboto-Light', sans-serif;
        font-size: 12px;
        border-radius: 25px;
        margin: 0 auto;
        background: #fff;
        color: #00733f;
        text-align: center;
        padding: 6px 10px;
        border: 1px solid #00733f;
    }

        .viewListNews a:hover {
            background: #00733f;
            color: #fff;
        }

.newsContent span {
    width: 100%;
    color: #636363;
    font-size: 12px;
    font-family: 'Roboto-Light', sans-serif;
    font-style: italic;
    display: block;
}

.newsContent p {
    width: 100%;
    color: #535353;
    font-size: 12px;
    font-family: 'Roboto-Light', sans-serif;
    font-style: italic;
    display: block;
}

.aboutGeneralBlock {
    position: absolute;
    top: 40px;
    width: 100%;
}

    .aboutGeneralBlock .headerTitle {
        color: #eddcb6;
    }

    .aboutGeneralBlock .headerDivider {
        width: 50%;
    }

.aboutGeneralContent {
    width: 90%;
    margin: 40px auto;
    padding: 40px 20px;
    background: rgb(204 188 168 / 0.40);
    border-radius: 10px;
}

    .aboutGeneralContent p {
        margin: 0;
        font-size: 14px;
        font-family: 'Roboto-Light', sans-serif;
        color: #eddcb6;
        line-height: 1.5;
    }

.aboutGeneralNumber {
    width: 80%;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generalNumberItem {
    width: 33.33333%;
    float: left;
    text-align: center;
    padding: 10px 15px;
    position: relative;
}

    .generalNumberItem img {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .generalNumberItem p {
        color: #eddcb6;
        font-size: 14px;
        display: contents;
        font-family: 'Roboto-Light', sans-serif;
        margin: 0;
    }

.w40 {
    width: 100%;
    float: left;
}

.w60 {
    width: 100%;
    float: left;
}

.aboutCore {
    padding: 50px 0;
}

    .aboutCore .block {
        display: block;
    }

.coreBlockContent {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutCoreItem {
    width: 100%;
    float: left;
    padding: 10px 30px;
}

.aboutCoreItemHeader {
    background: #20542d;
    display: inline-block;
    width: 30%;
    float: left;
}

    .aboutCoreItemHeader h5 {
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        margin: 5px 10px;
        display: block;
        font-size: 18px;
        font-family: 'Roboto-Medium', sans-serif;
    }

.aboutCoreItemContent {
    border: 1px solid #20542d;
    padding: 0 20px;
    float: left;
}

    .aboutCoreItemContent p {
        font-size: 14px;
        font-family: 'Roboto-Light', sans-serif;
        color: #494949;
        line-height: 1.5;
        text-align:justify;
    }

.aboutCoreItem:nth-child(2n) .aboutCoreItemHeader {
    float: right;
}


.aboutHistory {
    padding: 50px 20px;
    background: url('../assets/historyBG-01.jpg');
}

.aboutHistoryContentBLock {
    margin-top: 40px;
    width: 80%;
    margin: 0 auto;
}

    .aboutHistoryContentBLock .asd {
        width: 100%;
        float: left;
        padding: 25px;
    }

.aboutHistoryContentItem {
    width: 100%;
    padding: 30px 20px;
    float: left;
    text-align: center;
    background: #fff;
    height: 250px;
}

    .aboutHistoryContentItem h5 {
        font-size: 24px;
        font-family: 'Roboto-Bold', sans-serif;
        color: #a98253;
    }

    .aboutHistoryContentItem p {
        font-size: 16px;
        font-family: 'Roboto-Light', sans-serif;
        color: #a98253;
        padding: 0 20px;
        margin: 0;
    }
.slick-prev, .slick-next{
    width: 30px;
    height: 30px;
}
.aboutHistory .slick-prev::before, .slick-next::before {
    font-size: 28px;
    color: #fff;
    opacity: 1;
    line-height: 30px;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 15px 0;
    background: #a98253;
    display: inline-block;
    opacity: .7;
}

.aboutMission {
    padding: 100px;
    background: url('../assets/blueBG-01.png');
    text-align: center;
}

    .aboutMission .headerTitle {
        color: #eddcb6;
    }

.gradirent-text {
    font-size: 36px;
    margin-top: 50px;
    font-style: italic;
    font-family: 'Roboto-Regular', sans-serif;
    /* Fallback: Set a background color. */
    background-color: red;
    /* Create the gradient. */
    background-image: linear-gradient(to right, #8b6d46, #EFDEB8, #8b6d46);
    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;
    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.aboutVision{
    float:left;
}
.aboutVision p {
    color: #20542d;
    font-family: 'Roboto-Light', sans-serif;
    text-align: justify;
    font-size: 18px;
    padding: 10px 20px;
    line-height: 1.5;
}

.aboutStructure {
    padding: 50px 0;
    float:left;
}

.grayBG {
    background: #f7f8fa;
}

.structureContent{
    float:left;
}
.structureContent img {
    width: 100%;
    margin-top: 10px;
    padding: 0 10px;
}

.mobileProlistBanner {
    height: 200px;
}
.mobileProlistBanner > img{
    height: 200px;
}
.projectGeneralBlock {
    position: absolute;
    top: 40px;
}

    .projectGeneralBlock .headerTitle {
        color: #fff;
    }
.projectListHolder {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .projectListHolder .subProjectItem {
        display: inline-block;
        width: 40%;
        float: left;
        padding: 10px 20px;
        text-align: center;
    }

    .projectListHolder .subProjectItem {
        font-size: 14px;
        text-transform: capitalize;
    }

        .projectListHolder .subProjectItem:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            background: #00733f;
        }

        .projectListHolder .subProjectItem:first-child {
            color: #fff;
        }

            .projectListHolder .subProjectItem:first-child:hover {
                background: #fff;
            }

            .projectListHolder .subProjectItem:first-child:hover {
                color: #00733f;
            }

        .projectListHolder .subProjectItem:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            background: #fff;
        }

        .projectListHolder .subProjectItem:last-child {
            color: #00733f;
        }


            .projectListHolder .subProjectItem:last-child:hover {
                background: #00733f;
            }

            .projectListHolder .subProjectItem:last-child:hover {
                color: #fff;
            }

.projectBlockHolder {
    width: 100%;
    float: left;
}
.projectItem {
    width: 100%;
    float: left;
    display: block;
    background: #fff;
    padding: 20px;
}

    .projectItem:nth-child(2n) {
        /* background: #f7f8fa; */
    }

.projectItemImageHolder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    float: left;
}

    .projectItemImageHolder img {
        width: 100%;
    }

.projectItemContentHolder {
    float: right;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.projectItem:nth-child(2n) .projectItemImageHolder {
    float: right;
}

.projectItem:nth-child(2n) .projectItemContentHolder {
    float: left;
    padding: 0;
}

.projectItemContentHolder .projectItemTitle {
    font-family: 'Bell-Bold', sans-serif;
    font-size: 30px;
    color: #00733f;
    margin: 0;
    text-transform: capitalize;
    margin-top: 20px;
}

.projectItemContentHolder span {
    color: #aa8353 !important;
    font-family: 'Roboto-Light', sans-serif;
    font-size: 14px;
}

.projectItemContentHolder p {
    color: #494949;
    font-family: 'Roboto-Light', sans-serif;
    font-size: 14px;
}

.projectItemViewmore {
    border: 1px solid #00733f;
    border-radius: 10px;
    font-size: 12px;
    padding: 10px 25px;
    display: inline-block;
    color: #00733f;
    font-family: 'Roboto-Light', sans-serif;
}

    .projectItemViewmore:hover {
        border: 1px solid #fff;
        color: #fff;
        background: #00733f;
    }

.projectBanner {
    width: 100%;
    position: relative;
    overflow: hidden;
    background:none !important;
    margin-top: 50px;
}
.projectBannerImg{
    width: 100%;
}
.projectBanner img {
    width: 100%;
}

.projectBannerInfo {
    
}

.projectBannerInfoContent {
    background: rgb(255 255 255 / 0.80);
    display: inline-block;
    text-align: center;
    width: 100%;
    position: relative;
}

    .projectBannerInfoContent h1 {
        display: none;
    }

.projectBanner .projectLogo {
    width: 100%;
    padding: 20px 140px 100px 140px;
}

.projectBannerInfoContent h2 {
    width: 100%;
    background: rgb(12 61 55 / 0.90);
    padding: 10px 10px;
    position: absolute;
    bottom: 30px;
    color: #eddcb6;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Roboto-Medium', sans-serif;
}

.projectGeneral {
    padding: 50px 0;
    text-align: justify;
}

    .projectGeneral .desc {
        color: #494949;
        font-size: 14px;
        font-family: 'Roboto-Light', sans-serif;
        width: 90%;
        margin: 0 auto;
        line-height: 1.5;
    }

        .projectGeneral .desc * {
            font-size: 14px !important;
            font-family: 'Roboto-Light', sans-serif !important;
            line-height: 1.5;
        }

.introNumber {
    width: 100%;
    position: relative;
    float: left;
    padding: 20px 20px 0 20px;
}

.numberItem {
    width: 25%;
    float: left;
    padding: 0 5px;
    text-align:center;
}

    .numberItem img {
        width: 100%;
        padding: 0 10px;
    }

    .numberItem h5 {
        color: #00614a;
        font-size: 14px;
        font-family: 'Roboto-Medium', sans-serif;
        margin-top: 10px;
    }

    .numberItem h4 {
        color: #494949;
        font-size: 12px;
        font-family: 'Roboto-Light', sans-serif;
        text-transform: uppercase;
        margin-top: 10px;
    }

.generalImageFullPage {
    width: 100%;
}

.locationBlock {
    padding: 50px 0 10px 0;
}

.generalImageFullPage img {
    width: 100%;
}

.locationText p {
    font-size: 14px;
    font-family: 'Roboto-Regular', sans-serif;
    text-align: center;
    color: #494949;
}

.locationDesc {
    width: 100%;
    float: left;
}

    .locationDesc > img {
        width: 100%;
        float: left;
        padding: 0 60px;
    }

    .locationDesc .locationDescText strong, .locationDesc .locationDescText b {
        font-family: 'Roboto-Medium', sans-serif;
        font-weight: 800;
    }
    .locationDesc .locationDescText {
        width: 100%;
        float: left;
        padding: 10px 40px;
        font-size: 14px;
        font-family: 'Roboto-Light', sans-serif;
        line-height: 1.5 !important;
        color: #494949;
    }

        .locationDesc .locationDescText img {
            display: inline-block !important;
        }

.quoteBlock {
    padding: 50px 20px;
    background: url('../assets/blueBG-01.png');
    text-align: center;
}

    .quoteBlock p {
        padding: 0 20px;
        font-size: 22px;
        font-style: italic;
        font-family: 'Roboto-Regular', sans-serif;
        line-height: 1.5;
        /* Fallback: Set a background color. */
        background-color: red;
        /* Create the gradient. */
        background-image: linear-gradient(to right, #8b6d46, #EFDEB8, #8b6d46);
        /* Set the background size and repeat properties. */
        background-size: 100%;
        background-repeat: repeat;
        /* Use the text as a mask for the background. */
        /* This will show the gradient as a text color rather than element bg. */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-background-clip: text;
        -moz-text-fill-color: transparent;
    }

        .quoteBlock p::selection {
            background: none;
        }

.productBlock {
    padding: 0;
    text-align: center;
}

    .productBlock .headerBlock {
        padding: 50px 0 50px;
    }

.productItem {
    width: 100%;
    float: left;
    position: relative;
}

    .productItem .left {
        width: 40%;
        float: left;
        overflow: hidden;
        position: relative;
        background: #f3f3f3;
        height: 600px;
        display:none;
    }

        .productItem .left img {
            width: 100%;
            height: 100%;
        }

    .productItem .right {
        width: 100%;
        float: left;
        overflow: hidden;
        position: relative;
    }

        .productItem .right img {
            width: 100%;
        }

    .productItem .content {
        background: rgba(12, 61, 55, 0.8);
        padding: 10px;
        width: 90%;
        position: absolute;
        top: 26%;
        margin: 0 5%;
    }

.content h3 {
    color: #fff;
    font-size: 22px;
    font-family: 'Roboto-Regular', sans-serif;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.content .spec {
    width: 50%;
    float: left;
    text-align: left;
    margin-bottom: 10px;
}

    .content .spec p {
        color: #fff;
        font-size: 12px;
        font-family: 'Roboto-Light', sans-serif;
        margin: 0;
    }

    .content .spec h5 {
        color: #fff;
        font-size: 14px;
        font-family: 'Roboto-Medium', sans-serif;
        margin: 0;
    }

.imgSlideHolder {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 70%;
}

.imgSlide {
    width: 100%;
    position: relative;
    padding: 30px 0;
    float: left;
    margin: 0 auto;
}

    .imgSlide div {
        width: 100%;
        text-align: center;
        overflow: hidden;
        transition: ease-in 0.5s;
    }

    .imgSlide img {
        padding: 0;
        display: table-cell;
        text-align: center;
        align-content: center;
        transition: ease-in 0.5s;
    }

    .imgSlide .slick-slide {
        transform: scale(0.8);
        transform-origin: right;
        opacity: 0.5;
    }

    .imgSlide .slick-active + .slick-slide {
        transform-origin: left;
    }

    .imgSlide .slick-active {
        transform: scale(1);
        opacity: 1;
    }

    .imgSlide div.slick-slide img {
    }

    .imgSlide div.slick-active img {
    }

.slideNavBtn {
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
}

.prevSlideNav {
    left: 5%;
}

.nextSlideNav {
    right: 5%;
}

.contactHeaderBlock {
    position: absolute;
    top: 100px;
    padding: 0 20px;
}

#image-show-area {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    float: left;
    position: relative;
}

.contactHeaderBlock .headerTitle {
    color: #eddcb6;
}

.contactHeaderBlock p {
    color: #fff;
    font-size: 18px;
}

.contactHeaderBlockContent {
    width: 100%;
    float: left;
    margin-top: 20px;
}

    .contactHeaderBlockContent .col-md-12 {
        width: 100%;
        float: left;
        text-align: center;
        margin-bottom: 10px;
    }
    .contactHeaderBlockContent .col-md-4 {
        width: 100%;
        float: left;
        text-align: center;
        margin-bottom: 10px;

    }



        .contactHeaderBlockContent .col-md-6 h4, .contactHeaderBlockContent .col-md-4 h4, .contactHeaderBlockContent .col-md-12 h4 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .contactHeaderBlockContent .col-md-6 a, .contactHeaderBlockContent .col-md-4 a, .contactHeaderBlockContent .col-md-12 a {
            background: #fff;
            color: #0c3d37;
            font-size: 14px;
            border-radius: 8px;
            padding: 10px 30px;
            display: inline-block;
            line-height: 30px;
        }

        .contactHeaderBlockContent .col-md-6 a:hover, .contactHeaderBlockContent .col-md-4 a:hover, .contactHeaderBlockContent .col-md-12 a:hover {
            background: #0c3d37;
            color: #fff;
        }

        .contactHeaderBlockContent .col-md-6 p, .contactHeaderBlockContent .col-md-4 p, .contactHeaderBlockContent .col-md-12 p {
            color: #0c3d37;
            font-size: 14px;
            margin: 0;
            line-height: 30px;
            display: flex;
        }

        .contactHeaderBlockContent .col-md-6 a:hover p, .contactHeaderBlockContent .col-md-4 a:hover p, .contactHeaderBlockContent .col-md-12 a:hover p {
            color: #fff;
        }

        .contactHeaderBlockContent .col-md-6 img, .contactHeaderBlockContent .col-md-4 img, .contactHeaderBlockContent .col-md-12 img {
            filter: none;
            display: inline-block;
            margin-right: 10px;
        }

        .contactHeaderBlockContent .col-md-6 a:hover img, .contactHeaderBlockContent .col-md-4 a:hover img, .contactHeaderBlockContent .col-md-12 a:hover img {
            filter: grayscale(1) brightness(0) invert(1);
        }

.contactContentBlock {
    padding: 30px 0;
}

.rightContact {
    width: 100%;
    float: left;
    padding: 10px 30px;
    overflow: hidden;
}

.contactContentBlock > img {
}

.contactContentBlock .leftContact h2 {
    color: #00733f;
    font-size: 36px;
    font-family: 'Roboto-Bold', sans-serif;
    margin: 20px 0 40px;
}

.contactContentBlock .leftContact p img {
    margin-right: 15px;
    filter: brightness(1) invert(1) hue-rotate(130deg);
    height: 22px;
    float: left;
    margin-left: 0;
}

.contactContentBlock .leftContact {
    color: #494949;
    font-family: 'Roboto-Light', sans-serif;
    font-size: 18px;
    width: 100%;
    float: left;
    padding: 10px 60px;
}

.contactItem {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

    .contactItem img {
        width: 20px;
        float: left;
        display: inline-block;
        margin: 0;
        margin-right: 10px;
    }

    .contactItem span {
        display: inline-block;
        float: left;
        color: #494949;
        font-size: 18px;
        font-family: 'Roboto-Medium', sans-serif;
        margin: 0 5px 0 0;
    }

    .contactItem p {
        color: #494949;
        font-size: 18px;
        font-family: 'Roboto-Light', sans-serif;
        margin: 0;
    }

    .contactItem a {
        color: #494949;
        font-size: 18px;
        font-family: 'Roboto-Light', sans-serif;
        margin: 0;
    }

        .contactItem a:hover {
            color: #007332;
            font-family: 'Roboto-Medium', sans-serif;
        }

.rightContact img {
    width: 100%;
}
.newsListBanner {
    height: 120px;
}
    .newsListBanner > img {
        object-fit:cover;
        object-position:center;
        height: 120px;
    }
.newsListBanner .aboutGeneralBlock{
    top: 40px;
}
.newsDetailPage {
    width: 100%;
    float: left;
    margin: 0 auto;
    padding: 30px 10px;
}

.newsSummary {
    width: 100%;
}

    .newsSummary h3 {
        color: #494949;
        font-size: 24px;
        font-family: 'Roboto-Regular', sans-serif;
        margin-bottom: 10px;
        float: left;
        width: 100%;
    }

    .newsSummary span {
        width: 100%;
        color: #494949;
        font-size: 12px;
        font-family: 'Roboto-Regular', sans-serif;
        font-style: italic;
        margin-bottom: 7px;
        float: left;
    }

    .newsSummary .blackDivider {
        width: 100%;
        border-bottom: 1px dotted #a4a4a4;
        float: left;
    }

.newsDesc {
    float: left;
    margin-top: 18px;
}

    .newsDesc img {
        max-width: 100%;
        display:unset;
    }
    .newsDesc p {
        font-family: 'Roboto-Light', sans-serif !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: #555;
        height: auto !important;
    }
    .newsDesc strong, .newsDesc b {
        font-family: 'Roboto-Medium', sans-serif !important;
        font-weight: 800;
    }
    .newsDesc a {
        display: unset;
    }

.relatedNews {
    float: left;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 60px;
}

    .relatedNews .headerTitle h2 {
        font-size: 18px;
        font-family: 'Roboto-Regular', sans-serif !important;
        color: #00733f;
    }

.relatedNewsItem {
    width: 100%;
    float: left;
    text-align: left;
    overflow: hidden;
    padding: 20px 30px;
}

    .relatedNewsItem img {
        width: 100%;
    }

    .relatedNewsItem h4 {
        width: 100%;
        padding: 10px 10px 30px 10px;
        font-size: 18px;
        font-family: 'Roboto-Light', sans-serif !important;
        color: #494949;
        background: #f2f2f2;
    }

.footerHolder {
    width: 100%;
    margin: 0 auto;
    background-image: linear-gradient(120deg,#0c3d37, #205441);
    background-image: url('../assets/footerBG.jpg');
    background-size: cover;
    background-position: center;
    padding: 30px 20px 10px 20px;
    float: left;
}

.footer {
    width: 100%;
    margin: 0 auto;
    float:left;
}

.companyInfo {
    display: block;
    width: 100%;
    float: left;
}

    .companyInfo .logo {
        width: 100px;
        display: block;
        float: left;
        filter: grayscale(1) brightness(0) invert(1);
        display: inline;
        padding: 0 10px;
    }

    .companyInfo h3 {
        width: 100%;
        color: #fff;
        font-family: 'Roboto-Medium', sans-serif;
        font-size: 16px;
        float: left;
        display: inline;
        line-height: 1.5;
        margin-bottom: 10px;
        text-align:center;
    }

    .companyInfo p {
        color: #fff;
        font-family: 'Roboto-Light', sans-serif;
        font-size: 14px;
        display: flex;
        width: 100%;
        display: inline-block;
        margin: 10px 0 0 0;
    }

        .companyInfo p img {
            margin-right: 5px;
            filter: grayscale(1) brightness(0) invert(1);
            height: 100%;
            float: left;
            margin-left: 0;
            width: 12px;
        }

    .companyInfo a {
        color: #fff;
        display: inline-block;
    }

.exclusivePartner {
    display: none;
    width: 30%;
    float: left;
    text-align: center;
    align-content: center;
    padding-top: 30px;
}

    .exclusivePartner a {
        color: #fff;
    }

    .exclusivePartner h5 {
        color: #fff;
        font-size: 20px;
    }

    .exclusivePartner img {
        width: 150px;
    }

    .exclusivePartner h3 {
        color: #fff;
        font-size: 20px;
        font-family: 'Roboto-Medium', sans-serif;
        font-size: 26px;
    }

.hotline {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    align-content: center;
}
.socialmedia {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    align-content: center;
    float: left;
}

    .hotline p {
        background: #a98253;
        border-radius: 5px;
        padding: 10px 15px;
        float: left;
        text-align: center;
    }

    .hotline span {
        font-size: 14px;
        font-family: 'Roboto-Medium', sans-serif;
        color: #fff;
        border-right: 1px solid #fff;
        padding-right: 5px;
        float: left;
    }

    .hotline a {
        font-size: 14px;
        font-family: 'Roboto-Medium', sans-serif;
        color: #fff;
        float: left;
        padding-left: 5px;
    }

.socialmedia a {
    float: left;
}

    .socialmedia img {
        margin: 0;
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }

#show_image_popup {
    background: rgb(12 61 55 / 0.91);
    width: 100%;
    height: 100%;
    display: none; /*  to hide first time   */
    position: fixed; /*  so that not take place   */
    top: 50%;
    left: 50%;
    z-index: 1000; /*  adobe all elements   */
    transform: translate(-50%, -50%); /*  make center   */
    padding: 2%;
    overflow: hidden;
    transition: ease-in 2s;
}

.close-btn {
    color: #fff;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
}

#show_image_popup img {
    max-width: 90%;
    height: auto;
}

.active {
    filter: blur(5px);
}

.leftContact h3 {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    color: #00733f;
    text-transform: capitalize;
}

.formGroup {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 10px;
}

    .formGroup label {
        width: 100%;
        float: left;
        font-size: 14px;
        line-height: 30px;
    }

    .formGroup input {
        width: 100%;
        float: left;
        border: 1px solid #bbb;
        height: 30px;
        border-radius: 5px;
        color: #7d7d7d;
        font-size: 14px;
        line-height: 30px;
        padding: 5px 10px;
    }

        .formGroup input[type=submit] {
            width: 50%;
            margin: 0 auto;
            height: 32px;
            border: 1px solid rgb(0 0 0 / 0.00);
            background: #00733f;
            font-size: 14px;
            color: #fff;
            padding: 0 30px;
            cursor: pointer;
            float: none;
            display: block;
        }

            .formGroup input[type=submit]:hover {
                background: #fff;
                color: #00733f;
                border: 1px solid #00733f;
            }

.inquiryPanelHolder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(12 61 55 / 0.90);
    z-index: 1000;
    display: none;
}

.inquiryPanel {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 15px;
    padding-top: 50px;
}

    .inquiryPanel .close-btn2 {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 14px;
        color: #00733f;
    }

        .inquiryPanel .close-btn2:hover {
            transform: rotate(90deg);
        }

    .inquiryPanel h3 {
        font-size: 24px;
        color: #00733f;
    }

    .inquiryPanel p {
        font-size: 14px;
        color: #494949;
    }

    .inquiryPanel .formGroup {
        font-size: 14px;
        color: #494949;
        text-align: left;
        margin-bottom: 20px;
    }
    .inquiryPanel input[type=submit] {
        border-radius: 30px;
    }
.recruitBanner {
    height: auto !important;
}
.recruitBanner > img{
    height: auto !important;
}
.recruitBlock {
    width: 100%;
    position: absolute;
    bottom: -20px;
}

.recruitTab {
    width: 100%;
    position: relative;
    text-align: center;
    margin-top: 50px;
}

    .recruitTab a {
        text-align: center;
        padding: 10px 20px;
        display: inline-block;
        background: #00733f;
        cursor: pointer;
        color: #fff;
        transition: all ease-in 0.3s;
        font-size: 14px;
    }

        .recruitTab a:hover {
            background: #fff;
            color: #00733f;
        }

.recruitContent {
    margin-top: 40px;
    padding: 0 20px;
}

    .recruitContent img {
        display: unset;
        margin: unset;
    }
    .recruitContent * {
        font-size: 14px;
        font-family: 'Roboto-Light', sans-serif;
        color: #494949;
        line-height: 1.5;
    }
.recruitContent .w40{
    padding: 5px 0 !important;
}
.recruitContent .w60{
    padding: 5px 0 !important;
}
    .recruitContent .headerDivider {
        display: block;
        margin: 0 auto;
    }
.contactHeaderBlock .headerBlock p {
    text-align: center;
}
.ultiBlockHolder{
    margin-top: 20px;
}
.ultilitiesBlock .only1366 {
    display: grid;
}

.ultiBlockHolder h4 {
    text-align: center;
    font-size: 16px;
    color: #a98253;
    margin-bottom: 20px;
}

.ultiContent {
    width: 100%;
    padding: 0 30px;
}

.ultiItem {
    background: #fff;
    overflow: hidden;
    text-align: center;
    width: 100%;
    position:relative;
    max-height: 300px;
    overflow:hidden;
    margin-bottom: 10px;
}

    .ultiItem p {
        font-size: 17px;
        position: absolute;
        bottom: 20px;
        margin: 0;
        padding: 5px 10px;
        color: #fff;
        text-transform: uppercase;
        font-family: 'Roboto-Bold', sans-serif;
        width: 100%;
        text-align: center;
        text-shadow: 2px 2px 4px #494949;
        margin-left: -5px;
    }

    .ultiItem img {
        width: 100%;
        object-fit: cover;
    }

.errorPage {
    width: 100%;
    text-align: center;
}

.greenBar {
    background: #00733f;
    height: 100px;
}

.errorPage h3 {
    font-size: 20px;
    text-align: center;
    font-family: 'Roboto-Light', sans-serif;
    margin-top: 60px;
    font-weight: 200;
}

.errorPage img {
    width: 100%;
}
.modalRecruitHolder {
    display: none;
}
.recruitItem {
    width: 100%;
    margin-bottom: 40px;
}
.recruitItemText {
    width: 100%;
}
    .recruitItemText h4 {
        font-size: 18px;
        color: #00733f;
        text-align: center;
        font-family: 'Roboto-Bold', sans-serif;
    }
.recruitItemText > span {
    display:none;
}
.recruitItem .recruitItemImage {
    width: 100%;
}

    .recruitItem .recruitItemImage img {
        width: 100%;
    }