body {
	font-family: 'Poppins', sans-serif;
	transition: all 0.5s;
	overflow-x: hidden;
}
p {
	margin-bottom: 0px;
	font-size: 15px;
	color: #212121;
	line-height: 25px;
}
a {
	text-decoration: none!important;
}
a.main-button {
	outline: none;
	cursor: pointer;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0px 25px;
	border: none;
	margin-left: 10px;
	background-color: #0f52ba;
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.5s;
}
a.main-button:hover {
	background-color: #00a4b9;
}
a.gradient-button {
	outline: none;
	cursor: pointer;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0px 25px;
	border: none;
	margin-left: 10px;
	background: rgb(114,2,187);
    background: linear-gradient(145deg, rgba(114,2,187,1) 0%, rgba(50,100,245,1) 100%);
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.5s;
}
a.gradient-button:hover {
	background: rgb(114,2,187);
    background: linear-gradient(145deg, rgba(50,100,245,1) 0%, rgba(114,2,187,1) 100%);
}
.section-heading {
	margin-bottom: 50px;
}
.section-heading span {
	color: #0f52ba;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	display: inline-block;
	margin-top: 0px;
}

/*----------------------------------------------------
scroll bar
------------------------------------------------------*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
    background-color: #F5F5F5;
    width: 6px;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;

}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #0f52ba;
}

/* ---------page scrool  ----------*/
.scrollup {
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 5;
    width: 43px;
    height: 43px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    background: #131212;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: none;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    cursor: pointer;
}

.scrollup.active {
    bottom: 0px;
    right: 0px;
}

.scrollup:hover {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    background: #0f52ba;
    color: #fff;
}

.section-heading h2 {
	color: #001541;
	font-size: 38px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}
.section-heading p {
	font-size: 16px;
    line-height: 26px;
}

.page-heading {
	/*background-image: url(../images/heading-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	padding: 110px 0px;*/
	position: relative;
}
.page-heading:after{
	background-color: rgb(15 82 186 / 53%);
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    pointer-events: none;
}
.header-text .col-md-12{
	position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-3%, -50%);
    padding: 0;
}

.page-heading h1 {
	color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    /* right: 0; */
    /* bottom: 0; */
    margin: 0 auto;
    z-index: 99;
    transform: translate(-50%, -50%);
    text-align: center;
}
.page-heading p {
	color: #fff;
	letter-spacing: 0.5px;
}
.page-heading p a {
	color: #fff;
	font-size: 15px;
}
.page-heading p a {
	margin-right: 5px;
}
.page-heading p span {
	color: #fff;
	opacity: 0.75;
	margin-left: 5px;
}
#preloader {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(114,2,187,1) 0%, rgba(50,100,245,1) 100%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



/* Header Style */
header {
	position: static;
	z-index: 9;
	width: 100%;
	background-color: transparent!important;
	/* border-bottom: 1px solid rgba(250,250,250,0.30); */
	/*height: 80px;*/
	height: auto;
	padding: 10px 0px;
	-webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}
header.background-header {
	background-color: #fff!important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
	position: fixed;
}
header.background-header .navbar-brand img{width: 40%;}
.background-header .navbar-brand h2 {
	color: #1e1e1e!important;
}
.background-header .navbar-nav a.nav-link {
	color: #1e1e1e!important;
}
.background-header .functional-buttons	ul li:first-child a {
	display: inline-block;
	background-color: transparent;
	border: 2px solid #0f52ba;
	text-transform: uppercase;
	font-size: 13px;
	color: #0f52ba;
	padding: 6px 20px;
	letter-spacing: 0.5px;
	transition: all 0.5s;
}
.background-header .functional-buttons	ul li:first-child a:hover {
	color: #fff;
	background-color: #0f52ba;
	border-color: #0f52ba;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: #0f52ba!important;
}
.navbar .navbar-brand {
	float: 	left;
	margin-top: 0px;
	outline: none;
	width: 20%;
}
.navbar .navbar-brand h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 800;
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.navbar .navbar-brand h2 em {
	font-style: normal;
	font-size: 16px;
}
#navbarResponsive {
	z-index: 999;
}
.navbar-collapse {
	text-align: center;
}
.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: uppercase;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #000;
    transition: all 0.5s;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	color: #0f52ba;
}
.navbar .navbar-toggler-icon {
	background-image: none;
}
.navbar .navbar-toggler {
	border-color: #fff;
	background-color: #fff;	
	height: 36px;
	outline: none;
	border-radius: 0px;
	position: absolute;
	right: 30px;
	top: 20px;
}
.navbar .navbar-toggler-icon:after {
	content: '\f0c9';
	color: #0f52ba;
	font-size: 18px;
	line-height: 26px;
	font-family: 'FontAwesome';
}
.functional-buttons	ul {
	margin: 0;
	padding: 0;
}
.functional-buttons	ul li {
	display: inline-block;
	margin-left: 10px;
}
.functional-buttons	ul li:first-child a {
	display: inline-block;
	background-color: transparent;
	border: 2px solid #fff;
	text-transform: uppercase;
	font-size: 13px;
	color: #fff;
	padding: 6px 20px;
	letter-spacing: 0.5px;
	transition: all 0.5s;
}
.functional-buttons	ul li:first-child a:hover {
	color: #0f52ba;
	background-color: #fff;
}
.functional-buttons	ul li:last-child a {
    display: inline-block;
    background-color: #0f52ba;
    border: 1px solid #0f52ba;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    padding: 6px 20px;
    letter-spacing: 1px;
    transition: all 0.5s;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgb(15 82 186 / 19%);
}
.functional-buttons	ul li:last-child a:hover {
	background-color: transparent;
	border-color: #0f52ba;
	color:#0f52ba;
}

/* Services Style */
.services-section {
	padding: 110px 0px;

}
.services-section .section-heading h2 {
	color: #001541;
}
.services-section .service-item {
	background-color: transparent;
	border-radius: 5px;
	padding: 0px;
	text-align: center;
	margin-bottom: 30px;
}
.services-page .service-item {
	margin-bottom: 48px;
}
.services-section .service-item img {
	color: #fff;
	background-color: #0f52ba;
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	font-size: 32px;
	padding: 20px;
}
.services-section .service-item h4 {
	margin-top: 30px;
    font-size: 24px;
    color: #212121;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}
.services-section .service-item p{
	font-size: 14px;
    color: #929292;
    text-align: center;
    line-height: 24px;
    margin-bottom: 20px;
}
.services-section .service-item .btn{
	display: inline-block;
    background-color: #fff;
    border: 1px solid #0f52ba;
    text-transform: uppercase;
    font-size: 15px;
    color: #0f52ba;
    padding: 8px 30px;
    letter-spacing: 1px;
    transition: all 0.5s;
    font-weight: 500;
    border-radius: 5px;
	font-family: 'Oswald', sans-serif;
}
.services-section .service-item .btn:hover, .services-section .service-item .btn:focus,
.services-section .service-item .btn:active{
	background-color: #0f52ba;
    border: 1px solid #0f52ba;
	color: #fff;
	box-shadow: none;
	outline: 0;
}

/* Testimonials Style */
.testimonials-section {
	background-color: #f7f7f7;
	padding: 100px 0px;
}
.testimonials-section .section-heading {
	text-align: center;
}
.testimonials-section .section-heading h2 {
	color: #1e1e1e;
}
.testimonial-item {
	text-align: center;
}
.testimonial-item i {
	width: 60px;
	height: 60px;
	display: inline-block;
	text-align: center;
	line-height: 60px;
	color: #fff;
	background: rgb(114,2,187);
    background: linear-gradient(145deg, rgba(114,2,187,1) 0%, rgba(50,100,245,1) 100%);
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 45px;
}
.testimonial-item p {
	font-size: 19px;
	font-weight: 300;
	font-style: italic;
	line-height: 35px;
	margin-bottom: 40px;
}
.testimonial-item h4 {
	font-size: 19px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 0px;
}
.testimonial-item span {
	display: inline-block;
	margin-top: 8px;
	font-size: 15px;
	color: #0f52ba;
}
.owl-testimonials .owl-dots .owl-dot {
  border-radius: 3px;
}
.owl-testimonials .owl-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 50px
}
.owl-testimonials .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: #7bd9e5;
}
.owl-testimonials .owl-dots .owl-dot:focus {
    outline: none
}
.owl-testimonials .owl-dots .owl-dot.active {
    background-color: #0f52ba;
}


/* Footer Style */
footer {
	padding: 80px 0px 30px;
	background-color: #001742;
}
footer .footer-heading h2 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 30px;
}
footer p {
	color: #fff;
	font-size: 14px;
}
footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
footer ul li {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.5px;
}
footer ul li:last-child {
	margin-bottom: 0px;
}
footer ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	transition: all 0.3s;
}
footer ul li a:hover {
	color: #fff;
	opacity: 0.75;
}

footer .sub-footer {
	text-align: center;
	margin-top: 80px;
	border-top: 1px solid rgba(250,250,250,0.30);
	padding-top: 30px;
}

footer .sub-footer a {
	color: #FFF;
}

/* About Us Page Style */
.about-us {
	padding: 110px 0px;
	/* background-color: #f7f7f7; */
}
.about-us .left-image {
	margin-right: 30px;
}
.about-us .right-content {
	margin-left: 30px;
}
.about-us .left-image img {
	max-width: 100%;
	overflow: hidden;
}
.about-us .section-heading h2 {
	color: #1e1e1e;
}
.about-us .section-heading {
	margin-bottom: 40px;
	border-bottom: 3px solid #eee;
	padding-bottom: 40px;
}
#tabs {
  margin-right: 0px;
}
#tabs ul {
  margin: 0;
  padding: 0;
}
#tabs ul li {
  margin-right: 40px;
  display: inline-block;
}
#tabs ul li:last-child {
  margin-right: 0px;
}
#tabs ul li a {
  font-size: 18px;
  color: #1e1e1e;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: all 0.3s;
}
#tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs ul .ui-tabs-active a {
  color: #0f52ba;
}
#tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.tabs-content {
  text-align: left;
  display: inline-block;
  transition: all 0.3s;
}
.tabs-content p {
  font-size: 14px;
  color: #7a7a7a;
  margin-top: 30px;
  margin-bottom: 0px;
}


/* Team Style */
.team-section {
	margin-top: 140px;
}
.team-section .section-heading {
	text-align: center;
}
.team-section .section-heading h2 {
	color: #1e1e1e;
}
.team-item:hover img {
	opacity: 0.75;
}
.team-item {
	cursor: pointer;
	margin-bottom: 30px;
}
.team-item img {
	width: 100%;
	overflow: hidden;
	transition: all 0.5s;
}
.team-item .down-content {
	background-color: #f7f7f7;
	text-align: center;
	padding: 30px;
}
.team-item h4 {
	font-size: 19px;
	font-weight: 700;
	color: #1e1e1e;
	letter-spacing: 0.5px;
	margin-bottom: 0px;
}
.team-item span {
	display: inline-block;
	margin-top: 8px;
	font-size: 15px;
	color: #0f52ba;
}




/* Contact Us Page Style */
.contact-us {
	padding: 70px 0;
    background-color: #efefef;
}
.contact-us .contact-form {
	margin-right: 30px;
}
.contact-us .right-content {
	margin-left: 30px;
}
.contact-us .section-heading h2 {
	color: #1e1e1e;
}
.contact-us .section-heading {
	margin-bottom: 40px;
	border-bottom: 3px solid #eee;
	padding-bottom: 40px;
}
.contact-form input,
.contact-form textarea, .contact-form select {
	letter-spacing: 0.5px;
	font-weight: 500;
    color: #6a6a6a;
    font-size: 14px;
    border: 1px solid #ddd;
    background-color: #fff;
    width: 100%;
    height: 46px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 15px;
}
.contact-form textarea {
  height: 120px;
  resize: none;
  padding: 20px;
}
.contact-form ::-webkit-input-placeholder { /* Edge */
  color: #6a6a6a;
}
.contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #6a6a6a;
}
.contact-form ::placeholder {
  color: #6a6a6a;
}
.contact-form button {
	outline: none;
	cursor: pointer;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0px 20px;
	border: none;
	background-color: #fff;
	border:1px solid #fff;
	color: #1153ba;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	transition: all 0.5s;
	border-radius: 5px;
}
.contact-form button:hover {
	background-color: transparent;
	border:1px solid #0f52ba;
	color:#0f52ba;
}
.contact-us .right-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.contact-us .right-content ul li {
	display: block;
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: 600;
	color: #1e1e1e;
	letter-spacing: 0.5px;
}
.contact-us .right-content ul li:last-child {
	margin-bottom: 0px;
}
.contact-us .right-content ul i {
	width: 60px;
	height: 60px;
	display: inline-block;
	text-align: center;
	line-height: 60px;
	background-color: #0f52ba;
	border-radius: 50%;
	color: #fff;
	margin-right: 15px;
	font-size: 24px;
}
#map {
    margin-bottom: -10px;
}
.contact-sec{
	padding: 60px 0px;

}
.conbox{
	background-color: rgb(15 82 186 / 65%);
    padding: 30px;
    color: #fff;
    border-radius: 0px;
}

/*----About Section---*/
.about-sec {
	display: block;
    width: 100%;
    background-color: #eff5ff;
    position: relative;
    padding: 110px 0;
}
.heading-tag{
	color: #0f52ba;
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 6px;
	font-weight: 700;
}
.about-sec .heading{
	color: #001541;
    font-size: 38px;
    line-height: 50px;
    text-align: left;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-sec p {
    font-size: 15px;
    line-height: 24px;
    color: #676767;
    text-align: left;
	margin-bottom: 10px;
}
.about-sec .btn{
	display: inline-block;
    background-color: #0f52ba;
    border: 1px solid #0f52ba;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    padding: 8px 30px;
    letter-spacing: 1px;
    transition: all 0.5s;
    font-weight: 500;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
}
.about-sec .btn:hover, .about-sec .btn:focus{
	background-color: transparent;
    border: 1px solid #0f52ba;
    color: #0f52ba;
    box-shadow: none;
    outline: 0;
}
.about-sec .about-img {position: relative;}
.about-sec .about-img img{
	height: 500px;
    width: 100%;
    position: relative;
    object-fit: cover;
    padding-right: 10%;
	z-index: 2;
	padding-left: 12%;
}

.about-sec .about-img::after {
	position: absolute;
    content: "";
    height: 475px;
    width: 200px;
    background-color: #0f52ba;
    bottom: -65px;
    left: 0;
    top: 75px;
    z-index: 1;
}

/*----banner section----*/
.home-slider {
    padding: 0;
    position: relative;
    background-color: #131212;
    position: relative;
}

.banner-sec {
    position: relative;
}

.banner-sec .banner-cont {
	text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    z-index: 2;
    right: 0;
    width: 38%;
    right: 0;
    margin: 0 auto;
}
.h-top{
	font-size: 40px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	font-family: 'Bebas Neue', cursive;
	letter-spacing: 1px;
}

.banner-cont .heading {
    font-size: 70px;
    color: #fff;
    text-transform: capitalize;
    line-height: 64px;
	letter-spacing: 3px;
    letter-spacing: 0px;
    margin-bottom: 20px;
	font-family: 'Bebas Neue', cursive;
}
.banner-cont .btn{
	display: inline-block;
    background-color: #0f52ba;
    border: 1px solid #0f52ba;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    padding: 6px 20px;
    letter-spacing: 1px;
    transition: all 0.5s;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgb(15 82 186 / 19%);
	margin-top: 10px;
}
.banner-cont .btn:hover, .banner-cont .btn:focus{
	background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.home-slider .owl-carousel .owl-item img {
    opacity: 1;
}

.homeslider.owl-carousel {
    padding: 0;
}

.homeslider.owl-carousel .owl-nav {
    width: 35px;
    position: absolute;
    left: 30px;
    top: 40%;
}

.homeslider.owl-carousel .owl-nav [class*="owl-"] {
    margin: 0;
    padding: 0;
    font-size: 35px;
    min-width: inherit;
    width: 35px;
    position: static;
    height: 32px;
    opacity: 1;
}

.homeslider.owl-carousel .owl-dots {
    position: absolute;
    left: 30px;
    width: 34px;
    top: 55%;
}

.homeslider.owl-carousel .owl-dots .owl-dot {
    margin: 1px 10px;
    vertical-align: top;
}

.homeslider .bannerimg {
    width: 100%;
    padding-top: 45%;
    position: relative;
    overflow: hidden;
}

.homeslider .bannerimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.home-carousel .owl-dots {
    bottom: 15%;
}
.home-slider .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0px 5px;
    background: rgb(255 255 255 / 45%);
    display: block;
    transition: opacity 200ms ease;
    border-radius: 30px;
    position: relative;
}

.home-slider .owl-dots {
    position: absolute;
    width: auto;
    bottom: auto;
    margin-top: 0 !important;
    top: auto;
    transform: translate(0%, -50%);
    width: 100%;
    bottom: 4%;
    margin: 0 auto;
    text-align: center;
}
.home-slider .owl-theme .owl-dots .owl-dot.active span {
    background-color: #fff;
}

.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel .owl-nav button.owl-next, 
.owl-carousel button.owl-dot{
	border: none;
	outline: 0;
}

.home-slider .owl-carousel .owl-nav [class*="owl-"] {
    position: absolute;
    top: 50%;
    left: 0;
    margin: -30px 0 0;
    padding: 0;
    width: 24px;
    height: 60px;
    line-height: 46px;
    text-align: center;
    font-size: 20px;
    color: #ccc;
    background: transparent;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    float: left;
    cursor: pointer;
    opacity: 1;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    border-radius: 50%;
}
.home-slider .owl-carousel .owl-nav [class*="owl-"] {
    margin: -30px 0 0;
    min-width: inherit;
    width: 45px;
    height: 45px;
    /*background: url(../images/sprite.png) no-repeat -300px -100px;*/
    opacity: 1;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 200;
}
.home-slider .owl-carousel .owl-nav .owl-prev {
    left: -70px;
    right: auto;
}
.home-slider .owl-carousel .owl-nav .owl-next {
    right: -70px;
    background-position: -400px -100px;
    left: auto;
}
.home-slider .owl-carousel .owl-nav .owl-next:hover, .home-slider .owl-carousel .owl-nav .owl-prev:hover{
    background-color: #0f52ba;
    border: 1px solid #0f52ba;
}
.home-slider .owl-carousel .owl-nav .owl-next {
    right: -70px;
    background-position: -400px -100px;
}
.home-slider .owl-carousel:hover .owl-nav .owl-prev {
    left: 120px;
}
.home-slider .owl-carousel:hover .owl-nav .owl-next {
    right: 120px;
}
.home-slider .slider-img:after{
background-color: rgb(0 0 0 / 23%);
z-index: 1;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
content: "";
}

/*---Gallery Section ----*/
.gallery-sec {
    display: block;
    width: 100%;
    position: relative;
    background-color: #fff;
	padding: 110px 0px;
}

.galbox {
    margin-top: 40px;
    margin-right: -5px;
    margin-left: -5px;
}

.galbox .col-12 {
    padding-right: 5px;
    padding-left: 5px;
}

.galbox img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    overflow: hidden;
    background-color: #e79aff;
}

.galboximg {
    margin-bottom: 10px;
    overflow: hidden;
}

.btntp {
    margin-top: 85px;
}


/* SOCIAL_ICON
---------------------------------*/
.social a {
    color: #fff;
    vertical-align: top;
    margin: 0 10px 0 0;
    position: relative;
    font-size: 0;
    text-align: center;
}

.social a:last-child {
    margin-right: 0;
}

.social a i {
	display: inline-block;
    vertical-align: top;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 15px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    border: 1px solid;
}

.social a:hover i {
    /*-webkit-transform: rotate(360deg); transform: rotate(360deg);*/
    opacity: 1;
}

.social a.sk_facebook i {
    background-color: #546380;
    border-color: #546380;
    color: #fff;
}

.social a.sk_twitter i {
    background-color: #546380;
    border-color: #546380;
    color: #fff;
}

.social a.sk_linkedin i {
    background-color: #546380;
    border-color: #546380;
    color: #fff;
}

.social a.sk_instagram i {
    background-color: #546380;
    border-color: #546380;
    color: #fff;
}

.social a.sk_youtube i {
    background-color: #546380;
    border-color: #546380;
    color: #fff;
}

.social a.sk_facebook i:hover {
    background-color: #3b5999;
    border-color: #3b5999;
    color: #fff;
}

.social a.sk_twitter i:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.social a.sk_linkedin i:hover {
    background-color: #006fa6;
    border-color: #006fa6;
    color: #fff;
}

.social a.sk_instagram i:hover {
    background-color: #8a3ab9;
    border-color: #8a3ab9;
    color: #fff;
}

.social a.sk_youtube i:hover {
    background-color: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.social a:hover i {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1;
}
.footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 5px 10px;
    position: relative;
    border-radius: 4px;
    text-align: left;
}
.footer-newsletter form input[type="email"] {
    border: 0;
    padding: 10px 8px;
    width: calc(100% - 100px);
}
.footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #0f52ba;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}
.footer-newsletter form input[type="submit"]:hover {
    background: #02225d;
}

.cmbox {
    height: 178px;
    width: 100%;
    display: flex;
    align-items: center;
    /*flex-wrap: wrap;*/
    justify-content: center;
    flex-direction: column;
    padding: 30px 20px;
    word-break: break-all;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    border-radius: 0px;
    margin-bottom: 30px;
    background-color: rgb(15 82 186 / 65%);
}
.cmbox img{
    height: 30px;
    width: 30px;
    object-fit: contain;
}
/*
.cmbox:hover {
    background-color: #0f52ba;
    color: #fff;
}

.cmbox:hover h2,
.cmbox:hover a,
.cmbox:hover p {
    color: #fff;
}*/

.cmbox img {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.cmbox h2 {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 15px 0;
    margin: 0;
}

.cmbox a,
.cmbox p {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.footer-heading img{
    width: 50%;
}
.ab-area h2 {
    color: #1e295b;
    font-size: 36px;
    line-height: 45px;
    font-weight: 500;
    margin: 0 0 20px;
}
.ab-area p {
    color: #000;
    font-size: 16px;
    margin: 0 0 15px;
}
.ab-area p:last-child{margin-bottom: 0;}
.navbar-brand img{width: 60%; max-height: inherit;}
.contact-sec {
    background: url(../../assets/images/banner-bg-s.jpg);
    background-position: top, 100%;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
.inner-img img{width: 100%;}


/* Responsive Style */
@media (max-width: 1200px) {
	.banner #search-section input.main-button {
		position: absolute;
		top: 75px;
		left: 50%;
		transform: translateX(-50%);
	}
	.banner #search-section input.searchText {
		float: none;
		width: 100%;
	}
	#search-section ul {
		text-align: center;
		margin-top: 80px;
	}
	#search-section ul li {
		display: inline-block;
		margin-bottom: 15px;
		margin-right: 15px;
	}
	#search-section ul li fieldset label {
		font-size: 12px;
		margin-left: 5px;
	}
	#search-section ul li fieldset label em {
		font-size: 13px;
	}
	.contact-us .right-content ul li {
		text-align: center;
		width: 100%;
	}
	.contact-us .right-content ul li i {
		margin-right: 15px;
		margin-left: 15px;
		margin-bottom: 15px;
	}
}
@media (max-width: 991px) {
	.navbar .navbar-brand {
		position: absolute;
		left: 30px;
		top: 10px;
	}
	.functional-buttons {
		position: absolute;
		left: 50%;
		top: 20px;
		transform: translate(-50%);
		margin-left: 15px;
	}
	.banner #search-section fieldset button {
		margin-top: 0px;
	}
	.banner #search-section fieldset input {
		width: 100%;
		min-width: 280px;
		margin-bottom: 30px;
	}
	.navbar .navbar-brand {
		width: auto;
	}
	.navbar:after {
		display: none;
	}
	#navbarResponsive {
		z-index: 99999;
		position: absolute;
		top: 73px;
		left: 0;
		width: 100%;
		text-align: center;
		background-color: #fff;
		box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
		border-top: 1px solid #0f52ba;
	}
	.navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #eee;
	}
	.navbar .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}
	.navbar .navbar-nav a.nav-link {
		padding: 15px 0px;
		color: #1e1e1e!important;
	}
	.navbar .navbar-nav .active>.nav-link {
		color: #0f52ba!important;
	}
	.about-us .left-image {
		margin-bottom: 30px;
		margin-right: 0px;
	}
	.about-us .right-content,
	.contact-us .right-content {
		margin-left: 0px;
	}
	.contact-us .contact-form {
		margin-right: 0px;
		margin-bottom: 45px;
	}
	.contact-us .right-content ul {
		margin-bottom: 30px;
	}
	.contact-us .right-content ul li {
		text-align: left;
		width: 100%;
	}
	.contact-us .right-content ul li i {
		margin-left: 0px;
	}
}

@media (max-width: 767px) {
	.pricing-item  {
		margin-bottom: 55px;
	}
	.footer-item {
		margin-bottom: 30px;
		text-align: center;
	}
	footer .sub-footer {
		margin-top: 20px;
	}
	footer{padding: 30px 0px;}
	.col-md-4.col-sm-6.col-xs-12.pr-5{
		padding-right: 0 !important;
	}
	.gallery-sec, .about-sec, .services-section, .contact-sec, .contact-us{padding: 30px 0px;}
	.w-75.m-auto, .w-50.m-auto{width: 100% !important;}
	p{font-size: 15px !important;}
	.section-heading {
		margin-bottom: 0;
	}
	.section-heading h2{font-size: 26px;}
	.about-sec .about-img img{height: auto; padding-left: 0; padding-right: 0; margin-bottom: 15px;}
	.about-sec .about-img::after{display: none;}
	.about-sec .heading{font-size: 26px; line-height: 38px;}
	.services-section .service-item h4{margin-top: 20px; font-size: 18px;}
	.service-item.mb-0{margin-top: 30px !important;}
	.functional-buttons ul{display: none;}
	.navbar .navbar-brand{position: static; padding: 0;}
	.banner-sec .banner-cont{display: none;}
	.owl-nav{display: none;}
	header{padding: 8px 0px; height: auto;}
	.cmbox{margin-bottom: 30px;}
	.contact-us .section-heading{padding-bottom: 0px;}
	.contact-form input, .contact-form textarea{margin-bottom: 15px;}
	.about-img.pr-3{padding-right: 0 !important;}
}


@media (max-width: 576px) {
	.functional-buttons	ul li:first-child a {
		padding: 6px 10px;
		letter-spacing: 0px;
	}
	.functional-buttons	ul li:last-child a {
		padding: 6px 10px;
		letter-spacing: 0px;
	}
	.functional-buttons {
		margin-left: 7.5%;
	}
	.functional-buttons	ul li {
		display: inline-block;
		margin-left: 3px;
	}
	.navbar .navbar-toggler {
		right: 20px;
	}
	.background-header .functional-buttons	ul li:first-child a {
		padding: 6px 10px;
		letter-spacing: 0px;
	}
	.navbar-brand img {
    width: 35%;
    max-height: inherit;
}
.navbar-brand{margin-left: 15px;}
.page-heading h1{font-size: 20px; text-align: center;}
}