@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");

/* ========= common css ========= */
* {
  margin: 0;
  padding: 0;
  outline: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style-type: none;
}

a,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
}

body {
  overflow-x: hidden !important;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3em;
  color: #656565;
}

b,
strong {
  font-weight: 700;
}

:root {
  --primary_font: "Open Sans", Arial, sans-serif;
  --primary_color: #fff;
  --secondary_color: #f8f8f8;
  --top_header: #012d72;
  --nav_color: #222222;
  --footer_color: #000;
}

/* ============= common css end ============= */
/* main css start */

/*============== TopHeader CSS ============ */

#topHeader {
  padding: 20px 0;
  background: var(--top_header);
}

.topHeader_item a i {
  color: var(--primary_color);
  width: 10px;
  height: 10px;
}

.topHeader_info span:hover {
  color: #fff;
  cursor: pointer;
}

.topHeader_item span {
  color: var(--primary_color);
}

.icons_item a {
  /* padding: 5px 20px; */
  margin-left: 10px;
}

/* hover effect on topHeader icons */

.topHeader_icons .icons_item a {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}

.topHeader_icons .facebook a:hover {
  background: #507cbe;
}

.topHeader_icons .twitter a:hover {
  background: #63cdf1;
}

.topHeader_icons .linkedin a:hover {
  background: #90cadd;
}

.topHeader_icons .whatsapp a:hover {
  background: #f16261;
}

/* hover effect end */

/* ============== sidt logo css ============= */

.site_logo_image {
  width: 100%;
}

.site_logo_image img {
  width: 100%;
  overflow: hidden;
}
#site_logo {
  position: relative;
}

#site_logo::after {
  position: absolute;
  content: "";
  width: 100%;
  /* height: 10px; */
  background: #e0e0e0;
  box-shadow: 10px 10px 20px 10px gray;
  overflow: hidden;
  left: 0;
  z-index: 149;
}

/* ============= Header css =============== */
.navbar {
  z-index: 150;
  background: var(--primary_color);
  padding: 20px 0;
  box-shadow: 10px 20px 30px 20px solid gray;
  margin-top: 0;
}

.navbar ul li a {
  font-family: var(--primary_font);
  font-size: 12px;
  color: var(--nav_color);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0 5px;
  padding: 10px 15px !important;
  background: var(--primary_color);
  transition: 0.4s;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.navbar ul li a:hover {
  background: #002470;
  border-radius: 30px;
  color: var(--primary_color);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

/* ========== banner css ========== */

.owl-carousel > .slider > img {
  position: absolute;
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

#about {
  padding: 50px 0;
}

.about_content h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1em;
  color: #313290;
  margin-bottom: 20px;
}

.about_content p {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6em;
  color: #656565;
}

/* =========== Footer css ========== */

#footer {
  padding: 20px 0;
  background: var(--footer_color);
}

.widget p {
  color: var(--primary_color);
  font-size: 13px;
  font-weight: 400;
}

.widget h5 {
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--secondary_color);
  margin-bottom: 20px;
}

.widget ul li a {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--primary_color);
  margin-bottom: 5px;
}

input[type="text"i] {
  padding: 5px 10px;
  margin: 5px 0;
  width: 100%;
}

textarea {
  width: 100%;
  resize: none;
}

#btn_submit {
  background: #fb8000;
}

.under_line {
  width: 100%;
  height: 1px;
  background: #dadada;
  margin-top: 20px;
}

.down_footer {
  padding: 20px 0;
}

.copyright p {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 12px;
  color: #f5f5f5;
}

.copyright a {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 12px;
  color: #f5f5f5;
}

.social_links .icons_item a {
  color: var(--primary_color);
}

/* ========= back to top css =============*/
#back {
  position: relative;
}

.back-to-top {
  display: none;
  position: fixed;
  background: #363636;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  z-index: 202002020;
  text-align: center;
}

.back-to-top i {
  font-size: 20px;
  color: white;
  line-height: 50px;
}
/* ==================== end of code =================== */
.owl-theme .owl-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.owl-nav {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 100px;
}
.owl-next {
  float: right;
}

table {
	margin:0;
	padding:0;
	height:100%;
}
.mainContainer {
	width:780px;
	margin:0 auto;
}
.mainContainer td {
	vertical-align:middle;
	width:780px;
	text-align:left
}
#wrapper {
	border:0px solid #f6f6f6;
}
#wrapper .curveT {
	background:transparent url(../images/curve-top.gif) no-repeat left top;	
	height:7px;
}
#wrapper .curveB {
	background:transparent url(../images/curve-bot.gif) no-repeat left top;	
	height:7px;
}

#wrapper .header {
	clear:both;
	width:100%;
	height:51px;
	vertical-align:middle;
	padding-top:12px;
	background:#ffffff;
}
#wrapper .description {
	clear:both;
	margin:0px;
	padding: 0px 10px 4px;
	background:#ffffff;
}
#wrapper .welcome {
	padding:10px;
	background:#EEEEFF;
	font-size:15px;
}
#wrapper .description .links {
	margin-top:10px;
	padding:10px;
	background:#EEEEFF;
}
#wrapper .links ul {
	margin:0;
	padding:0;
	list-style-type:none;
	float:left;
	width:48%;
}
#wrapper .links ul li {
	margin:0;
	padding: 0px 0px 0px 12px;
	line-height:25px;
}
#wrapper .links ul li a {
	font-weight:bold;
	color:#003399;
	text-decoration:none;
	vertical-align:middle;
}
#wrapper .links ul li a img {
	padding-right:7px;
	margin-top:-7px;
}
div.clear {
	clear:both;
	height:1px;
}
.leftDiv {
	float:left;
}
.rightDiv {
	float:right;
	padding:8px 25px 0px 0px;
}
