/**
* Template Name: Gp - v2.1.0
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
   font-family: "Poppins", sans-serif;
    color: #444444;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    background-color: #fff
}
.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
a {
  color: #ffc451;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
 font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ffc451;
  color: #151515;
  transition: all 0.4s;
}
.back-to-top i img {
  width: 30px;
}
.back-to-top i:hover {
  background: #151515;
  color: #ffc451;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  background: #fff;
}

#header.header-scrolled, #header.header-inner-pages {
  background:#fff;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #ffc451;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #eb5600;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #151515;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #151515;
  background: #ffc451;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 7px 20px 8px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 25px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #eb5600;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #151515;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #151515;
  text-decoration: none;
  background: #ffc451;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #f5f8fd url("../../assets/img/website_frontend.jpg") center top no-repeat;
    background-size: auto;
    background-size: cover;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  width: 100%;
  height: auto;
}
#hero .container p{
  width: 100%;
  height: auto;;
}
#hero h5 {
    margin: 100px 0px;
    font-size: 22px;
    line-height: 40px;
    color: #666;
    text-align: center;
    position: relative;
    max-width: 100%;
    top: 150px;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
} 

.section-title {
  padding-bottom: 20px;
}

.section-title h2 {
    margin: 0;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #151515;
}

.section-title h2::before {
    content: "";
    width: 50px;
    height: 4px;
    display: block;
    background: #eb5600;
    margin: 0px 0px 20px 0px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #333;
}
.section-title h6 {
    margin: 0;
    margin: 0;
    font-size: 17px;
    color: #151515;
}



.section-title2 {
  padding-bottom: 20px;
}

.section-title2 h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
}

.section-title2 h2::before {
    content: "";
    width: 50px;
    height: 4px;
    display: block;
    background: #eb5600;
    margin: 0px 0px 20px 0px;
}

.section-title2 p {
  margin: 0;
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
}
.section-title2 h6 {
    margin: 0;
    font-size: 17px;
    color: #151515;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
    width: 100%;
    height: 88vh;
    position: relative;
    background: #fff center top no-repeat;
    background-size: auto;
    background-size: cover;
}
#about:before {
  content: "";
  background: rgba(0, 0, 0, 0.0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.about .container {

  padding-top: 0px;
  text-align: left;
}
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
}

.about-ul {
    list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
}
.about .content {
  margin: 0px;
}    

.about .content p {
  margin-bottom: 20px;
}

.overview{
    width: 100%;
    height: 160px;
    position: absolute;
    background: #f5f8fd url(../../assets/img/overview.jpg) center bottom no-repeat;
    background-size: auto;
    background-size: cover;
    bottom: 0px;
}
.overview p{
    width: 100%;

}



/*--------------------------------------------------------------
# leadership
--------------------------------------------------------------*/

.leadership {
    width: 100%;
   height: 88vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.leadership .container {
    position: relative;
    padding-top: 0px;
    text-align: left;
}

.leadership .leader-content h3 {
  font-weight: 700;
  font-size: 28px;
}

.leadership .leader-content ul {
  list-style: none;
  padding: 0;
}

.leadership .leader-content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.leadership .leader-content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}


/*--------------------------------------------------------------
# value
--------------------------------------------------------------*/

.value {
    width: 100%;
   height: 88vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.value .container {
    position: relative;
    padding-top: 0px;
    text-align: left;
}

.value .container .value-content {
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 30px;
    float: left;
    background: #ddd;
    height: 360px;
}

.value .container .value-content2 {
    padding: 0px 15px;
    width: 100%;
    display: inline-block;
}
.value .container .value-content .value-img {
    width: 100%;
    height: 180px;
    position: relative;
    background: #f5f8fd url(../../assets/img/vision.jpg) center top no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}
.value .container .value-content .value-img h3 {
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 22px;
    font-size: 36px;
    font-weight: 600;
}

/*.value .container .value-content .value-img:before {
    content: "";
    background: rgba(0, 0, 0, 0.100);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
*/
.value .container .value-content .value-img2 {
    width: 100%;
    height: 180px;
    position: relative;
    background: #f5f8fd url(../../assets/img/mission.jpg) center top no-repeat;
    background-size: cover;
    text-align: center;
    top: 0;
    color: #fff;
    text-transform: uppercase;
}
.value .container .value-content .value-img:before {
    content: "";
    background: rgba(0, 0, 0, 0.100);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.value .container .value-content .value-img2 h3 {
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 22px;
    font-size: 36px;
    font-weight: 600;
}

.value .container .value-content .value-img3 {
    width: 100%;
    height: 180px;
    position: relative;
    background: #f5f8fd url(../../assets/img/value.jpg) center top no-repeat;
    background-size: cover;
    text-align: center;
    top: 0;
    color: #fff;
    text-transform: uppercase;
}
.value .container .value-content .value-img3:before {
    content: "";
    background: rgba(0, 0, 0, 0.100);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.value .container .value-content .value-img3 h3 {
    color: #fff;
    position: absolute;
    bottom: 0;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    width: 100%;
}
.value .container .value-content ul {
    margin: 0px;
    padding: 25px;
    font-weight: normal;
    height: 160px;
}
.value .container .value-content ul li {
    font-size: 14px;
    color: #000;
    font-style: normal;
    list-style: none;
    line-height: 20px;
}
.value .container .value-content p {
    font-size: 14px;
    color: #000;
    background: #ddd;
    font-weight: normal;
    padding: 60px 26px 20px 26px;
    display: inline-block;
    margin: -20px 0px 0px 0px;
    width: 100%;
    text-align: center;
    height: auto;
    line-height: 20px;
}
.value .container .value-content p::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 100px;
    border-color: transparent transparent #007bff transparent;
    z-index: 999;
}
.arrow-up {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #dddddd;
  top: -10px;
  position: relative;
  left: 20px;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #dddddd;
    bottom: -10px;
    position: relative;
    z-index: 999;
    left: 20px;;
}

.padding{
    padding: 0px;
 }


.orange{
  color: #eb5600;
  font-size: 18px;
  font-weight: bold;
}
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: #000;
}
.bottom-left2 {
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: #fff;
}




/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

#services {
    width: 100%;
    height: 88vh;
    position: relative;
    
    background-size: auto;
    background-size: cover;
}
#services:before {
  content: "";
  background: rgba(0, 0, 0, 0.0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#services .container {
    padding-top: 100px;
    text-align: left;
    padding: 0px;
    margin-top: 120px;
}

#services .img {
  width:400px;
  height:300px;
  object-fit:contain;
  margin-left:0px;
  float: right;
}

#services .container h6 {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
    color: #151515;
}

	


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# transformation
--------------------------------------------------------------*/
.transformation {
    width: 100%;
    height: 44vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.transformation .container {

    padding: 50px 0px 100px 0px;
    text-align: left;
}

.transformation .transformation-cont {
    float: left;
}
.transformation .transformation-cont h3 {
  font-weight: 700;
  font-size: 28px;
}

.transformation .transformation-cont ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    background: #f6f6f6;
    font-weight: 600;
}
    
.transformation .transformation-cont p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# project outsourcing
--------------------------------------------------------------*/
.project {
    width: 100%;
    height: 44vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.project .container {

    padding: 50px 0px 100px 0px;
    text-align: left;
}

.project .project-cont {
    float: left;
}
.project .project-cont h3 {
  font-weight: 700;
  font-size: 28px;
}

.project .project-cont ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    background: #f6f6f6;
    font-weight: 600;
}
    
.project .project-cont p:last-child {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# data
--------------------------------------------------------------*/
.data {
    width: 100%;
    height: 44vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.data .container {

    padding: 50px 0px 100px 0px;
    text-align: left;
}

.data .data-cont {
    float: left;
}
.data .data-cont h3 {
  font-weight: 700;
  font-size: 28px;
}

.data .data-cont ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    background: #f6f6f6;
    font-weight: 600;
}
    
.data .data-cont p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# growth
--------------------------------------------------------------*/
.growth {
    width: 100%;
    height: 48vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.growth .container {

    padding: 50px 0px 100px 0px;
    text-align: left;
}

.growth .growth-cont {
    float: left;
}
.growth .growth-cont h3 {
  font-weight: 700;
  font-size: 28px;
}

.growth .growth-cont ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    background: #f6f6f6;
    font-weight: 600;
}
    
.growth .growth-cont p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hiring and Staffing
--------------------------------------------------------------*/
.hiring {
    width: 100%;
    height: 88vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.hiring .container{
  text-align: left;
  padding: 50px 0px;
}
.hiring .staffing {
  width: 100%;
  background: #fff;
  margin-top: 50px;
}

.hiring .staffing i {
  font-size: 20px;
  background: #eb5600;
  color: #fff;
  float: left;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
}

.hiring .staffing h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.hiring .staffing p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}


 /*--------------------------------------------------------------
# individuals
--------------------------------------------------------------*/
.individuals {
    width: 100%;
    height: 88vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}
.individuals .container{
    text-align: left;
     padding: 0px 0px;
    width: 100%;
    max-width: 100%;
}
.individuals .indivi {
  padding: 15px 10% 0 15%;
}

.individuals .indivi h3 {
  font-weight: 400;
  font-size: 34px;
}

.individuals .indivi h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.individuals .indtop {
    padding-left: 15%;
}

.individuals .indtop h6 {
   font-size: 15px;
}

.individuals .indivi p {
  font-size: 15px;
  color: #848484;
  line-height: 16px;
}
.individuals .indivi i {
  font-size: 15px;
  /* background: #ffc451; */
  color: #eb5600;
  float: left;
  width: 44px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  border-right: 2px solid #eb5600;
}

.individuals .indivi h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}
.individuals .indivi h5 {
  padding: 0px 0px;
  font-size: 15px;
  color: #151515;

}
.individuals .indivi p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
.individuals .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 360px;
  top:0;
}

/*--------------------------------------------------------------
# Organisations1
--------------------------------------------------------------*/
.organisations .organi {
  width: 100%;
  background: #fff;
  margin-bottom: 80px;
}

.organisations .organi i {
  font-size: 20px;
  /* background: #ffc451; */
  color: #eb5600;
  float: left;
  width: 44px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  border-right: 2px solid #eb5600;
}
}

.organisations .organi h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.organisations .organi p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

 /*--------------------------------------------------------------
# Organisations
--------------------------------------------------------------*/
.organisations {
  padding: 0;
}

.organisations .organi {
  padding: 60px 100px 0 100px;
}

.organisations .organi h3 {
  font-weight: 400;
  font-size: 34px;
}

.organisations .organi h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.organisations .organi p {
  font-size: 15px;
  color: #848484;
}
.organisations .organi i {
  font-size: 20px;
  /* background: #ffc451; */
  color: #eb5600;
  float: left;
  width: 44px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  border-right: 2px solid #eb5600;
}
}

.organisations .organi h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.organisations .organi p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
.organisations .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}



/*--------------------------------------------------------------
# training
--------------------------------------------------------------*/
.training {
    width: 100%;
    height: 55vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.training .container {

    padding: 50px 0px 100px 0px;
    text-align: left;
}

.training .training-cont {
    float: left;
}
.training .training-cont h3 {
  font-weight: 700;
  font-size: 28px;
}

.training .training-cont ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    background: #f6f6f6;
    font-weight: 600;
}
    
.training .training-cont p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Career
--------------------------------------------------------------*/
.career {
    width: 100%;
    height: 60vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.career .container {

    padding: 50px 0px 100px 0px;
    text-align: left;
}

.career .career-cont {
    float: left;
}
.career .career-cont h3 {
  font-weight: 700;
  font-size: 28px;
}

.career .career-cont ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    background: #f6f6f6;
    font-weight: 600;
}
    
.career .career-cont p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# verification
--------------------------------------------------------------*/
.verification {
    width: 100%;
    height: 44vh;
    position: relative;
    background-size: auto;
    background-size: cover;
}

.verification .container {

    padding: 50px 0px 100px 0px;
    text-align: left;
}

.verification .verification-cont {
    float: left;
}
.verification .verification-cont h3 {
  font-weight: 700;
  font-size: 28px;
}

.verification .verification-cont ul {
list-style: disc;
    padding: 0px 0px 0px 20px;
    display: inline-block;
    background: #f6f6f6;
    font-weight: 600;
}
    
.verification .verification-cont p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
Contact
--------------------------------------------------------------*/

.contact {
    width: 100%;
    height: 88vh;
    position: relative;
    background: #f5f8fd url("../../assets/img/contact.png") center top no-repeat;
    background-size: auto;
    background-size: cover;
}
.contact:before {
    content: "";
    background: rgba(0, 0, 0, 0.200);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.contact .container {

    padding: 0px 0px;
    margin: 0 auto;
    width: 775px;
}

.contact .container .contleft {
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    float: left;
    width: 400px;
    height: 400px;
    padding: 120px 50px 50px 100px;
    border-radius: 50%;
    background:#f38b4b;
    position: relative;
    margin: 70px 0px 0px -50px;
}

.contact .container .contleft h6 {
    margin-top: 0px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    float: left;
    padding: 0px;
    width: 100%;
}
.contact .container .contleft p {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    float: left;
    padding: 0px;
    width: 100%;
}





.contact .container .contright {
font-size: 16px;
    float: left;
    width: 400px;
    height: 400px;
    padding: 60px 70px 50px 80px;
    border-radius: 50%;
    background: #fff;
    position: relative;
}

.contact .container .contright h5 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    float: left;
    padding: 0px 0px 20px 0px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}
.contact .container .contright h4 {
    margin: 0;
    font-size: 34px;
    color: #eb5600;
    font-weight: 700;
    float: left;
    padding:  50px 0px 0px 0px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    line-height: 45px;
}





/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer {
   position: fixed;
   height: 7%;
   bottom: 0px;
   width: 100%;
   text-align: left;
   color: #000;
   background-color: white;
}
.footer p {
  padding: 5px;
  margin-left: 20px;

}











@media (max-width: 768px) {

  .section-title {
    padding-bottom: 20px;
}
  #about {
    height: auto;;
}
 .value {
    height: auto;
}

#hero h5 {
    margin: 0px 0px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    position: relative;
    max-width: 100%;
    top: 75px;
}
#hero {
    width: 100%;
    height: 300px;
    margin-top: 60px;
}
.value .container .value-content p {
    padding: 26px 26px 20px 26px;
}
.bottom-left {
    position: absolute;
    bottom: 0px;
    left: 16px;
    color: #000;
}

.leadership {
    height: auto;
}


#services {
    height: auto;
}

#services .container {
    padding: 0px 20px;
    margin: 0px;
}


.hiring {
    height: auto;
}
.hiring .container {
    text-align: left;
    padding: 0px 20px;
}

.individuals {
    height: auto;
}

.individuals .img {
    min-height: 300px;
    bottom: 20px;
    top: 20px;
}
.individuals .container {
    padding: 0px 0px;
}
.individuals .indivi {
    padding: 15px 20px 0 20px;
}
.individuals .indtop {
    padding: 0px 20px;
}
.training {
    height: auto;
}


.transformation {

    height: auto;

}
.transformation .transformation-cont {
    float: left;
    padding: 0px 30px;
}
.transformation .container {
    padding: 0px 0px 0px 0px;
}


.project {

    height: auto;

}
.project .project-cont {
    float: left;
    padding: 0px 30px;
}
.project .container {
    padding: 0px 0px 0px 0px;
}


.career {

    height: auto;

}
.career .career-cont {
    float: left;
    padding: 0px 30px;
}
.career .container {
    padding: 0px 0px 0px 0px;
}

.growth {

    height: auto;

}
.growth .growth-cont {
    float: left;
    padding: 0px 30px;
}
.growth .container {
    padding: 0px 0px 0px 0px;
}

.data {

    height: auto;

}
.data .data-cont {
    float: left;
    padding: 0px 30px;
}
.data .container {
    padding: 0px 0px 0px 0px;
}

  .contact {
    height: auto;
  }

.contact .container .contleft {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  float: left;
  width: 100%;
  height: auto;
  padding: 50px 50px 50px 50px;
  border-radius: 0%;
  bottom: auto;
  background: rgb(255 145 77 / 94%);
  position: relative;
  margin: 20px 0px 20px 0px;
}


.contact .container .contright {
height: auto;
    padding: 50px 50px 50px 60px;
    border-radius: 0%;
    bottom: 0px;
    background: #f8f9faed;
    position: relative;
    width: 100%;
}
.contact .container {
    padding: 0px 20px;
    margin: 0px 0px;
    width: 100%;
}

.value .container .value-content {
    height: auto;
}
.training .container {
    padding-top: 0px;
}


.transformation .transformation-cont ul {
    margin: 0px;
}


.project .project-cont ul {
    margin: 0px;
}

.data .data-cont ul {
    margin: 0px;
}

.growth .growth-cont ul {
    margin: 0px;
}

.career .career-cont ul {
    margin: 0px;
}

.hiring .staffing {
    margin-top: 30px;
}
.overview {
    position: relative;
}

.footer {
  position: relative;
  left: 0px;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #000;
  padding: 15px 20px 5px 20px;
  float: left;
  background: #ddd;
}


.back-to-top i {
    display: none;
}





} 