    /*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
    
     :root {
        --theme-background: #39b54a;
        --theme-primary-background: #006838;
        --theme-secondary-background: #F6F6F6;
        --theme-footer-background: #0B0D15;
        --theme-color: #51C18C;
        --theme-primary-color: #39b54a;
        --theme-secondary-color: #E5F2F5;
        --white: #FFFFFF;
        --font-color: #4e4b4b;
        --font-color2: #0a0a0a;
        --gradient: rgb(4, 134, 158) linear-gradient(97deg, rgba(4, 134, 158, 1) 43%, rgba(81, 193, 140, 1) 100%);
        --gradient2: rgb(4, 134, 158) linear-gradient(196deg, rgba(81, 193, 140, 1) 0%, rgba(4, 134, 158, 1) 92%);
        /* --theme-secondary-color: green;
    --final-font: helvetica; */
        --praimry-font: 'Poppins', helvetica;
        --secondary-font: 'Playfair Display', serif;
    }
    /*--------------------------------------------------------------
# Scrollbar Start
--------------------------------------------------------------*/
    /* width */
    
     ::-webkit-scrollbar {
        width: 10px;
    }
    /* Track */
    
     ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    /* Handle */
    
     ::-webkit-scrollbar-thumb {
        background: var(--theme-background);
        cursor: pointer;
    }
    /* Handle on hover */
    
     ::-webkit-scrollbar-thumb:hover {
        background: var(--theme-background);
        transition: .4s ease-in;
        transition-delay: 0.5s;
    }
    /*--------------------------------------------------------------
# Special Content
--------------------------------------------------------------*/
    
    .block_divider {
        margin-top: 70px;
    }
    /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
    
    .back-to-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: 15px;
        z-index: 996;
        background: var(--theme-background);
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.4s;
    }
    
    .back-to-top i {
        font-size: 20px;
        color: #fff;
        line-height: 0;
    }
    
    .back-to-top:hover {
        background: var(--theme-primary-color);
    }
    
    .back-to-top i:hover {
        color: var(--theme-color) !important;
    }
    
    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }
    /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
    
    body {
        background: #ffffff;
        /* color: #898989; */
        font-family: var(--praimry-font);
        font-size: 15px;
        font-weight: 300;
        line-height: 20px;
        letter-spacing: 0.02em;
        overflow-x: hidden;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0;
    }
    
    h2 {
        color: var(--theme-primary-color);
        font-weight: 600;
    }
    
    h4 {
        /* color: var(--theme-primary-color); */
        font-size: 14px;
        font-weight: 600;
    }
    
    a {
        /* color: var(--theme-primary-color); */
        text-decoration: none !important;
        transition: all 0.5s ease-in-out 0s;
    }
    
    a:hover {
        transition: all 0.5s ease-in-out 0s;
    }
    
    p {
        margin: 10px 0;
        padding: 0;
        font-size: 15px;
        /* color: var(--font-color); */
        line-height: 28px;
    }
    
     ::-moz-selection {
        background: #b8a07e;
        color: #fff;
    }
    
     ::selection {
        background: #b8a07e;
        color: #fff;
    }
    
    .btn {
        border: 1px solid transparent;
        background: var(--theme-background);
        border-radius: 0;
        /* color: var(--theme-footer-background); */
        font-size: 14px;
        height: 30px;
        line-height: 30px;
        padding: 0 20px;
        /* text-transform: uppercase; */
        transition: .4s ease-in;
    }
    
    .btn:hover,
    .btn:focus {
        background: var(--theme-primary-background);
        color: #fff;
        transition: .4s ease-in;
        border: 1px solid transparent;
        transition-delay: 0.1s;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .section-title {
        margin-bottom: 70px;
    }
    
    #portfolio .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 25px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    
    .form-control {
        background-color: transparent;
        border: 1px solid #999;
        /* border-bottom: 1px solid #999; */
        border-radius: 0;
        color: #999999;
        font-size: 12px;
        font-weight: 500;
        height: 40px;
        letter-spacing: 0.1em;
        padding-left: 10px;
        margin: 0 0 25px 0;
        line-height: 14px;
        /* text-transform: uppercase; */
    }
    
    .form-control:focus {
        box-shadow: none;
        outline: 0 none;
    }
    
    .form-text-bold {
        font-size: 16px;
        font-weight: 600;
    }
    
    .form-text-bold1 {
        font-size: 14px;
        font-weight: 600;
    }
    
    .file[type=file] {
        color: var(--theme-background);
    }
    
    .file {
        height: auto;
        margin-bottom: 15px;
        border: 0;
    }
    
    .section-heading {
        text-align: center;
        color: var(--theme-primary-color);
        font-size: 24px;
    }
    /*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/
    
    .navbar-dark .navbar-toggler-icon {
        background: none;
    }
    
    .navbar-dark .navbar-toggler {
        border-color: rgba(0, 0, 0, 0);
    }
    
    #toggle {
        width: 30px;
        /* height: 30px;
    margin: 10px auto; */
    }
    
    #toggle div {
        width: 100%;
        height: 3px;
        background: var(--theme-primary-background);
        margin: 6px auto;
        transition: all 0.3s;
        backface-visibility: hidden;
    }
    
    #toggle.on .one {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    #toggle.on .two {
        opacity: 0;
    }
    
    #toggle.on .three {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .navbar-light .navbar-toggler {
        border-color: transparent;
    }
    /*--------------------------------------------------------------
# NavBar
--------------------------------------------------------------*/
    
    .navbar-light {
        background-color: transparent !important;
        /* padding-right: 30px;
    padding-left: 30px;
    border-radius: 100px;
    box-shadow: 0px 8px 48px 0px rgb(58 58 58 / 12%);
    width: 90%;
    border-radius: 50px;
    margin: 20px auto 0; */
    }
    
    .fixed-top {
        background-color: #fff !important;
        box-shadow: 0px 8px 48px 0px rgb(58 58 58 / 12%);
    }
    
    .nav_custom li {
        padding: 0px 20px;
        font-size: 16px;
        font-weight: bold;
    }
    /* .nav_custom .nav-link {
    border-bottom: 2px solid transparent !important;
} */
    
    .nav_custom .nav-link {
        border-bottom: 2px solid transparent !important;
    }
    
    .nav_custom .nav-link:hover {
        border: 0 !important;
        color: var(--theme-primary-background) !important;
        border-bottom: 2px solid var(--theme-primary-background) !important;
    }
    
    .nav_custom .nav-link.active {
        border: 0 !important;
        color: var(--theme-primary-background) !important;
        border-bottom: 2px solid var(--theme-primary-background) !important;
    }
    
    .dropdown-item.active,
    .dropdown-item:active {
        background-color: var(--theme-primary-background);
    }
    /* .nav_custom .nav-link:before {
    background-color: rgba(1, 132, 159, 0.08);
    width: 35px;
    height: 35px;
    border-radius: 100px;
    bottom: 10px;
    left: -15px;
} */
    
    .fixed-top {
        width: 100%;
        border-radius: 0;
        margin: 0 auto;
    }
    
    .carousel-caption {
        text-align: center;
    }
    
    .carousel-caption p {
        color: var(--theme-primary-color);
        font-size: 28px;
        margin: 15px 0;
    }
    
    #main-carousel .carousel-indicators {
        bottom: 15px
    }
    
    #main-carousel .carousel-indicators {
        position: absolute;
        top: 0%;
        width: 20px;
        height: auto;
        bottom: 0;
        left: 10%;
        z-index: 10;
        /* width: 60%; */
        padding-left: 0;
        margin-left: -8%;
        display: flex;
        flex-direction: column;
    }
    
    #main-carousel .carousel-indicators li {
        background-color: var(--theme-background) !important;
        border: 0;
        width: 3px;
        height: 40px;
        margin-top: 10px;
        margin-left: 0;
        text-indent: -1px;
        border-radius: 0;
    }
    
    #main-carousel .carousel-indicators .active {
        background-color: var(--theme-primary-background) !important;
    }
    /*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
    
    #hero {
        /* top: 0; */
        z-index: -1;
        /* position: absolute; */
        /* background: url("../img/slider-layer-1.png") repeat scroll center center/cover; */
        height: auto;
        width: 100%;
    }
    
    #hero .hero-content {
        height: 90vh;
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-content h1 {
        width: 550px;
        font-size: 40px;
        font-weight: 700;
        line-height: 3.5rem;
        margin-bottom: 10px;
        text-transform: capitalize;
        /* color: var(--theme-primary-color); */
    }
    
    .hero-content p {
        font-size: 13px;
        letter-spacing: 3px;
        margin-top: 0;
        margin-bottom: 30px;
        text-transform: uppercase;
        color: var(--theme-primary-color);
        font-weight: 500;
    }
    
    .hero-content .list-social li {
        float: left;
        margin-right: 20px;
    }
    
    .hero-content .list-social li i {
        color: var(--theme-primary-color);
        font-size: 15px;
    }
    
    .header {
        height: 250px;
        width: 100%;
        /* background: var(--theme-primary-background); */
        background-position: center center;
        /* background-clip: cover; */
        background-size: cover;
        color: #ffffff;
    }
    
    .header .container-fluid {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }
    /* .arrow-down img {
        width: auto;
        height: auto;
        margin-top: -75px;
    } */
    /*-----------------------------------------------------------------------------------*/
    /*  About
/*-----------------------------------------------------------------------------------*/
    
    #about {
        width: 100%;
        height: auto;
        /* background: var(--theme-secondary-background); */
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    #about .div-img-bg {
        padding-bottom: 0px;
        border: 10px solid var(--theme-primary-color);
        border-left: 0;
        /* border-radius: 15px; */
    }
    
    #about .div-img-bg .about-img img {
        width: 100%;
        box-shadow: 0px 0px 85px 0px rgba(0, 0, 0, 0.14);
        margin-top: -60px;
        margin-left: 0px;
        height: 450px;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 15px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    #about .about-descr .p-heading {
        font-size: 40px;
        font-size: 500;
        text-align: left;
        margin-bottom: 20px;
        color: var(--theme-primary-color);
    }
    
    #about .about-descr .separator {
        margin-bottom: 0;
        color: #ffffff;
        /* text-align: justify; */
    }
    
    #about a {
        font-size: 18px;
        color: var(--theme-primary-color);
    }
    
    #about a:hover {
        color: var(--theme-primary-background);
    }
    /*--------------------------------------------------------------
# serivces
--------------------------------------------------------------*/
    
    #serivces {
        /* margin-bottom: 50px; */
        padding: 60px 0;
        background: var(--theme-secondary-background)
    }
    
    .parallax-container {
        height: 45vh;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    #serivces .about-card {
        width: 100%;
        height: auto;
        text-align: left;
        background: var(--white);
        /* padding: 40px 20px; */
        border-style: solid;
        border-width: 1px;
        border-color: var(--white);
        border-radius: 5px;
        box-shadow: 0px 8px 40px 0px rgb(0 0 0 / 15%);
        z-index: 1;
        position: relative;
        top: 0;
        transition: top ease 0.5s;
    }
    
    #serivces .about-card img {
        width: 100%;
    }
    
    #serivces .about-text {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    #serivces .about-card:hover {
        top: -10px;
    }
    
    #serivces .about-card h4 {
        color: var(--theme-color);
        font-size: 24px;
        margin-top: 20px;
    }
    
    .main-text h1 {
        font-size: 40px;
        font-size: 500;
        text-align: center;
        margin-bottom: 20px;
        color: var(--theme-primary-color);
    }
    
    .main-text p {
        font-size: 40px;
        font-size: 500;
        text-align: center;
        margin-bottom: 20px;
        line-height: 2.8rem;
    }
    /*--------------------------------------------------------------
# GetIntotouch
--------------------------------------------------------------*/
    
    .getIntotouch {
        padding: 50px 0;
    }
    
    .contect-us-card {
        width: 100%;
        height: 100%;
        box-shadow: 0px 8px 40px 0px rgb(0 0 0 / 15%);
        z-index: 1;
        position: relative;
        background: var(--theme-primary-background);
    }
    
    .cont p {
        font-size: 36px;
        line-height: 3rem;
        padding: 0 36px;
        color: #fff;
        font-weight: 500;
        /* color: var(--theme-primary-color); */
    }
    
    .contect-us-card img {
        position: absolute;
        top: 20px;
        left: 20px;
    }
    
    .getIntotouch .contus {
        color: #fff;
    }
    
    .getIntotouch .contus i {
        margin-right: 10px;
    }
    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
    
    footer {
        padding: 30px 0px 0 0px;
        background: var(--theme-footer-background);
    }
    
    footer p {
        color: #fff;
    }
    
    footer a {
        color: #fff;
    }
    
    footer h3 {
        color: #5a5b5a;
    }
    
    footer h5 {
        color: var(--theme-primary-color);
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    footer ul {
        margin-bottom: 20px;
    }
    
    footer ul li {
        line-height: 20px;
        margin: 10px auto;
    }
    
    footer li a {
        color: #fff;
        line-height: 24px;
        font-size: 13px;
        /* text-transform: uppercase; */
        font-weight: 600;
    }
    
    footer li a:hover {
        color: rgb(139, 136, 136);
        text-decoration: underline;
    }
    
    .footer i {
        margin-right: 10px;
        color: var(--theme-primary-color);
    }
    
    .addressBox {
        background: rgba(0, 0, 0, 0.2);
        padding: 10px;
        border-radius: 6px;
        margin: 10px 0;
    }
    
    .addressBox h4 {
        color: #fff;
        font-size: 16px;
        margin: 0;
    }
    
    .addressBox h4 small {
        color: #fff;
        text-transform: none;
    }
    
    .copyRight {
        background: rgba(0, 0, 0, 0.2);
        padding-top: 10px;
        /* margin: 0 -15px; */
        /* margin-top: 50px; */
    }
    
    .copyRight p.bottom-links {
        color: rgba(255, 255, 255, 0.6);
        padding-top: 10px;
        text-transform: uppercase;
        font-size: 13px;
    }
    
    .copyRight .bottom-links a {
        font-size: 13px;
        padding: 0 10px;
        color: #fff;
    }
    
    .bottom-links a:first-child {
        padding-left: 0
    }
    
    .addressBox {
        min-height: 80px;
    }
    
    .copyRight .fa-3x {
        font-size: 2em;
        color: #fff;
    }
    
    .social:hover {
        -webkit-transform: scale(1.0);
        -moz-transform: scale(1.0);
        -o-transform: scale(1.0);
    }
    
    .social {
        -webkit-transform: scale(0.8);
        /* Browser Variations: */
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        -webkit-transition-duration: 0.5s;
        -moz-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
    }
    
    .showcase .showcase-text {
        text-align: justify;
        padding: 10px;
        text-align: center;
        padding: 30px 120px;
        color: var(--black-color);
    }
    
    .showcase .specail-margin:nth-child(odd) .col-sm-6:nth-child(1) {
        background: var(--theme-primary-background);
        color: #fff;
        height: 30rem;
        display: flex;
        align-items: center
    }
    /* 
    
    .showcase .specail-margin:nth-child(odd) .col-lg-6:nth-child(1) h2 {
        color: #fff;
    }
     */
    
    .showcase .showcase-text p {
        margin-left: 5px;
    }
    
    .specail-margin p:nth-child(2) {
        /* font-style: italic; */
        font-weight: 600;
        line-height: 1.75em;
        text-align: center;
        font-size: 18px;
        font-family: var(--font-4);
    }
    
    .specail-margin p:nth-child(4) {
        font-weight: bold;
        font-family: var(--font-1);
    }
    
    .specail-margin h2 {
        line-height: 1.41em;
        text-align: center;
        font-size: 22px;
        font-weight: bold;
        font-family: var(--font-3);
        color: var(--main-color);
    }
    
    .parallax-guide {
        width: 100%;
        height: 30rem;
    }
    
    .showcase ul li {
        margin: 10px 0;
    }
	
	.error {
	margin-bottom: 10px;
    margin-top: 0px;
	color:red;
	}