/* =================================
------------------------------------
  Cryptocurrency - Landing Page
  Version: 1.0
 ------------------------------------ 
 ====================================*/



/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

@font-face {
	font-family: 'Futura';
	src: url("../fonts/Futura.woff");
}

html,
body {
	height: 100%;
	font-family: sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #20509e;
	margin: 0;
	font-weight: 500;
	/*font-family: "Futura", sans-serif;*/
	font-family: "Futura", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 35px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 14px;
}

p {
	font-size: 15.7px;
	color: #75849a;
	line-height: 1.6;
}

img {
	max-width: 100%;
	
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}
.blink-hard {
  animation: blinker 1s step-end infinite;
}
.blink-soft {
  animation: blinker 3.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/*---------------------
	Helper CSS
-----------------------*/

.spad {
	padding-top: 70px;
	padding-bottom: 60px;
}
.footer-spad {
    padding-top: 70px;
    padding-bottom: 10px;
	}


.section-title {
	margin-bottom: 60px;
}

.section-title h2 {
	margin-bottom: 20px;
}

.section-title p {
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.aln-center	{
	margin-left:auto;
	margin-right:auto;	
}
/*---------------------
	Commom elements
-----------------------*/

/* Buttons */

.site-btn {
	position: relative;
	display: inline-block;
	padding: 10px 35px;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	border-radius: 50px;
	font-family: "Futura", sans-serif;
	min-width: 100px;
	text-align: center;
	border: 2px solid #7ad4cc;
	cursor: pointer;
	color: #fff;
}

.site-btn:hover {
	color: #fff;
}

.site-btn.no-radius {
	border-radius: 2px;
}

.site-btn.sb-full-- {
	display: block;
	width: 100%;
	border-radius: 0;
}

.site-btn.sb-gradients {
	/* padding: 17px 32px; */
	border: none;
	color: #fff;
}

.site-btn.sb-gradients.sbg-line {
	color: #20509e;
	z-index: 1;
}

.site-btn.sb-gradients.sbg-line:after {
	position: absolute;
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background: #fff;
	top: 2px;
	left: 2px;
	z-index: -1;
	border-radius: 50px;
}

.site-btn.sb-gradients.sbg-line:hover {
	color: #20509e;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    background-color: transparent;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}
.table td, .table th {
    padding: 12px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
}


.gradient-bg,
.site-btn.sb-gradients,
.member-social a:hover,
.single-scheme-page .social-share a:hover,
.comment .comment-content .c-btn:hover,
.comment-form label {
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: -webkit-gradient(linear, left top, right top, from(#3e2bce), color-stop(100%, #2dd3aa), color-stop(100%, #2dd3aa), to(#2dd3aa));
	background: -o-linear-gradient(left, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e2bce', endColorstr='#2dd3aa', GradientType=1);
	/* IE6-9 */
}

/* Image Popup */

.img-popup-warp .mfp-content,
.img-popup-warp.mfp-ready.mfp-removing .mfp-content {
	opacity: 0;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		        transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
	Header section
-----------------------*/
.text-heading span {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 28px;
    font-family: "Futura", sans-serif;
    font-size: 30px;
    text-align: left;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
	color: #20509e;
    line-height: 12.8px;
    letter-spacing: normal;
	vertical-align:middle
}
.text-heading-inner span {
    position: relative;
    z-index: 1;
    width: 200px;
    height: 28px;
    font-family: "Futura", sans-serif;
    font-size: 25px;
    text-align: left;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
	color: #20509e;
    line-height: 12.8px;
    letter-spacing: normal;
	vertical-align:middle
}
.header-section {
	position: absolute;
    width: 100%;
    top: 0;
    padding: 20px 20px 0;
    z-index: 99;
}


.header-section .site-btn {
	float: right;
	margin-left: 60px;
}

.header-section .responsive-bar,
.header-section .user {
	display: none;
}

.main-menu {
	float: right;
}

.menu-list {
	list-style: none;
}

.menu-list li {
	display: inline;
}

.menu-list li a {
	display: inline-block;
	font-family: "Futura", sans-serif;
	font-size: 16px;
	padding: 10px 5px;
	margin-right: 30px;
	color: #fff;
}

<!----- For Sub Menu. Imported From Third Party By TM------->
#menu {
	float:right;
	display:inline
	/* background: #343434; */
	color: #eee;
	height: 35px;
	/*border-bottom: 4px solid #eeeded */
}

#menu ul,
#menu li {
  margin: 0 0;
  padding: 0 0;
  list-style: none
}

#menu ul {
  height: 35px
}

#menu li {
  float: left;
  display: inline;
  position: relative;
  font: 12px;
  font-family: Futura, sans-serif;
  /* text-shadow: 0 -1px 0 #000; 
  border-right: 1px solid #444;
  border-left: 1px solid #111;*/
  text-transform: uppercase
}

#menu li:first-child {
  border-left: none
}

#menu a {
  display: inline;
  font-family: Futura, sans-serif;
  font-size: 16px;
  line-height: 35px;
  padding: 10px 5px;
  margin-right: 20px;
  text-decoration: none;
  color: #fff;
}

#menu li:hover > a,
#menu li a:hover {
  /*background: #20509ea6;*/
  color: #ffffff;
  font-size: 20px;
}

#menu input {
  display: none;
  margin: 0 0;
  padding: 0 0;
  width: 80px;
  height: 35px;
  opacity: 0;
  cursor: pointer
}

#menu label {
  font: bold 30px Arial;
  display: none;
  width: 35px;
  height: 36px;
  line-height: 36px;
  text-align: center
}

#menu label span {
  font-size: 12px;
  position: absolute;
  left: 35px
}

#menu ul.menus {
  height: auto;
  width: 180px;
  /* background: #0765c9; */
  position: absolute;
  z-index: 99;
  display: none;
  border: 0;
}

#menu ul.menus li {
  display: block;
  width: 100%;
  font: 12px Arial;
  text-transform: none;
  background: #20509ea6;
}

#menu ul.menus a {
    display: inline;
    font-family: Futura, sans-serif;
    font-size: 16px;
    line-height: 35px;
    padding: 10px 5px;
    margin-right: 30px;
    text-decoration: none;
    color: #ffffff;
}

#menu li:hover ul.menus {
  display: block
}

#menu a.prett {
  padding: 0 27px 0 14px
}

#menu a.prett::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 6px 5px;
  border-style: solid;
  border-color: #eee transparent transparent transparent;
  position: absolute;
  top: 15px;
  right: 9px
}

#menu ul.menus a:hover {
  /*background: #ffffff59; */
  color: #2dd1a9;
  font-size: 17px;
}

#menu ul.menus .submenu {
  display: none;
  position: absolute;
  left: 180px;
  /*background: #111;*/
  top: 0;
  width: 180px;
}

#menu ul.menus .submenu li {
  background: #20509ea6;
}

#menu ul.menus .has-submenu:hover .submenu {
  display: block;
}

.inauguration-section {
	height: 100%;
	padding-top: 100px;
	display: block;
	background-image: url("../img/inauguration.jpg");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}
.inauguration-div {
	position: absolute;
    bottom: 20px;
	margin-left: 24%;
}


.inauguration-btn {
	height: 60px;
	width: 100%;
	padding-top: 10px;
}
/*---------------------
	Hero Section
-----------------------*/

.hero-section {
	height: 650px;
	padding-top: 100px;
	display: block;
	background-image: url("../img/hero-bg.png");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.hero-section .hero-logo-image {
    width: 620px;
    max-width: 100%;
    /*position: relative;
  	padding-top: 40px */
	margin-left: -30px;
}

.hero-section .bank-image {
	width: 620px;
	max-width: 100%;
	/*position: relative; */
	left: 20px;
}

.hero-text {
	padding-top: 60px;
	
}

.hero-text h2 {
	font-size: 70px;
	margin-bottom: 35px;
}

.hero-text h2 span {
	color: #16d0c5;
}

/*.hero-text h3 {
	color: #ffffff;
    margin: 0;
    font-size: 50px;
    font-weight: 500;
    font-family: "Futura", sans-serif;
    margin-right: -70px;
}
*/

.hero-text h4 {
	color: #75849a;
	font-size: 22px;
}

.hero-text-first {
	color: #ffffff;
    margin: 0;
    font-size: 50px;
    font-weight: 500;
    font-family: "Futura", sans-serif;
    margin-right: -70px;
	padding-left:50px;
	margin-top:50px;
	margin-bottom:12px;
}

.hero-text-second {
	color: #ffffff;
    margin: 0;
    font-size: 50px;
    font-weight: 500;
    font-family: "Futura", sans-serif;
    margin-right: -70px;
	padding-left:120px; 
	margin-bottom:12px;
}
.hero-text-third {
	color: #ffffff;
    margin: 0;
    font-size: 50px;
    font-weight: 500;
    font-family: "Futura", sans-serif;
    margin-right: -70px;
	padding-left:210px; 
	margin-bottom:12px;
}

.hero-flex {
		display:felx;
		flex-direction: row;
}
	
.hero-subscribe-from {
	margin-top: 50px;
	display: block;
}

.hero-subscribe-from input {
	width: 315px;
	border: 1px solid #ebebeb;
	background: #fff;
	height: 48px;
	padding: 0 25px;
	border-radius: 50px;
	font-family: "Futura", sans-serif;
	font-size: 16px;
	margin-right: 8px;
	margin-bottom: 20px;
}

/*---------------------
  SlideShow Section
-----------------------*/
/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: block;
}
.mySlides img {
	vertical-align: middle;
	border-style: none;
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 3%;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.slide-text {
	color: #f2f2f2;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active-slide, .dot:hover {
	background-color: #717171;
}

/* Fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
	opacity: 100%;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}


/*---------------------
  About Section
-----------------------*/

.about-section .container {
	position: relative;
}

.about-text h2 {
	font-size: 35px;
	/*margin-bottom: 25px;*/
	color:#1e6855;
	padding-left:20px;
}

.about-text h3 {
	font-size: 25px;
	text-align:left;
	padding: 20px;
	color:#df5f11;
} 

.about-text h4 {
	font-size: 22px;
	text-align: center;
	padding: 20px;
	color:#df5f11;
} 

.about-text h5 {
	font-size: 18px;
	font-family: "Futura", sans-serif;
	/* margin-bottom: 20px; */
	padding: 20px 0 5px 20px;
}
.about-text p {
	font-size: 15px;
	text-align:justify;
	color: #75849a;
    line-height: 1.6;
	padding: 20px 20px 20px 20px;
}

.about-img {
	position: absolute;
	top: 0;
	/* left: -50px; */
	width: 550px;
	border: 1px solid #8d8585; 
	border-radius: 4%;
	box-shadow: 5px 7px 8px #8d8585;
}

/*----------------------
	About Inner
----------------------*/
.about-inner-section .container {
	position: relative;
}

.about-inner-text h2 {
	font-size: 35px;
	/*margin-bottom: 25px;*/
	color:#1e6855;
	padding-left:20px;
}

.about-inner-text h3 {
	font-size: 15px;
	text-align:left;
	padding: 20px;
	color:#df5f11;
} 

.about-inner-text h4 {
	font-size: 25px;
	text-align:left;
	padding: 20px;
	color:#df5f11;
} 

.about-inner-text h5 {
	font-family: "Futura", sans-serif;
	/* margin-bottom: 20px; */
	padding: 20px;
	color: #ee8035;
	font-weight: bold;
}

.about-inner-text p {
	font-size: 15px;
	text-align:justify;
	color: #75849a;
    line-height: 1.6;
	padding: 0px 20px 10px 20px;
}
.about-inner-text ul {
	/*font-size: 15px;
	text-align:justify;
	padding: 0px 20px 10px 20px;*/
	color: #75849a;
    line-height: 1.6;
	padding-left: 70px;
    padding-bottom: 15px;
}
.about-inner-text li {
	font-size: 15px;
	text-align:justify;
	color: #75849a;
    line-height: 1.6;
	/*padding: 0px 20px 10px 20px;*/
	padding-left: 15px;
    padding-bottom: 10px;
}
.abt-table {
    /*width: 100%; */
    max-width: 100%;
	margin-left: 27px;
    margin-bottom: 16px;
    background-color: transparent;
	border-color: #918b83;
}
.abt-tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}
.abt-table td, .abt-table th {
    padding: 0 12px 12px 12px;
    vertical-align: top;
    /*border-top: 1px solid #dee2e6; */
    color: #75849a;
}
.abt-table-bordered td, .abt-table-bordered th {
    border: 1px solid #dee2e6;
}
/*---------------------
  Feature Section
-----------------------*/


.features-section .container {
	margin-bottom: -25px;
}

.feature {
	margin-bottom: 45px;
}

.feature i {
	font-size: 48px;
	float: left;
	padding-top: 10px;
}

.feature .feature-content {
	padding-left: 70px;
}

.feature .feature-content h4 {
	margin-bottom: 15px;
}

.feature .feature-content p {
	font-size: 15px;
	text-align:justify;
}

.feature .readmore {
	text-decoration: underline;
	line-height: 1.2;
}

.feature-home {
	 
	 /*background-color: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%); */
	 background-image: url(../img/features.png);
	 background-size: cover;

}

/*---------------------
	Process Section
-----------------------*/

.process:last-child .process-step:after {
	display: none;
}

.process-step {
	position: relative;
	text-align: center;
	padding: 35px;
	margin-top: 30px;
	-webkit-box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
	        box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
}

.process-step .process-icon {
	height: 55px;
	margin-bottom: 30px;
	padding-top: 5px;
}

.process-step h4 {
	margin-bottom: 15px;
}

.process-step p {
	margin-bottom: 0;
}

.process-step:after {
	position: absolute;
	content: '';
	width: 275px;
	height: 56px;
	top: -40px;
	right: -40%;
	background: url("../img/process-line.png") no-repeat scroll 0 0/cover;
}

/*---------------------
	Fact Section
-----------------------*/

.fact-section {
	padding: 50px 0;
}

.fact {
	display: inline-block;
	position: relative;
}

.fact h2 {
	float: left;
	color: #16d0c5;
	font-size: 60px;
	margin-right: 20px;
}

.fact p {
	float: left;
	padding-top: 14px;
	line-height: 1.4;
	color: #fff;
	text-transform: uppercase;
}

.fact i {
	position: absolute;
	right: -20px;
	top: -10px;
	font-size: 90px;
	color: #fff;
	z-index: 0;
	opacity: 0.1;
}

/*---------------------
	Team Section
-----------------------*/

.team-section {
	background: #f3f7f9;
	overflow: hidden;
}

.team-members {
	margin: 0 -10px;
}

.member {
	background: #fff;
	width: calc(25% - 25px);
	display: inline-block;
	margin: 0 10px;
	text-align: center;
	padding: 50px 10px;
	-webkit-box-shadow: 1px 1px 1px rgba(33, 54, 61, 0.15);
	        box-shadow: 1px 1px 1px rgba(33, 54, 61, 0.15);
	border-radius: 10px;
	position: relative;
}

.member h2 {
	font-size: 22px;
	margin-bottom: 5px;
}

.member h3 {
	font-size: 14px;
	color: #75849a;
	display: block;
	margin-bottom: 10px;
	text-align:justify;
	font-family: "Futura", sans-serif;
}

.member span {
	font-size: 14px;
	color: #75849a;
	display: block;
}

.member .member-text {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 1;
}

.member:hover {
	-webkit-box-shadow: 1px 14px 43px rgba(33, 54, 61, 0.15);
	        box-shadow: 1px 14px 43px rgba(33, 54, 61, 0.15);
}

.member:hover .member-info {
	opacity: 1;
}

.member:hover .member-text {
	opacity: 0;
}

.member-img {
	width: 230px;
	height: 230px;
	display: inline-block;
	border-radius: 50%;
	margin-bottom: 25px;
}

.member-social {
	padding-top: 25px;
	background: #fff;
	position: relative;
	z-index: 2;
}

.member-social a {
	width: 50px;
	height: 50px;
	display: inline-block;
	border-radius: 50%;
	background: #cbd3df;
	color: #fff;
	padding-top: 13px;
	margin: 0 8px;
}

.member-meta {
	padding-left: 85px;
}

.member-info {
	padding: 50px 60px 10px;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	text-align: left;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	height: 380px;
	overflow-y: auto;
}

.member-info p {
	display: block;
	padding-top: 25px;
	margin-bottom: 0;
}

.member-info ul {
	color: #75849a;
	margin-left: 15px;
    /*padding: 10px 10px 0 10px;*/
}

.member-info li {
	font-size: 15px;
	text-align:justify;
	color: #75849a;
	/*list-style:auto;
    padding-left: 15px;
    padding-bottom: 10px; */
}

.member-img.mf {
	width: 60px;
	height: 60px;
	opacity: 1;
	float: left;
	margin-bottom: 0;
}

/*---------------------
  Review Section
-----------------------*/

.review-meta-slider {
	position: relative;
	width: 300px;
}

.author-meta {
	padding: 50px 0 70px;
	position: relative;
	text-align: center;
}

.author-meta:last-child {
	margin-right: 0;
}

.author-avatar {
	width: 80px;
	height: 80px;
	border: 6px solid #fff;
	border-radius: 50%;
	-webkit-box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
	display: inline-block;
}

.author-avatar h4 {
	font-size: 22px;
}

.author-avatar p {
	font-size: 14px;
}

.author-name {
	position: absolute;
	width: 280px;
	left: -50%;
	bottom: -10px;
	margin-left: -50px;
	text-align: center;
	visibility: hidden;
}

.center .author-meta {
	top: -6px;
}

.center .author-name {
	visibility: visible;
}

.center .author-avatar {
	width: 100px;
	height: 100px;
}

.review-area {
    height: auto;
    background-color: #e57c3538;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    /* border: solid 1px #b9b0b0; */
}

.review-text p {
	color: #75849a;
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 15px;
}

.review-text li {
	color: #75849a;
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 15px;
}

.review-text a {
    color: #67464c;
    text-decoration: none;
    background-color: transparent;
}
.enews a {
    color: #75849a;
    text-decoration: none;
    background-color: transparent;
}
.review-text-slider .owl-nav {
	padding-top: 15px;
}

.review-text-slider .owl-prev,
.review-text-slider .owl-next {
	width: 50px;
	height: 50px;
	display: inline-block;
	background: #cbd3df;
	color: #fff;
	font-size: 24px;
	text-align: center;
	margin-right: 10px;
	border-radius: 50%;
	padding-top: 8px;
}

.pull-3 {
	/*right: 66.666667%;*/
	right: 57%;
	/*vertical-align:middle;*/
}

.push-8 {
	/*left: 33.333333%;*/
	left: 45%;
	padding-top:25px;
}
.enews a {
    color: #75849a;
    text-decoration: none;
    background-color: transparent;
}
/*---------------------
	Newsletter Section
-----------------------*/

.newsletter-section-top {
	padding: 15px 0;
}
.newsletter-section-bottom {
	padding: 15px 0;
}
.newsletter-text h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.newsletter-text p {
	margin-bottom: 0;
}

.newsletter-form {
	position: relative;
	margin-top: 20px;
	padding-left: 40px;
}

.newsletter-form input {
	width: 100%;
	font-size: 16px;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	padding-right: 160px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.newsletter-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border: none;
	border-radius: 0px 50px 50px 0px;
	min-width: 140px;
	background: #fff;
	color: #20509e;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.newsletter-form ::-webkit-input-placeholder {
	color: #fff;
}

.newsletter-form :-ms-input-placeholder {
	color: #fff;
}

.newsletter-form ::-ms-input-placeholder {
	color: #fff;
}

.newsletter-form ::placeholder {
	color: #fff;
}

.review-text p {
    font-size: 15.7px;
    color: #75849a;
    line-height: 1.6;
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  font-family: 'Montserrat', monospace;
  line-height: 16px
  text-transform: uppercase;
}
.text-scrolling {
  max-width: 100% !important;
}
.scrolling-row {
  overflow: hidden;
  height: 45px; 
  position: relative;
}

.scrolling-row h2 {
  position: absolute;
  min-width: 100%;
  padding-top: 5px;
  font-size: 35px;
  white-space: nowrap;  
  /*display: flex;
  flex-wrap: nowrap;*/
  gap: 10px;
  align-items: center;
}


.scrolling-row h2 span, 
.scrolling-row h2:after {
  position: relative;
  display: inline-block;
  font-size: 48px;
  white-space: nowrap;
  top:0;
}

.scrolling-row-1 h2 {
  animation: scrolling-type-1 10s infinite linear;
}

.scrolling-row-2 h2 {
  animation: scrolling-type-2 30s infinite linear;
}

@keyframes scrolling-type-1 {
  0% {
    transform: translate(0, 0%);
    opacity: 0%;
  }
  10%{
    opacity:100%;
  }
  90%{
    opacity:100%;
  }
  100% {
    transform: translate(-100%, 0%);
    opacity: 0%;
  }
}

@keyframes scrolling-type-2 {
  0% {
    transform: translate(50%, 0%);
    opacity: 0%;
  }
  10%{
    opacity:100%;
  }
  90%{
    opacity:100%;
  }
  100% {
    transform: translate(-100%, 0%);
    opacity: 0%;
  }
}

.wrapper-newsbar-top {
  max-width: 100%;
  overflow: hidden;
  height: 30px;
}
.wrapper-newsbar-bottom {
  max-width: 100%;
  overflow: hidden;
  height: 40px;
}
.marquee-top {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 15s linear infinite;
}
.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.marquee h2 {
  display: inline-block;
  display: inline-block;
  font-size: 30px;
  line-height: 1.5;
}
.marquee p {
  display: inline-block;
  display: inline-block;
  font-size: 25px;
  line-height: 1.6;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/*---------------------
  scheme Section
-----------------------*/

.scheme-section {
	background: #f5f5f5;
}

.scheme-thumb {
	margin-bottom: 0;
}

.scheme-text {
	background: #fff;
	padding: 30px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
}

.scheme-img {
	border: 1px solid #8d8585; 
	border-radius: 4%;
	box-shadow: 4px 4px 6px #8d8585;
}

.scheme-text .post-date {
	font-size: 14px;
	font-family: "Futura", sans-serif;
	color: #16d0c5;
	text-transform: uppercase;
	margin-bottom: 15px;
	display: block;
	letter-spacing: 2px;
}

.scheme-text .scheme-title {
	font-size: 22px;
	margin-bottom: 20px;
}

.scheme-text .scheme-title a {
	color: #20509e;
}

.scheme-text .post-meta a {
	font-size: 13px;
	color: #75849a;
	margin-right: 25px;
}

.scheme-text .post-meta a:last-child {
	margin-right: 0;
}

.scheme-text .post-meta a span {
	color: #cbd3df;
}

.scheme-text .post-meta a i {
	color: #16d0c5;
}

.post-loadmore {
	width: 100%;
	border-radius: 0px;
}

.post-loadmore.site-btn.sb-gradients.sbg-line:after {
	border-radius: 0px;
}

/*---------------------
  EV Section
-----------------------*/

.ev-section {
	background: #f3f7f9;
}

.ev-thumb {
	margin-bottom: 0;
}

.ev-thumb img {
	border: 1px solid #998d8d;
}

.ev-text {
	background: #fff;
	padding: 30px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
}

.ev-text .post-date {
	font-size: 14px;
	font-family: "Futura", sans-serif;
	color: #16d0c5;
	/*text-transform: uppercase; */
	margin-bottom: 15px;
	/* display: block; */
	letter-spacing: 2px;
}

.ev-text .ev-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	/*font-family: 'shruti'; */
}

.bi-feature span {
	color:#FF9933;
}

.bi-feature p {
	font-family: 'shruti';
	text-align: justify;
}

.ev-text .ev-title a {
	color: #20509e;
}

.ev-text .post-meta a {
	font-size: 13px;
	color: #75849a;
	margin-right: 25px;
}

.ev-text .post-meta a:last-child {
	margin-right: 0;
}

.ev-text .post-meta a span {
	color: #cbd3df;
}

.ev-text .post-meta a i {
	color: #16d0c5;
}

.post-loadmore {
	width: 100%;
	border-radius: 0px;
}

.post-loadmore.site-btn.sb-gradients.sbg-line:after {
	border-radius: 0px;
}
.ev-page .ev-item {
	margin-bottom: 30px;
}

.ev-page .readmore {
	color: #20509e;
}

.ev-page .readmore i {
	color: #16d0c5;
}

.check-dropdown{
     font-family:Verdana;
     Font-Size:X-Small;
     Width:57px;
}

.bi-feature .post-meta {
	margin-bottom: 30px;
}

.bi-feature .blog-text .ev-title {
	font-size: 36px;
}


/*---------------------
	Footer Section
-----------------------*/

.footer-widget span {
	color: #acb9cc;
}

.footer-widget p {
	margin-bottom: 20px;
}

.footer-widget .widget-title {
	margin-bottom: 30px;
	font-size: 20px;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul a {
	font-size: 15px;
	color: #75849a;
	display: block;
	margin-bottom: 10px;
}

.footer-widget ul li:last-child a {
	margin-bottom: 0;
}

.footer-widget li {
	font-size: 15px;
	color: #75849a;
	display: block;
	margin-bottom: 10px;
}

.social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	margin-right: 10px;
	text-align: center;
	padding-top: 7px;
	font-size: 18px;
}

.social a:last-child {
	margin-right: 0;
}

.social .facebook {
	background: #4b6cd0;
}

.social .google {
	background: #f03b3b;
}

.social .instagram {
	background: #bb8950;
}

.social .twitter {
	background: #49a7f3;
}

.footer-bottom {
	border-top: 1px solid #ebebeb;
	padding: 30px 0;
}

.footer-nav {
	list-style: none;
}

.footer-nav li {
	display: inline-block;
}

.footer-nav li a {
	color: #75849a;
	font-size: 14px;
	margin-left: 20px;
	font-size: 30px;
}

/*---------------------
	Other Pages
----------------------
======================*/

.page-info-section {
	height: 220px;
	background-image: url("../img/page-info-bg1.png");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	display: block;
	padding-top: 100px;
}

.page-info-section h2 {
	font-size: 48px;
}

.page-info .pagename {
	padding-top:35px;
	color: #20509e;
}
.page-info .bod {
    padding-left: revert-layer;
	margin-left: -55px;
}
.bod h2 {
	font-size:45px;
}
.page-info .pageslok {
	/*padding-top:35px; */
	color: #FFFFFF;
}
.page-info .pageslokbod {
    /* padding-top: 35px; */
    color: #FFFFFF;
    margin-left: 55px;
}
/*.page-info .pageslok h3 {
	text-align:right;
	margin-bottom:12px;
	color:#FFFFFF;
}*/
.page-info .pageslok h3 {
    text-align: right;
    margin-bottom: 12px;
    color: #FFFFFF;
    margin-right: -50px;
    padding-top: 50px;
}
.page-info .pageslokbod h3 {
    text-align: right;
    margin-bottom: 12px;
    color: #FFFFFF;
    margin-right: -50px;
    padding-top: 50px;
}
.page-info .aboutpageslok h3 {
    text-align: right;
    margin-bottom: 12px;
    color: #FFFFFF;
    margin-right: -50px;
    padding-top: 100px;
}
.site-beradcamb {
	padding-top: 10px;
}

.site-beradcamb a {
	color: #20509e;
	font-size: 16px;
}

.site-beradcamb span {
	color: #acb9cc;
	font-size: 16px;
}

.site-beradcamb i {
	margin: 0 3px;
}

/*---------------------
  scheme page
-----------------------*/

.scheme-page .scheme-item {
	margin-bottom: 30px;
}

.scheme-page .readmore {
	color: #20509e;
}

.scheme-page .readmore i {
	color: #16d0c5;
}

.bi-feature .post-meta {
	margin-bottom: 30px;
}

.bi-feature .scheme-text .scheme-title {
	font-size: 36px;
}

.widget-area {
	padding: 30px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	margin-bottom: 32px;
}

.widget-area .widget-title {
	margin-bottom: 25px;
	font-weight: bold;
}

.widget-area .widget {
	margin-bottom: 20px;
}

.widget-area .widget .widget-title {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ebebeb;
	line-height: 24px;
}

.widget-area .widget ul {
	list-style: auto;
}

.widget-area .widget ul li {
	display: list-item;
    font-size: 16px;
    color: #20509e;
    margin-bottom: 20px;
    list-style: initial;
    margin-left: 10px;
    padding-left: 5px;
   /* font-family: 'shruti'; */
}

.widget-area .widget ul a {
	display: inline-block;
	font-size: 16px;
	color: #20509e;
	margin-bottom: 20px;
}

.widget-area .widget ul a:hover {
	color: #16d0c5;
}

.widget-area .widget .popular-posts span {
	color: #16d0c5;
	font-size: 12px;
	display: block;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.widget-area .widget .popular-posts h5 a {
	font-size: 18px;
	color: #20509e;
}

.widget-area .widget .popular-posts h5 a:hover {
	color: #20509e;
}

.widget-area .widget .twitter-widget li {
	margin-bottom: 20px;
}

.widget-area .widget .twitter-widget span {
	color: #16d0c5;
	font-size: 12px;
	display: block;
	text-transform: uppercase;
}

.widget-area .widget .twitter-widget h5 {
	font-size: 18px;
	color: #20509e;
	margin-bottom: 5px;
}

.widget-area .widget .twitter-widget a {
	font-size: 18px;
	color: #1f6ae5;
	display: block;
	margin-bottom: 5px;
}

.widget-area .widget .twitter-widget a:hover {
	color: #1f6ae5;
}

.widget-area .widget-subscribe-from {
	padding-top: 10px;
	display: block;
}

.widget-area .widget-subscribe-from input {
	margin-right: 0;
	margin-bottom: 20px;
	width: 100%;
	background: #f3f7f9;
	border: 1px solid #ebebeb;
	padding: 15px 20px;
	font-size: 14px;
}

.div-border { 
	width: 400px; 
	border: 3px solid transparent; 
	border-image: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%); 
	border-image-slice: 1; 
	padding: 0 25px 25px 25px; 
	border-radius: 50px;
} 

.steps-headbg {
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
    border-bottom-left-radius: 60%;
    border-bottom-right-radius: 60%;
    /* margin-left: -18px;*/

}

.stp-box {
    padding: 30px 15px;
    margin-bottom: 32px;
}

.elg-box {
    padding: 30px 15px;
    margin-bottom: 32px;
}

.ev-box {
	padding: 30px 15px;
	/*height: 150px;*/
	border: solid 1px #e7e7e7;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	margin-bottom: 32px;
}

.ev-title h4 {
	/*padding-bottom: 30px;
    margin-bottom: 30px;*/
    border-bottom: 1px solid #ebebeb;
    line-height: 24px;
	text-align: center;
    padding: 10px;
	font-weight: bold;
}

.steps-text {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
    box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
}

.steps-area {
	padding: 20px 15px;
	height: 200px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	margin-bottom: 20px;
}
.steps-area .steps-title {
	margin-bottom: 15px;
	font-weight: bold;
}

.steps-area .steps h3 {
	font-size: 18px;
	font-weight: bold;
	color: #20509e;
	margin-bottom: 8px;
	padding: 10px 0 0 0;
	text-align: right;
}

.steps-area .steps h4 {
	margin-bottom: 15px;
    /*padding-bottom: 10px;*/
	/*padding-left: 20px;*/
	font-size: 18px;
	font-weight: bold;
	color: #20509e;
	text-align: right;
	/*border-bottom: 1px solid #ebebeb;
    line-height: 24px;*/
}

.steps-area .steps h5 {
	font-size: 14px;
	color: #20509e;
	text-align: justify;
	/*padding-right: 5px;*/
	    border-top: 1px solid #ebebeb;
    line-height: 24px;
    padding-top: 10px;
}

.steps-area img {
	display: block;
    margin-left: auto;
    margin-right: auto;
	width: 60px;
    height: 60px;
	margin-left: 0;
}

.srt-steps-text {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
    box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
}

.srt-steps-area {
	padding: 20px 15px;
	height: 160px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	margin-bottom: 20px;
}
.srt-steps-area .srt-steps-title {
	margin-bottom: 15px;
	font-weight: bold;
}

.srt-steps-area .srt-steps h3 {
	font-size: 30px;
	font-weight: bold;
	color: #FF9933;
	margin-bottom: 8px;
	padding: 10px 0 0 0;
	text-align: right;
}

.srt-steps-area .srt-steps h4 {
	font-size: 18px;
	font-weight: bold;
	color: #20509e;
	text-align: right;margin-bottom: 15px;
    /*padding-bottom: 10px;*/
	/*padding-left: 20px;*/
	/*border-bottom: 1px solid #ebebeb;
    line-height: 24px;*/
}

.srt-steps-area .srt-steps h5 {
	font-size: 15px;
	color: #20509e;
	text-align: center;
	/*padding-right: 5px;*/
	border-top: 1px solid #ebebeb;
    line-height: 24px;
    padding-top: 10px;
}

.srt-steps-area img {
	display: block;
    margin-left: auto;
    margin-right: auto;
	width: 60px;
    height: 60px;
	margin-left: 0;
}

.srt-steps-title .fa {
    font-size: 30px;
    color: #16d0c5;
    font-weight: bold;
	margin-bottom: 8px;
    padding: 10px 0 0 0;
    text-align: right;
}

.el-text {
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
    box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.1);
}

.el-area {
	padding: 30px 15px;
	height: 120px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	/*margin-bottom: 32px;*/
}
.el-area .el-title {
	margin-bottom: 25px;
	font-weight: bold;
}
.el-area .el h4 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #20509e;
}

.el-area .el h5 {
	font-size: 14px;
	color: #20509e;
	text-align: justify;
}

.el-area img {
	width: 60px;
    height: 60px;
}

.el {
	padding: 0 10px 0 20px;
}



.collapsible {
	/*background-color: #fea116bf;*/
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	cursor: pointer;
	padding: 18px;
	width: 95%;
	/*border: none; */
	text-align: left;
	outline: none;
	font-size: 18px;
	color: #fff;
	/** Additionally Added By TM **/
	display: inline-block;
    font-weight: 400;
    line-height: 1.5;
	vertical-align: middle;
	user-select: none;
	border: 1px solid #c1bcbccf;
    padding: 10px 10px 10px 20px !important;
    border-radius: 10px;
}

.collapsible:hover {
    color: white;
	font-size: 20px;
}
.evactive, .collapsible:hover {
	background-color: #fea116;
}

.collapsible:after {
	content: '\002B';
	color: black;
	font-size: 16px;
	font-weight: bold;
	float: right;
	margin-left: 5px;
	margin-right: 5px;
}
.collapsible:hover:after {
	/*content: '\002B'; */
	color: white;
	font-weight: bold;
	float: right;
	margin-left: 5px;
	margin-right: 8px;
	font-size: 20px;
}


.evactive:after {
	content: "\2212";
}

.content {
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	/* background-color: #fea1164a; */
}

.content p {
	margin-top:1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.content ul {
	text-align:left;
	padding-left:40px;
	padding-top:40px;
}

.content li {
	text-align:left;
	padding-left:20px;
	display: list-item;
    font-size: 16px;
    color: #20509e;
    margin-bottom: 20px;
    list-style: inside;
}




.single-scheme-page blockquote {
	font-size: 24px;
	color: #20509e;
	padding-left: 25px;
	border-left: 2px solid #16d0c5;
	line-height: normal;
	margin: 40px 0;
	display: block;
}

.single-scheme-page blockquote span {
	display: block;
	font-size: 16px;
	color: #16d0c5;
	padding-top: 10px;
}

.single-scheme-page .post-tags a {
	display: inline-block;
	font-size: 11px;
	text-transform: uppercase;
	padding: 6px 15px;
	margin-right: 2px;
	margin-top: 5px;
	color: #75849a;
	background: #f3f7f9;
	border: 1px solid #ebebeb;
	margin-right: 5px;
}

.single-scheme-page .social-share {
	display: block;
	text-align: right;
}

.single-scheme-page .social-share p {
	display: inline-block;
	font-size: 14px;
	margin-right: 10px;
	color: #595959;
}

.single-scheme-page .social-share a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-left: 8px;
	text-align: center;
	border-radius: 40px;
	background: #f3f7f9;
	color: #75849a;
	padding-top: 9px;
	font-size: 14px;
	-webkit-box-shadow: 0 0 0 1px #ebebeb;
	        box-shadow: 0 0 0 1px #ebebeb;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.single-scheme-page .social-share a:hover {
	color: #fff;
}

.releted-posts {
	padding-top: 50px;
	margin-top: 25px;
	border-top: 1px solid #ebebeb;
}

.releted-posts .scheme-item {
	padding-top: 25px;
}

.releted-posts .scheme-text {
	-webkit-box-shadow: 0 0 0 1px #ebebeb;
	        box-shadow: 0 0 0 1px #ebebeb;
	padding: 28px 28px 20px;
}

.releted-posts .scheme-text .scheme-title {
	font-size: 22px;
}

.releted-posts .post-meta {
	margin-bottom: 0;
}

.comment-area {
	padding-top: 50px;
}

.comment-list {
	padding-top: 40px;
	margin-top: 25px;
	border-top: 1px solid #ebebeb;
	list-style: none;
}

.comment-list .replay-comment-list {
	list-style: none;
	margin-left: 14%;
}

.comment {
	margin-bottom: 40px;
}

.comment .comment-avator {
	float: left;
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

.comment .comment-content {
	padding-left: 100px;
}

.comment .comment-content h5 {
	font-size: 18px;
	margin-bottom: 10px;
}

.comment .comment-content h5 span {
	font-size: 12px;
	color: #acb9cc;
	font-family: "Futura", sans-serif;
}

.comment .comment-content p {
	margin-bottom: 0;
}

.comment .comment-content .c-btn {
	font-family: "Futura", sans-serif;
	display: inline-block;
	font-size: 14px;
	border: 1px solid #ebebeb;
	background: #f3f7f9;
	color: #20509e;
	padding: 4px 25px;
	border-radius: 2px;
	margin-right: 5px;
	margin-top: 20px;
}

.comment .comment-content .c-btn:hover {
	color: #fff;
}

.comment-form .form-group {
	position: relative;
	padding: 1px;
	margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 11px 20px;
	border: none;
	border: 1px solid #e5e5e5;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: transparent;
}

.comment-form input:focus+label,
.comment-form textarea:focus+label {
	opacity: 1;
}

.comment-form label {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: block;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.comment-form textarea {
	height: 115px;
	display: -ms-grid;
	display: grid;
}



/*---------------------
	Facilities
----------------------*/

.faci-text h2 {
	font-size: 35px;
	margin-bottom: 25px;
	color:#1e6855;
	padding-left:20px;
}

.faci-text h5 {
	font-family: "Futura", sans-serif;
	/* margin-bottom: 20px; */
	padding: 20px 0px;
	color:#ee8035;
	font-weight: bold;
}

.faci-text h3 {
	font-size: 15px;
	text-align:left;
	padding: 20px;
	color:#df5f11;
} 

.faci-text p {
	font-size: 15px;
	text-align:justify;
	/*padding: 20px 20px 20px 20px;*/
}

.faci-table {
    /*width: 100%; */
    max-width: 100%;
	margin-left: 27px;
    margin-bottom: 16px;
    background-color: transparent;
	border-color: #918b83;
}
.faci-tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}
.faci-table td, .faci-table th {
    padding: 0 12px 12px 12px;
    vertical-align: top;
    /*border-top: 1px solid #dee2e6; */
    color: #75849a;
}
.faci-table-bordered td, .faci-table-bordered th {
    border: 1px solid #dee2e6;
}

/*---------------------
  Inner Pages Section
-----------------------*/
.in-page-section .container {
	position: relative;
}


/*---------------------
  branch Section
-----------------------*/
.branch-section .container {
	position: relative;
}
.branch-text h2 {
	font-size: 35px;
	/*margin-bottom: 25px;*/
	color:#1e6855;
	padding-left:20px;
}

.branch-text h3 {
	font-size: 20px;
	font-weight: bold;
	text-align:center;
	padding: 20px; 
	color:#129d7b;
} 

.branch-text h4 {
	font-family: "Futura", sans-serif;
	font-size: 17px;
	text-align:left;
	font-weight: bold;
	padding-left: 10px;
	color:#ee8035; 
} 

.branch-text h5 {
	font-family: "Futura", sans-serif;
	font-weight: bold;
	font-size: 20px;
	text-align:center;
	/* margin-bottom: 20px; */
	padding: 20px;
	color: #ee8035;
}
.branch-text p {
	font-size: 15px;
	text-align:justify;
	color: #75849a;
    padding: 10px;
	margin-bottom: 0;
}
.branch-text a {
	font-size: 15px;
    padding: 10px;
	margin-bottom: 0;
	text-align: right; 
	color: #0033FF;
}
.branch-text ul {
	color: #75849a;
	margin-left: 15px;
    padding: 10px 10px 0 10px;
}

.branch-text li {
	font-size: 15px;
	text-align:justify;
	color: #75849a;
	list-style:auto;
    padding-left: 15px;
    padding-bottom: 10px;
}

.branch-detail {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    /*border: solid 1px #b9b0b0; */
    transition: .5s;
    height: 320px;
    /* height: auto; */
}


.branch-detail * {
    transition: .5s;
}

.branch-detail:hover {
    /*background: #fea116;*/
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	opacity: 70%;
}

.branch-detail:hover * {
    color: #f1f8ff !important;
}
.branch-detail p:hover * {
    color: #f1f8ff !important;
}

.branch-detail a:hover * {
    color: #0033FF !important;
}
.branch-detail h3:hover * {
    color: #850a1a !important;
}

.branch-table {
    width: 100%;
    max-width: 100%;
	margin-bottom: 16px;
    background-color: transparent;
	border-color: #918b83;
}

.branch-tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.branch-table td, .branch-table th {
    padding: 12px;
    vertical-align: top;
    /*border-top: 1px solid #dee2e6; */
    color: #75849a;
}

.branch-table-bordered td, .branch-table-bordered th {
    border: 1px solid #dee2e6;
}

/*.branch-map {
	/*height: 390px;*
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15); 
}*/
.branch-map iframe {
     height: 260px;
     width: 100%;
     left: 0;
     top: 0;
     position: relative;
	 border: 1px solid #998d8d;
	 box-shadow: 0px 23px 49px rgb(33 54 61 / 25%);
}

/*.branch-google-map {
     /*padding-bottom: 50%;*
     position: relative;
}

.branch-google-map iframe {
     /*height: 460px;*
     width: 100%;
     left: 0;
     top: 0;
     position: relative;
}*/


/*---------------------
  karmachari Section
-----------------------*/

.karmachari-spad {
	padding-top: 50px;
	padding-bottom: 50px;
}

.karmachari h5 {
    font-family: "Futura", sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    /* margin-bottom: 20px; */
    padding-top: 20px;
    color: #20509e;
}

.karmachari p {
    font-size: 15px;
    text-align: center;
    color: #000000;
    padding: 0px;
    margin-bottom: 0;
}

.karmachari firstline {
    padding-right: 50px;
    padding-left: 50px;
}

.firstline img{
	max-height: 350px;
}


/*---------------------
  Vault Section
-----------------------*/

.vault-text h2 {
	font-size: 35px;
	/*margin-bottom: 25px;*/
	color:#1e6855;
	padding-left:20px;
}

.vault-text p {
	font-size: 15px;
	text-align:justify;
	color: #75849a;
    padding: 10px;
	margin-left: -10px;
	margin-bottom: 0;
}

.vault-text img {
	margin-bottom: 25px;
	border: 1px solid #8d8585; 
	border-radius: 3%;
	box-shadow: 5px 7px 8px #8d8585;
}



/*---------------------
	Contact page
-----------------------*/

.contact-form {
	padding-right: 35px;
}

.contact-form h5 {
	font-size: 16px;
	font-family: "Futura", sans-serif;
}

.contact-form h5 span {
	color: #16d0c5;
}

.contact-form .form-group {
	position: relative;
	margin-bottom: 43px;
	padding-top: 20px;
}

.contact-form .form-group span {
	position: absolute;
	right: 0;
	top: 10px;
	font-size: 16px;
	color: #7bc063;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.contact-form .form-group span.active {
	opacity: 1;
}

.contact-form .check-form {
	padding-right: 20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 50px;
	border: none;
	border-bottom: 1px solid #998d8d;
	font-family: system-ui;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
	color: #20509e;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #20509e;
}

.contact-form textarea {
	padding-bottom: 10px;
	padding-top: 10px;
	height: 115px;
}

.contact-form .contact-type .ct-label {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	margin-right: 40px;
	cursor: pointer;
	font-size: 16px;
	color: #acb9cc;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.contact-form .contact-type .ct-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.contact-form .contact-type .ct-label input:checked~.checkmark:after {
	content: '\f111';
	color: #16d0c5;
}

.contact-form .contact-type .ct-label .checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 25px;
	width: 25px;
}

.contact-form .contact-type .ct-label .checkmark:after {
	position: absolute;
	content: "\f10c";
	font-family: 'FontAwesome';
	font-size: 14px;
}

.contact-form .contact-type .ct-label:last-child {
	margin-right: 0;
}

.contact-form ::-webkit-input-placeholder {
	color: #acb9cc;
}

.contact-form :-ms-input-placeholder {
	color: #acb9cc;
}

.contact-form ::-ms-input-placeholder {
	color: #acb9cc;
}

.contact-form ::placeholder {
	color: #acb9cc;
}

.map {
	height: 390px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15); 
}
.map iframe {
     height: 100%;
     width: 100%;
     left: 0;
     top: 0;
     position: absolute;
}

.google-map {
     padding-bottom: 50%;
     position: relative;
}

.google-map iframe {
     height: 460px;
     width: 100%;
     left: 0;
     top: 0;
     position: absolute;
}

/*------------------
	Application  Form - Added By TM
---------------------*/
select {
	width: 323px;
	max-width: 100%;
	/*padding: 20px;*/
	padding-left: 20px;
	height: 50px;
	border: 1px solid #ccc;
	background: #e1e1e1;
	border-radius: 4px;
	font-size: 15px;
	color: #20509e;
	font-weight: bold;
}

.dropdown-container {
	display: flex;
	align-items: center;
	padding-top: 20px;
}

/*select {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}*/
/*------------------
	Gallery - Added By TM
---------------------*/

/* Create two equal columns that sits next to each other */
.gal-header {
	text-align: center;
	padding: 32px;
}

.gal-row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
}

.gal-column {
	flex: 25%;
	padding: 0 4px;
}

.gal-column img {
	margin-top: 8px;
	vertical-align: middle;
}

/*------------------
 Style the buttons For Gallery
---------------------*/
.gal-btn {
  	/*border: none; */
    /* outline: none; */
   /* padding: 8px 8px;*/
    background-color: #f1f1f1;
    cursor: pointer;
    font-size: 15px;
    width: 130px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid #9b9a9aa3;
    padding: .375rem .75rem;
    /* font-size: 1rem; */
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.gal-btn:hover {
	background-color: #ddd;
}

.gal-btn.active {
	background-color: #666;
	color: white;
	font-weight: bold;
}



/*------------------
	Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media (max-width: 1585px) {
	.hero-section .bank-image {
		left: 0;
		width: auto;
		max-width: 100%;
	}
}

@media (max-width: 1425px) {
	.header-section .site-btn {
		margin-left: 0;
	}
	.hero-section,
	.page-info-section {
		background-position: right 15% top;
	}
	.hero-flex {
		display:felx;
		flex-direction: row;
	}
	.hero-section .bank-image {
		width: auto;
		max-width: 100%;
		padding-bottom: 20px;
	}
	.hero-section .hero-logo-image {
		width: auto;
        max-width: 100%;
        /*padding: 50px 0;*/
        padding-bottom: 50px; 
		padding-top: 0px;
		margin-left: 0px;
    }
	
	.hero-text-first {
		color: #ffffff;
		margin: 0;
		font-size: 50px;
		font-weight: 500;
		font-family: "Futura", sans-serif;
		margin-right: -70px;
		padding-left:50px;
		margin-top:50px;
		margin-bottom:12px;
	}
	
	.hero-text-second {
		color: #ffffff;
		margin: 0;
		font-size: 50px;
		font-weight: 500;
		font-family: "Futura", sans-serif;
		margin-right: -70px;
		padding-left:120px; 
		margin-bottom:12px;
	}
	.hero-text-third {
		color: #ffffff;
		margin: 0;
		font-size: 50px;
		font-weight: 500;
		font-family: "Futura", sans-serif;
		margin-right: -70px;
		padding-left:210px; 
		margin-bottom:12px;
	}
	.about-img {
		left: 20px;
		width: 500px;
	}
}

@media (min-width: 1199px) and (max-width: 1390px) {
	.member {
		padding: 35px 10px;
	}
	.member-img {
		width: 160px;
		height: 160px;
	}
	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}
	.member-social a {
		margin: 0 5px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.menu-list li a {
		margin-right: 15px;
	}
	#menu li a {
		margin-right: 15px;
	}
	.text-heading-inner span {
        position: relative;
        z-index: 1;
        width: 200px;
        height: 28px;
        font-family: "Futura", sans-serif;
        font-size: 20px;
        text-align: left;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        color: #ea7f35;
        line-height: 12.8px;
        letter-spacing: normal;
        vertical-align: middle;
    }
	.hero-section,
	.page-info-section {
		background-position: right 23% top;
	}
	.page-info .pageslok {
        /*padding-top: 65px;*/
        color: #FFFFFF;
		padding-right:50px;
    }
	.page-info .pagename h2 {
		font-size:40px;
		margin-left: -20px;
	}
	.page-info .pageslok h3 {
		text-align: right;
		margin-bottom: 10px;
		color: #FFFFFF;
		font-size:25px;
	}
	.about-img {
		left: 0px;
		width: 480px;
	}
	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
	}
	.team-members {
		text-align: center;
	}
	.fact h2 {
		font-size: 45px;
		margin-right: 10px;
	}
	.fact p {
		padding-top: 7px;
	}
	.fact i {
		font-size: 67px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.text-heading-inner span {
        position: relative;
        z-index: 1;
        width: 200px;
        height: 28px;
        font-family: "Futura", sans-serif;
        font-size: 20px;
        text-align: left;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        color: #ea7f35;
        line-height: 12.8px;
        letter-spacing: normal;
        vertical-align: middle;
    }
	.header-section {
		padding: 30px 15px 0;
	}
	.hero-flex {
		display:felx;
		flex-direction: column;
	}
	.menu-list li a {
		margin-right: 6px;
	}
	#menu li a {
		margin-right: 6px;
	}
	.header-section .site-btn {
		margin-left: 10px;
	}
	.hero-section {
		background-position: right 25% top;
		height: 730px;
		padding-top: 160px;
	}
	.page-info-section {
		background-position: right 33% top;
	}
	.page-info .pagename {
		/*padding-top: 150px;*/
		color: #20509e;
	}
	.page-info .pageslok {
        padding-top: 20px;
        color: #FFFFFF;
    }
	.page-info .pagename h2 {
		font-size:35px;
		margin-left: -60px;
        /*margin-right: -30px;*/
	}
	.page-info .pageslok h3 {
		text-align: right;
		margin-bottom: 10px;
		color: #FFFFFF;
		font-size:22px;
	}
	.hero-text h2 {
		font-size: 45px;
	}
	.process-step:after {
		width: 154px;
		height: 35px;
		top: -10px;
		right: -44%;
		background-size: contain;
	}
	.about-img {
		position: relative;
		display: block;
		left: 0;
		width: auto;
		margin-top: 50px;
	}
	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
		padding: 35px 10px;
	}
	.member-img {
		width: 160px;
		height: 160px;
	}
	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}
	.member-social a {
		margin: 0 5px;
	}
	.team-members {
		text-align: center;
	}
	.fact {
		margin-bottom: 30px;
	}
	.faci-table {
		/* width: 100%; */
		max-width: 100%;
		/* margin-left: 27px; */
		margin-bottom: 16px;
		background-color: transparent;
		border-color: #918b83;
	}
	.pull-3 {
		right: 0;
	}
	.push-8 {
		left: 0;
	}
	.review-section {
		text-align: center;
	}
	.review-text {
		padding: 0 60px;
	}
	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}
	.review-text-slider .owl-prev {
		float: left;
	}
	.review-text-slider .owl-next {
		float: right;
	}
	.review-meta-slider {
		margin: auto;
	}
	.author-meta {
		padding-top: 0;
	}
	.newsletter-form {
		padding-left: 0;
	}
	.footer-widget {
		margin-bottom: 30px;
	}
	.newsletter-section {
		text-align: center;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.header-section {
		padding: 10px 0;
		background: #fff0;
	}
	.header-section .responsive-bar {
		float: right;
		font-size: 25px;
		display: block;
		cursor: pointer;
		color: #6f6fa7;
	}
	
	.responsive-bar .fa {
		display: inline-block;
		font: normal normal normal 14px / 1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		color: white;
	}
	
	.header-section .user {
		float: right;
		font-size: 25px;
		color: #333;
		margin-right: 20px;
		display: block;
	}
	.text-heading span {
		position: relative;
		z-index: 1;
		width: 200px;
		height: 28px;
		font-family: "Futura", sans-serif;
		font-size: 20px;
		text-align: left;
		font-weight: bold;
		font-stretch: normal;
		font-style: normal;
		color: #ea7f35;
		line-height: 12.8px;
		letter-spacing: normal;
		vertical-align:middle
	}
	.text-heading-inner span {
		position: relative;
		z-index: 1;
		width: 200px;
		height: 28px;
		font-family: "Futura", sans-serif;
		font-size: 20px;
		text-align: left;
		font-weight: bold;
		font-stretch: normal;
		font-style: normal;
		color: #ea7f35;
		line-height: 12.8px;
		letter-spacing: normal;
		vertical-align:middle
	}
	.container-fluid img{
		max-width: 100%;
		height: 50px;
	}
	.main-menu {
		float: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 100%;
		background: #fff;
		padding: 0 15px;
		display: none;
		-webkit-box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
		        box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
	}
	.menu-list {
		list-style: none;
	}
	.menu-list li {
		display: block;
		border-top: 1px solid #e1e1e1;
	}
	.menu-list li a {
		display: block;
		padding: 10px 5px;
		margin-right: 0;
		color: #20509e;
	}
	#menu {
		list-style: none;
	}
	#menu li {
		float: none;
		display: block;
		border-top: 1px solid #e1e1e1;
	}
	#menu a.prett {
	 	height: 50px;
        padding: 10px 27px 0 8px;
	}
	#menu ul.menus {
     	height: auto;
    	width: 180px;
     	position: relative;
    	padding-left: 10px;
	}
	#menu li a {
		display: block;
		padding: 10px 5px;
		margin-right: 0;
		color: #20509e;
	}
	#menu li:hover > a, #menu li a:hover {
		background: #20509ea6;
		color: #ffffff;
		font-size: 20px;
	}
	#menu ul.menus li {
		display: block;
		width: 100%;
		font: 12px Arial;
		text-transform: none;
		background: #20509e4f;
	}
	#menu ul.menus a {
		display: inline;
		font-family: Futura, sans-serif;
		font-size: 16px;
		line-height: 35px;
		padding: 10px 5px;
		margin-right: 30px;
		text-decoration: none;
		color: #20509e;
	}
	.hero-flex {
		display:felx;
		flex-direction: column;
	}
	.hero-text h2 {
		font-size: 40px;
	}
	.hero-section {
		height: auto;
		padding-bottom: 20px;
		padding-top: 70px;
		background-position: right 50% top;
	}
	.hero-text {
		padding-top: 20px;
	}
	.hero-text-first {
		color: #395ec3;
        margin: 0;
        font-size: 40px;
        font-weight: 500;
        font-family: "Futura", sans-serif;
        margin-right: 0px;
        padding-left: 0px;
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: center;
	}
	
	.hero-text-second {
		color: #395ec3;
        margin: 0;
        font-size: 40px;
        font-weight: 500;
        font-family: "Futura", sans-serif;
        margin-right: 0px;
        padding-left: 0px;
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: center;
	}
	
	.hero-text-third {
		color: #395ec3;
        margin: 0;
        font-size: 40px;
        font-weight: 500;
        font-family: "Futura", sans-serif;
        margin-right: 0px;
        padding-left: 0px;
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: center;
	}
	.mySlides img {
		vertical-align: middle;
		border-style: none;
		width: 100%;
		max-width: 100%;
		height: 300px;
	}
	.page-info-section {
		/* background-position: right 56% top; */
		background-position: right 54% top;
		/*margin-top: 97px;*/
	}
	.page-info .pagename {
		padding-top:0px;
		padding-left: 27px;
		color: #FFFFFF;
	}	
	.page-info .pageslok {
		padding-top:0px;
		padding-right: 52px;
		color: #FFFFFF;
	}
	.page-info .bod {
		padding-left: 27px;
		margin-left: 0px;
	}
	.page-info .pagename h2{
		color: #FFFFFF;
	}
	.page-info .pageslok h3 {
		text-align: right;
		margin-bottom: 10px;
		color: #FFFFFF;
		font-size:15px;
		padding-top: 10px;
	}
	.page-info .pageslokbod h3 {
		text-align: right;
		margin-bottom: 12px;
		color: #FFFFFF;
		font-size: 15px;
		margin-right: -10px;
		padding-top: 10px;
	}
	
	.about-text h2 {
		font-size: 35px;
		margin-bottom: 0;
		color: #1e6855;
		padding-left: 20px;
	}
	.about-text h3 {
		font-size: 15px;
		text-align: left;
		padding-left:20px;
		color: #df5f11;
	}
	.about-text p {
		text-align:justify;
	}
	.about-img {
		position: relative;
        display: block;
        left: 0;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
		margin-top: 40px;
        margin-bottom: 0px;
	}
	.about-inner-text ul {
		color: #75849a;
		line-height: 1.6;
		padding-left: 40px;
		padding-bottom: 15px;
	}
	.about-inner-text li {
		font-size: 15px;
		text-align: justify;
		color: #75849a;
		line-height: 1.6;
		/* padding: 0px 20px 10px 20px; */
		/* padding-left: 15px; */
		/* padding-bottom: 10px; */
		padding: 10px;
	}
	.team-members {
		margin: 0;
		padding: 0 15px;
	}
	.member {
		width: 100%;
		margin-bottom: 30px;
		margin-left: 0;
	}
	.fact {
		margin-bottom: 30px;
	}
	.process-step:after {
		display: none;
	}
	.abt-table {
		/* width: 100%; */
		max-width: 100%;
		/*margin-left: 0;*/
		margin-bottom: 0;
		background-color: transparent;
		border-color: #918b83;
	}
	.faci-table {
		/* width: 100%; */
		max-width: 70%;
		margin-left: 10px;
		margin-bottom: 0;
		background-color: transparent;
		border-color: #918b83;
	}
	.branch-table {
		/* width: 100%; */
		max-width: 100%;
		/*margin-left: 0;*/
		margin-bottom: 0;
		background-color: transparent;
		border-color: #918b83;
	}
	.pull-3 {
		right: 0;
	}
	.push-8 {
		left: 0;
	}
	.review-section {
		text-align: center;
	}
	.review-text {
		padding: 0 60px;
	}
	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}
	.review-text-slider .owl-prev {
		float: left;
	}
	.review-text-slider .owl-next {
		float: right;
	}
	.review-meta-slider {
		margin: auto;
	}
	.scrolling-row {
		overflow: hidden;
		height: 40px;
		position: relative;
	}
	.scrolling-row h2 {
		position: absolute;
		min-width: 100%;
		padding-top: 05px;
		white-space: nowrap;
		font-size: 30px;
		gap: 10px;
		align-items: center;
	}
	.newsletter-section {
		padding: 15px 0;
	}
	.wrapper-newsbar-top {
		max-width: 100%;
		overflow: hidden;
		height: 20px;
	}
	.wrapper-newsbar-bottom {
		max-width: 100%;
		overflow: hidden;
		height: 35px;
	}
	.marquee {
		white-space: nowrap;
		overflow: hidden;
		display: inline-block;
		animation: marquee 15s linear infinite;
	}
	.marquee h2 {
		display: inline-block;
		display: inline-block;
		font-size: 25px;
		line-height: 1.6;
	}	
	.marquee p {
		display: inline-block;
		display: inline-block;
		font-size: 17px;
		line-height: 1.6;
	}
	.author-meta {
		padding-top: 0;
	}
	.header-section .site-btn {
		display: none;
	}
	.fact-section {
		padding: 20px 0;
	}
	.newsletter-form {
		padding-left: 0;
	}
	.newsletter-section {
		text-align: center;
	}
	.review-text p {
		font-size: 20px;
	}
	.scheme-item {
		margin-bottom: 30px;
	}
	.footer-widget {
		margin-bottom: 30px;
	}
	.single-scheme-page .social-share {
		text-align: left;
		margin-top: 20px;
	}
	.karmachari-spad {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.karmachari img {
		max-width:80%;
	}
	.firstline img {
		max-height: 100%;
	}
	.karmachari p {
		font-size: 15px;
		text-align: center;
		color: #000000;
		padding: 0px;
		margin-bottom: 30px;
	}
	.vault-text p {
		font-size: 15px;
		text-align: justify;
		color: #75849a;
		padding: 10px;
		margin-left: px;
		margin-bottom: 0;
	}
	.vault-text img {
		margin-bottom: 15px
	}
	.inauguration-section {
		height: 100%;
		padding-top: 100px;
		display: block;
		background-image: url("../img/inauguration1.jpg");
		background-size: cover;
		background-color: #f3f7f9;
		background-position: right top;
		background-repeat: no-repeat;
		position: relative;
		overflow: hidden;
	}
	.inauguration-div {
		position: absolute;
		bottom: 10px;
		margin-left: 5%;
	}

	.inauguration-btn {
	    height: auto;
		width: 100%;
		padding-top: 10px;
	}
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.review-text {
		padding: 0;
	}
	.review-text p {
		font-size: 18px;
	}
	.newsletter-form input {
		padding-right: 30px;
	}
	.newsletter-form button {
		position: relative;
		padding: 14px;
		border-radius: 50px;
		margin-top: 23px;
	}
	.review-text-slider .owl-prev,
	.review-text-slider .owl-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	.review-meta-slider {
		width: auto;
	}
	.member-img {
		width: 180px;
		height: 180px;
	}
	.member-info {
		padding: 50px 20px 10px;
		height: 320px;
	}
	.scheme-text {
		padding: 15px;
	}
	.comment .comment-avator {
		float: none;
		margin-bottom: 20px;
	}
	.comment .comment-content {
		padding-left: 0;
	}
}