/*
---------------------------------------------
Table of contents
------------------------------------------------
1. Typography
2. Main Nav
3. Home
4. About
5. Work
6. Single Work
7. Pricing
8. Contact
--------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500;600;700&display=swap');

html {
  font-family: 'Raleway', sans-serif !important;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: 'Raleway', sans-serif !important;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscaling;
}
.fs-10{
  font-size: 25px !important;
  margin-right: 10px;
  line-height: 0 !important;
  vertical-align: middle;
}
.text-custom{
    color: #053545;
}
.text-custom-1{
  color: #d7e123;
}
.text-shadow{text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);}
.bg-custom{
    background-color: #053545;
}
.bg-custom-1{
  background-color: #ffffffee;
}
/* Typography */
p, a {font-weight: 400; text-decoration: none;}
.h2 {font-size: 40px;}
.h3 {font-size: 28px;}
.light-300 {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 300;
}
.regular-400 {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 400;
}
.semi-bold-600 {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 600;
}
.bold-700 {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 700;
}
.font-2{
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
}
.typo-space-line::after,
.typo-space-line-center::after {
  content: "";
  width: 150px;
  display:block;
  position: absolute;
  border-bottom:  5px solid #d7e123;
  padding-top: .5em;
}
.typo-space-line-center::after {
  left: 50%;
  margin-left: -75px;
}
.pt-10{
  padding-top: 6rem !important;
}
.ps-10{
  padding-left: 6rem !important;
}
@media(max-width:768px){
  .ps-10{padding-left: 4rem !important;}
}
.btn-outline-custom{
  border-color: #d7e123 !important;
  color: #d7e123 !important;
}
.btn-outline-custom:hover {
  background-color: #d7e123;
  color: #000 !important;
}

/* Main Nav */
.navbar, .navbar .navbar-brand, .navbar .nav-item{
  transition: all 0.6s ease-in-out;
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(5, 53, 69, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: all 0.36s ease-in-out;
}
.trans{
    background-color: #053545ee !important;
    /* background-color: rgba(255, 255, 255, 0.8) ; */
}

.navbar.trans .nav-link{
  color: #fff !important;
}
.navbar.trans .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(215, 225, 35, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* #main_nav .navbar-brand img{
    position: absolute;
    width:80px; height: 80px;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: 10px auto;
} */

#main_nav .navbar-brand img{
  width:50px; height: 50px;
}
.nav-link{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
  color: #053545 !important;
}

.nav-link:hover {
    font-weight: 700;
} 
.trans .nav-link:hover{
  text-shadow: 1px 2px #000;
}

/* .dropdown-menu .nav-link, .navbar.trans .dropdown-menu .nav-link{
  color: rgba(0, 0, 0, 1) !important;
}
.dropdown-menu .nav-link:hover{
  color: #000 !important;
  text-shadow: none !important;
} */
#main_nav .nav-item {
  position: relative;
}

#main_nav .nav-item:before, #main_nav .active:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  margin: -4px 0;
  background-color: #d7e123;
  transition: all 0.4s ease-in-out 0s;
}
#main_nav .nav-item:before{
  visibility: hidden;
  transform: scaleX(0);
}
#main_nav .active:before{
  visibility: visible !important;
  transform: scaleX(1) !important;
}

#main_nav .nav-item:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
.dropdown-menu {
  background-color: transparent;
  border-radius: 10px;
  left:0px;
  right: 0;
  border: none;
	margin-top: 0px;
	perspective: 1000px;
  margin: auto;
  width: 250px;
  margin-top: 0;
  text-align: center;
}
.dropdown-menu li{
	opacity: 0;
	padding: 3px 5px;
	background-color: #199fb1;
  transition: all 0.5s ease-in-out;
}
.dropdown-menu li:hover{
	background-color: #0d5c75;
}
.dropdown:hover .dropdown-menu{
  display: block;
	transition: all 3s ease-in-out;
}
.dropdown-menu li a{
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px;
  text-transform: none;
}
.dropdown-menu .dropdown-item-1 {
	border-bottom: 0.5px solid #ffffff33;
	box-shadow: 0 0 5px #ffffff55;
    transform-origin: top center;
    animation: translateY 500ms 120ms ease-in-out forwards;
}
.dropdown-menu .dropdown-item-2 {
  border-bottom: 0.5px solid #ffffff33;
	box-shadow: 0 0 5px #ffffff55;
    transform-origin: top center;
    animation: translateY 500ms 240ms ease-in-out forwards;
}
.dropdown-menu .dropdown-item-3 {
	box-shadow: 0 0 5px #ffffff55;
    transform-origin: top center;
    animation: translateY 500ms 360ms ease-in-out forwards;
}
.dropdown-menu li:first-child {
  border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.dropdown-menu li:last-child {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.dropdown:hover>.dropdown-menu {
  display: block;
}
.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

@keyframes translateY{
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}
	80% {
		transform: translateY(2px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
/* .main.dropdown-menu::before {
  border-bottom: 9px solid rgba(255, 255, 255, 0.9);
  border-left: 9px solid rgba(0, 0, 0, 0);
  border-right: 9px solid rgba(0, 0, 0, 0);
  content: "";
  display: inline-block;
  left: 50%;
  margin-left: -9px;
  position: absolute;
  top: -9px;
} */
.dropend .dropdown-menu {
  width: auto !important;
}
.dropend .dropdown-menu .nav-link{
    text-transform: none;
    font-size: 15px;
    letter-spacing: normal;
    font-weight: 600;
    transition: all 0.4s ease-in-out 0s;
}
.dropend:hover>.dropdown-menu {
  display: block;
}

.dropend>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}
.dropend .dropdown-menu::before {
  border-right: 9px solid rgba(255, 255, 255, 0.9);
  border-top: 9px solid rgba(255, 255, 255, 0);
  border-bottom: 9px solid rgba(255, 255, 255, 0);
  content: "";
  display: inline-block;
  top: 0%;
  margin-top: 9px;
  position: absolute;
  left: -9px;
}
.dropend .nav-link i{
  position: absolute;
  right: 2px;
}


@media (max-width:992px){
  #main_nav .nav-item:before, #main_nav .active:before{
    width: 30%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  #main_nav .nav-item:before, .dropend .dropdown-menu::before, .main.dropdown-menu::before {
    display: none;
  }
}

@media (max-width:768px){
  .dropend .dropdown-menu .nav-link{
    text-align: center;
  }
}

/* BreadCrumbs */
.breadcrumbs {
  padding: 10px 0;
  background: #f3f5fa;
  min-height: 30px;
  margin-top: 72px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}
@media (max-width: 512px) {
  .breadcrumbs h2{
    display: none;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 10px;
  padding-bottom: 0 !important;
  margin: 10px 0;
  font-size: 14px;
  
}
.breadcrumbs ol a{
  color: #4668a2;
  font-weight: 700;
}
.breadcrumbs ol li + li{
  font-weight: 700;
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/* Sent Message */
.on{
  visibility: visible !important;
  opacity: 1 !important;
}
.sent-message{
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color:rgba(0, 0, 0, 0.60);
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 99999;
  transition: all 0.36s ease-in-out;
}
.sent-message .card{
  position: relative;
  z-index: 999999;
  margin-top: 20% !important;
  margin: auto;
  max-width: 50%;
  padding:30px 50px;
  border-radius:20px;
  text-align: center;
  background-color:#fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.30);
}
.close-btn{
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: 4%;
  right: 2%;
  cursor:pointer;
  transition: all 0.36s ease;
  padding-bottom: 2px;
  padding-left: 12px;
  padding-right: 12px;
  color: #fff;
  background-color: #053545;
  border: 1px solid #053545;
  border-radius: 50%;
  transform: scale(1.1);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.30);
}

.close-btn:active{
  outline: #8b0000;
  border: 1px solid #8b0000;
  transform: scale(0.9);
}

.close-btn:hover, .close-btn:focus {
  color: #fff;
  border: 1px solid #8b0000;
  background-color: #8b0000;
}
.sent-message h6{
  font-size: 20px;
  padding-top:20px;
  background: #fff;
  text-align:center;
  border-radius:10px 10px 0 0
}

@media (max-width: 991px) {
  .sent-message .card{
    max-width: 65%;
    margin-top: 50% !important;
  }
}
@media (max-width: 768px) {
  .sent-message .card{
    max-width: 80%;
  }
}


/* Home */
.banner-wrapper{
  background-position: center center; 
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('./../img/slide_2.jpg');
  height: 100vh;
  width: 100%;
}
.banner-wrapper .card{
  position: relative;
  background-color: #ffffffbb;
  border-color: #ffffffbb;
  color: #000;
  top: 30vh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto;
  width: 50%;
  height: auto !important;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px #ffffffaa;
}
.banner-wrapper .card h1{
  font-size: 35px;
  text-align: center;
  margin-bottom: 15px;
  color: #053545;
}
.banner-wrapper .card p{
  margin: 0;
  text-align: center;
  font-weight: 500;
}

/* .bg-1, .bg-2, .bg-3, .bg-4, .bg-5, .bg-6, .bg-7{
  background-position: center center; 
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  min-height: 60vh;
  width: 100%;
}
.bg-1{background-image: url('./../img/slide_1.jpg');}
.bg-2{background-image: url('./../img/slide_2.jpg');}
.bg-3{background-image: url('./../img/slide_3.jpg');}
.bg-4{background-image: url('./../img/slide_4.jpg');}
.bg-5{background-image: url('./../img/slide_5.jpg');}
.bg-6{background-image: url('./../img/slide_6.jpg');}
.bg-7{background-image: url('./../img/slide_7.jpg');}

#index_banner .carousel-inner {
  height: 100vh;
}
#index_banner .carousel-item {
  min-height: 60vh;
}
#index_banner .carousel-control-prev i,
#index_banner .carousel-control-next i {
  color: #fff !important;
  text-decoration: none;
  font-size: 4em;
}

#index_banner .carousel-indicators li,
#index_banner .carousel-indicators.active {
  background-color: #fff !important;
}
*/

@media(max-width:991px){
  .banner-wrapper{
    height: 60vh;
    padding-top: 80px;
    background-position: top center;
    
  }
  .banner-wrapper .card{
    top: 15%;
    width: 80%;
  }

  /*#index_banner .carousel-inner {
    height: 40vh;
    padding-top: 80px;
  }
  .bg-1, .bg-2, .bg-3, .bg-4, .bg-5, .bg-6, .bg-7{
    background-position: top center;
    background-size: contain;
    min-height: 0;
  }*/
} 

@media(max-width:767px){
  .banner-wrapper{
    height: 100vh;
    background-position: center right;
  }
  .banner-wrapper .card{
    top: 8%;
    width: 92%;
  }
  .banner-wrapper .card h1{
    font-size: 30px;
  }
}
/* Annual Report */
/* .service-wrapper .service-footer {
  max-width: 720px;
} */

.service-work.card {
  border-radius: 10px !important;
  cursor: pointer;
  width: 15rem;
  height: 15rem;
  margin: auto;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4) !important;
}
.service-work .service-work-vertical {
	background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 33.33%, rgba(255,255,255,1) 66.66%, rgba(255,255,255,0) 99.99%);
  background-size: 300% 300%;
  background-position: 0% 100%;
  transition: .5s;
}
.service-work .service-work-vertical:hover {
  background-position: 0% 0%;
  transition: .5s;
}
.service-work .service-work-vertical:hover * {
  color: #000;
  border-color: #000;
  transition: .5s;
}

.service-tag ul{
  list-style: none;
}
.service-tag ul a{
  transition: all 0.36s ease-in-out;
}
.service-tag .rounded-pill:hover{
  background-color: transparent;
}
.btn-outline-primary.active:hover{
  background-color: #053545 !important;
}

/* Recent works */

.recent-work .card{
  padding: 20px;
  flex-direction: row;
  cursor: pointer;
}
.recent-work .recent-work-vertical {
	background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 33.333%, rgba(5, 53, 69, 0.9) 55.555%, rgba(255,255,255,0) 99.999%);
  background-size: 300% 300%;
  background-position: 0% 100%;
  transition: .5s;
  cursor: pointer;
}
.recent-work .recent-work-vertical:hover {
  background-position: 0% 20%;
  transition: .5s;
}
.recent-work .card p{
  font-weight: 700;
  color: #053545;
  margin-top: auto;
  margin-bottom: auto;
  transition: all .5s ease-in-out;
}
.recent-work .card i{
  margin-left: auto;
}
/* .recent-work .recent-work-vertical:hover div.recent-work-content {
  transform: translateX(-2.5rem);
} */
.recent-work .recent-work-vertical:hover * {
  color: white;
  transition: .5s;
}

/* About */
#work_banner {
  position: relative;
  background-image: url('./../img/banner-bg.jpg');
  background-position: center center; background-size: cover;
  height: 100vh;
  width: 100%;
}
#work_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.banner-content{
  position: relative;
}

@media (max-width:992px){
  #work_banner{
    height:100%;
  }

}

/* Divisions */

#tabs .tabs-nav{
  margin: 0;
  padding: 0;
}
#tabs .tabs-nav li {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}
#tabs .tabs-nav li:last-child {
  margin-bottom: 0px;
}
#tabs .tabs-nav li a {
	text-transform: capitalize;
  width: 100%;
	padding: 15px;
	display: inline-block;
	background-color: #d7e12388;
  font-size: 20px;
  color: #121212;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
}
#tabs .tabs-nav li a i {
	float: right;
	margin-top: 5px;
}
#tabs .tabs-nav .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}

#tabs .tabs-nav .ui-tabs-active a {
  background-color: #d7e123;
}
#tabs .tabs-nav .ui-tabs-active span {
  color: #1e1e1e;
}
.tabs-content {
	width: 100%;
	margin-left: 30px;
	text-align: left;
  display: inline-block;
  transition: all 0.3s;
}

.t-b{
	overflow: auto;
	margin-bottom: 25px;
  width: auto;
}

.t-b .tw-10{
  width: 10%;
}

table {
	background:#fff;
	text-align:center;
	margin-bottom: 25px;
}
table th {
	background:#053545;
	color:#fff;
	padding:10px 5px;
  border-bottom:1px solid #053545;
	border-top:1px solid #053545;
	border-right:1px solid #fff;
}
table th:first-child {
	border-left:1px solid #053545;
}
table th:last-child {
	border-right:1px solid #053545;
}
table td {
	border-bottom:1px solid #053545;
	border-right:1px solid #053545;
	padding:10px;
	color:#000;
}
table tr:nth-child(even) {
background:#fff;
}
table tr td:first-child {
	border-left: 1px solid #053545 !important;
}
table tr:nth-child(odd) td {
 border-right:1px solid #053545 !important;
 background:#fff;
}
.t-b table td img{
	max-width: 40px;
}

#tabs-3 table:last-child tr:last-child td:nth-child(-n+2) {
  border-right:none !important;
}

@media (max-width: 768px){
  
  .tabs-content {
		margin-left: 0px;
		margin-top: 30px;
	}
  /* .tabs-content h4{
    visibility: hidden;
  } */
}

/* Carousel */

#div-image .carousel-inner, #products .carousel-inner {
  height: 50vh;
}

#div-image .carousel-control-prev i,
#div-image .carousel-control-next i,
#products .carousel-control-prev i,
#products .carousel-control-next i {
  color: #d7e123 !important;
  text-decoration: none;
  font-size: 4em;
}

#div-image .carousel-indicators li,
#div-image .carousel-indicators.active,
#products .carousel-indicators li,
#products .carousel-indicators.active {
  background-color: #d7e123 !important;
}

#div-image .carousel-item, #products .carousel-item{
  background-position: center center; 
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/* Chemical Division */
.cd-1{background-image: url('./../img/Division/chem-1.jpg');}
.cd-2{background-image: url('./../img/Division/chem-2.jpg');}
.cd-3{background-image: url('./../img/Division/chem-3.jpg');}
.cd-4{background-image: url('./../img/Division/chem-4.jpg');}
.cd-5{background-image: url('./../img/Division/chem-5.jpg');}
.cd-6{background-image: url('./../img/Division/chem-6.jpg');}

/* Power Division */
.pd-1{background-image: url('./../img/Division/pow-1.jpg');}
.pd-2{background-image: url('./../img/Division/pow-2.jpg');}
.pd-3{background-image: url('./../img/Division/pow-3.jpg');}
.pd-4{background-image: url('./../img/Division/pow-4.jpg');}
.pd-5{background-image: url('./../img/Division/pow-5.jpg'); background-size: contain !important;}
.pd-6{background-image: url('./../img/Division/pow-6.jpg');}
.pd-7{background-image: url('./../img/Division/pow-7.jpg');}
.pd-8{background-image: url('./../img/Division/pow-8.jpg');}
.pd-9{background-image: url('./../img/Division/pow-9.jpg');}
.pd-10{background-image: url('./../img/Division/pow-10.jpg');}

/* Wind Mill Division */
.wd-1{background-image: url('./../img/Division/wind-1.jpg'); background-size: contain !important;}
.wd-2{background-image: url('./../img/Division/wind-2.jpg'); background-size: contain !important;}

/* Bio Mass Division */
.bd-1{background-image: url('./../img/Division/bio-1.jpg');}
.bd-2{background-image: url('./../img/Division/bio-2.jpg');}

/* Chemical Division Products */
.dom-1{background-image: url('./../img/domesticdrum1.jpg');}
.dom-2{background-image: url('./../img/domesticdrum2.jpg');}
.dom-3{background-image: url('./../img/domesticdrum3.jpg');}

.exp-1{background-image: url('./../img/export1.jpg');}
.exp-2{background-image: url('./../img/export2.jpg');}
.exp-3{background-image: url('./../img/export3.jpg');}
.exp-4{background-image: url('./../img/export4.jpg');}
.exp-5{background-image: url('./../img/export5.jpg');}

/* Work
/* Singel Work 
#work_single_banner {
  background-image: url('./../img/banner-bg-02.jpg');
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
}
.related-content {
  border-radius: 20px;
  cursor: pointer;
}
/* Pricing 
.pricing-list {
  margin-bottom: 1px;
}
.pricing-table {
  max-width: 350px;
  margin: auto;
}
.pricing-table,
.pricing-horizontal {
  border-radius: 15px !important;
}

/* BOD */
.directors{
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.directors h2{
  font-weight: 700;
}
.directors span{
  letter-spacing: 2px;
  color: gray;
  font-size: 16px;
}

.content-heading{
	text-align: center;
	margin-top: 40px;
	margin-bottom: 25px;
	font-weight: 600;
	color: #000;
	/* text-transform: uppercase; */
}

/* Contact-Us */
#floatingtextarea {
  height: 150px
} 

.profile{
	margin-top: 30px;
}
.profile-contact{
	background-color: #f7f7f7;
	margin-top: 30px;
	margin-bottom: 50px;
}
/* .two-item .profile-item{
	transform: scale(0.9);
} */
.profile-contact .profile-item iframe{
	height: 300px;
	width: 100%;
}
.profile-contact h4, .profile-contact h5{
  font-weight: 600;
}
.profile-contact p{
  font-size: 14px;
}
.profile-item i{
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	transition: all 0.3s;
	background-color: #053545;
	color: #fff;
	margin-right: 10px;
}

/* Footer */
footer .navbar-brand img{
  width: 50px;
  height: 50px;
}

footer a.text-light:hover {
  color: #d7e123 !important;
  transition: all .36s ease-in-out;
}

