/*===================== TABLE OF CONTENT =======================
1. Reset CSS
2. Fonts
3. General Styling
=============================================================*/

/* ==== All tag Start ==== */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

body::-webkit-scrollbar,
textarea::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
    background-color: #007447;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
    -webkit-transition: all .2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
    -webkit-transition: all .2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
    -webkit-transition: all .2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

textarea::placeholder,
input::placeholder {
    -webkit-transition: all .2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}


ul,
ol {
    list-style-type: none;
    margin: 0;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    outline: 0 !important;
}
img {
    border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0px;
}
p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
}

.clr {
    clear: both;
}
.corp {
    overflow: hidden;
}
.corp-y {
    overflow-y: hidden;
}
.corp-x {
    overflow-x: hidden;
}
.d-ib {
    display: inline-block;
}
.bdrs-5 {
    border-radius: 5px;
}
.bdrs-0 {
    border-radius: 0;
}
.no-border {
    border: none !important;
}
.no-flex {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.row-flex-none {
    display: block;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.section-gap {
    padding: 95px 0px;
}
.section-gap-top {
    padding-top: 95px;
}
.section-gap-top-big {
    padding-top: 170px;
}
.section-gap-bottom {
    padding-bottom: 95px;
}
.section-gap-m {
    margin: 95px 0px;
}
.section-gap-top-m {
    margin-top: 95px;
}
.section-gap-bottom-m {
    margin-bottom: 95px;
}
.wrapper-gap {
    padding: 40px 20px;
}

.display-table {
    display: table;
    width: 100%;
    height: 100%;
    .display-content {
        vertical-align: middle;
        display: table-cell;
    }
}

.f1 {
    font-family: 'Ubuntu', sans-serif;
}
.f2 {
    font-family: 'Open Sans', sans-serif;
}
.f3 {
    font-family: 'Roboto', sans-serif;
}
.f4 {
    font-family: 'Dosis', sans-serif;
}
.f5 {
    font-family: 'Josefin Sans', sans-serif;
}

.fw-3 {
    font-weight: 300;
}
.fw-4 {
    font-weight: 400;
}
.fw-4i {
    font-weight: 400;
    font-style: italic
}
.fw-5 {
    font-weight: 500;
}
.fw-6 {
    font-weight: 600;
}
.fw-7 {
    font-weight: 700;
}

/* ==== All tag End ==== */
.btn {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    border: 1px outset #ffffff;
    background: rgba(2, 114, 67, 0.6);
    color: #ffffff;
    filter: drop-shadow(-2px 2px 1px rgba(2, 114, 67, 0.2));
    padding: 11px 5px;
    border-radius: 0px;
    max-width: 180px;
    width: 100%;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    text-transform: uppercase;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.btn:hover {
    background: rgba(2, 114, 67, 0.95);
    color: #ffffff
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(2, 114, 68,.15);
}
.form-control {
    width: 100%;
    color: #000000;
    font-size: 16px;
    padding: 12px 10px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid #027244;
    margin-bottom: 20px;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: rgba(2, 114, 68,20);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(2, 114, 68,.15);
}

.top-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: 1px outset #027244;
    border-radius: 0px;
    font-weight: 700;
    color: #4ab84a;
    display: none;
    text-align: center;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.65));
    z-index: 10;
    &:hover {
        color: #ffffff;
        background: rgba(2, 114, 68, 0.70);
    }
    i {
        font-size: 18px;
        line-height: 42px;
    }
}

/* ==== Navbar Start ==== */
#navbar-main {
    background: rgb(255 255 255 / 55%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding: 15px 0px;
    border-bottom: 1px solid transparent;
    -webkit-transition: all linear .5s;
    -moz-transition: all linear .5s;
    -ms-transition: all linear .5s;
    -o-transition: all linear .5s;
    transition: all linear .5s
}

.navbar-main-change {
    background: linear-gradient(90.25deg,hsla(0,0%,98.8%,.35) 5.68%,hsla(0,0%,98.8%,.3) 143.91%) !important;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding: 10px 0px !important;
    border-bottom: 1px solid #027244 !important;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.navbar-main-change .navbar-expand-lg .navbar-nav .nav-item .nav-link:after {
    bottom: -1px
}

.navbar-main-change .navbar-brand .nav-logo {
    max-height: 55px !important
}

.navbar-brand {
    padding: 0;
    margin: 0;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.navbar-brand .nav-logo {
    max-height: 60px;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.navbar-expand-lg {
    padding: 0
}

.navbar-expand-lg .logo-main-top img {
    max-height: 75px
}

.navbar-expand-lg .navbar-nav .nav-item {
    display: flex;
    padding: 15px 20px
}

.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
    flex: auto;
    color: #4ab84a
}

.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link:after {
    content: ''
}

.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    color: #1a7e46;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    padding: 0px 0px;
    position: relative;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.navbar-expand-lg .navbar-nav .nav-item .nav-link:after {
    position: absolute;
    content: none;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: #4ab84a;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.navbar-expand-lg .navbar-nav .nav-item .active {
    color: #1a7e46
}

.navbar-expand-lg .navbar-nav .nav-item .active:after {
    content: ''
}

.navbar-toggler {
    padding: 4px 8px;
    font-size: 1.25rem;
    line-height: 1;
    color: #1a7e46;
    border: 1px outset #1a7e46;
    background: rgba(26, 126, 69, 0.3);
    border-radius: 0;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: 0;
    box-shadow: 0 0 0 2px;
}

.navbar-toggler .navbar-toggler-ico {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    padding: 4px 0;
    background-size: 100% 100%
}

.navbar-toggler .navbar-toggler-ico .icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 0px;
    background-color: #ffffff;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    transition: all linear .3s
}

.navbar-toggler .navbar-toggler-ico .icon-bar+.icon-bar {
    margin-top: 6px
}
/* ==== Navbar End ==== */

/* ==== Contact Page Start ==== */
/* contact-banner */
#contact-banner {
    background: url(../images/contactBanner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 270px 0px 200px 0px;
}
#contact-banner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(26, 126, 70,.3);
}
#contact-banner .contact-banner-text {
    color: #ffffff;
    position: relative;
    z-index: 9;
}
#contact-banner .contact-banner-text h1 {
    font-size: 48px;
    padding: 0px 0px 10px;
}
#contact-banner .contact-banner-text h1 strong{
    color: #027244;
}
#contact-banner .contact-banner-text p {
    padding: 0px 40px 30px;
}
#contact-banner .contact-banner-text .btn {
}
/* contact-banner */
/* contact-form */
#contact-form {}
#contact-form .contact-form-box {}
#contact-form .contact-form-box h1 {
    color: #007447;
    font-size: 40px;
    padding: 0px 0px 30px;
}
#contact-form {}
/* contact-form */
/* ==== Contact Page End ==== */

 
 
.main {
    padding: 20px;
  }
  
  section {
    line-height: 1.5;
    min-height: 400px;
    display: block;
  }

  .principles-banner {
    background-image: url('../images/coffee.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #000000;
    text-align: left;
    margin-top: 65px;
    padding: 60px 380px 100px 420px;
  }


  .banner {
    background-image: url('../images/Petroleum-worker.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: left;
    margin-top: 65px;
    padding: 100px 100px 0px 150px;
  }
  
  .banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: black;
  }
  
  .banner p {
  color: #545454;
  padding-bottom: 1em;
  }
  
  .maps {
    background-image: url('../images/map-of-the-world.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 80px 0;
  }
  
  .maps h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: black;
  }
  
  .maps p {
  color: #545454;
  padding-bottom: 1em;
  }
  .cta-button {
    background-color: #f39c12;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background-color: #e67e22;
  }
  
  .two-contain {
    float: left;
    width: 50%;
    padding: 2%;
    padding-top: 20px;
    padding-bottom: 20px;
}

  .three-contain {
    float: left;
    width: 33%;
    padding: 1%;
    padding-top: 20px;
    padding-bottom: 20px;
    
}

.three-contain a {
    text-decoration: none;
    color: #000;
}
  .post-container {
	box-shadow:  1px 3px 1px rgba(0, .4, 0, .4);
	overflow: hidden;
	background-color: #e6e6e6;
	padding: 10px;
	text-align: left;
	width: 100%;
	min-height:400px;
    position: relative;
    background-size: cover;
    background-position: center;
    
    
}

.post-container h2 {
	text-align: left;	
	
}
 .post-container p {
    text-align: left;
    color: #000000;
    margin-bottom: 10px;
}

 .news-headline {
    position: absolute;
    bottom: 0;

}

.news-headline h2 {
   text-align: left;
   background-color: #c3c2c2;
   margin-right: 10px;	
   font: 2em sans-serif;
   
}
.news-headline p {
   text-align: left;
   background-color: #e9e9e8;
   color: #000000;
   margin-bottom: 10px;
   margin-right: 10px;
   font: 1.2em sans-serif;
}



/* Clear floats after the columns */
.two-column:after, .three-column:after, .post-container:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media (max-width: 800px) {
    .two-contain{   
        width: 100%;
        padding: 0;
        float: none;
    }
	
    .three-contain{   
        width: 100%;
        padding: 0;
        float: none;
    }
    .principles-banner {   
        width: 100%;
        padding: 10px;
        margin-top: 100px;
        float: none;
    }

}


/* Footer Styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
  }