body {
  background: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

a {
  color: #F09415; /* RGB(240, 148, 21)*/
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #F09415;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  background: #F09415;
  color: #fff;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
  visibility: hidden;
  opacity: 0;
  width: 64px;
  height: 34px;
}

.back-to-top i {
  line-height: 0;
  font-size: 20px;
}

.back-to-top:focus {
  background:#000;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #000;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}

#header .header-text h4{
  margin-left: -344px;
  color: #000;
  margin-top: 83px;
  margin-right: -123px;
  font-size: 10px;
  font-weight: 600;
   padding-bottom: 8px;
}
    

#header.header-scrolled {
  background: #fff;
  height: 70px;
  transition: all 0.5s;
}

#header #logo h1 {
  font-size: 28px;
  padding: 0;
  margin: 0;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #444444;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}

@media (max-width: 1399px) {
  #header .header-text h4 {
    margin-left: -255px;
  }
}
@media (max-width: 1199px) {
  #header .header-text h4 {
    margin-left: -177px;
    font-size: 8px;
  }
}
@media (max-width: 991px) {
  #header .header-text h4 {
    margin-left: -387px;
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header .header-text h4 {
    margin-left: -299px;    
    font-size: 7px;   
    padding-bottom: 8px;
  }
}      
  @media (max-width: 500px) {
    #header .header-text h4 {
      margin-left: -268px;
    }
  }
  @media (max-width: 499px) {
    #header .header-text h4 {
      margin-left: -215px;
    }
  }


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 15px;
  padding: 0 2px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -8px;
  left: 0;
  background-color: #F09415;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000;
  font-weight:600;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333333;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #F09415;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #F09415;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #F09415;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #F09415;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  /*width: 82%;*/  
  width:100%;
  /*height:100vh*/
  height: 77vh;
  background: #000;
  overflow: hidden;
  position: relative;
  margin-bottom: -62px;
  /*margin-left:142px;*/
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
 /* background-size: cover;*/
 background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
  margin-top:-95px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 43px;
  font-weight: 900;
  color:#f09415;
}

#hero p {
  width: 80%;
  font-size: 29px;
  line-height: 1.2;
  margin: 0 auto 30px auto;
  color: #fff;
 /* text-align: center;*/
}

@media (max-width: 1024px) {
  #hero p {
    width: 60%;
  }  
}

@media (max-width: 992px) {
 
  #hero h2 {
    font-size:33px;
  }
  #hero .container {
    text-align: center;
    margin-top:-150px;
  }
  
  #hero p {
    font-size: 19px;
    line-height: 1.2;
    padding: 0px;
    text-align: inherit;
    width: 100%;
  }
}

@media (max-width: 768px) {
 
  #hero h2 {
    font-size:19px;
  }

  #hero p {
    font-size: 16px;
    line-height: 1.2;
    padding: 0px;
    text-align: inherit;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;    
    margin:0px 0px 1px 0px;
    width:100%;
  }
  
  #hero .carousel-item {
    height: 90vh;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #f09415;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #F09415;
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 400; 
  text-transform: capitalize; 
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #000;
  font-size:18px;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #F09415;  
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 92px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0 0 1px 0;
  position: relative;
  z-index: 3;
  background: #7d7d7d;
}

.why-us .row .col-xl-4{
  width: 100%;
  margin-left:-35px;
}

.why-us .content {
  padding: 30px;
  background: #7d7d7d;
  border-radius: 4px;
  color: #fff;
  text-align: justify;
 /* width: 80%;*/
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: #f09415;
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
  margin-left:76px;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #f09415;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #F09415;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 -8px 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #716f6f;
}
.why-us .icon-boxes .icon-box ul{
  list-style: none;
  line-height: 33px;
}

@media (max-width: 768px){
  #why-us  .content {
    width:117%;
    text-align:center;    
  }
}

/*--------------------------------------------------------------
# Asset Services
--------------------------------------------------------------*/
.asset-services {
  padding-bottom: 40px;
  padding-top:35px;
}

.asset-services .section-description {
  margin-top: -45px;
  text-align: justify;
}
.asset-services .section-divider{
  margin-bottom:82px;
}

.asset-services .card {
  border: 0;
  /*padding: 0 30px;*/
  margin-bottom: 60px;
  position: relative;
  background: transparent;
}

.asset-services .card-img {
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.asset-services .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.asset-services .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: -60px;
  /*margin-left: 30px;*/
  width: calc(100% - 57px);
}

.asset-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.asset-services .card-title a {
  color: #000;
  transition: 0.3s;
}

.asset-services .card-text {
  color: #000;
  text-align: start;
}

.asset-services .read-more a {
  color: #f09415;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.asset-services .read-more a:hover {
  color: #F09415;
}

.asset-services .card:hover img {
  transform: scale(1.1);
}

.asset-services .card:hover .card-body {
  border-color: #F09415;
}

.asset-services .card:hover .card-body .card-title a {
  color: #F09415;
}

@media (max-width: 640px) {
  .asset-services .card-body {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
}
@media (max-width: 768px){
  .asset-services .section-description {
    text-align: initial;
  }
}

/*--------------------------------------------------------------
# Commodity Services Section
--------------------------------------------------------------*/
.commodity-services {
  padding-bottom: 40px;
  padding-top:35px;
}

.commodity-services .section-description {
  margin-top: -45px;
  text-align: justify;
}
.commodity-services .section-divider{
  margin-bottom:57px;
}
.commodity-services .card {
  border: 1px solid rgba(14, 29, 52, 0.15);
  background: #fff;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.commodity-services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.commodity-services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.commodity-services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.commodity-services .card a {
  color: #000;
  transition: 0.3;
}

.commodity-services .card a:hover {
  color: #F09415;
}

.commodity-services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: #000;
  font-size: 15px;
  text-align: start;
}

.commodity-services .card .read-more a {
  color: #F09415;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
  margin-left: 28px;
  padding-bottom:2px;
}

.commodity-services .card .read-more a:hover {
  color: #F09415;
}


.commodity-services .card:hover .card-img img {
  transform: scale(1.1);
}

@media (max-width: 768px){
  .commodity-services .section-description {
    text-align: initial;
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  padding: 60px 0;
  overflow: hidden;
}

.about .section-header .section-description {
text-align: justify;
line-height: 30px;
margin-bottom:auto;
padding-bottom:0;
}

@media (max-width: 768px){
  .about .section-header .section-description {
    text-align: center;
    
    }  
}

/* Vision Section
--------------------------------*/
#vision {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

#vision .col-lg-6 {
  width:100%
}

#vision .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#vision .box img {
  float: left;
  transition: 0.5s;
  width:14%;
}

@media (max-width: 994px) {
   
  #vision .box img {
    
    /*max-width: 100%;*/
    width: 19%;
  }
}
@media (max-width: 768px) {
  #vision .box img {
    float: none;    
    padding-bottom: 15px;
    width:30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
  }
}

#vision .box .description {
  text-align: start;
  font-size:18px;
}

#vision .icon {
  float: left;
}

#vision .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#vision .icon i:before {
  background: #F09415;
  background: linear-gradient(45deg, #F09415 0%, #7d7d7d 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#vision h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#vision h4 a {
  color: #111;
  font-size: 20px;
}

#vision p {
  margin-left: 121px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #vision .box {
    margin-bottom: 20px;
  }

  #vision .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #vision h4,
  #vision p {
    margin-left: 0;
    text-align: center;
  }
}


/* Our Approach Section
--------------------------------*/
#ourapproach{
  background: #eff5f5; /*rgb(239, 245, 245)*/
  padding: 60px 0;
}
#ourapproach .col-lg-6 {
  width:100%;
}

#ourapproach .content {
  margin-top:-48px;
}

#ourapproach .content h3 {
  font-weight: 600;
  font-size: 19px;
  color: #000;
}

#ourapproach .ourapproach-img img {
  margin-left: 100px;
  margin-top: 22px;
  margin-bottom: -40px
}
#ourapproach .content p {
  line-height: 26px;
  text-align: justify;
  font-size:18px;
}

#ourapproach .content ul li {
  padding-bottom: 10px;
}

#ourapproach .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #F09415;
}

#ourapproach .content p:last-child {
  margin-bottom: 30px;
}

@media (max-width: 994px) {
   
  #ourapproach .ourapproach-img img {
    
    max-width: 100%;  }
}
@media (max-width: 768px) {
  #ourapproach .ourapproach-img {
    height: auto;
    overflow: hidden;
  }
  #ourapproach .ourapproach-img img {
    margin-left: 0;
    padding-bottom: 30px;
    margin-left: -15px;
    max-width: 100%;
  }
  #ourapproach .content p {
    text-align: center;
   }  
}

/* Why Choose Us Section
--------------------------------*/
#whychoose-us {
  padding: 60px 0;
  overflow: hidden;
  background: #fff;
  
}

#whychoose-us .whychoose-us-img img {  
  margin-left:84px;
}
#whychoose-us .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#whychoose-us .icon {
  float: left;
}

#whychoose-us .icon i {
  color: #666666;
  font-size: 80px;
  transition: 0.5s;
  line-height: 0;
}

#whychoose-us .icon i:before {
  background: #F09415;
 
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#whychoose-us h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#whychoose-us h4 a {
  color: #111;
}

#whychoose-us p {
  margin-left: 100px;
  margin-bottom: 10px;
  line-height: 24px;
  text-align: justify;
}
#whychoose-us .description{
  text-align: justify;
}

@media (max-width: 767px) {
  #whychoose-us .box {
    margin-bottom: 20px;
  }

  #whychoose-us .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #whychoose-us h4,
  #whychoose-us p {
    margin-left: 0;
    text-align: center;
  }
}


@media (max-width: 994px) {
   
  #whychoose-us .whychoose-us-img img {  
    width: 100%;
  }
}
@media (max-width: 768px) {
  #whychoose-us .whychoose-us-img {
    height: auto;
    overflow: hidden;
  }

  #whychoose-us .whychoose-us-img img {
    margin-left: 0;
    padding-bottom: 30px;
    margin-left: -15px;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Services Main Section
--------------------------------------------------------------*/
.services {
  background: #fff;
}
 .services .container-fluid {
  width: 85%;
 }
 .services .section-description{
  margin-bottom:-60px;
  text-align: justify;
 }
 .services .buztree img {
   width: 100%;
  margin-top: 34px;
  margin-bottom: 13px;
 }
 @media (max-width: 575px) {
  .services .section-description{    
    text-align: left;
   } 
}


/*--------------------------------------------------------------
# Asset Services Tabs
--------------------------------------------------------------*/
.asset-tabs {
  background: #eff5f5; /*rgb(239, 245, 245)*/
  padding: 60px 0;
}
.asset-tabs .section-header .section-description{
  text-align: justify;
}
.asset-tabs .col-3 {
  width: 33%;
}
.asset-tabs .nav-tabs {
  border: 0;
}

.asset-tabs .nav-link {
  border: 1px solid #7d7d7d;
  padding: 15px;
  transition: 0.3s;
  color: #7d7d7d;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.asset-tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.asset-tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.asset-tabs .nav-link:hover {
  color: #F09415;
}

.asset-tabs .nav-link.active {
  background: #F09415;
  color: #fff;
  border-color: #F09415;
}

@media (max-width: 768px) {
  
  .asset-tabs .section-header .section-description{
    text-align: initial;
  }
  .asset-tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  
  .asset-tabs .nav-link {
    padding: 15px;
  }

  .asset-tabs .nav-link i {
    font-size: 24px;
  }
  .asset-tabs .nav-link h4 {
    font-size: 12px;    
  }
}

.asset-tabs .tab-content {
  margin-top: 30px;
}

.asset-tabs .tab-pane .col-lg-5 {
  width:100%;
}
.asset-tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.asset-tabs .tab-pane p {
  text-align: start;
}

.asset-tabs .tab-pane ul {
  list-style: square;
  margin-left: 58px;
  margin-top: -21px;
  margin-bottom: -37px;
}

.asset-tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.asset-tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #F09415;
}

.asset-tabs .tab-pane .special-ul {
  list-style: decimal;
  margin-top: -19px;
  margin-bottom: 10px;
  margin-left: -13px;
  list-style-image: inherit;
}


.asset-tabs .tab-pane .special-ul li {
  padding-bottom: 10px;
  
}

.asset-tabs .tab-pane .special-ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #F09415;
}

.asset-tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.asset-tabs .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
}

.asset-tabs .icon-box img {
  width: 160px;
  float: left;
}
.asset-tabs .icon-box i {
  float: left;
  color: #f09415;
  font-size: 40px;
  line-height: 0;
}

.asset-tabs .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 19px;
}

.asset-tabs .icon-box h4 a {
  color: #f09415;
  transition: 0.3s;
}

.asset-tabs .icon-box .icon-box:hover h4 a {
  color: #f09415;
}

.asset-tabs .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  color:#000;
}
.asset-tabs .icon-box .analytics {
  margin-left:-32px;
}
.asset-tabs .icon-box .analytics-title {
  font-size: 20px;
  background: #7d7d7d;
  padding-top :7px;
  padding-bottom:7px;
  padding-right:7px;
  padding-left:7px;
  color: #fff;
  
}
.asset-tabs .icon-box .analytics-description {
  font-size: 18px;
}
.asset-tabs .icon-box:hover h4 a {
  color: #f09415;
}

.asset-tabs .btn-contactus {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;  
  margin-left: auto;
  margin-right: auto;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;  
  color: #fff;
  background: #f09415;
  width: auto;
  height: auto;
}

.asset-tabs .btn-contactus:hover {
  background: #fff;
  color:#f09415; 
  border: 1px solid #f09415;
}

@media (max-width: 768px) {
  .asset-tabs .icon-box img {
    width: 40%;
    float: left;
    height: 10%;
  }
}
@media (max-width: 575px) {
  .asset-tabs .icon-box img {
    width: 30%;
    height: 20%;
  }
  .asset-tabs .icon-box .analytics-title {
    font-size: 12px;
  } 
  .asset-tabs .icon-box .analytics {
    margin-left: -69px;
} 
.asset-tabs .icon-box p {
  line-height: 21px;
  font-size: 14px;
  margin-left:0px;
  margin-top:1px;
}
.asset-tabs .icon-box .analytics-description {
  font-size: 12px;
  margin-left: -15px;
  margin-top: 35px;
}
}

/* Commoditities Tab*/
.commodity-tabs {
  padding: 60px 0;
}
.commodity-tabs .section-header .section-description{
  text-align: justify;
}
.commodity-tabs .col-3 {
  width: 33%;
}
.commodity-tabs .nav-tabs {
  border: 0;
}
.commodity-tabs .col-md-6 {
  width: 100%;
}
.commodiy-tabs .nav-link .d-none {
  display:contents;
}
.commodity-tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.commodity-tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.commodity-tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.commodity-tabs .nav-link:hover {
  color: #F09415;
}

.commodity-tabs .nav-link.active {
  background: #F09415;
  color: #fff;
  border-color: #F09415;
}

@media (max-width: 768px) {
  .commodity-tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .commodity-tabs .nav-link {
    padding: 15px;
  }

  .commodity-tabs .nav-link i {
    font-size: 24px;
  }
}

.commodity-tabs .tab-content {
  margin-top: 30px;
}

.commodiy-tabs .tab-content .tab-pane .col-md-6 {
  width:100%;
}

.commodity-tabs .tab-pane p{
  text-align: start;
}
.commodity-tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.commodity-tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.commodity-tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.commodity-tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #F09415;
}

.commodity-tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.commodity-tabs .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
}

.commodity-tabs .icon-box i {
  float: left;
  color: #f09415;
  font-size: 40px;
  line-height: 0;
}

.commodity-tabs .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 19px;
}

.commodity-tabs .icon-box h4 a {
  color: #f09415;
  transition: 0.3s;
}

.commodity-tabs .icon-box .icon-box:hover h4 a {
  color: #f09415;
}

.commodity-tabs .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 16px;
  color:#000;
}

.commodity-tabs .icon-box:hover h4 a {
  color: #f09415;
}



/*--------------------------------------------------------------
# About Industries section
--------------------------------------------------------------*/
.about-industry {
  background: #eff5f5; /*rgb(239, 245, 245)*/
  padding: 60px 0;
}

.about-industry .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
  text-align: left;
}
.about-industry .col-lg-6 {
  width:100%;
}

.about-industry p {
  font-size:18px;
  text-align: justify;
  line-height: 28px;
  
 
}
.about-industry .content ul {
  list-style: none;
  padding: 0 12px 0 12px;
}

.about-industry .content ul li {
  padding-bottom: 10px;
  font-size:18px;
  font-weight: 500;
}

.about-industry .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #f09415;
}

.about-industry .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Industries Portfolio Section
--------------------------------------------------------------*/
.portfolio {
 
  padding: 60px 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .section-header .section-description{
  text-align: justify;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #F09415;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
}

.portfolio .industry-info h4{
  color:#fff;  
  font-size: 16px;
  text-align:center;
  margin-top:7px;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #F09415;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #F09415;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# Industry Detail Section
--------------------------------------------------------------*/
.industries {
  background: #eff5f5; /*rgb(239, 245, 245)*/
  padding: 60px 0;
}
.industries .nav-tabs {
  border: 0;
}

.industries  .col-3 {
  width:33%;
}
.industries .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: #7d7d7d;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.industries .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.industries .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .industries .nav-link h4 {
    font-size: 16px;
  }
}

.industries .nav-link:hover {
  color: #000;  
  border-color: #f09415;
}

.industries .nav-link.active {
  color: #000;
  /*background-color: transparent;*/
  background-color: #fff;
  border-color: #F09415;
}

.industries .tab-content {
  margin-top: 30px;
}
/*.industries .tab-content img {
  width:73%;
}*/
.industries .tab-content p {
  text-align: justify;
  font-size:17px;
  
}

.industries .tab-content ul {
  text-align: justify;
  font-size:17px;
}

.industries .tab-pane h3 {
  font-weight: 700;
  font-size: 20px;
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 20px;
}

.industries .tab-pane h4 {
  font-weight: 700;
  font-size: 21px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-top: 20px;  
  background: #7d7d7d;
  color: #fff;
  text-align: center;
}

.industries .tab-pane h5 {
  font-weight: 500;
  font-size:18px;
}
.industries .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #F09415;
  left: 0;
  bottom: 0;
}

.industries .tab-pane ul {
  list-style: none;
  padding: 0;
  margin-left:12px;
}

.industries .tab-pane .img-fluid{
  width:100%;
}
.industries .tab-pane ul li {
  padding-top: 10px;
}

.industries .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #F09415;
}

.industries .tab-pane p:last-child {
  margin-bottom: 0;
}

/* Partners Section
--------------------------------*/
#partners {
  padding: 290px 0;
  background: #fff;
  overflow: hidden;
}

#partners img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}
#partners .row{
  margin-left:400px;
  margin-right: -400px;
}
#partners img:hover {
  opacity: 1;
}


/*--------------------------------------------------------------
# Project Portfolio Section
--------------------------------------------------------------*/
.project-portfolio {
  background: #eff5f5;
  padding: 60px 0;
}
.project-portfolio .portfolio-item {
  margin-bottom: 30px;
}

.project-portfolio .section-header .section-description{
  text-align: justify;
}
.project-portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.project-portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.project-portfolio #portfolio-flters li:hover,
.project-portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #F09415;
}

.project-portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.project-portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
}

.project-portfolio .industry-info h4{
  color:#fff;  
  font-size: 16px;
  text-align:center;
  margin-top:7px;
}
.project-portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.project-portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.project-portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.project-portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #F09415;
  font-weight: 600;
}

.project-portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.project-portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.project-portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.project-portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #F09415;
}

.project-portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.project-portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.project-portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/

.project-details {
  padding-top: 40px;
 
}

.project-details .col-md-6 {
  width: 100%;
}

.project-details  p {
  text-align: start;
}
.project-details p:last-child {
  margin-bottom: 0;
}
.project-details h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
}

.project-details ul {
  list-style:square;  
  margin-left: 58px;
  margin-top: -21px;
  margin-bottom: -19px
}

.project-details ul li {
  padding-bottom: 10px;
}

.project-details ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #F09415;
}

.project-details .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.3);
  background: #eff5f5;
}

.project-details .icon-box i {
  float: left;
  color: #f09415;
  font-size: 42px;
  line-height: 0;
  
}

.project-details .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  text-transform: uppercase;
  color:#000;
  margin-top: 8px;
}

.project-details .icon-box h4 a {
  color: #f09415;
  transition: 0.3s;
}

.project-details .icon-box .icon-box:hover h4 a {
  color: #f09415;
}

.project-details .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 16px;
  color:#000;
}

.project-details .icon-box:hover h4 a {
  color: #f09415;
}
.project-details .project-details-slider img {
  width: 100%;
}

.project-details .project-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.project-details .project-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f09415;
}

.project-details .project-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f09415;
}

.project-details .project-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(72, 86, 100, 0.15);
}

.project-details .project-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #7d7d7d;
}

.project-details .project-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  margin-left:1px;
  margin-top:2px;
}

.project-details .project-info ul li+li {
  margin-top: 10px;
}

.project-details .project-description {
  padding-top: 30px;
}

.project-details .project-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .project-description p {
  padding: 0;
}




/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team {
  background: #eff5f5;
  padding: 60px 0;
}
.team .img-bg {
  background-size: cover;
  background-position:inherit;
  min-height: 400px;  
}

.team .img-bg img{
  height:100%;
  width:100%;
}

.team p {
  text-align: justify;
  font-size: 18px;
  color:#000;
}
.team h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .team p {
    text-align: initial;
    
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 1.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header .section-divider{
  margin-bottom:50px;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.9);
  padding: 20px 0 30px 0;
}

.contact .info-box .info{
  text-align: center;
  /*margin-bottom: -8px;*/  
}
.contact .info-box .info i {
  font-size: 28px;
  color: #F09415;
  /*float: left;
  line-height: 0;*/
}
#contact .social-links {
  padding-bottom: 19px;
  margin-top:-12px
}
.contact .social-links a{
  font-size: 18px;
  background: #fff;
  color: #F09415;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #F09415;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a:hover {
  background: #F09415;
  color: #fff;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin: 10px 0;
  text-transform: uppercase;
}

.contact .info-box .info p {
 /* padding: 0 0 0px 40px;*/
  line-height: 21px; 
  color:#000;
}

/* Contact Team member*/

.contact .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  background: #fff;
}

.contact .member img {
  max-width: 60%;
  /*border-radius: 50%;*/
  margin: 0 0 11px 0;
}

.contact .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.contact .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.contact .member p {
  padding-top: 10px;
  font-size: 14px;
  
  color: #000;
}



.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #f09415;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #f09415;
  border: 0;
  border-radius: 50px;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fff;
  color:#f09415; 
  border: 1px solid #f09415; 
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*Contact captcha *
#contact .wrapper{
  max-width: 485px;
  width: 100%;
  background: #fff;
  padding: 0px 40px 1px 0px;
  border-radius: 10px;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.05);
}

#contact .wrapper header{
  color: #000;
  font-size: 33px;
  font-weight: 500;
  text-align: center;
}
#contact .wrapper .captcha-area{
  display: flex;
  height: 41px;
  margin: 12px 0 2px;
  align-items: center;
  justify-content: space-between;
}
.captcha-area .captcha-img{
  height: 100%;
  width: 345px;
  user-select: none;
  background: #000;
  border-radius: 5px;
  position: relative;
}
.captcha-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  opacity: 0.95;
}
.captcha-img .captcha{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  color: #fff;
  font-size: 35px;
  text-align: center;
  letter-spacing: 10px;
  transform: translate(-50%, -50%);
  text-shadow: 0px 0px 2px #b1b1b1;
  
}
#contact .wrapper button{
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
  background: #F09415;
  border-radius: 5px;
  transition: all 0.3s ease;
}
#contact .wrapper button:hover{
  background: #000;
}
.captcha-area .reload-btn{
  width: 75px;
  height: 100%;
  font-size: 25px;
}
.captcha-area .reload-btn i{
  transition: transform 0.3s ease;
}
.captcha-area .reload-btn:hover i{
  transform: rotate(15deg);
}
#contact .wrapper .form-control{
  height: 40px;
  width: 100%;
  position: relative;
  font-size: 32px;
}
#contact .wrapper .form-control input{
  width: 100%;
  height: 100%;
  outline: none;
  padding-left: 20px;
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
}
#contact .wrapper .form-control input:is(:focus, :valid){
  padding-left: 19px;
  border: 2px solid #4db2ec;
}
#contact .wrapper .form-control input::placeholder{
  color: #bfbfbf;
}
#contact .wrapper .form-control .check-btn{
  position: absolute;
  right: 7px;
  top: 50%;
  font-size: 17px;
  height: 45px;
  padding: 0 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
#contact .wrapper .form-control input:valid + .check-btn{
  opacity: 1;
  pointer-events: auto;
}
#contact .wrapper .status-text{
  display: none;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 -5px;
}

@media (max-width: 506px){
  body{
    padding: 0 10px;
  }
  #contact .wrapper{
    padding: 22px 25px 35px;
  }
  #contact .wrapper header{
    font-size: 25px;
  }
  #contact .wrapper .captcha-area{
    height: 60px;
  }
  .captcha-area .captcha{
    font-size: 28px;
    letter-spacing: 5px;
  }
  .captcha-area .reload-btn{
    width: 60px;
    margin-left: 5px;
    font-size: 20px;
  }
  #contact .wrapper .form-control{
    height: 55px;
    font-size: 22px;
  }
  .form-control .check-btn{
    height: 40px;
  }
  #contact .wrapper .status-text{
    font-size: 15px;
    color:#ff0000;
  }
  .captcha-area .captcha-img{
    width: 250px;
  }
}
*/

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog/News
--------------------------------------------------------------*/
.news {
  padding: 40px 0 20px 0;
}

.news .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.news .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.news .entry .entry-title a {
  color: #545454;
  transition: 0.3s;
}

.news .entry .entry-title a:hover {
  color: #f09415;
}

.news .entry .entry-meta {
  margin-bottom: 15px;
  color: #bababa;
}

.news .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.news .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.news .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.news .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.news .entry .entry-content p {
  line-height: 24px;
}

.news .entry .entry-content p.figure-label {
  text-align: center;
}
.news .entry .entry-content ol span {
  font-style: italic;
}
.news .entry .entry-content .read-more {
  -moz-text-align-last: center;
  text-align-last: center;
}

.news .entry .entry-content .read-more a {
  display: inline-block;
  background: #f09415;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.news .entry .entry-content .read-more a:hover {
  background: #fff;
  color: #F09415;
  border: 2px solid #f09415
}

.news .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.news .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #7d7d7d;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.news .entry .entry-content blockquote p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.news .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: #f09415;
  margin-top: 20px;
  margin-bottom: 20px;
}

.news .entry-single {
  margin-bottom: 30px;
}

.news .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.news .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #545454;
}

.news .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.news .blog-author .social-links a {
  color: rgba(84, 84, 84, 0.5);
  margin-right: 5px;
}

.news .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.news .services .service-item {
  margin-top: 15px;
}

.news .services img {
  width: 136px;
  float: left;
}

.news .services h4 {
  font-size: 16px;
  padding-left:149px;  
}

.news .services h4 a {
  color: #000;
  transition: 0.3s;
}

.news .services h4 a:hover {
  color: #f09415;
}

.news .services time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.news .contact-us {
  -moz-text-align-last: center;
  text-align-last: center;
}
.news .contact-us a {
  display: inline-block;
  background: #f09415;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 18px;
  border-radius: 4px;
}
.news i {
  float: left;
  color: #f09415;
  font-size: 80px;
  line-height: 0;
  padding-right:15px
}
.news  math {
  font-size: 22px;
}

.news .p .figure-label{
  text-align: center;
}
.news .blog-pagination {
  color: #878787;
}

.news .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.news .blog-pagination li a {
  color: #545454;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news .blog-pagination li.active,
.news .blog-pagination li:hover {
  background: #f09415;
}

.news .blog-pagination li.active a,
.news .blog-pagination li:hover a {
  color: #fff;
}

.news .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #545454;
  position: relative;
}

.news .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.news .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.news .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.news .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #f09415;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.news .sidebar .search-form form button i {
  line-height: 0;
}

.news .sidebar .search-form form button:hover {
  background: #f09415;
}

.news .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.news .sidebar .categories ul li+li {
  padding-top: 10px;
}

.news .sidebar .categories ul a {
  color: #545454;
  transition: 0.3s;
}

.news .sidebar .categories ul a:hover {
  color: #f09415;
}

.news .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.news .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.news .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.news .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.news .sidebar .recent-posts h4 a {
  color: #545454;
  transition: 0.3s;
}

.news .sidebar .recent-posts h4 a:hover {
  color: #f09415;
}

.news .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

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

.news .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.news .sidebar .tags ul li {
  display: inline-block;
}

.news .sidebar .tags ul a {
  color: #949494;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}

.news .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #f09415;
  background: #f09415;
}

.news .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ededed;
  font-size: 14px;
}

@media (min-width: 992px){
.news .col-lg-8 {    
    width: 80%;
}
}
@media (max-width:598px){
  .news .services h4 {
    font-size: 15px; 
     margin-left:0px;
     padding:0px;     
  }
  .news .services img {
    width: 100%; 
    margin-bottom:9px;
    float:none;    
}
.news .entry .entry-content h3 {
  font-size: 16px;
 
}
}
/*--------------------------------------------------------------
#Terms and Conditions
--------------------------------------------------------------*/
#terms-section {
  position: relative;
  padding: 0px 0px 0px;
  background-color: #fff;  
}
#terms-section h2 {
  font-size:22px;
  font-weight: 700;
}
#terms-section h3 {
  font-size:20px;
  font-weight: 600;
}
#terms-section p {
  text-align: justify;
  margin-right:2px;
  
}
#terms-section ul li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  padding-bottom:10px;
  text-align: justify;
}

#terms-section .terms-list {
  position: relative;
  text-align: left;
  margin-left: 22px;
}

#terms-section .terms-list li{
  list-style:disc;  
}

#terms-section .terms-list ol{
  list-style:circle;  
}

/*--------------------------------------------------------------
# Privacy Policy
--------------------------------------------------------------*/
#privacy-section {
  position: relative;
  padding: 0px 0px 0px;
  background-color: #fff;  
}
#privacy-section h2 {
  font-size:22px;
  font-weight: 700;
}
#privacy-section h3 {
  font-size:20px;
  font-weight: 600;
}
#privacy-section h4 {
  font-size:18px;
  font-weight: 600;
}
#privacy-section p {
  text-align: justify;
  margin-right:2px;
  
}
#privacy-section .privacy-list {
  position: relative;
  text-align: left;
  margin-left: 22px;
}

#privacy-section .privacy-list li {
  list-style: disc;
}
#privacy-section .privacy-list li:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  /*background-color: #F09415;*/
}
 #privacy-section ul li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  padding-bottom:10px;
  text-align: justify;
}
#privacy-section table th{
  color:#fff;
  background-color:#7d7d7d;
}
#privacy-section table, th, td {
border: 1px solid #404040;
border-collapse: collapse;
padding: 5px;
text-align: left;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .credits {
  padding-top: 5px;
  font-size: 0px;
  color: #fff;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #F09415;
}