body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    background-color: #FCFCFC;
}


/* START-PRE-LOADER */

.pre-loader {
    background-color: #2E9332;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1031;
    margin-top: 0px;
    top: 0px;
}

.pre-loader-object {
    width: 100%;
    height: 100%;
    position: relative;
    background: url("../images/pre-loader.svg") no-repeat center center;
    animation-name: fade;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-direction: alternate;
}

@keyframes fade {
    0% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.75;
    }
    100% {
        opacity: 1;
    }
}


/* END-PRE-LOADER */


/* START-FOOTER */

footer {
    color: #585858;
    font-size: 16px;
    font-weight: 100;
    margin: 100px 4rem .5rem;
    font-family: 'Montserrat', sans-serif;
}

footer,
footer a,
footer a:hover {
    color: #585858;
}

footer a:hover {
    text-decoration: none;
    color: #2E9332;
}

footer p {
    margin-bottom: 5px;
    font-weight: 300;
}

footer .footer-big-title {
    font-size: 35px;
    text-transform: uppercase;
    color: #2E9332;
    font-weight: bold;
}

footer .footer-title {
    font-weight: 400;
    margin-bottom: 15px;
}

footer .footer-phone {
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.footer-menu {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    padding-left: 0;
}

.footer-menu li {
    margin-bottom: 5px;
    font-weight: 300;
}

footer .copyright {
    margin-top: 30px;
}

footer .copyright a {
    color: #2E9332;
}

footer .copyright a:hover {
    text-decoration: underline;
}

footer .media+.media {
    margin-top: 15px;
}

footer .media img {
    width: 82px;
    height: 82px;
    object-fit: cover;
}

footer .media h5 {
    font-size: 17px;
    color: #4C4C4C;
    font-weight: 100;
}

footer .media h6 {
    font-size: 14px;
    color: #4C4C4C;
    font-weight: 100;
}


/* END-FOOTER */


/* START-PAGE-HEADER */

.page-header {
    display: flex;
    align-items: center;
    height: 500px;
    justify-content: center;
}

.page-header button:focus {
    outline: none;
}

.page-header.full-hight {
    height: 100vh !important;
    position: relative;
}

.page-header.full-hight img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
}

.page-header.full-hight div {
    z-index: 1;
}

.page-header.top {
    position: relative;
    top: -100px;
}

.page-header.large {
    height: 650px;
}

.page-header.bg-1 {
    background-image: url(../images/header-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header.bg-2 {
    background-image: url(../images/contact-us-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header.bg-3 {
    background-image: url(../images/projects-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header.bg-4 {
    background-image: url(../images/about-us-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header.bg-5 {
    background-image: url(../images/service-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header img {
    object-fit: cover;
}

.page-header h1 {
    color: #2E9332;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.page-header p {
    color: #4C4C4C;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    text-align: justify;
}

.page-header .header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* END-PAGE-HEADER */


/* START-HOME-PAGE */

.home-page-banner-slide {
    margin-left: 6rem;
}

.home-page-banner-slide>div {
    padding-right: 30px;
}

.home-banner-carousel .owl-stage-outer,
.home-banner-carousel .owl-stage,
.home-banner-carousel .owl-item {
    height: 100vh;
}

.home-banner-carousel .home-banner-carousel-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    transform: scale3d(1, 1, 1);
}

.home-banner-carousel .active .home-banner-carousel-bg,
.home-banner-carousel .animated .home-banner-carousel-bg {
    -moz-animation: slide-scale 7s 0s 1 ease-in;
    -webkit-animation: slide-scale 7s 0s 1 ease-in;
    animation: slide-scale 7s 0s 1 ease-in;
}

@-moz-keyframes slide-scale {
    0% {
        opacity: 0;
        visibility: visible
    }
    10% {
        opacity: 1
    }
    90% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -moz-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@-webkit-keyframes slide-scale {
    0% {
        opacity: 0;
        visibility: visible
    }
    10% {
        opacity: 1
    }
    90% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
}

@keyframes slide-scale {
    0% {
        opacity: 0;
        visibility: visible
    }
    10% {
        opacity: 1
    }
    90% {
        opacity: 1
    }
    100% {
        opacity: 0;
        -moz-transform: scale3d(1.1, 1.1, 1.1);
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
}

.header-zoom-in-animation img {
    transform: scale3d(1, 1, 1);
    -moz-animation: zoomIn 7s 0s 1 ease-in forwards;
    -webkit-animation: zoomIn 7s 0s 1 ease-in forwards;
    animation: zoomIn 7s 0s 1 ease-in forwards;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        visibility: visible
    }
    10% {
        opacity: 1
    }
    90% {
        opacity: 1
    }
    100% {
        -moz-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        visibility: visible
    }
    10% {
        opacity: 1
    }
    90% {
        opacity: 1
    }
    100% {
        -moz-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        visibility: visible
    }
    10% {
        opacity: 1
    }
    90% {
        opacity: 1
    }
    100% {
        -moz-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.home-banner-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    right: 10px;
}

.home-banner-carousel .owl-dots button {
    background-color: #e2e8e8 !important;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.home-banner-carousel .owl-dots button.active {
    background-color: #2E9332 !important;
}

.home-banner-carousel .owl-nav button.owl-prev,
.home-banner-carousel .owl-nav button.owl-next {
    top: 40% !important;
}

.home-banner-carousel .owl-nav button.owl-prev {
    left: 10px !important;
}

.home-banner-carousel .owl-nav button.owl-next {
    right: 10px !important;
}

.home-page-carousel {
    position: absolute;
    bottom: 10px;
    padding-right: 80px;
}

.news-carousel-item {
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    background-color: rgba(255, 255, 255, .5);
}

.news-carousel-item:hover {
    background-color: #ffffff;
}

.news-carousel-item a:hover {
    text-decoration: none;
}

.news-carousel-item img {
    margin-bottom: 15px;
}

.news-carousel-item .news-date {
    font-size: 12px;
    color: #A7AEC2;
    font-weight: lighter;
    margin-bottom: 10px;
}

.news-carousel-item .news-title {
    font-size: 16px;
    color: #0A0D10;
    font-weight: bold;
    margin-bottom: 0;
}

.news-carousel-item .news-read-more {
    font-size: 12px;
    color: #39434E;
    font-weight: lighter;
}

.page-header .owl-carousel .owl-nav button.owl-prev,
.page-header .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 25%;
    font-size: 15px;
    color: #ffffff;
    background-color: #2E9332;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.page-header .owl-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.page-header .owl-carousel .owl-nav button.owl-next {
    right: -60px;
}

.home-body {
    margin-top: 50px;
}

.home-item {
    margin-bottom: 80px;
}

.home-item .home-item-img {
    position: relative;
}

.home-item .home-item-img .home-item-img-bg {
    background-color: #2E9332;
    width: 335px;
    height: 335px;
}

.home-item .home-item-img img {
    position: relative;
    top: 30px;
    left: 30px;
    padding: 20px 0 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    height: 335px;
    width: 335px;
    object-fit: cover;
}

.home-item h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E9332;
    font-size: 37px;
    font-weight: bold;
    text-transform: uppercase;
}

.home-item p::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 2px;
    border-left: 4px solid #2E9332;
    width: 2px;
    height: 63px;
}

.home-item p {
    position: relative;
    color: #4C4C4C;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: lighter;
    padding-left: 20px;
    text-align: justify;
}

.home-item a {
    margin-left: 20px;
}

@media (min-width: 997.98px) {
    .home-item:nth-child(even) .home-item-img {
        order: 2;
    }
    .home-item:nth-child(even) .home-item-img .home-item-img-bg {
        position: relative;
        right: 0;
    }
    .home-item:nth-child(even) .home-item-img img {
        left: auto;
        right: 30px;
        padding: 20px 20px 0 0;
    }
    .home-item:nth-child(even) .home-item-text {
        order: 1;
        text-align: left;
        margin-right: 8.333333%;
        margin-left: 0;
    }
    .home-item:nth-child(even) .home-item-text h2 {
        text-align: left;
    }
    .home-item:nth-child(even) .home-item-text p:before {
        content: none;
    }
    .home-item:nth-child(even) .home-item-text p:after {
        content: "";
        position: absolute;
        left: 0px;
        top: 2px;
        border-left: 4px solid #2E9332;
        width: 2px;
        height: 63px;
    }
    .home-item:nth-child(even) .home-item-text p {
        padding-right: 0;
        padding-left: 20px;
    }
    .home-item:nth-child(even) a {
        margin-left: 0;
        margin-right: 20px;
    }
}

.video-section {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
}

.video-section .video-bg {
    background-image: url(../images/video-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.partner-section h2,
.partner-section h2 a,
.news-section h2,
.news-section h2 a,
.video-section h2,
.video-section h2 a {
    font-family: 'Montserrat', sans-serif;
    color: #2E9332;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 37px;
}

.partner-section h2 a:hover,
.news-section h2 a:hover,
.video-section h2 a:hover {
    text-decoration: none;
}

.video-section h3 {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 30px;
}

.video-section a {
    color: #ffffff;
}

.video-section a:hover {
    text-decoration: none;
}

.video-section a i {
    background-color: #ffffff;
    color: #76b574;
    width: 60px;
    height: 60px;
    font-size: 30px;
    padding: 15px 21px;
    border-radius: 50%;
    margin-right: 10px;
}

.partner-section {
    margin-bottom: 50px;
}

.partner-section .owl-carousel .owl-nav button.owl-prev,
.partner-section .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    font-size: 15px;
    color: #ffffff;
    background-color: #2E9332;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.partner-section .owl-carousel .owl-nav button:focus {
    outline: none;
}

.partner-section .owl-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.partner-section .owl-carousel .owl-nav button.owl-next {
    right: -60px;
}

.partner-item {
    border: 1px solid #333333;
    display: flex;
    justify-content: center;
    align-content: center;
    height: 100px;
    margin-top: 15px;
    padding: 5px;
}

.partner-item a {
    display: flex;
}

.partner-item img {
    object-fit: contain;
}

.news-section .news-item {
    font-family: 'Montserrat', sans-serif;
    -webkit-transition: .8s;
    transition: .8s;
    margin-bottom: 15px;
}

.news-section .news-item:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(232, 232, 232, 1) 67%);
    -webkit-box-shadow: 0px 40px 20px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 40px 20px 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 40px 20px 0px rgba(0, 0, 0, 0.26);
}

.news-section .news-item .news-item-img {
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
}

.news-section .news-item .news-item-img img {
    object-fit: cover;
}

.news-section .news-item .news-item-title {
    font-size: 16px;
    font-weight: bold;
    padding: 0 10px;
}

.news-section .news-item .news-item-date {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #4C4C4C;
    font-weight: 100;
    padding: 0 10px;
}

.news-section .news-item .news-item-text {
    font-family: 'Roboto', sans-serif;
    color: #252525;
    font-size: 16px;
    font-weight: 100;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    text-align: justify;
}

.news-section .news-item a {
    font-size: 13px;
    text-transform: none;
    margin: 0 10px 10px;
}


/* END-HOME-PAGE */


/* START-MAIN-CATEGORIES-PAGE */

.main-category-page-header {
    margin-top: 30px;
}

.main-category-page-body .main-category h2 {
    margin: 30px 0 30px 51px;
    font-size: 50px;
    color: #2E9332;
    text-transform: uppercase;
    font-weight: bold;
}

.main-category-page-body .main-category .main-category-item {
    position: relative;
    margin-bottom: 30px;
}

.main-category-page-body .main-category .main-category-item h3 {
    position: absolute;
    left: 50px;
    top: 35px;
    font-size: 40px;
    width: calc(100% - 50px);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

.main-category-page-body .main-category .main-category-item img {
    object-fit: cover;
    object-position: top;
    height: 500px;
    width: 100%;
}


/* END-MAIN-CATEGORIES-PAGE */


/* START-SUB-CATEGORIES-PAGE */

.categories-section {
    margin-top: 20px;
}

.categories-section .title {
    color: #2E9332;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.categories-section .tab-content {
    margin: 20px 0;
}

.categories-section .tab-content .tab-pane ul {
    list-style: none;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.categories-section .tab-content .tab-pane ul li a {
    display: block;
    margin: 10px 0;
    color: #585858;
}

.categories-section .tab-content .tab-pane ul li.active a {
    color: #2E9332;
}

@media(min-width: 991px) {
    .categories-section .tab-content {
        margin-top: 0;
    }
    .categories-section .nav-fill {
        list-style: none;
        display: flex;
        justify-content: center;
        margin-top: 30px;
        flex-wrap: wrap;
        padding-left: 0;
        border-bottom: none;
    }
    .categories-section .nav-fill .nav-item {
        flex: none;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(88, 88, 88, 0.2);
        width: 20%;
        -webkit-transition: .8s;
        transition: .8s;
        padding-top: 15px;
    }
    .categories-section .tab-content .tab-pane ul {
        list-style: none;
        display: flex;
        justify-content: center;
        margin-top: 30px;
        flex-wrap: wrap;
        padding-left: 0;
    }
    .categories-section .tab-content .tab-pane ul li {
        position: relative;
        text-align: center;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(88, 88, 88, 0.2);
        width: 16.66%;
        -webkit-transition: .8s;
        transition: .8s;
        padding-top: 15px;
    }
    .categories-section .tab-content .tab-pane ul li:nth-child(even):before {
        content: "";
        position: absolute;
        bottom: -2.5px;
        width: 3px;
        height: 3px;
        background-color: #2E9332;
        border-radius: 50%;
        display: inline-block;
    }
    .categories-section .tab-content .tab-pane ul li a {
        color: #585858;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        display: inline-block;
        -webkit-transition: .8s;
        transition: .8s;
    }
    .categories-section .tab-content .tab-pane ul li.active,
    .categories-section .tab-content .tab-pane ul li:hover {
        border-bottom-color: #2E9332;
    }
    .categories-section .tab-content .tab-pane ul li.active a,
    .categories-section .tab-content .tab-pane ul li a:hover {
        color: #2E9332;
        text-decoration: none;
    }
}

.sub-categories-section {
    margin-top: 80px;
}

.product-item,
.sub-category-item {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    -webkit-transition: .8s;
    transition: .8s;
    padding-bottom: 20px;
}

.product-item:hover,
.sub-category-item:hover {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.26);
}

.product-item a {
    flex-direction: column;
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-item a:hover,
.sub-category-item a:hover {
    text-decoration: none;
}

.product-item img,
.sub-category-item img {
    height: 253px;
    object-fit: cover;
    -webkit-transition: opacity 800ms ease;
    -moz-transition: opacity 800ms ease;
    -o-transition: opacity 800ms ease;
    transition: opacity 800ms ease;
}


/*
Old animation
.product-item img.back-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.product-item:not(.no-back_image):hover img:not(.back-img) {
    opacity: 0;
}

.product-item:not(.no-back_image):hover img.back-img {
    opacity: 1;
}*/


/*------START-PRODUCT-ITEM-IMAGE-ANIMATION-------*/

.product-item {
    -webkit-perspective: 1000;
    perspective: 1000;
}

.product-item:not(.no-back_image):hover .back {
    transform: rotateY(0deg);
    z-index: 10;
}

.product-item:not(.no-back_image):hover .front {
    transform: rotateY(180deg);
    z-index: -1;
}

.product-item .back,
.product-item .front {
    height: 253px;
    position: relative;
    background-color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex: 0 0 100%;
    -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
    transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
}

.product-item .back {
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    transform: rotateY(-180deg);
}

.product-item .front {
    z-index: 10;
}


/*------END-PRODUCT-ITEM-IMAGE-ANIMATION-------*/

.product-item h3,
.sub-category-item h3 {
    color: #010101;
    font-size: 18px;
    padding: 5px 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    text-align: center;
}

.product-item h4,
.sub-category-item h4 {
    font-family: 'Roboto', sans-serif;
    color: #7E7E7E;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
}


/* END-SUB-CATEGORIES-PAGE */


/* START-PORUCT-LIST-PAGE */

.product-list-header h1 {
    font-size: 30px;
}

.product-list-header p {
    font-size: 15px;
}

.product-list-section .total-items {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #979797;
    font-weight: 100;
}

.product-list-section h2 {
    color: #2E9332;
    font-size: 25px;
    font-weight: bold;
}

.related-products-section,
.new-arrival-section {
    margin-top: 30px;
    padding: 30px 0;
    background-color: #ffffff;
}

.related-products-section {
    background-color: transparent;
}

.related-products-section h2,
.new-arrival-section h2 {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    font-size: 24px;
    margin-bottom: 20px;
}


/* END-PORUCT-LIST-PAGE */


/* START-PORUCT-DETAILS-PAGE */

.product-details-header {
    font-family: 'Roboto', sans-serif;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details-header h1 {
    font-size: 40px;
    font-weight: bold;
}

.product-details-header .product-details-icons img {
    margin: 25px 10px 30px 0;
}

.product-details-header p {
    font-weight: 300;
    font-size: 15px;
    color: #9E9E9E;
    line-height: 1.6;
}

.product-details-header ul li {
    font-weight: 300;
    font-size: 15px;
    color: #9E9E9E;
    margin-bottom: 7px;
}

.product-details-header .btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: none;
    padding: 20px 30px;
    font-weight: 300;
}

.product-details-body {
    background-color: #ffffff;
    padding: 50px 0;
}

.product-details-body .table thead th {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    border-bottom-width: 1px;
    border-top: 0;
}

.product-details-body .table thead th:first-child {
    border-bottom-color: #76b574;
}

.product-details-body .table td {
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #868686;
}

.product-details-body .table-hover tbody tr:hover {
    background-color: #F2F2F2;
}

.product-details-body .specs-table-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #9E9E9E;
    text-align: justify;
}

.product-details-body h2 {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    font-size: 24px;
    margin: 40px 0 20px;
}

.product-detail-images div {
    height: 300px;
    margin-top: 15px;
}

.product-detail-images div img {
    max-width: 100%;
    height: 100%;
}

#requestInfoModal .modal-header {
    border: 0;
    color: #2E9332;
}

#requestInfoModal .modal-header h5 {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

#requestInfoModal .modal-content {
    border-radius: 0;
    border: 1px solid #2E9332;
    padding: 0 50px;
}

#requestInfoModal .modal-footer {
    border: 0;
    padding: 30px 0 50px;
}

#requestInfoModal .modal-footer button {
    color: #2E9332;
    font-weight: bold;
}


/* END-PROUCT-DETAILS-PAGE */


/* START-CONTACT-US-PAGE */

.page-header.contact-us h1 {
    color: #ffffff;
}

.contact-us-section {
    margin-top: 30px;
    margin-bottom: 70px;
}

.contact-us-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2E9332;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: bold;
}

.contact-us-section .accordion {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
}

.contact-us-section .accordion h3,
.contact-us-section .accordion button {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
}

.contact-us-section .accordion button:focus,
.contact-us-section .accordion button:hover {
    text-decoration: none;
}

.contact-us-section .accordion i.arrow {
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    right: 15px;
    top: 30%;
    -webkit-transition: -webkit-transform .5s ease-in-out;
    -moz-transition: -moz-transform .5s ease-in-out;
    -ms-transition: -ms-transform .5s ease-in-out;
    -o-transition: -o-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
}

.contact-us-section i.arrow:before {
    content: "\f054";
}

.contact-us-section .accordion button[aria-expanded=true] i.arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.contact-us-section .accordion .card {
    border: none;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
}

.contact-us-section .accordion .card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 0;
    margin-bottom: 0;
}

.contact-us-section .accordion .card-body {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    padding-bottom: 0;
}

.contact-us-section .accordion .card:last-child .card-body {
    border-bottom: none;
}

.contact-us-section .accordion .card-body p {
    padding-left: 10px;
    margin-bottom: 0;
}

.contact-us-section .accordion .card-body a {
    color: inherit;
    text-decoration: inherit;
}

.contact-us-section .accordion .card-body .contect-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    min-width: 40%;
}

.contact-us-section .accordion .card-body .email-icon {
    width: 16px;
    height: auto;
    display: inline-block;
    background: url(../images/email-icon.svg) no-repeat left center;
}

.contact-us-section .accordion .card-body .phone-icon {
    width: 16px;
    height: auto;
    display: inline-block;
    background: url(../images/phone-icon.svg) no-repeat left center;
}

.contact-us-section .accordion .card-body .fax-icon {
    width: 16px;
    height: auto;
    display: inline-block;
    background: url(../images/fax-icon.svg) no-repeat left center;
}

.contact-us-section .accordion .card-body .address-icon {
    width: 16px;
    height: auto;
    display: inline-block;
    background: url(../images/address-icon.svg) no-repeat left center;
}

.contact-us-section .accordion .card-body .clock-icon {
    width: 16px;
    height: auto;
    display: inline-block;
    background: url(../images/clock-icon.svg) no-repeat left center;
}


/* END-CONTACT-US-PAGE */


/* START-PROJECTS-LIST-PAGE */

.project-list-section,
.about-us-section,
.services-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.project-list-section h1,
.about-us-section h1,
.services-section h1,
.main-category-page-header h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 71px;
    color: #2E9332;
    text-align: center;
    margin-bottom: 20px;
}

.project-list-section p,
.about-us-section p,
.services-section p,
.main-category-page-header p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: #4C4C4C;
    text-align: justify;
}

.project-list {
    margin-top: 60px;
}

.project-item {
    position: relative;
    height: 350px;
    margin-bottom: 30px;
}

.project-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-item-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
}

.project-item h2,
.project-item h3 {
    color: #ffffff;
    -moz-transition: text-shadow 0.5s ease;
    -o-transition: text-shadow 0.5s ease;
    transition: text-shadow 0.5s ease;
}

.project-item a:hover h2,
.project-item a:hover h3 {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}

.project-item h2 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
}

.project-item h3 {
    font-weight: lighter;
    font-size: 14px
}

.project-list .pagination {
    margin-top: 25px;
}


/* END-PROJECTS-LIST-PAGE */


/* START-PROJECT-DETAILS-PAGE */

.project-details-header .owl-carousel {
    position: relative;
}

.project-details-header .owl-nav {
    position: absolute;
    top: 45%;
    left: 50px;
    right: 50px;
}

.project-details-header .owl-nav button {
    border-radius: 50%;
    width: 66px;
    height: 66px;
    background-color: #E6E6E6 !important;
    font-size: 30px !important;
    color: #2E9332 !important;
}

.project-details-header .owl-nav button:focus {
    outline: none;
}

.project-details-header .owl-nav button.disabled {
    color: #999 !important;
}

.project-details-header .owl-nav .owl-next {
    position: absolute;
    right: 0;
}

.project-details-section {
    margin-top: 56px;
}

.project-details-section h1 {
    font-size: 40px;
    font-weight: bold;
    color: #2E9332;
    font-family: 'Montserrat', sans-serif;
}

.project-details-content {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    word-break: break-word;
    color: #4C4C4C;
    font-size: 17px !important;
    padding-bottom: 15px;
    padding-left: 20px;
}

.project-details-content::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    border-left: 3px solid #2E9332;
    height: 60px;
}

.project-details-content ul,
.project-details-content ol {
    padding-left: 15px;
}


/* END-PROJECT-DETAILS-PAGE */


/* START-ABOUT-US-PAGE */

.mission-vision {
    margin-top: 100px;
    margin-bottom: 100px;
}

.mission-vision h2 {
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #2E9332;
    margin-bottom: 30px;
}

.mission-vision p {
    position: relative;
    font-family: 'Roboto', sans-serif;
    color: #4C4C4C;
    font-size: 17px;
    font-weight: 300;
    text-align: justify;
    padding-left: 20px;
    padding-right: 30px;
}

.mission-vision p::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 2px;
    border-left: 3px solid #2E9332;
    height: 60px;
}

.about-us-section .numbers {
    margin-bottom: 100px;
}

.about-us-section .numbers h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: #2E9332;
    text-align: center;
    margin-bottom: 90px;
}

p.big-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #333333;
    text-align: center;
    position: relative;
    z-index: 1;
}

p.small-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 14px;
    color: #333333;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.progress-content {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.progress-content .circle canvas {
    position: absolute;
    top: 0;
    left: 0;
}


/* END-ABOUT-US-PAGE */


/* START-SERVICES-PAGE */

.service-list {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 50px;
}

.service-item {
    height: 420px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.service-item h2 {
    color: #333333;
    font-size: 28px;
    text-align: center;
}

.service-item img,
.service-item svg {
    margin-bottom: 40px;
    -webkit-transition: opacity 800ms ease;
    -moz-transition: opacity 800ms ease;
    -o-transition: opacity 800ms ease;
    transition: opacity 800ms ease;
}

.service-item img.service-item-back-img {
    display: none;
    opacity: 0;
}

.service-item:hover img.service-item-back-img {
    display: block;
    opacity: 1;
}

.service-item:hover img.service-item-front-img {
    display: none;
    opacity: 0;
}

.service-item p {
    font-size: 16px;
    color: #666666;
    text-align: center;
    max-width: 320px;
    padding-right: 15px;
    padding-left: 15px;
}

.service-item:hover {
    background-color: #2E9332;
    color: #ffffff;
}

.service-item:hover svg path {
    fill: #ffffff;
}

.service-item:hover h2,
.service-item:hover p {
    color: #ffffff;
}


/* END-SERVICES-PAGE */


/* START-404-PAGE */

.page-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    color: #2E9332;
    background-image: url(../images/404-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-404 h1 {
    font-size: 140px;
    font-weight: bold;
    margin: 30px 0;
}

.page-404 h2 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 30px;
}


/* END-404-PAGE */


/* START-NEWS-LIST-PAGE */

.news-list {
    margin-bottom: 50px;
}

.news-list h1 {
    font-size: 25px;
    font-weight: bold;
    color: #2E9332;
    display: inline-block;
    margin-right: 60px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.news-list .pagination {
    margin-bottom: 50px;
    margin-top: 50px;
}

.news-tags {
    list-style: none;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0px;
}

.news-tags li a {
    display: block;
    padding: 10px 20px;
    color: #666666;
    font-size: 13px;
    font-weight: 300;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #E2E2E2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.news-tags li {
    margin-right: 10px;
    margin-bottom: 10px;
}

.news-tags li:hover a,
.news-tags li.active a {
    background-color: #2E9332;
    border-color: #2E9332;
    color: #ffffff;
    text-decoration: none;
}

.news-list .news-item {
    height: 258px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.news-list .news-item img {
    height: 100%;
    object-fit: cover;
}

.news-list .news-item h2 {
    font-size: 21px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 30px;
}

.news-list .news-item a:hover {
    text-decoration: none;
}

.news-list .news-item p {
    font-weight: 100;
    color: #666666;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-align: justify;
}

.news-list .news-item .author-and-date {
    font-weight: 400;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #E5E5E5;
    text-transform: uppercase;
    font-size: 12px;
}

.news-list .news-item .author-and-date .author {
    color: #333333;
}

.news-list .news-item .author-and-date .date {
    color: #999999;
}

.news-list .news-item .author-and-date span+span:before {
    content: "/";
    padding-right: 10px;
    padding-left: 10px;
    color: #333333;
}


/* END-NEWS-LIST-PAGE */


/* START-NEWS-DETAILS-PAGE */

.news-details-header {
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.news-details-header h1 {
    color: #40341c;
    font-size: 42px;
}

.news-details-author {
    color: #666666;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
}

.news-details-date {
    text-transform: uppercase;
    color: #666666;
    font-size: 15px;
    font-weight: 300;
}

.news-details-header span+span::before {
    content: "";
    display: inline-block;
    background-color: #666666;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 4px;
}

.news-details {
    margin-bottom: 30px;
}

.news-details-content {
    font-family: 'Montserrat', sans-serif;
    margin-top: 30px;
    word-break: break-word;
    color: #666666;
    font-size: 15px;
    padding-bottom: 15px;
}

.news-details-content img {
    max-width: 100%;
    height: auto;
}

.news-details-content ul,
.news-details-content ol {
    padding-left: 15px;
}

.news-next-prev {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-top: 50px;
    font-family: 'Montserrat', sans-serif;
}

.news-next-prev a {
    text-transform: uppercase;
    font-size: 15px;
    color: #222222;
}

.news-next-prev a:hover {
    text-decoration: none;
}

.news-next-prev .news-list-icon:before {
    content: "";
    background-image: url(../images/news-list-icon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    width: 36px;
    height: 46px;
}

.news-next-prev .news-prev-icon:before {
    content: "";
    background-image: url(../images/arrow-left-icon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 15px;
    width: 16px;
    height: 12px;
}

.news-next-prev .news-next-icon:before {
    content: "";
    background-image: url(../images/arrow-right-icon.svg);
    background-repeat: no-repeat;
    display: inline-block;
    margin-left: 15px;
    width: 16px;
    height: 12px;
}


/* END-NEWS-DETAILS-PAGE */


/* Larg devices (desktop, grater than 1199.98px) */

@media (max-width: 1199.98px) {}


/* Medium devices (tablets, grater than 991.98) */

@media (max-width: 991.98px) {
    .page-header.large {
        height: auto;
        padding: 120px 0 20px;
    }
    .home-page-banner-slide {
        margin-left: 0;
    }
    .home-item .home-item-img .home-item-img-bg {
        margin: 10px auto 60px;
    }
    footer {
        margin: 30px 15px 0.5rem;
    }
    .main-category-page-body .main-category h2 {
        margin-left: 0;
    }
    .main-category-page-body .main-category .main-category-item {
        margin-bottom: 15px;
    }
    .main-category-page-body .main-category .main-category-item img {
        height: 100%;
    }
    .news-list .news-item {
        height: auto;
    }
    .news-list .news-item img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
}


/* Small devices (landscape phones, grater than 767.98px) */

@media (max-width: 767.98px) {
    footer .row div+div {
        margin-bottom: 15px;
    }
    footer .footer-big-title {
        font-size: 25px;
    }
    .page-header.contact-us,
    .page-header.project-list-header,
    .page-header.about-us-header,
    .page-header.services-header {
        position: relative;
        height: 200px !important;
    }
    .page-header.contact-us h1 {
        position: absolute;
        bottom: -70px;
        color: #2E9332;
        font-size: 38px;
    }
    .contact-us-section {
        margin-top: 70px;
    }
    .contact-us-section h2 {
        font-size: 19px;
    }
    .contact-us-section .accordion .card-body .contect-item {
        min-width: 100%;
    }
    .project-list {
        margin-top: 0;
    }
    .project-list-section h1 {
        font-size: 38px;
        text-align: left;
    }
    .project-list-section p {
        font-size: 14px;
    }
    .project-list .pagination {
        margin-top: 0;
    }
    .project-details-header .owl-nav button {
        width: 25px;
        height: 25px;
        font-size: 15px !important;
    }
    .project-details-section {
        margin-top: 20px;
    }
    .project-details-section h1 {
        font-size: 38px;
    }
    .project-details-content {
        padding-left: 0;
    }
    .project-details-content::before {
        content: none;
    }
    .about-us-section h1 {
        font-family: Helvetica, Arial, sans-serif;
        font-size: 38px;
        text-align: left;
    }
    .mission-vision {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .about-us-section .mission-vision h2 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .about-us-section .mission-vision p {
        padding-right: 0;
        padding-left: 0;
    }
    .about-us-section .mission-vision p::before {
        content: none;
    }
    .about-us-section .numbers h2 {
        margin-bottom: 40px;
    }
    .services-section h1 {
        font-family: Helvetica, Arial, sans-serif;
        font-size: 38px;
        text-align: left;
    }
    .service-list,
    .service-list>div {
        padding-left: 0;
        padding-right: 0;
    }
    .service-item p {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-404 h1 {
        font-size: 50px;
    }
    .page-404 h2 {
        font-size: 30px;
    }
    .news-list h1 {
        margin-right: 0;
        display: block;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .news-tags {
        display: flex;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .home-item .home-item-img .home-item-img-bg {
        width: 255px;
        height: 255px;
    }
    .home-item .home-item-img img {
        top: 20px;
        left: 20px;
        height: 255px;
        width: 255px;
    }
    .news-next-prev .news-next-prev-text {
        display: none;
    }
}