body 
{
  margin: 0;
  padding: 0;  
  font-size: 15px;
  color: #3d3d3d;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
a, a:hover, a:focus, button, button:focus 
{
  text-decoration: none;
  outline: none;
  transition: all 0.5s ease-in-out 0s !important;
  -moz-transition: all 0.5s ease-in-out 0s !important;
  -o-transition: all 0.5s ease-in-out 0s !important;
}

h1, h2, h3, h4, h5, h6 
{
  margin: 0px;
}

h1, .h1 
{
  font-size: 50px;
  line-height: 50px;
}

h2, .h2 
{
  font-size: 50px;
  line-height: 60px;
}

h3, .h3 
{
  font-size: 30px;
  line-height: 35px;
}

h4, .h4 
{
  font-size: 25px;
  line-height: 30px;
}

h5, .h5 {
  font-size: 20px;
  line-height: 25px;
}

h6, .h6 
{
  font-size: 18px;
  line-height: 25px;
}

p , li
{
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/*----------------------*/
/*---- Padding Css ----*/
/*--------------------*/
.padding-30
{
	padding: 30px;
}
.c-padd-40
{
	padding-top: 40px; 
	padding-bottom: 40px;
}
.c-padd-50
{
	padding-top: 50px; 
	padding-bottom: 50px;
}
.c-padd-80
{
	padding-top: 80px; 
	padding-bottom: 80px;
}
.c-padd-100
{
	padding-top: 100px; 
	padding-bottom: 100px;
}
/*----------------------*/
/*----  Margin Css ----*/
/*--------------------*/
.mt-10
{
	margin-top: 10px;
}
.mb-10
{
	margin-bottom: 10px;
}
.mb-20
{
	margin-bottom: 20px;
}
.mb-30
{
	margin-bottom: 30px;
}

.mb-50
{
	margin-bottom: 50px;
}

/*-----------------------*/
/*----  Font Weight ----*/
/*---------------------*/
.font-weight-800
{
	font-weight: 800;
}
.font-weight-700
{
	font-weight:700;
}
.font-weight-600
{
	font-weight:600;
}
.font-weight-500
{
	font-weight:500;
}
.font-weight-400
{
	font-weight:400;
}
/*-----------------------*/
/*----  Text Color  ----*/
/*---------------------*/
.t-white
{
	color: #fff;
}
.t-black
{
	color: #000;
}
.t-dark-blue
{
	color: #1a3268;
}
.t-yellow
{
	color: #f1d145;
}

/*-----------------------------*/
/*----  Background Color  ----*/
/*--------------------------*/
.b-dark-blue
{
	background: #1a3268;
}
/*-----------------------*/
/*----  Button Css  ----*/
/*---------------------*/
.btn-text-red
{
	color: #d4312a;
	padding:10px 15px;
	border-bottom: 1px solid #d4312a;
	border-radius: 0px;
	font-size: 18px;
	position: relative;
	border: none;
	margin-top: 10px;
	line-height: 25px;
}
.btn-text-red:before
{
	content: "";
	position: absolute;
	width: 80%;
	height: 1px;
	background: #d4312a;
	left: 10%;
	bottom: 10px;
}
.btn-text-red:hover
{
	background:#d4312a;
	color: #fff;
}

.btn-border-white
{
	color: #fff;
	background:transparent;
	padding:10px 35px;
	border-radius: 0px;
	font-size: 14px;
	position: relative;
	border: none;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 15px;
	text-transform: uppercase;
}
.btn-border-white:hover
{
	color:#1a3268;
	background: #f1d145;
}
.container
{
	max-width:1200px;
}

/*----------------------*/
/*----  Title Css  ----*/
/*--------------------*/
.title
{
	position: relative;
	padding-bottom: 10px;
}
.title:before
{
	content: "";
	position: absolute;
	width:70px;
	height: 4px;
	background: #000;
	bottom: 0;
	left: 50%;
	transform:translateX(-50%);
}

.title-2
{
	position: relative;
	padding-bottom: 10px;
}
.title-2 span
{
	font-size: 14px;
	font-weight: 400;
	color: #5f5f5f;
	line-height: 15px;
	display: inherit;
}
.title-2:before
{
	content: "";
	position: absolute;
	width:70px;
	height: 6px;
	background: #000;
	bottom: 0;
	left: 50%;
	transform:translateX(-50%);
}
/*-------------------------------*/
/*------  Header Section   -----*/
/*-----------------------------*/
.navbar
{
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	z-index: 99;
	width: 100%;
	background: #fff;
	top: 0;
	z-index: 666;
	padding: 0px;
}

.navbar .navbar-brand img
{
	height: 60px;
}
.navbar-brand
{
	padding: 20px 0px;
}
.navbar .nav-item
{
	padding: 0px 15px;
}
.navbar .nav-link
{
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	padding: 5px 0px !important;
	color: #262626 !important;
	position: relative;
}
.navbar .nav-link:before
{
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	background: #565656;
	left: 0;
	bottom: -5px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.navbar .nav-link.active:before
{
	width: 100%;
}
.top-nav-collapse
{
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25);
}
.top-nav-collapse .navbar-brand
{
	padding: 10px 0px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.top-nav-collapse .navbar-brand img
{
	height: 40px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}
.navbar-custom .navbar-toggler {
	border: none;
	color: #505c67;
	font-size: 1.2rem;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-times{
	display: none;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-bars{
	display: inline-block;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-bars{
	display: none;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-times{
	display: inline-block;
	margin-right: 0.125rem;
}
/*-------------------------------*/
/*------  Banner Section   -----*/
/*-----------------------------*/
.carousel-item
{
	height: 700px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.banner-section
{
	position: relative;
	padding-top: 100px;
}
.banner-text
{
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.banner-point
{
	position: absolute;
	width: 40px;
	height: 100%;
	top: 0;
	display: flex;
	align-items: center;
}
.carousel-indicators 
{
	margin: 0px !important;
	width: 50px;
	display: inline-block;
	left: 10px;
	position: relative;
}
.carousel-indicators li 
{
	text-indent:0;
	background: transparent;
	height: 30px;
	text-align: left;
	line-height: 30px;
	color: #fff;
	cursor: pointer;
	-webkit-box-flex: 0;%;
}
.carousel-indicators li.active
{
	background: transparent !important;
}
.carousel-indicators li:before
{
	top: auto;
	bottom: 0;
	height: 3px;
	background:transparent;
}
.carousel-indicators li.active:before
{
	background: #fff;
}

.banner-text
{
	color: #fff;
}
.banner-text .title:before
{
	background: #fff;
}
.banner-text h5
{
	width: 60%;
	margin: 0px auto;
}

/*---------------------------------*/
/*------  About Us Section   -----*/
/*-------------------------------*/

.about-text-block p
{
    text-align: justify;
}
.about-text-block h3:before
{
	left: 0px;
	transform: translateX(0%);
	height: 6px;
	background: #1a3268;
}
.about-text-block ul
{
	list-style: initial;
	padding-left: 15px;
}
.img-about-sm
{
	display: none;
}
/*---------------------------------------*/
/*------  Vision Mission Section   -----*/
/*-------------------------------------*/
.vision-mission-block 
{
	padding: 50px 30px;
}
.vision-mission-block h3:before
{
	background: #fff;
}
.vision-mission-block  p
{
	min-height: 120px;
}

/*----------------------------------*/
/*------  Structure Section   -----*/
/*--------------------------------*/
.structure-section
{
	background: url(../images/bg-structure.jpg);
	color: #fff !important;
	background-attachment: fixed;
}
.structure-section .title-2:before
{
	background: #fff;
}
.structure-section .title-2 span
{
	color: #fff;
}
.structure-block
{
	margin-top: 15px;
	margin-bottom: 15px;
}
.structure-block h5
{
	font-size: 22px;
}
.structure-img
{
	position: relative;
}
.structure-img img
{
	position: relative;	
	max-width: 180px;
	margin-bottom: 10px;
}

.structure-img:before
{
	content: " ";
	position: absolute;
	width: 100%;
	height: 2px;
	background: #fff;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	z-index:0;
}
.structure-block:nth-child(4) .structure-img:before,
.structure-block:nth-child(8) .structure-img:before, .structure-block:nth-child(10) .structure-img:before
{
	display: none;
}

/*---------------------------------*/
/*------  Services Section   -----*/
/*-------------------------------*/
.services-section .title-2
{
	color: #1a3268;
}
.services-section .title-2:before
{
	background: #1a3268;
}
.services-box 
{
	position: relative;
	margin: 20px auto;
}
.services-box:before
{
	content: " ";
	width:0%;
	height: 100%;
	left: 0;
	top: 0;
	background: #1a3268;
	position: absolute;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}
.services-box:hover:before
{
	width: 100%;
}
.service-img
{
	background: #1a3268;
	padding: 15px;
	position: relative;
}

.service-text
{
	width: 100%;
	border:1px solid #565656;
	display: flex;
	align-items: center;
	padding:10px 30px;
	position: relative;
	color: #3d3d3d;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.services-box:hover .service-text
{
	color: #fff;
	border:1px solid #565656;
	border-left-color: #fff;
}

.services-modal
{
	max-width: 870px;
}
.services-modal .modal-content
{
	border:none;
	border-radius: 0px;
}
.services-modal .close

{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 40px ;
}
.services-modal .modal-body
{
	padding: 50px;
	display: flex;
}
.modal-img
{
	width: 130px;
	height: 130px;
	background: #1a3268;
	padding: 10px;
}
.modal-img img
{
	width: 100%;
}
.modal-text
{
	padding-left: 30px;
}
.modal-text li
{
	padding-left: 25px;
	position: relative;
}
.modal-text li:before
{
	position: absolute;
	content: '\f00c';
	left: 0px;
	top: 0;
	font-size: 14px;
	color: #3d3d3d;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	line-height: 30px;
}

/*--------------------------------*/
/*------  Counter Section   -----*/
/*------------------------------*/

.counter-section .title-2:before
{
	background: #fff;
}
.counter-section .title-2, .counter-section .title-2 span
{
	color: #fff;
}
.counter-box
{
	width: 150px;
	height: 150px;
	border: 1px solid #fff;
	border-radius: 50%;
	text-align: center;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto;


}
.counter-box .counter-text .h3
{
	font-size: 40px;
	line-height: 40px;
	margin: 0px;
	font-weight:700;
	position: relative;
	padding-right: 25px;
	color: #f1d145;
}
.counter-box .counter-text .h3:before
{
	content: "+";
	position: absolute;
	right: 0;
	top: 0;
}


/*-------------------------------------------*/
/*------  Material We Supply Section   -----*/
/*-----------------------------------------*/
.material-Supply-section .title-2
{
	color: #1a3268;
}
.material-Supply-section .title-2:before
{
	background: #1a3268;
}

.material-supply-box
{
	border: 1px solid #1a3268;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	margin: 15px auto;
}

.material-supply-box 
{
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	transition: all 0.5s ease-in-out 0s !important;
	-moz-transition: all 0.5s ease-in-out 0s !important;
	-o-transition: all 0.5s ease-in-out 0s !important;
}

.material-supply-box:hover
{
	background: #1a3268;
	color: #fff;
}
/*-------------------------------*/
/*------  Footer Section   -----*/
/*-----------------------------*/
.footer-section .title-2
{
	color: #fff;
}
.footer-section .title-2 span
{
	color: #fff;
}
.footer-section .title-2:before
{
	left: 0px;
	transform: translateX(0%);
	background: #fff;
}

.contact-form
{
  position:relative;
}


.contact-form .form-group
{
  position:relative;
  margin-bottom: 20px;
}

.contact-form .form-group:last-child
{
  margin-bottom:0px;
}

.contact-form .form-group input
{
	position:relative;
	display:block;
	width:100%;
	line-height:25px;
	padding:10px 20px;
	height: 50px;
	color: #5f5f5f;
	font-weight: 600;
	border: none;
	font-size:14px;
	border:1px solid #d7d7d7;
	border-radius: 15px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
  box-shadow: 0px 0px 5px 1px #f1d145;
}

.contact-form .form-group textarea{
  position:relative;
  display:block;
  width:100%;
  line-height:25px;
  padding:20px 20px;
  height:120px;
  color: #5f5f5f;
  font-size: 14px;
  resize:none;
  border: none;
  border-radius: 15px;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  font-weight: 600;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder
{
	color:#5f5f5f;
	text-transform:capitalize; 
	opacity: 10;
}
input::-moz-placeholder, textarea::-moz-placeholder
{
	color:#5f5f5f;
	text-transform:capitalize; 
	opacity: 10;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder
{
	color:#5f5f5f;
	text-transform:capitalize; 
	opacity: 10;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder
{
	color:#5f5f5f;
	text-transform:capitalize; 
	opacity: 10;
}
input::placeholder, textarea::placeholder
{
	color:#5f5f5f;
	text-transform:capitalize; 
	opacity: 10;
}
.contact-form button
{ float: left;
}
.contact-form button:focus
{
	outline: none;
	box-shadow: none;
}

.contact-details-block
{
	position: relative;
}
.contact-details-block:before
{
	content: " ";
	position: absolute;
	width: 2px;
	height: 100%;
	background: #fff;
	left: -15%;
	top: 0;
}
.contact-details li
{
	position: relative;
	padding-left: 40px;
	color: #fff;
	margin-bottom: 30px;
}
.contact-details li a
{
	color: #fff;
}
.contact-details li a:hover
{ 
	color: #f1d145;
}

.contact-details li img
{
	position: absolute;
	left: 0;
}

.copy-right-section
{
	padding: 15px 0px;
}
.copy-right-section p br
{
	display: none;
}
.copy-right-section a
{
	color: #17aac3;
}
.copy-right-section span
{
	color: #1a3268;
}