
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #67b0d1;
}

a:hover {
  color: #8ec4dd;
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#main {
  margin-top: 90px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 998;
  background: #67b0d1;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 24px 0;
  background: rgba(103, 176, 209, 0.8);
}

#header.header-transparent {
   background: rgba(255, 255, 255, 0.5);
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
}

#header .logo h1 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {

  text-decoration: none;
}

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

#header .logo2 img {
  padding: 0;
  margin-left: 80px;
  margin: 0;
  max-height: 10px;
}

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 3px 0;
  }
}

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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  margin-left: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #666666;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  background: rgba(100, 100, 100, 0.3);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  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: 15px;
  text-transform: none;
  font-weight: 600;
  color: #2f4d5a;
}

.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: #67b0d1;
}

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

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin: 0;
  padding: 10px;
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li strong {
  padding: 10px 0 10px 20px;
  display: block;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
  padding: 8px 10px;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #67b0d1;
}

.navbar .megamenu: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: #fff;
  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(43, 111, 142, 0.9);
  transition: 0.3s;
}

.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 a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2f4d5a;
}

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

.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: #67b0d1;
}

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

.navbar-mobile .megamenu ul li a,
.navbar-mobile .megamenu ul li:hover>a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
}

.navbar-mobile .megamenu ul li a:hover,
.navbar-mobile .megamenu ul li .active,
.navbar-mobile .megamenu ul li .active:hover {
  color: #67b0d1;
}

/*--------------------------------------------------------------
# herobody Section
--------------------------------------------------------------*/
#herobody {
  width: 100%;
  height: 100vh;
  background-color: black;
  background-size: cover;
  position: relative;
  margin-bottom: -10px;

}

#herobody .container {
  position: absolute;
  bottom: 20;
  top: 10;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#herobody img{
	
	object-fit: cover;
}
	#herobody .container img
	{
		border-bottom-left-radius: 100px;
		border-top-left-radius: 50px;
		border-top-right-radius: 50px;
		border-bottom-right-radius: 100px;
		box-shadow:0 0 10px white;
	}
	#herobody .container button{
		background-color: transparent;
		color: yellow;
		border: none;
		
	}

#herobody h1 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 72px;
  font-weight: 800;
  line-height: 56px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: -1px 0 8px #2f4d5a;
}

#herobody h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}

#herobody h2 {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 8px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#herobody .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}




#herobody .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #herobody {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herobody h1 {
	  
    font-size: 28px;
    line-height: 36px;
  }

  #herobody h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(55, 142, 181, 0.2)), url("../img/KCN.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;

}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 72px;
  font-weight: 800;
  line-height: 56px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: -1px 0 8px #2f4d5a;
}

#hero h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}

#hero h2 {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 8px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}




#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
	  
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}





/*--------------------------------------------------------------
# Hero Tenants Section
--------------------------------------------------------------*/
#heroten {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(55, 142, 181, 0), rgba(55, 142, 181, 0.2)), url("../img/tenant.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#heroten .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#heroten h1 {
  margin: 0 0 10px 0;
  margin-top : 100px;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#heroten h2 {
  color: #ebc017;;
  margin-bottom: 50px;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#heroten .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#heroten .btn-get-started:hover {
  padding-top: 2px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #heroten h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #heroten h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Hero about us Section
--------------------------------------------------------------*/
#heroab {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(55, 142, 181, 0.5), rgba(55, 142, 181, 0.2)), url("../img/about_bg.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#heroab .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
}



#heroab h1 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
   color: #7A5FFE ;
  text-shadow: -1px 0 2px #2f4d5a;
   text-align: left;
}

#heroab h2 {
  color: #fff ;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#heroab .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#heroab .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #heroab h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #heroab h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Hero Facilities and Infrastructure support Section
--------------------------------------------------------------*/
#herofis {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(55, 142, 181, 0.5), rgba(55, 142, 181, 0.2)), url("../img/.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
  margin-top: 80px;
}

#herofis .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#herofis h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#herofis h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#herofis .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#herofis .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herofis h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #herofis h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Hero Group ndp Citramas
--------------------------------------------------------------*/
#herondp {
  width: 100%;
  height: 100vh;
  

  background: linear-gradient(rgba(255, 255, 252, 0.5), rgba(192, 195, 204, 0.2)), url("../img/ndp.png") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#herondp .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#herondp h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#herondp h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}


#herondp h2 {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 8px #000000;
   margin-left: 10px;
   margin-right: 10px;
}

#herondp .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#herondp .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herondp h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #herondp h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Hero Group Nongsa Citramas
--------------------------------------------------------------*/
#heronongsa {
  width: 100%;
  height: 110vh;
  

  background: linear-gradient(rgba(255, 255, 252, 0.5), rgba(192, 195, 204, 0.2)), url("../img/npm.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#heronongsa .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#heronongsa h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#heronongsa h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}


#heronongsa h2 {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 8px #000000;
   margin-left: 10px;
   margin-right: 10px;
}

#heronongsa .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#heronongsa .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #heronongsa h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #heronongsa h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Hero Group DSAW Citramas
--------------------------------------------------------------*/
#herogroupdsaw {
  width: 100%;
  height: 110vh;
  

  background: linear-gradient(rgba(255, 255, 252, 0.5), rgba(192, 195, 204, 0.2)), url("../img/dsaw.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#herogroupdsaw .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#herogroupdsaw h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#herogroupdsaw h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}


#herogroupdsaw h2 {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 8px #000000;
   margin-left: 10px;
   margin-right: 10px;
}

#herogroupdsaw .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#herogroupdsaw .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herogroupdsaw h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #herogroupdsaw h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Hero Group KITK Citramas
--------------------------------------------------------------*/
#herogroupkitk {
  width: 100%;
  height: 100vh;
  

  background: linear-gradient(rgba(255, 255, 252, 0.5), rgba(192, 195, 204, 0.2)), url("../img/citramas-kitk2.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#herogroupkitk .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#herogroupkitk h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#herogroupkitk h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}


#herogroupkitk h2 {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #000000;
   margin-left: 10px;
   margin-right: 10px;
}

#herogroupkitk .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#herogroupkitk .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herogroupkitk h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #herogroupkitk h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Hero Group Citramas
--------------------------------------------------------------*/
#herogroup {
  width: 100%;
  height: 120vh;
  

  background: linear-gradient(rgba(255, 255, 252, 0.5), rgba(192, 195, 204, 0.2)), url("../img/citramas-kitk.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#herogroup .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#herogroup h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 2px #2f4d5a;
}

#herogroup h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}


#herogroup h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#herogroup .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#herogroup .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herogroup h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #herogroup h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/* about_land Section (product.php)
--------------------------------*/

#about_land {
   background: linear-gradient(rgba(162, 174, 179, 0.9), rgba(162, 174, 179, 0.5)), url("../img/gas-img.png") top center;
  background-size: cover;
   padding: 80px 0;
  position: relative;

}



#about_land .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_land .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: right;
  align-items: right;
  flex-direction: column;
  text-align: right;
}

#about_land .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_land {
  padding: 60px 0 30px 0;
}

#about_land .about-img {
  overflow: hidden;
}

#about_land .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_land .about-img {
    height: auto;
  }

  #about_land .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about_land .content h2 {
  color: #ebc017;
  text-shadow: -1px 0 8px #000000;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
  margin-left: 10px;
   margin-right: 10px;
}

#about_land .content h3 {
  color: #ffffff;

  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
   font-family: Arial, Helvetica, sans-serif;
 
}

#about_land .content p {
  line-height: 26px;
}

#about_land .content p:last-child {
  margin-bottom: 0;
}

#about_land .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_land .content ul {
  list-style: none;
  padding: 0;
}

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



/* about_warehousen Section (products.PHP)
--------------------------------*/

#about_warehousen {
   background: linear-gradient(rgba(162, 174, 179, 0.9), rgba(162, 174, 179, 0.5)), url("../img/electricity.png") top center;
  background-size: cover;
  padding: 80px 0;

  position: relative;

}



#about_warehousen .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_warehousen .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}

#about_warehousen .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_warehousen {
  padding: 60px 0 30px 0;
}

#about_warehousen .sliders2
{
	width: 110%;
	
}

#about_warehousen .slider img
{
	width: 100%;
}

#about_warehousen .about-img {
  overflow: hidden;
}

#about_warehousen .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_warehousen .about-img {
    height: auto;
	
  }

  #about_warehousen .about-img img {
    margin-left: 0;
    padding-bottom: 80px;
  }
}

#about_warehousen .content h2 {
  color: #ebc017;
  text-shadow: -1px 0 6px #000000;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;

}

#about_warehousen .content h3 {
  color: #ffffff;
 
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
     font-family: Arial, Helvetica, sans-serif;
   margin-left: 10px;
   margin-right: 10px;
 
}

#about_warehousen .content p {
  line-height: 26px;
}

#about_warehousen .content p:last-child {
  margin-bottom: 0;
}

#about_warehousen .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_warehousen .content ul {
  list-style: none;
  padding: 0;
}

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


/*--------------------------------------------------------------


/* about_warehouse Section (products.PHP)
--------------------------------*/

#about_warehouse {
   background: linear-gradient(rgba(162, 174, 179, 0.9), rgba(162, 174, 179, 0.5)), url("../img/electricity.png") top center;
  background-size: cover;
  padding: 80px 0;

  position: relative;

}



#about_warehouse .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_warehouse .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}

#about_warehouse .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_warehouse {
  padding: 60px 0 30px 0;
}

#about_warehouse .about-img {
  overflow: hidden;
}

#about_warehouse .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_warehouse .about-img {
    height: auto;
	
  }

  #about_warehouse .about-img img {
    margin-left: 0;
    padding-bottom: 80px;
  }
}

#about_warehouse .content h2 {
  color: #ebc017;
  text-shadow: -1px 0 6px #000000;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;

}

#about_warehouse .content h3 {
  color: #ffffff;
 
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
     font-family: Arial, Helvetica, sans-serif;
   margin-left: 10px;
   margin-right: 10px;
 
}

#about_warehouse .content p {
  line-height: 26px;
}

#about_warehouse .content p:last-child {
  margin-bottom: 0;
}

#about_warehouse .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_warehouse .content ul {
  list-style: none;
  padding: 0;
}

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


/*--------------------------------------------------------------


/*--------------------------------------------------------------
# Hero Products
--------------------------------------------------------------*/
#heropro {
  width: 100%;
  height: 100vh;
  

  background: linear-gradient(rgba(255, 255, 252, 0.5), rgba(192, 195, 204, 0.2)), url("../img/products.gif") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#heropro .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#heropro h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 10px #2f4d5a;
}

#heropro h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 8px #2f4d5a;
}


#heropro h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#heropro .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#heropro .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #heropro h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #heropro h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# Hero Facilities and Infrastructure Section
--------------------------------------------------------------*/
#herofi {
  width: 100%;
  height: 120vh;
  

  background: linear-gradient(rgba(255, 255, 252, 0.5), rgba(192, 195, 204, 0.2)), url("../img/FNI.jpg") top center;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#herofi .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}



#herofi h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: -1px 0 10px #2f4d5a;
}

#herofi h4 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
 color: #ebc017;
  text-shadow: -1px 0 8px #2f4d5a;
}


#herofi h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

#herofi .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#herofi .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #herofi h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #herofi h2 {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f4f9fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #2f4d5a;
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -1;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f8fbfd;
  min-height: 40px;
}

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

.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: 1268px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

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

/* about_gas Section (FNI.PHP)
--------------------------------*/

#about_gas {
   background: linear-gradient(rgba(162, 174, 179, 0.9), rgba(162, 174, 179, 0.5)), url("../img/gas-img.png") top center;
  background-size: cover;
   padding: 80px 0;
  position: relative;

}



#about_gas .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_gas .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: right;
  align-items: right;
  flex-direction: column;
  text-align: right;
}

#about_gas .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_gas {
  padding: 60px 0 30px 0;
}

#about_gas .about-img {
  overflow: hidden;
}

#about_gas .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_gas .about-img {
    height: auto;
  }

  #about_gas .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about_gas .content h2 {
  color: #ebc017;
  text-shadow: -1px 0 8px #000000;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
  margin-left: 10px;
   margin-right: 10px;
}

#about_gas .content h3 {
  color: #ffffff;

  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
   font-family: Arial, Helvetica, sans-serif;
 
}

#about_gas .content p {
  line-height: 26px;
}

#about_gas .content p:last-child {
  margin-bottom: 0;
}

#about_gas .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_gas .content ul {
  list-style: none;
  padding: 0;
}

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



/* about_wtp Section (FNI.PHP)
--------------------------------*/

#about_wtp {
   background:linear-gradient(rgba(162, 174, 179, 0.9), rgba(162, 174, 179, 0.5)), url("../img/wtpbg.png") top center;
  background-size: cover;
      padding: 80px 0;
  position: relative;

}



#about_wtp .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_wtp .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: right;
  align-items: right;
  flex-direction: column;
  text-align: right;
}

#about_wtp .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_wtp {
  padding: 60px 0 30px 0;
}

#about_wtp .about-img {
  overflow: hidden;
}

#about_wtp .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_wtp .about-img {
    height: auto;
  }

  #about_wtp .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about_wtp .content h2 {
  color: #ebc017;
  text-shadow: -1px 0 6px #000000;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
  margin-left: 10px;
   margin-right: 10px;
}

#about_wtp .content h3 {
  color: #ffffff;
 
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
   font-family: Arial, Helvetica, sans-serif;
 
}

#about_wtp .content p {
  line-height: 26px;
}

#about_wtp .content p:last-child {
  margin-bottom: 0;
}

#about_wtp .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_wtp .content ul {
  list-style: none;
  padding: 0;
}

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

/* about_csr Section (FNI.PHP)
--------------------------------*/

#about_csr {
   background: linear-gradient(rgba(162, 174, 179, 0.2), rgba(162, 174, 179, 0.1)), url("../img/") top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;

}



#about_csr .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_csr .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}

#about_csr .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_csr {
  padding: 60px 0 30px 0;
}

#about_csr .about-img {
  overflow: hidden;
}

#about_csr .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_csr .about-img {
    height: auto;
  }

  #about_csr .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

  #about_csr .content h6 {
  color: #000000;
  font-weight: 300;
  font-size: 12px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
   
 text-align: justify;
  text-justify: inter-word;
}

  #about_csr .content h5 {
  color: #0fb444;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
 text-align: justify;
  text-justify: inter-word;
}

#about_csr .content h4 {
  color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;

}

#about_csr .content h1 {
  color: #fffffff;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;

}

#about_csr .content h2 {
  color: #0c2e8a;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;
    

}



#about_csr .content h3 {
  color: #000000;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
 text-align: justify;
  text-justify: inter-word;
}


#about_csr .content p {
  line-height: 26px;
}

#about_csr .content p:last-child {
  margin-bottom: 0;
}

#about_csr .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_csr .content ul {
  list-style: none;
  padding: 0;
}

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




/* about_news Section (FNI.PHP)
--------------------------------*/

#about_news {
   background: linear-gradient(rgba(162, 174, 179, 0.2), rgba(162, 174, 179, 0.1)), url("../img/") top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;

}



#about_news .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_news .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}

#about_news .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_news {
  padding: 60px 0 30px 0;
}

#about_news .about-img {
  overflow: hidden;
}

#about_news .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_news .about-img {
    height: auto;
  }

  #about_news .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

  #about_news .content h6 {
  color: #000000;
  font-weight: 300;
  font-size: 10px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
 text-align: justify;
  text-justify: inter-word;
}

  #about_news .content h5 {
  color: #0fb444;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
 text-align: justify;
  text-justify: inter-word;
}


#about_news .content h4 {
  color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;

}



#about_news .content h1 {
  color: #fffffff;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;

}

#about_news .content h2 {
  color: #0c2e8a;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;
    

}



#about_news .content h3 {
  color: #000000;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
   margin-left: 10px;
   margin-right: 10px;
 text-align: justify;
  text-justify: inter-word;
}


#about_news .content p {
  line-height: 26px;
}

#about_news .content p:last-child {
  margin-bottom: 0;
}

#about_news .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_news .content ul {
  list-style: none;
  padding: 0;
}

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


/*--------------------------------------------------------------



/* about_power Section (FNI.PHP)
--------------------------------*/

#about_power {
   background: linear-gradient(rgba(162, 174, 179, 0.9), rgba(162, 174, 179, 0.5)), url("../img/electricity.png") top center;
  background-size: cover;
  padding: 80px 0;

  position: relative;

}



#about_power .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_power .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}

#about_power .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_power {
  padding: 60px 0 30px 0;
}

#about_power .about-img {
  overflow: hidden;
}

#about_power .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_power .about-img {
    height: auto;
	
  }

  #about_power .about-img img {
    margin-left: 0;
    padding-bottom: 80px;
  }
}

#about_power .content h2 {
  color: #ebc017;
  text-shadow: -1px 0 6px #000000;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
   margin-left: 10px;
   margin-right: 10px;

}

#about_power .content h3 {
  color: #ffffff;
 
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
     font-family: Arial, Helvetica, sans-serif;
   margin-left: 10px;
   margin-right: 10px;
 
}

#about_power .content p {
  line-height: 26px;
}

#about_power .content p:last-child {
  margin-bottom: 0;
}

#about_power .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_power .content ul {
  list-style: none;
  padding: 0;
}

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


/*--------------------------------------------------------------


/* about_carreers-3 Section
--------------------------------*/

#about_carreers3 {
   background: linear-gradient(rgba(100, 142, 181, 0), rgba(55, 142, 181, 0.2)), url("../img/white.jpg") top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  
  

}

{
	box-sizing: border-box;
}

#about_carreers3 .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_carreers3 .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}


#about_carreers3 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_carreers3 {
  padding: 60px 0 30px 0;
}

#about_carreers3 .about-img {
  overflow: hidden;
}

#about_carreers3 .sliders
{
	width: 110%;
	
}

#about_carreers3 .slider img
{
	width: 100%;
}



#about_carreers3 .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 70%;
      
}

@media (max-width: 768px) {
  #about_carreers3 .about-img {
    height: auto;
  }

  #about_carreers3 .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about_carreers3 .content h2 {
  color: #17a8eb;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
     text-shadow: -1px 0 2px #000000;
}

#about_carreers3 .content h3 {
  color: #000000;
 
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  font-family: "Raleway", sans-serif;
 
}

#about_carreers3 .content p {
  line-height: 26px;
}

#about_carreers3 .content p:last-child {
  margin-bottom: 0;
}

#about_carreers3 .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_carreers3 .content ul {
  list-style: none;
  padding: 0;
}

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


/* about_carreers-2 Section
--------------------------------*/

#about_carreers-2 {
   background: linear-gradient(rgba(100, 142, 181, 0), rgba(55, 142, 181, 0.2)), url("../img/white.jpg") top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  
  

}

{
	box-sizing: border-box;
}

#about_carreers-2 .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_carreers-2 .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}


#about_carreers-2 .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_carreers-2 {
  padding: 60px 0 30px 0;
}

#about_carreers-2 .about-img {
  overflow: hidden;
}

#about_carreers-2 .sliders
{
	width: 110%;
	
}

#about_carreers-2 .slider img
{
	width: 100%;
}



#about_carreers-2 .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 70%;
      
}

@media (max-width: 768px) {
  #about_carreers-2 .about-img {
    height: auto;
  }

  #about_carreers-2 .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about_carreers-2 .content h2 {
  color: #17a8eb;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
     text-shadow: -1px 0 2px #000000;
}

#about_carreers-2 .content h3 {
  color: #000000;
 
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  font-family: "Raleway", sans-serif;
 
}

#about_carreers-2 .content p {
  line-height: 26px;
}

#about_carreers-2 .content p:last-child {
  margin-bottom: 0;
}

#about_carreers-2 .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_carreers-2 .content ul {
  list-style: none;
  padding: 0;
}

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


/* about_carreers Section
--------------------------------*/

#about_carreers {
   background: linear-gradient(rgba(100, 142, 181, 0), rgba(55, 142, 181, 0.2)), url("../img/white.jpg") top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  
  

}

{
	box-sizing: border-box;
}

#about_carreers .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_carreers .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}


#about_carreers .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_carreers {
  padding: 60px 0 30px 0;
}

#about_carreers .about-img {
  overflow: hidden;
}

#about_carreers .sliders
{
	width: 110%;
	
}

#about_carreers .slider img
{
	width: 100%;
}



#about_carreers .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 70%;
      
}

@media (max-width: 768px) {
  #about_carreers .about-img {
    height: auto;
  }

  #about_carreers .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about_carreers .content h2 {
  color: #ebc017;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
     text-shadow: -1px 0 2px #000000;
}

#about_carreers .content h3 {
  color: #000000;
 
  font-weight: 300;
  font-size: 22px;
  line-height: 26px;
  font-family: Arial, Helvetica, sans-serif;
 
}

#about_carreers .content p {
  line-height: 26px;
}

#about_carreers .content p:last-child {
  margin-bottom: 0;
}

#about_carreers .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_carreers .content ul {
  list-style: none;
  padding: 0;
}

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


/* About_Batam Section
--------------------------------*/

#About_Batam {
   background: linear-gradient(rgba(100, 142, 181, 0), rgba(55, 142, 181, 0.5)), url("../img/white.jpg") top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  
  

}

{
	box-sizing: border-box;
}

#About_Batam .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#About_Batam .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}


#About_Batam .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#About_Batam {
  padding: 60px 0 30px 0;
}

#About_Batam .about-img {
  overflow: hidden;
}

#About_Batam .sliders
{
	width: 110%;
	
}

#About_Batam .slider img
{
	width: 100%;
}



#About_Batam .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 70%;
      
}

@media (max-width: 768px) {
  #About_Batam .about-img {
    height: auto;
  }

  #About_Batam .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#About_Batam .content h2 {
  color: #ebc017;
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
     text-shadow: -1px 0 2px #000000;
}

#About_Batam .content h3 {
  color: #000000;
 
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-family: "Raleway", sans-serif;
 
}

#About_Batam .content p {
  line-height: 26px;
}

#About_Batam .content p:last-child {
  margin-bottom: 0;
}

#About_Batam .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#About_Batam .content ul {
  list-style: none;
  padding: 0;
}

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

}


/* About_Unique_Batam Section
--------------------------------*/

#About_Unique_Batam {
   background: linear-gradient(rgba(100, 142, 181, 0), rgba(55, 142, 181, 0.7)), url("../img/unique.jpg") top center;
  background-size: cover;
  padding: 60px 0;
  position: relative;

}


#About_Unique_Batam .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#About_Unique_Batam .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: right;
  align-items: right;
  flex-direction: column;
  text-align: right;
}

#About_Unique_Batam .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#About_Unique_Batam {
  padding: 60px 0 30px 0;
}

#About_Unique_Batam .about-img {
  overflow: hidden;
}

#About_Unique_Batam .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #About_Unique_Batam .about-img {
    
  }

  #About_Unique_Batam .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#About_Unique_Batam .content h2 {
  color: #0c2e8a;
  font-weight: 700;
  font-size: 30px;
  font-family: "Raleway", sans-serif;
}

#About_Unique_Batam .content h3 {
  color: #ffffff;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
 
}

#About_Unique_Batam .content p {
  line-height: 26px;
}

#About_Unique_Batam .content p:last-child {
  margin-bottom: 0;
}

#About_Unique_Batam .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#About_Unique_Batam .content ul {
  list-style: none;
  padding: 0;
}

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


/* about_port Section (FNI.PHP)
--------------------------------*/

#about_port {
   background: linear-gradient(rgba(162, 174, 179, 5), rgba(162, 174, 179, 0.5)), url("../img/kabilport.jpg") top center;
  background-size: cover;
   padding: 80px 0;

  position: relative;

}



#about_port .btn-get-started {
  font-size: 48px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#about_port .about-container {

  bottom: 30;
  top: 0;
  left: 10;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  text-align: left;
}

#about_port .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

#about_port {
  padding: 60px 0 30px 0;
}

#about_port .about-img {
  overflow: hidden;
}

#about_port .about-img img {
  margin-left: -15px;
  max-width: 100%;
        opacity: 90%;
      
}

@media (max-width: 768px) {
  #about_port .about-img {
    height: auto;
  }

  #about_port .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about_port .content h2 {
  color: #ebc017;
  text-shadow: -1px 0 6px #000000;
  font-weight: 600;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
    margin-left: 10px;
   margin-right: 10px;
}

#about_port .content h3 {
  color: #ffffff;

  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
    margin-left: 10px;
   margin-right: 10px;
   font-family: Arial, Helvetica, sans-serif;
 
}

#about_port .content p {
  line-height: 26px;
}

#about_port .content p:last-child {
  margin-bottom: 0;
}

#about_port .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #b4b4b4;
}

#about_port .content ul {
  list-style: none;
  padding: 0;
}

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

/*--------------------------------------------------------------
# services_ten
--------------------------------------------------------------*/
.services_ten .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#services_ten h2 {
  margin: 0 0 10px 0;
    margin-left: 5px;
   margin-right: 5px;
  font-size: 36px;
  font-weight: 800;
  line-height: 56px;
  text-transform: uppercase;
  color: #ebc017;
  text-shadow: -1px 0 2px #2f4d5a;
}

.services_ten .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services_ten .icon-box:hover::before {
  background: #67b0d1;
  top: 0;
  border-radius: 0px;
}

.services_ten .icon {
  margin-bottom: 15px;
}

.services_ten .icon i {
  font-size: 48px;
  line-height: 1;
  color: #67b0d1;
  transition: all 0.3s ease-in-out;
}

.services_ten .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services_ten .title a {
  color: #111;
}

.services_ten .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services_ten .icon-box:hover .title a,
.services_ten .icon-box:hover .description {
  color: #fff;
}

.services_ten .icon-box:hover .icon i {
  color: #fff;
}





/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #67b0d1;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #67b0d1;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #67b0d1;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2f4d5a;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #49788c;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(103, 176, 209, 0.8), rgba(192, 195, 204, 0.8)), url("../img/profil-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #ebc017;
  text-shadow: -1px 0 8px #000000;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

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

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #67b0d1;
}

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  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 .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

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

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

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(47, 77, 90, 0.08);
}

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

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

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

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

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

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d5e9f2;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #67b0d1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #67b0d1;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 300px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

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

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.team .member .social a:hover {
  color: #67b0d1;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}


/*--------------------------------------------------------------
# fni
--------------------------------------------------------------*/
.fni .member {
  text-align: center;
  margin-bottom: 150px;
  position: relative;
}

#fni h1 {
  margin: 10px 0 30px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
   color: #ebc017 ;
  text-shadow: -1px 0 2px #2f4d5a;
   text-align: left;
}

#fni h2 {
	margin: 20px 0 30px 0;
  color: #ebc017 ;
  margin-bottom: 50px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: -1px 0 2px #2f4d5a;
   margin-left: 10px;
   margin-right: 10px;
}

.fni .member .pic {
  overflow: hidden;
}

.fni .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
   margin-bottom: 150px;
}

.fni .member:hover .member-info {
  max-height: 600px;
}

.fni .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 5px;
}

.fni .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}

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

.fni .member .social {
  margin-top: 10px;
}

.fni .member .social a {
  transition: color 0.3s;
  color: #52869d;
}

.fni .member .social a:hover {
  color: #67b0d1;
}

.fni .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .fni .member {
    margin-bottom: 50px;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

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

.contact .info-box i {
  font-size: 32px;
  color: #67b0d1;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f0f7fa;
}

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

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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

.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 {
  background-color: #67b0d1;
}

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

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

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

.contact .php-email-form button[type=submit]:hover {
  background: #8ec4dd;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #263f49;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-top: -90px;
  margin-bottom: 15px;
  background: white;
  color: #2f4d5a;
  border-top: 4px solid #67b0d1;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2f4d5a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #67b0d1;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #b5d9e9;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a2cfe3;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #67b0d1;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #409cc5;
}

#footer .copyright {
  border-top: 1px solid #385b6b;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}