

@font-face {
    font-family: 'dm_sansbold';
    src: url('../fonts/DM_Sans/dmsans-bold-webfont.woff2') format('woff2'),
         url('../fonts/DM_Sans/dmsans-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'dm_sansbold_italic';
    src: url('../fonts/DM_Sans/dmsans-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/DM_Sans/dmsans-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'dm_sansitalic';
    src: url('../fonts/DM_Sans/dmsans-italic-webfont.woff2') format('woff2'),
         url('../fonts/DM_Sans/dmsans-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'dm_sansmedium';
    src: url('../fonts/DM_Sans/dmsans-medium-webfont.woff2') format('woff2'),
         url('../fonts/DM_Sans/dmsans-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'dm_sansmedium_italic';
    src: url('../fonts/DM_Sans/dmsans-mediumitalic-webfont.woff2') format('woff2'),
         url('../fonts/DM_Sans/dmsans-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'dm_sansregular';
    src: url('../fonts/DM_Sans/dmsans-regular-webfont.woff2') format('woff2'),
         url('../fonts/DM_Sans/dmsans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body{ font-family: 'dm_sansregular'; }

html,
body {
	height: 100%;
	font-family: "dm_sansregular", sans-serif;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "dm_sansbold", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	font-family: "DM Sans", sans-serif;
	color: #6E7580;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 10px;
	text-align: center;
	width: 100%;
	float: left;
}

.section-title.normal-title {
	margin-bottom: 50px;
}

.section-title.normal-title h2 {
	margin-bottom: 20px;
	margin-top: 0;
}

.section-title.normal-title p {
	margin-bottom: 0;
	color: #9B9EA3;
}

.section-title h2 {
	font-size: 34px;
	font-weight: bold;
	color: #064f8b;
	margin-top: 5px;
	margin-bottom: 10px;
	width: 100%;
	float: left;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	/* padding-top: 40px; */
	/* padding-bottom: 40px; */
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	font-size: 14px;
	padding: 8px 25px;
	/* line-height: 32px; */
	height: 32px;
	width: auto;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #EC691F;
	border-radius: 2px;
	letter-spacing: 2px;
	box-shadow: 5px 5px 10px #00000026;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 50px;
	background: #5768AD;
	border: none;
	letter-spacing: 2px;
	border-radius: 2px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.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
-----------------------*/

.header__logo {
	padding: 5px 0 5px;
}

.header__logo img{
	height: 75px;
}

.header__top__widget {
	text-align: right;
	padding: 28px 0 24px;
}

.header__top__widget ul {
	display: inline-block;
	margin-right: 65px;
}

.header__top__widget ul li {
	font-size: 12px;
	color: #263246;
	text-transform: uppercase;
	list-style: none;
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

.header__top__widget ul li:last-child {
	margin-right: 0;
}

.header__top__widget ul li:last-child:after {
	display: none;
}

.header__top__widget ul li:after {
	position: absolute;
	right: -5px;
	top: 8px;
	height: 2px;
	width: 2px;
	background: #5768AD;
	content: "";
	border-radius: 50%;
}

.header__top__widget .primary-btn {
	display: inline-block;
}

.bg-info {
    background-color: #051c39!important;
}

.modal-header
{
	
	background: #051c39;
}

.modal-content

{
	
	border:none;
	background: #f8f9fa;
}
.header__nav {
	position: relative;
	z-index: 9;
	padding-top: 0px;
	padding-bottom: 0px;
	background: linear-gradient(to right, rgba(58,152,224,1) 0%, rgba(30,118,186,1) 39%, rgba(18,100,163,1) 100%);
	background: #051c39;
}

.header__menu {
	display: inline-block;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 55px;
	position: relative;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li:hover .dropdown {
	opacity: 1;
	top: 34px;
	visibility: visible;
}

.header__menu ul li:hover .dropdown li a:after {
	display: none;
}

.header__menu ul li:hover a:after {
	opacity: 1;
	width: 100%;
}

.header__menu ul li.active a:after {
	opacity: 1;
	width: 100%;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 50px;
	width: 180px;
	background: #ffffff;
	text-align: left;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
	padding: 5px 0;
	z-index: 9;
}

.header__menu ul li .dropdown li {
	margin-right: 0;
	display: block;
}

.header__menu ul li .dropdown li a {
	padding: 6px 15px;
	font-weight: 400;
	font-size: 15px;
	color: #222222;
	text-transform: capitalize;
	font-weight: 500;
}

.header__menu ul li a {
	font-size: 14px;
	color: #ffffff;
	padding: 5px 0;
	display: block;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
}

.header__menu ul li a .fa{
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0%;
	background: #ffffff;
	content: "";
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.login_page_main .owl-carousel .owl-item img {
    /* height: 51vh; */
height:75.6vh;
}

/* .gallery_news */
/* { */
	
/* 	width: 500px; */
/*     position: absolute; */
/*     right: 6px; */
/*     top: 41%; */
/*     z-index: 9; */
/* } */

/* .card */
/* { */
/* 	background: #110a11c2; */
	
/* } */
/* .card a */
/* { */
	
/* 	color:#fff; */
/* } */

ul.list li {
    display: block;
    padding: 5px 0px 5px 20px;
    line-height: 18px;
    background-image: url(../images/img/bullet.png);
    background-repeat: no-repeat;
    background-position: left center;
    display: block;
    border-bottom: #fff 1px dashed;
}

.header__social {
	text-align: right;
}

#change-image .fa {
    color: #fff;
    /* padding: 2px; */
    cursor: pointer;
    paddding: 2px 2rem;
    padding: 0.5rem 2.2rem;
    background: #051c39;
}

.close_btn
{
	
	COLOR:#FFF;
}

.dropdown-menu
{
	
	background-color: #051c39;
}

.col1 {
    width: 65%;
    margin: 0px;
    padding: 0px;
}

.col2 {
    width: 34%;
    margin: 0px;
    padding: 0px 10px;
    background-color: #b0cff4;
}

.table td
{
	
	border:none!important;
	
}

.container-1 {
    width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

div.about-box-color-layer {
    padding: 8px;
    font-size: 24px;
    color: #053671;
    width: 100%;
    height: 100%;
}

.spad {
    /* padding-top: 40px; */
    /* padding-bottom: 40px; */
}

.section-title {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    float: left;
}

.section-title h2 {
    font-size: 34px;
    font-weight: bold;
    color: #064f8b;
    margin-top: 5px;
    margin-bottom: 10px;
    width: 100%;
    float: left;
}

.section-title h2::before {
    content: "";
    position: relative;
    display: block;
    width: 120px;
    height: 1px;
    background: #ee9936;
    bottom: 1px;
    left: calc(52% - 60px);
top: 45px;}

.header__social a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	margin-right: 25px;
}

.slogan
{
	
	display: contents;
    bottom: 18px;
    position: relative;
    font-size: 2rem;
    color: #c0231c;
    font-weight: 600;
}

.section-title h2::after {
    content: "";
    position: relative;
    display: block;
    width: 40px;
    height: 3px;
    background: #194f8b;
    bottom: 0;
    left: calc(50% - 20px);
top: 7px;}

.home-room p {
    line-height: 24px;
    font-size: 13px;
}

.message-1
{
	
	font-size:18px;
}

.header__social a:last-child {
	margin-right: 0;
}

.canvas__open {
	display: none;
}

.offcanvas-menu {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
	margin-top: 0px;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text span {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text h2 {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-item.active .hero__text .primary-btn {
	opacity: 1;
	top: 0;
}

.hero__sliders.owl-carousel .owl-nav button {
	display: inline-block;
	height: 46px;
	width: 46px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	color: #ffffff;
	font-size: 20px;
	line-height: 46px;
	text-align: center;
	position: absolute;
	left: 40px;
	top: 46%;
	-webkit-transform: translateY(-23px);
	transform: translateY(-23px);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.hero__sliders.owl-carousel .owl-nav button:hover {
	color: #111111;
	background: #ffffff;
}

.hero__sliders.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 40px;
}


.hero__items {
	height: calc(100vh - 135px);
	display: flex;
	align-items: center;
}
.float_right{
	text-align: right;
}

.hero__text span {
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	display: block;
	margin-bottom: 30px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.2s;
	-moz-transition: all, 0.2s;
	-ms-transition: all, 0.2s;
	-o-transition: all, 0.2s;
	transition: all, 0.2s;
}

.hero__text h2 {
	font-size: 30px;
	line-height: 45px;
	color: #ffffff;
	margin-bottom: 50px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.8s;
	-moz-transition: all, 0.8s;
	-ms-transition: all, 0.8s;
	-o-transition: all, 0.8s;
	transition: all, 0.8s;
}

/*---------------------
  Services
-----------------------*/

.services {
	padding-top: 40px;
	padding-bottom: 20px;
	background: #F2F7FA;
	width: 100%;
	float: left;
}

.services__item {
	text-align: center;
	padding: 0px;
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	margin-bottom: 10px;
	background: #ffffff;
	display: flex;
	align-items: center;
	box-shadow: inset 0 0 10px #78B833;
	border-radius: 2px;
}
.notifDateDiv {
	width: 100px;
	height: 100px;
	line-height: 100px;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	color: #fff;
	font-weight: 500;
	text-shadow: 0px 1px 3px #6d6b6b;
	background: #78B833;
}
.notifDateDiv1{
	/* background: #219bd3b0; */
}
.notifDateDiv2{
	/* background: #78b833b8; */
}
.notifDateDiv3{
	/* background: #ed702abd; */
}
.notifDateDiv4{
	/* background: #78b833b8; */
}
.notifDateDiv5{
	background: #219bd3b0;
}
.serviceWrapContent{
	width: calc(100% - 100px);
	text-align: left;
	height: 100px;
	padding: 10px 20px;
	/* background: #ececec; */
}
.serviceWrapContent a{
	color: #78B833;
	font-size: 14px;
	font-weight: 500;
}
.services__item h5 {
	font-size: 20px;
	color: #263246;
	margin-top: 35px;
	margin-bottom: 12px;
}

.services__item p {
	color: #6E7580;
	margin-bottom: 0;
	font-size: 14px;
}
.services__item a:hover{
	color: #000;
}

/*---------------------
  Chooseus
-----------------------*/

.chooseus {
	background: #f5f6fa;
	padding-bottom: 20px;
}

.chooseus__text {
	margin-bottom: 70px;
}

.chooseus__text h2 {
	font-size: 44px;
	color: #263246;
	margin-bottom: 6px;
}

.chooseus__text p {
	margin-bottom: 0;
}

.chooseus__item {
	width: 50%;
	float: left;
	margin-bottom: 80px;
}

.chooseus__item__icon {
	float: left;
	margin-right: 30px;
}

.chooseus__item__text {
	overflow: hidden;
}

.chooseus__item__text h2 {
	font-size: 48px;
	color: #263246;
	line-height: 45px;
	margin-bottom: 5px;
}

.chooseus__item__text p {
	font-size: 18px;
	margin-bottom: 0;
	color: #9B9EA3;
}

.chooseus__pic img {
	min-width: 100%;
}

/*---------------------
  Gallery
-----------------------*/

.gallery__pic img {
	min-width: 100%;
}

/*---------------------
  Instructor
-----------------------*/

.instructor {
	padding-top: 40px;
	padding-bottom: 40px;
	background: #f5f5f5;
}
.owl-carousel.owl-drag .owl-item{
	/* background: #fff; */
}

.instructor__item {
	margin-bottom: 30px;
}

.instructor__item__pic {
	margin-bottom: 20px;
}

.instructor__item__pic img {
	min-width: 100%;
}

.instructor__item__text {
	text-align: center;
}

.instructor__item__text h5 {
	clear: #001943;
	margin-bottom: 5px;
}

.instructor__item__text span {
	font-size: 14px;
	color: #9B9EA3;
}

.div-off {
    border: 1px dashed #ccc;
    height: 376px;
    float: left;
    /* box-shadow: inset 0px 0px 5px #cccccc78; */
}
.instructor h4{
    line-height: 1.6;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}
.instructor h5{
	font-size: 14px;
	margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Segoe UI","Segoe",Tahoma,Helvetica,Arial,sans-serif;
    color: #353434;
    font-weight: 500;
}
.instructor h6{
	font-size: 13px;
	margin-top: 5px;
    margin-bottom: 10px;
    font-family: "Segoe UI","Segoe",Tahoma,Helvetica,Arial,sans-serif;
    color: #444;
}
.instructor p{
	font-size: 13px;
	margin-top: 5px;
	margin-bottom: 10px;
	font-family: "Segoe UI","Segoe",Tahoma,Helvetica,Arial,sans-serif;
	color: #444;
	line-height: 1.6;
}

/*---------------------
  Appoinment
-----------------------*/

.appointment {
	position: relative;
	z-index: 9;
}

.appointment .section-title h2 {
	color: #06599D;
	margin-top: 20px;
	margin-bottom: 20px;
}

.appointment__text {
	background: #F2F7FA;
	padding: 0px;
}
.cotactUsContentDiv{
	width: 100%;
	float: left;
}
.cotactUsContentDiv ul{
	list-style: none;
	width: 100%;
	float: left;
}
.cotactUsContentDiv li{
	width: 50%;
	float: left;
	color: #06599D;
	padding: 25px 0px 25px  0px;
	text-align: right;
	font-weight: 500;
}
.cotactUsContentDiv li .fa{
	font-size: 20px;
	font-weight: 600;
	width: 32px;
	height: 32px;
	line-height: 32px;
	/* background: #fff; */
	/* border-radius: 6px; */
	/* color: #EE7D19; */
	margin-right: 10px;
}

.appointment__form input {
	width: 100%;
	height: 50px;
	font-size: 16px;
	color: #ffffff;
	padding-left: 28px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	margin-bottom: 20px;
}

.appointment__form input::placeholder {
	color: #ffffff;
}

.appointment__form textarea {
	width: 100%;
	height: 100px;
	font-size: 16px;
	color: #ffffff;
	padding-left: 28px;
	padding-top: 15px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	margin-bottom: 34px;
}

.appointment__form textarea::placeholder {
	color: #ffffff;
}

.appointment__form .nice-select {
	width: 100%;
	height: 50px;
	padding-left: 28px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	line-height: 50px;
	border: none;
	margin-bottom: 20px;
}

.appointment__form .nice-select:after {
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	height: 10px;
	width: 10px;
	right: 20px;
	top: 44%;
}

.appointment__form .nice-select .list {
	width: 100%;
	border-radius: 0;
	margin-top: 0;
}

.appointment__form .nice-select span {
	font-size: 16px;
	color: #ffffff;
}

.appointment__form button {
	font-size: 14px;
	color: #5768AD;
	text-transform: uppercase;
	display: inline-block;
	background: #ffffff;
	padding: 14px 35px 12px;
	border-radius: 2px;
	border: none;
	font-weight: 700;
	letter-spacing: 2px;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial {
	background: #f5f6fa;
	padding-top: 415px;
	margin-top: -315px;
}

.testimonial__slider.owl-carousel .owl-item img {
	width: auto;
}

.testimonial__slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 36px;
}

.testimonial__slider.owl-carousel .owl-dots button {
	height: 9px;
	width: 9px;
	background: #8a8e9e;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}

.testimonial__slider.owl-carousel .owl-dots button:after {
	position: absolute;
	left: -7px;
	top: -7px;
	height: 23px;
	width: 23px;
	border: 2px solid #8a8e9e;
	border-radius: 50%;
	content: "";
	opacity: 0;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
	background: #5768AD;
}

.testimonial__slider.owl-carousel .owl-dots button.active:after {
	opacity: 1;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.testimonial__text {
	text-align: center;
	position: relative;
	padding-top: 70px;
}

.testimonial__text:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	content: '"';
	color: #5768AD;
	font-size: 160px;
	line-height: 119px;
	margin: 0 auto;
}

.testimonial__text p {
	font-size: 36px;
	color: #263246;
	line-height: 48px;
	margin-bottom: 35px;
}

.testimonial__text img {
	height: 60px;
	width: 60px;
	border-radius: 50%;
	margin: 0 auto;
}

.testimonial__text h5 {
	font-size: 20px;
	color: #263246;
	font-weight: 700;
	margin-top: 15px;
}

.testimonial__text h5 span {
	font-size: 18px;
	color: #9B9EA3;
	font-weight: 400;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	background: #051c39;
	width: 100%;
	float: left;
	left: unset !important;
	position: unset;
	padding: 0px;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about ul {
	margin-bottom: 25px;
	margin-top: 20px;
}

.footer__about ul li {
	color: #9B9EA3;
	line-height: 37px;
	font-size: 16px;
	list-style: none;
}

.footer__about ul li i {
	font-size: 16px;
	color: #78B833;
	margin-right: 5px;
}

.footer__about .subscribe-form {
	position: relative;
}

.footer__about .subscribe-form input {
	width: 100%;
	height: 50px;
	font-size: 14px;
	color: #999999;
	background: rgba(250, 250, 250, 0.1);
	border: none;
	border-radius: 2px;
	padding-left: 22px;
}

.footer__about .subscribe-form button {
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	background: #78B833;
	padding: 0 15px;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.footer__widget {
	margin-bottom: 30px;
}

.footer__widget h5 {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 25px;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	font-size: 16px;
	color: #9B9EA3;
	line-height: 37px;
}

.footer__widget .footer-address li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	line-height: 37px;
}

.footer__widget .footer-address li i {
	margin-right: 8px;
}

.footer__copyright {
	border-top: 1px solid rgba(225, 225, 225, 0.1);
	overflow: hidden;
	padding: 8px 0;
	margin-top: 0px;
	width: 100%;
	float: left;
}

.footer__copyright__text p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
}

.footer__copyright__text i {
	color: #a11f1f;
}

.footer__copyright__text a {
	color: #5768AD;
}

.footer__copyright__social {
	text-align: right;
}

.footer__copyright__social a {
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	margin-right: 25px;
}

.footer__copyright__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option,
.blog-hero {
	padding-top: 215px;
	padding-bottom: 170px;
	margin-top: -50px;
}

.breadcrumb__text,
.blog-hero {
	text-align: center;
}

.breadcrumb__text h2,
.blog-hero h2 {
	font-size: 44px;
	color: #ffffff;
	margin-bottom: 6px;
}

.breadcrumb__widget a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	margin-right: 15px;
	position: relative;
}

.breadcrumb__widget a:after {
	position: absolute;
	right: -14px;
	top: 1px;
	font-weight: 400;
	content: "/";
}

.breadcrumb__widget span {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 400;
}

/*---------------------
  Home About
-----------------------*/

.home-about {
	padding-bottom: 30px;
	background: #F2F7FA;
	transition: all 0.3s ease 0s;
	background-size: cover;
	background-position: center center;
	line-height: 0;
}

.home__about__pic {
	margin-right: -20px;
	padding-right: 30px;
}

.home__about__pic__item {
	height: calc(90vh - 0px);
	width: calc(50% - 20px);
	width: calc(100% - 0px);
	height: auto;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	position: relative;
	/* box-shadow: 5px 5px 10px #0000002e; */
	border-radius: 2px;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

.home__about__pic__item:last-child {
  width: calc(100% - 0px);
  margin-right: 0px;
  margin-bottom: 0px;
  box-shadow: none;
  border-radius: 0px;
} 
.obj_img_wrap{
	padding: 0px;
	float: left;
}
.abtUsFloatingTxt{
	/* margin: 0; */
	/* position: absolute; */
	width: 100%;
	/* top: 0%; */
	/* overflow: hidden; */
	text-align: center;
	padding: 44px 30px;
	float: left;
	background: url(../img/bg/bg_pub.jpg);
}
.about_item_2 .abtUsFloatingTxt{
	padding: 30px 20px;
}
.abtWhtsNewDiv p{
	font-size: 14px;
	line-height: 22px;
	text-align: justify;
	width: 100%;
	float: left;
	margin-bottom: 8px;
}
.abtWhtsNewDiv .fa {
    float: left;
    width: 5%;
    padding-top: 2px;
    color: #000;
}
.abtWhtsNewDiv span {
    float: left;
    width: 95%;
    padding: 0px;
    margin: 0px;
    line-height: 20px;
    color: #000;
}
.abtHead{
	font-size: 18px;
	font-weight: 500;
	color: #000;
	width: 100%;
	float: left;
	margin-bottom: 40px;
}
.abtWhtsNewDiv{
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
.abtSubHead{
    width: 100%;
    float: left;
    position: absolute;
    bottom: 30px;
}
.abtSubHead .

.about_item_1{
    background: #c2c4c5b0;
    display: flex;
    align-items: center;
}
.about_item_2 .item1{
    background: #78b833b8;
    background: url(../img/bg/bg_pub.jpg);
    margin-right: 20px;
}
.about_item_2 .item2{
	background: #ed702abd;
	background: url(../img/bg/bg_pub.jpg);
	/* transform: rotate(30deg); */
}
.home__about__pic__item__inner {
	height: 100%;
	min-height: 270px;
	width: calc(50% - 10px);
	float: left;
	margin-bottom: 20px;
	position: relative;
	box-shadow: 5px 5px 10px #0000002e;
	border-radius: 2px;
}
.home__about__pic__item__inner:last-child{
	margin-bottom: 0px;
	/* height: calc(40vh - 0px); */
}

.home__about__text {
	padding-top: 35px;
}

.home__about__text .section-title {
	text-align: left;
	margin-bottom: 24px;
}

.home__about__text span {
	display: block;
	font-size: 16px;
	color: #404D80;
	margin-bottom: 12px;
}

.home__about__text p.para-2 {
	margin-bottom: 40px;
}

/*---------------------
    About
-----------------------*/

.gallery_news .card
{
	
	width: 450px;
    background-image: antiquewhite;
    position: absolute;
    bottom: 9.5%;
    background: #98b7cf87;
    z-index: 9;
    right: 7px;
    color: #000;
}

.gallery_news .card a {
    color: #000!important;
    }
    
.about {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding-bottom: 0;
}

.about:before {
	position: absolute;
	left: -447px;
	top: -144px;
	width: 990px;
	height: 1008px;
	background-image: url(../img/about/background-left.png);
	content: "";
	z-index: -1;
}

.about:after {
	position: absolute;
	right: -120px;
	bottom: 0;
	width: 459px;
	height: 504px;
	background-image: url(../img/about/background-right.png);
	content: "";
	z-index: -1;
}

.about__services {
	padding-bottom: 70px;
}

.about__text .section-title {
	margin-bottom: 26px;
	text-align: left;
}

.about__text .section-title h2 {
	margin-bottom: 8px;
}

.about__text .section-title p {
	color: #6E7580;
	line-height: 24px;
	margin-bottom: 0;
}

.about__bar .about__bar__item {
	margin-bottom: 30px;
}

.about__bar .about__bar__item:last-child {
	margin-right: 0;
}

.about__bar .about__bar__item p {
	color: #263246;
	font-weight: 700;
	margin-bottom: 20px;
}

.about__bar .about__bar__item .barfiller {
	height: 8px;
	border: none;
	background: rgba(87, 104, 173, 0.1);
	border-radius: 50px;
	box-shadow: inherit;
	margin-bottom: 0;
}

.about__bar .about__bar__item .barfiller .tip {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	padding: 2px 11px 1px;
	border-radius: 10px;
	background: #5768AD;
	margin-top: -40px;
}

.about__bar .about__bar__item .barfiller .tip:after {
	border-color: #5768AD transparent;
	left: 50%;
	top: 92%;
	-webkit-transform: translateX(-6px);
	transform: translateX(-6px);
}

.about__bar .about__bar__item .barfiller .fill {
	background: #5768AD;
	border-radius: 50px;
}

/*---------------------
    Team
-----------------------*/

.team {
	background: #f5f6fa;
	padding-bottom: 60px;
	margin-top: -60px;
}

.team__item {
	box-shadow: 0px 10px 15px rgba(35, 37, 43, 0.1);
	position: relative;
	padding: 85px 35px 80px;
	background: #ffffff;
}

.team__item__pic {
	position: absolute;
	right: -15px;
	bottom: 0;
}

.team__item__text .team__item__title {
	margin-bottom: 18px;
}

.team__item__text .team__item__title h4 {
	color: #5768AD;
	margin-bottom: 4px;
}

.team__item__text .team__item__title span {
	font-size: 16px;
	color: #6E7580;
}

.team__item__text p {
	font-size: 14px;
	line-height: 20px;
}

.team__item__text .team__item__social a {
	display: inline-block;
	font-size: 16px;
	color: #9B9EA3;
	margin-right: 18px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__item__text .team__item__social a:hover {
	color: #5768AD;
}

.team__item__text .team__item__social a:last-child {
	margin-right: 0;
}

.team__slider.owl-carousel .col-lg-6 {
	max-width: 100%;
}

.team__slider.owl-carousel .owl-stage-outer {
	padding-top: 60px;
	padding-bottom: 40px;
}

.team__slider.owl-carousel .owl-nav button {
	display: inline-block;
	height: 46px;
	width: 46px;
	background: #ffffff;
	border-radius: 2px;
	color: #111111;
	font-size: 20px;
	line-height: 52px;
	text-align: center;
	position: absolute;
	left: -76px;
	top: 50%;
	-webkit-transform: translateY(-23px);
	transform: translateY(-23px);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.team__slider.owl-carousel .owl-nav button:hover {
	color: #ffffff;
	background: #5768AD;
}

.team__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -76px;
}

/*---------------------
    Counter
-----------------------*/

.counter {
	padding-top: 0;
}

.counter__text {
	padding: 95px 70px 20px;
	box-shadow: 0px 0px 20px rgba(9, 30, 64, 0.6);
}

.counter__item {
	display: inline-block;
	margin-right: 60px;
	margin-bottom: 30px;
}

.counter__item:last-child {
	margin-right: 0;
}

.counter__item__icon {
	float: left;
	margin-right: 30px;
}

.counter__item__text {
	overflow: hidden;
}

.counter__item__text h2 {
	font-size: 44px;
	font-weight: 700;
	color: #ffffff;
}

.counter__item__text p {
	color: #ffffff;
	margin-bottom: 0;
	font-size: 18px;
}

/*---------------------
  Classes
-----------------------*/

.classes__filter {
	background: #ffffff;
	box-shadow: 0px 10px 20px rgba(35, 37, 43, 0.1);
	border-radius: 2px;
	padding: 25px 100px 30px;
	margin-bottom: 60px;
}

.classes__filter form {
	position: relative;
	width: 100%;
	display: inline-block;
}

.classes__filter form .class__filter__select {
	width: calc(24% - 30px);
	float: left;
	margin-right: 30px;
}

.classes__filter form .class__filter__select p {
	color: #9B9EA3;
	margin-bottom: 10px;
}

.classes__filter form .class__filter__select .nice-select {
	float: none;
	height: 40px;
	background: #f5f6fa;
	border: 1px solid #D4D5D8;
	border-radius: 2px;
}

.classes__filter form .class__filter__select .nice-select span {
	font-size: 16px;
	color: #001943;
}

.classes__filter form .class__filter__select .nice-select .list {
	width: 100%;
	border-radius: 0;
	margin-top: 0;
}

.classes__filter form .class__filter__select .nice-select:after {
	border-bottom: 2px solid #5768AD;
	border-right: 2px solid #5768AD;
	height: 8px;
	margin-top: 0;
	right: 20px;
	top: 37%;
	width: 8px;
}

.classes__filter form .class__filter__btn {
	position: absolute;
	right: 0;
	bottom: 0;
}

.classes__filter form .class__filter__btn button {
	font-size: 18px;
	color: #ffffff;
	height: 40px;
	width: 42px;
	border-radius: 2px;
	background: #5768AD;
	line-height: 40px;
	text-align: center;
	border: none;
	display: inline-block;
}

.upcoming-classes {
	padding-bottom: 70px;
	padding-top: 80px;
}

.upcoming-classes.top-classes {
	background: #f5f6fa;
}

.classes__item {
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	margin-bottom: 30px;
	background: #ffffff;
}

.classes__item.classes__item__page .classes__item__pic span {
	padding: 5px 30px 4px 20px;
}

.classes__item__pic {
	height: 241px;
	position: relative;
}

.classes__item__pic span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 7px 16px 4px;
	background: #78B833;
	position: absolute;
	left: 0;
	top: 10px;
}

.classes__item__text {
	padding: 24px 0 28px 30px;
}

.classes__item__text ul {
	margin-bottom: 10px;
}

.classes__item__text ul li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 45px;
}

.classes__item__text ul li:last-child {
	margin-right: 0;
}

.classes__item__text ul li span {
	margin-right: 5px;
}

.classes__item__text p {
	color: #9B9EA3;
	margin-bottom: 10px;
}

.classes__item__text h4 {
	margin-bottom: 50px;
}

.classes__item__text h4 a {
	color: #001943;
	line-height: 36px;
}

.classes__item__text h6 {
	color: #001943;
	margin-bottom: 35px;
}

.classes__item__text h6 span {
	color: #9B9EA3;
	font-size: 14px;
}

.classes__item__text .class-btn {
	font-size: 14px;
	font-weight: 700;
	color: #5768AD;
	display: inline-block;
	border: 1px solid rgba(155, 158, 163, 0.2);
	padding: 10px 20px 7px;
	border-radius: 2px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.classes__item__text .class-btn:hover {
	background: #5768AD;
	border: 1px solid #5768AD;
	color: #ffffff;
}

.classes__pagination {
	text-align: center;
	padding-top: 30px;
}

.classes__pagination.blog__pagination {
	text-align: left;
	padding-top: 0;
}

.classes__pagination a {
	display: inline-block;
	font-size: 16px;
	color: #9B9EA3;
	background: #f5f6fa;
	font-weight: 700;
	height: 40px;
	width: 40px;
	border: 1px solid #D4D5D8;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 16px;
}

.classes__pagination a:last-child {
	margin-right: 0;
}

.classes__pagination a span {
	font-size: 24px;
	position: relative;
	top: 3px;
}

.classes__pagination a:hover {
	background: #5768AD;
	border-color: #5768AD;
	color: #ffffff;
}

/*---------------------
  Classes Details
-----------------------*/

.classes__sidebar__item {
	margin-bottom: 60px;
}

.classes__sidebar__item.classes__sidebar__item--info h4 {
	margin-bottom: 30px;
}

.classes__sidebar__item h4 {
	color: #263246;
	margin-bottom: 40px;
}

.classes__sidebar__item ul.classes__sidebar__item__widget li {
	display: inline-block;
	margin-right: 45px;
}

.classes__sidebar__item ul.classes__sidebar__item__widget li:last-child {
	margin-right: 0;
}

.classes__sidebar__item ul.classes__sidebar__item__id {
	margin-bottom: 30px;
}

.classes__sidebar__item ul li {
	list-style: none;
	font-size: 18px;
	color: #6E7580;
	line-height: 36px;
}

.classes__sidebar__item ul li span {
	margin-right: 5px;
	font-size: 18px;
}

.classes__sidebar__item .sidebar-btn {
	font-size: 14px;
	font-weight: 700;
	color: #5768AD;
	display: inline-block;
	border: 1px solid #5768AD;
	padding: 10px 20px 7px;
	border-radius: 2px;
}

.classes__sidebar__instructor__pic {
	float: left;
	margin-right: 30px;
}

.classes__sidebar__instructor__pic img {
	height: 121px;
	width: 121px;
	border-radius: 50%;
}

.classes__sidebar__instructor__text {
	overflow: hidden;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title {
	margin-bottom: 15px;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title h4 {
	color: #5768AD;
	margin-bottom: 0;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__title span {
	font-size: 16px;
	color: #6E7580;
}

.classes__sidebar__instructor__text p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a {
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 18px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a:hover {
	color: #5768AD;
}

.classes__sidebar__instructor__text .classes__sidebar__instructor__social a:last-child {
	margin-right: 0;
}

.classes__sidebar__comment {
	border-bottom: 1px solid rgba(37, 37, 37, 0.1);
	padding-bottom: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.classes__sidebar__comment:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.classes__sidebar__comment__pic {
	text-align: center;
	float: left;
	margin-right: 30px;
}

.classes__sidebar__comment__pic img {
	height: 70px;
	width: 70px;
	border-radius: 50%;
	margin: 0 auto;
	margin-bottom: 10px;
}

.classes__sidebar__comment__pic .classes__sidebar__comment__rating i {
	font-size: 12px;
	color: #F5C136;
	margin-right: -4px;
}

.classes__sidebar__comment__text {
	overflow: hidden;
}

.classes__sidebar__comment__text span {
	font-size: 14px;
	color: #9B9EA3;
	display: block;
}

.classes__sidebar__comment__text h6 {
	color: #5768AD;
	font-weight: 700;
	margin-top: 6px;
	margin-bottom: 5px;
}

.classes__sidebar__comment__text p {
	line-height: 28px;
	margin-bottom: 0;
}

.classes__details h2 {
	font-size: 44px;
	color: #263246;
	margin-bottom: 16px;
}

.classes__details p {
	line-height: 28px;
	margin-bottom: 40px;
}

.classes__details .classes__details__widget {
	margin-bottom: 15px;
}

.classes__details .classes__details__widget li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	display: inline-block;
	margin-right: 45px;
}

.classes__details .classes__details__widget li:last-child {
	margin-right: 0;
}

.classes__details .classes__details__widget li span {
	margin-right: 5px;
}

.classes__details__large {
	position: relative;
	margin-bottom: 28px;
}

.classes__details__large span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 5px 30px 4px 20px;
	background: #5768AD;
	position: absolute;
	left: 0;
	top: 10px;
}

.classes__details__item {
	margin-bottom: 20px;
}

.classes__details__item img {
	min-width: 100%;
	margin-bottom: 20px;
}

.classes__details__desc h6 {
	color: #263246;
	font-weight: 700;
	margin-bottom: 12px;
}

.classes__details__desc ul li {
	list-style: none;
	font-size: 16px;
	line-height: 28px;
}

.classes__details__desc ul li span {
	color: #5768AD;
	margin-right: 10px;
}

/*---------------------
  Leave Comment
-----------------------*/

.leave-comment {
	background: #f5f6fa;
	padding-bottom: 70px;
	padding-top: 80px;
}

.leave__comment__text h2 {
	font-size: 44px;
	color: #263246;
	text-align: center;
	margin-bottom: 35px;
}

.leave__comment__text form input {
	width: 100%;
	font-size: 16px;
	color: #6E7580;
	padding-left: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	border-radius: 2px;
	height: 50px;
	margin-bottom: 20px;
}

.leave__comment__text form input::placeholder {
	color: #6E7580;
}

.leave__comment__text form .leave__comment__rating {
	margin-bottom: 20px;
}

.leave__comment__text form .leave__comment__rating h5 {
	font-size: 20px;
	color: #263246;
	display: inline-block;
	font-weight: 700;
	margin-right: 12px;
}

.leave__comment__text form .leave__comment__rating i {
	font-size: 16px;
	color: #F5C136;
	margin-right: -4px;
}

.leave__comment__text form .leave__comment__rating i:last-child {
	color: #9B9EA3;
}

.leave__comment__text form textarea {
	width: 100%;
	font-size: 16px;
	color: #6E7580;
	padding-left: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #ffffff;
	border-radius: 2px;
	height: 132px;
	margin-bottom: 35px;
	resize: none;
	padding-top: 14px;
}

.leave__comment__text form textarea::placeholder {
	color: #6E7580;
}

/*---------------------
  Pricing
-----------------------*/

.pricing {
	padding-top: 80px;
	padding-bottom: 60px;
}

.pricing__item {
	text-align: center;
	background: #ffffff;
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	padding: 35px 0 46px;
	position: relative;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	z-index: 1;
	margin-bottom: 40px;
	border-radius: 10px;
	overflow: hidden;
}

.pricing__item .active {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 9;
}

.pricing__item:hover {
	box-shadow: 0px 0px 65px rgba(12, 26, 39, 0.05);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 9;
}

.pricing__item:hover .pricing__item__price h2 {
	color: #5768AD;
}

.pricing__item:hover ul li {
	color: #6E7580;
}

.pricing__item:hover .primary-btn {
	background: #5768AD;
}

.pricing__item .pricing__item__star {
	height: 119px;
	width: 119px;
	background: #5768AD;
	border-radius: 50%;
	position: absolute;
	right: -50px;
	top: -50px;
}

.pricing__item .pricing__item__star i {
	font-size: 35px;
	color: #ffffff;
	position: absolute;
	left: 25px;
	bottom: 21px;
}

.pricing__item h4 {
	font-size: 25px;
	color: #001943;
	margin-bottom: 45px;
}

.pricing__item .pricing__item__price {
	margin-bottom: 15px;
}

.pricing__item .pricing__item__price h2 {
	font-size: 70px;
	font-weight: 700;
	color: #263246;
	line-height: 65px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.pricing__item .pricing__item__price span {
	color: #9B9EA3;
	font-size: 15px;
	font-weight: 400;
	display: block;
}

.pricing__item ul {
	margin-bottom: 12px;
}

.pricing__item ul li {
	list-style: none;
	font-size: 18px;
	color: #9B9EA3;
	line-height: 45px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.pricing__item .primary-btn {
	background: #acacac;
	padding: 16px 55px 14px 50px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
	margin-bottom: 60px;
}

.blog__item__pic {
	margin-bottom: 26px;
}

.blog__item__pic img {
	min-width: 100%;
}

.blog__item__text ul {
	margin-bottom: 26px;
}

.blog__item__text ul li {
	font-size: 16px;
	color: #9B9EA3;
	margin-right: 15px;
	display: inline-block;
}

.blog__item__text ul li:last-child {
	margin-right: 0;
}

.blog__item__text ul li i {
	margin-right: 5px;
}

.blog__item__text h5 {
	margin-bottom: 15px;
}

.blog__item__text h5 a {
	font-size: 20px;
	color: #263246;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__item__text h5 a:hover {
	color: #5768AD;
}

.blog__item__text p {
	color: #9B9EA3;
	margin-bottom: 35px;
}

.blog__item__text .blog_read_more {
	font-size: 14px;
	color: #9B9EA3;
	padding: 18px 25px 15px;
	border-radius: 50px;
	text-transform: uppercase;
	border: 1px solid rgba(155, 158, 163, 0.3);
	display: inline-block;
}

.blog__item__text .blog_read_more span {
	font-size: 16px;
	position: relative;
	top: 2px;
	margin-left: 6px;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	padding-right: 50px;
}

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 46px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	font-size: 16px;
	color: #9B9EA3;
	padding-left: 25px;
}

.blog__sidebar__search form input::placeholder {
	color: #9B9EA3;
}

.blog__sidebar__search form button {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	color: #9B9EA3;
	height: 100%;
	padding: 0 15px;
	background: transparent;
	border: none;
}

.blog__sidebar__categories {
	margin-bottom: 30px;
}

.blog__sidebar__categories h4 {
	color: #1C1C1C;
	margin-bottom: 10px;
}

.blog__sidebar__categories ul li {
	list-style: none;
}

.blog__sidebar__categories ul li a {
	font-size: 16px;
	color: #9B9EA3;
	line-height: 48px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__categories ul li a:hover {
	color: #5768AD;
}

.blog__sidebar__recent {
	margin-bottom: 50px;
}

.blog__sidebar__recent h4 {
	color: #1C1C1C;
	margin-bottom: 25px;
}

.blog__recent__item {
	margin-bottom: 20px;
	overflow: hidden;
}

.blog__recent__item:last-child {
	margin-bottom: 0;
}

.blog__recent__item__pic {
	float: left;
	margin-right: 20px;
}

.blog__recent__item__text {
	overflow: hidden;
}

.blog__recent__item__text h6 {
	color: #263246;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 5px;
}

.blog__recent__item__text span {
	font-size: 12px;
	color: #9B9EA3;
	text-transform: uppercase;
}

.blog__sidebar__tags {
	margin-bottom: 40px;
}

.blog__sidebar__tags h4 {
	color: #1C1C1C;
	margin-bottom: 25px;
}

.blog__sidebar__tags a {
	font-size: 16px;
	background: #f5f5f5;
	color: #9B9EA3;
	display: inline-block;
	padding: 7px 15px 3px;
	margin-right: 6px;
	margin-bottom: 10px;
}

.blog__sidebar__comment h4 {
	color: #1C1C1C;
	margin-bottom: 25px;
}

.close
{
	
	color:#fff;
	position: absolute;
    right: 15px;
    top: 10px;
}

#myModal
{
	
	width: 100%;
    top: 65%;
    left: 50%;
    transform: translate( -50%, -50%);
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 55vh;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog__hero__text ul li {
	list-style: none;
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	margin-right: 35px;
	position: relative;
}

.blog__hero__text ul li:after {
	position: absolute;
	right: -23px;
	top: -1px;
	content: "|";
}

.blog__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__hero__text ul li:last-child:after {
	display: none;
}

.blog__hero__text ul li span {
	font-weight: 700;
}

/*---------------------
  Blog Details
-----------------------*/

.blog__details__large {
	position: relative;
	margin-bottom: 40px;
}

.blog__details__large span {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	display: inline-block;
	padding: 5px 30px 4px 20px;
	background: #5768AD;
	position: absolute;
	left: 0;
	top: 10px;
}

.blog__details__text {
	margin-bottom: 30px;
}

.blog__details__text p {
	line-height: 28px;
}

.blog__details__quote {
	position: relative;
	padding-left: 30px;
	margin-bottom: 60px;
}

.blog__details__quote:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 56px;
	width: 2px;
	background: #5768AD;
	content: "";
}

.blog__details__quote p {
	line-height: 28px;
	color: #263246;
}

.blog__details__pic {
	margin-bottom: 30px;
}

.blog__details__pic img {
	margin-bottom: 20px;
	min-width: 100%;
}

.blog__details__desc {
	margin-bottom: 40px;
}

.blog__details__desc h4 {
	color: #263246;
	font-weight: 700;
	margin-bottom: 10px;
}

.blog__details__desc p {
	line-height: 28px;
}

.blog__details__tags__share {
	overflow: hidden;
	margin-bottom: 25px;
}

.blog__details__tags__share p {
	color: #9B9EA3;
	float: left;
}

.blog__details__tags__share p span {
	color: #263246;
	font-weight: 700;
}

.blog__details__tags__share .blog__details__share {
	float: right;
}

.blog__details__tags__share .blog__details__share a {
	display: inline-block;
	font-size: 18px;
	color: #263246;
	margin-right: 24px;
}

.blog__details__tags__share .blog__details__share a:last-child {
	margin-right: 0;
}

.blog__details__author {
	background: #f5f6fa;
	border-radius: 2px;
	padding: 35px 40px 35px 20px;
	margin-bottom: 50px;
}

.blog__details__author__pic {
	float: left;
	margin-right: 20px;
}

.blog__details__author__pic img {
	height: 90px;
	width: 90px;
	border-radius: 50%;
}

.blog__details__author__text {
	overflow: hidden;
}

.blog__details__author__text h4 {
	color: #263246;
	font-weight: 700;
	margin-bottom: 5px;
}

.blog__details__author__text p {
	color: #9B9EA3;
	line-height: 28px;
	margin-bottom: 0;
}

.blog__previous__btn,
.blog__next__btn {
	display: block;
	position: relative;
	padding-left: 30px;
}

.blog__previous__btn i,
.blog__next__btn i {
	font-size: 25px;
	color: #9B9EA3;
	position: absolute;
	left: 0;
	top: 0;
}

.blog__previous__btn h6,
.blog__next__btn h6 {
	color: #263246;
	font-weight: 700;
	margin-bottom: 5px;
}

.blog__previous__btn span,
.blog__next__btn span {
	font-size: 12px;
	color: #9B9EA3;
}

.blog__next__btn {
	text-align: right;
	padding-left: 0;
	padding-right: 30px;
}

.blog__next__btn i {
	right: 0;
	top: 0;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-bottom: 80px;
}

.contact__widget__item {
	text-align: center;
	margin-bottom: 30px;
}

.contact__widget__item span {
	font-size: 36px;
	color: #5768AD;
}

.contact__widget__item h4 {
	color: #263246;
	margin-top: 16px;
	margin-bottom: 5px;
}

.contact__widget__item p {
	color: #9B9EA3;
	margin-bottom: 0;
}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
	position: relative;
}

.map iframe {
	width: 100%;
}

.map .map-inside {
	position: absolute;
	left: 50%;
	top: 160px;
	-webkit-transform: translateX(-175px);
	-ms-transform: translateX(-175px);
	transform: translateX(-175px);
}

.map .map-inside i {
	font-size: 48px;
	color: #5768AD;
	position: absolute;
	bottom: -75px;
	left: 50%;
	-webkit-transform: translateX(-18px);
	-ms-transform: translateX(-18px);
	transform: translateX(-18px);
}

.map .map-inside .inside-widget {
	width: 350px;
	background: #ffffff;
	text-align: center;
	padding: 23px 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
	box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

.map .map-inside .inside-widget:after {
	position: absolute;
	left: 50%;
	bottom: -38px;
	-webkit-transform: translateX(-6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-9px);
	border: 18px solid transparent;
	border-top: 36px solid #ffffff;
	content: "";
	z-index: -1;
}

.map .map-inside .inside-widget h5 {
	font-size: 20px;
	color: #263246;
	margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
	list-style: none;
	font-size: 16px;
	color: #9B9EA3;
	line-height: 26px;
}

/*---------------------
  Contact Form
-----------------------*/

.comment-form {
	background: #ffffff;
	padding-bottom: 100px;
}

.comment-form form input {
	margin-bottom: 30px;
}

.comment-form form textarea {
	margin-bottom: 34px;
}

/*---------------------
  Faq
-----------------------*/

.faq__accordion .card {
	border: none;
	border-radius: 0;
}

.faq__accordion .card:last-child .card-heading {
	border-bottom: none;
}

.faq__accordion .card:last-child .collapse.show .card-body {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.faq__accordion .card .card-heading {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 20px;
	margin-bottom: 15px;
}

.faq__accordion .card .card-heading.active {
	border-bottom: 0;
}

.faq__accordion .card .card-heading.active a span {
	color: #263246;
}

.faq__accordion .card .card-heading.active a span:before {
	opacity: 1;
}

.faq__accordion .card .card-heading a {
	font-size: 24px;
	cursor: pointer;
}

.faq__accordion .card .card-heading a span {
	font-weight: 700;
	position: relative;
	color: #9B9EA3;
	display: inline-block;
	transition: all 0.4s;
}

.faq__accordion .card .card-heading a span:before {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 100%;
	background: #5768AD;
	content: "";
	opacity: 0;
	transition: all 0.4s;
}

.faq__accordion .card .card-body {
	padding: 0;
	padding-bottom: 30px;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__accordion .card .card-body p {
	margin-bottom: 0;
	line-height: 24px;
}

.faq__accordion .card .card-body h6 {
	color: #6E7580;
	margin-top: 35px;
}

.faq__accordion .card .card-body h6 a {
	color: #6E7580;
}

.faq__accordion .card-heading a:after,
.faq__accordion .card-heading>a.active[aria-expanded=false]:after {
	content: "+";
	font-size: 32px;
	font-weight: 400;
	color: #263246;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 20px;
	top: 8px;
}

.faq__accordion .card-heading.active a:after {
	content: "-";
	font-size: 32px;
	font-weight: 400;
	color: #5768AD;
	position: absolute;
	right: 0;
	top: 4px;
	line-height: 20px;
}

.faq__accordion .card-heading a[aria-expanded=true]:after,
.faq__accordion .card-heading>a.active:after {
	content: "-";
	font-size: 32px;
	font-weight: 400;
	color: #5768AD;
	position: absolute;
	right: 0;
	top: 4px;
	line-height: 20px;
}


/*---------------------
  Home Room
-----------------------*/

.home-room .container-fluid {
	padding-right: 0;
	overflow: hidden;
}
.home-room p{
	line-height: 24px;
	font-size: 16px;
}

.home__room__item {
	height: 40vh;
	position: relative;
	margin-right: 15px;
	margin-bottom: 15px;
}
.home__room__item:after{
	content: "";
	opacity: 0.8;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
	position: absolute;
	background: #545151;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-size: cover;
	height: auto;
	min-height: 190px;
}
.home__room__item:hover .home__room__title {
	top: 75px;
	/* padding: 32px 25px 0; */
}

.home__room__item:hover a {
	bottom: 32px;
	opacity: 1;
	visibility: visible;
	background: #00000091;
	border-radius: 2px;
	padding: 5px;
	z-index: 1;
}

.home__room__item a {
	font-size: 16px;
	color: #ffffff;
	font-family: "Barlow Condensed", sans-serif;
	position: relative;
	padding: 4px 0;
	display: inline-block;
	position: absolute;
	left: 25px;
	bottom: 0px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.home__room__item a:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #78B833;
	content: "";
}

.home__room__title {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	padding: 0 25px;
	/* margin-top: -120px; */
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}

.home__room__title h4 {
	color: #fff;
	margin-bottom: 5px;
	background: #78b833e0;
	padding: 15px 10px;
	border-radius: 3px;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	box-shadow: 5px 5px 10px #00000052;
	/* box-shadow: inset 0 0 5px #fbd10b47; */
	/* box-shadow: 1px 1px 5px #000; */
}
.abtShowOnHover{
	display: none;
}

.home__room__item:hover .home__room__title .abtShowOnHover{
	display: block;
	height: 60px;
	overflow: hidden;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	text-shadow: 0px 1px 2px #3e3737;
}

.home__room__title h2 {
	font-size: 48px;
	color: #ffffff;
	position: relative;
	padding-left: 12px;
}

.home__room__title h2 sup {
	font-size: 20px;
	position: absolute;
	left: 0;
	top: 15px;
}

.home__room__title h2 span {
	font-size: 18px;
}

.home__explore {
	padding-top: 65px;
}

.home__explore h3 {
	color: #000000;
	line-height: 50px;
}


.owl-nav .arrow_left:before {
    content: "\f104";
    display: inline-block;
    font: normal normal bold 24px/1 FontAwesome;
}

.owl-nav .arrow_right:before {
    content: "\f105";
    display: inline-block;
    font: normal normal bold 24px/1 FontAwesome;
}

.partnerCarouselDiv .logo__carousel {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    padding-top: 20px;
    /* margin-bottom: 80px; */
}

.partnerCarouselDiv .logo__carousel__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 51px;
}

.partnerCarouselDiv .owl-carousel .owl-item img{
	width: auto;
	height: 45px;
}




/*---------------------
  Gallery
-----------------------*/

.gallery {
	padding-top: 50px;
	padding-bottom: 40px;
	width: 100%;
	float: left;
}

.gallery__text {
	margin-bottom: 10px;
}

.gallery__text .section-title {
	/* text-align: left; */
	margin-bottom: 0;
	width: 100%;
	float: left;
}

.gallery__text .gallery__title p {
	margin-bottom: 35px;
}

.gallery__text .gallery__title a span {
	font-size: 20px;
	position: relative;
	top: 5px;
}

.gallery__item {
	height: 100%;
	/* max-height: 376px; */
	/* min-height: 376px; */
	width: 100%;
	border: 1px solid #cccccccf;
	border-radius: 2px;
	/* box-shadow: 2px 2px 4px #ccc; */
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	box-shadow: inset 0 0 10px #064f8bb0;
	/* margin-bottom: 5px; */
	padding: 10px;
	background: #fff;
}


/*------------ OWL carousel -------------------*/

.owl-dots{
	text-align: center;
}
.owl-carousel button.owl-dot{
	height: 10px;
    width: 10px;
    background: #cccccc;
    margin-right: 10px;
}

.owl-carousel button.owl-dot.active{
	background: #064f8b;
}


/*------------ Section Ministries list in carousel --------------*/

.call-to-action-box {
    margin-top: -80px;
}
.call-to-action-box .action-style-box {
    background: #F2F7FA;
    background: #fff;
    padding: 15px 20px 10px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
    border-radius: 5px;
}


/*------------- Section Pillers of GatiShakti start--------------------*/



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  /* border: 1px solid #fff; */
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  /* background: #fff; */
  border: none !important;
  margin-bottom: 15px;
}
.services .icon-box:nth-child(1){
	/* border-bottom: 1px solid; */
	padding-bottom: 20px;
}
.services .icon-box.border-bottom::before {
  content:'';
  position: absolute;
  background-color: #06599d;
  width: 50%;
  height: 1px;
  bottom: -1px;
  left:25%;
}
.services .icon-box.border-top::before {
  content:'';
  position: absolute;
  background-color: #06599d;
  width: 50%;
  height: 1px;
  top: -16px;
  left:25%;
}
.services .icon-box.border-left-right::before {
  content:'';
  position: absolute;
  background-color: #06599d;
  width: 1px;
  height: 50%;
  bottom: 25%;
  left: 0px;
}

.services .icon-box.border-left-right::after{
  content:'';
  position: absolute;
  background-color: #06599d;
  width: 1px;
  height: 50%;
  bottom: 25%;
  right: -1px;
}
.services .icon-box.border-left::before {
  content:'';
  position: absolute;
  background-color: #06599d;
  width: 1px;
  height: 50%;
  bottom: 25%;
  left: 0px;
}

.services .icon-box.border-right::before{
  content:'';
  position: absolute;
  background-color: #06599d;
  width: 1px;
  height: 50%;
  bottom: 25%;
  right: -1px;
}
.services .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon_spn{
	width: 90px;
	float: left;
	border: 3px solid #000;
	box-shadow: 0px 5px 3px #000;
	border-radius: 50%;
	padding: 5px;
}
.services .icon-box:hover .icon_spn{
    /* border: 2px solid #EC691F; */
    border: 2px solid #000;
    box-shadow: 3px 3px 5px #171515;
    background: #fff;
}
.services .icon-box .icon i {
  color: #16df7e;
  font-size: 36px;
  transition: 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #064f8b;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 18px;
  font-size: 12px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  border-color: #eaecef;
  background: #EC691F;
}
.services .icon-box:hover p{
	color: #fff;
}
.services .icon-box:hover h4 a {
  /* color: #EC691F; */
  color: #fff;
}



/* modal */
/* =============================================== */
.modal-body {
  display: flex;
  padding: 0;
  border-radius: 4rem;
  font-family: 'PT Sans', sans-serif;
}

.modal-content {
 border-radius: 0.4rem;
  width: 100%;
  -webkit-box-shadow: -1px -2px 42px -19px rgba(0,0,0,0.74);
  -moz-box-shadow: -1px -2px 42px -19px rgba(0,0,0,0.74);
  box-shadow: -1px -2px 42px -19px rgba(0,0,0,0.74);
  /* background: #06599D; */
background: #051c39;}
.modal-content h1, .modal-content h2, .modal-content h3 {
    text-align: center;
}
.modal-content h1 {
  font-size: 1.6em;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

.modal-content h2 {
    font-size: 1.1em;
}
.modal-content h3 {
  font-size: .8em;
  letter-spacing: 2px;
}
form {
    font-size: .8em;
}
.column {
  flex: 50%;
  padding: 10px;
}

.column#main {
  flex: 85%;
    padding: 25px;
    display: grid;
    width: 100%;
    align-items: center;
}


#secondary {
  background-color: #e9a511;
  background-image: linear-gradient(0deg, #073f4d 35%, #ffffff 33%, #ffffff 66%, #5b0d0d 66% );
  border-radius: 0 1rem 1rem 0;
  text-align: center;
  display: flex;
  align-items: center;
}

#main .form-control {
  border-radius: 0;
  font-size: .95em;
  padding: 0px 8px;
  min-height: 30px;
  background: #fff;
}
.loginSendBtnDiv{
	width: 70px;
}
.enterOtpDiv{
	width: calc(100% - 85px);}
#login-card .form-group{
	margin-bottom: 10px;
}
#main .btn-primary {
  width: 100%;
}

#secondary .btn-primary {
  background: #f8f9fa4f;
  color: #000;
}
.modal-body label {
  margin-bottom: 0;
}

.sec-content {
  /*margin-top: 85%;*/
}
.flag_left_div{
	margin-right: -2px;
display: none;}
.card#login-card {
    background-color: #051c39;
    box-shadow: none;
    border: none;
}

#login-card .btn-info{
	background: #01acec;
	font-weight: bold;
}
#login-card .otp{
	height: 30px;
	line-height: 30px;
	padding: 0px 15px;
}

#loginModal.modal{
	background: #000000a1;
	background: #26324669;
}
#loginModal .modal-dialog{
	width: 100%;
top: 50%;
	left: 50%;
	transform: translate( -50%, -50%);
	margin: 0;
}
#main .user-thumb img{
	width: 125px;
	/* background: #152b40; */
	/* padding: 0px 10px 5px 10px; */
	border-radius: 2px;
}
#imageidcap{
	margin-right: 10px;
	height: 45px;
	/* padding:0px; */
	/* border-right: 5px solid #06599D; */
}
.header__social .primary-btn{
	border: none;
	line-height: 100%;
	float: right;
	padding: 8px 15px;
}
#change-image .fa{
	/* color: #00b9ff; */
	padding: 0.5rem 1.9rem; 
	cursor: pointer;
}

/*---------------- Login State wise Modal CSS start ---------------------*/

.modal.left .modal-dialog,
	.modal.right .modal-dialog {
		position: fixed;
		margin: auto;
		width: 600px;
		height: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		    -ms-transform: translate3d(0%, 0, 0);
		     -o-transform: translate3d(0%, 0, 0);
		        transform: translate3d(0%, 0, 0);
	}

	.modal.left .modal-content,
	.modal.right .modal-content {
		height: 100%;
		overflow-y: auto;
	}
	
	.modal.left .modal-body,
	.modal.right .modal-body {
		padding: 15px 15px 80px;
	}

/*Left*/
	.modal.left.fade .modal-dialog{
		left: -600px;
		-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, left 0.3s ease-out;
		        transition: opacity 0.3s linear, left 0.3s ease-out;
	}
	
	.modal.left.fade.in .modal-dialog{
		left: 0;
	}
        
	#loginStateModal .modal-content {
		border-radius: 0;
		border: none;
	}
	#loginStateModal .modal-content{
		
background: #c3e4ff;
	}
	#loginStateModal .modal-header {
		border-bottom-color: #EEEEEE;
		background-color: #06599D;
	}
	#loginStateModal .modal-body{
		/* padding: 15px 0px; */
	}
	#loginStateModal .modal-header h4{
		color: #fff;
	}
	#loginStateModal #stateListModal .item{
		width: 25%;
		float: left;
		transform: unset;
		text-align: center;
		padding: 5px;
		margin-bottom: 0px;
		opacity: 0.9;
	}
	#loginStateModal .testimonial-name{
		font-size: 0.75rem;
		padding: 10px 4px;
	}
	.button-typewriter button {
	 width: 100%;
	 height: 100%;
}
 .button-typewriter p {
	 animation: typing 4s steps(12) infinite;
	 display: inline-block;
	 overflow: hidden;
	 white-space: nowrap;
	 padding: 0px !important;
	 margin: 0px !important;
	 color: #fff;
	 font-size: 0.9rem;
	 font-weight: 600;
	 line-height: 32px;
	 text-transform: uppercase;
	 letter-spacing: normal;
}
 .button-typewriter .button__wrapper:hover p {
	 animation: blink 0s infinite;
}
 @keyframes typing {
	 0% {
		 width: 0;
	}
	 50% {
		 width: 100%;
	}
	 55%, 65%, 75% {
		 opacity: 1;
	}
	 60%, 70% {
		 opacity: 0;
	}
	 80% {
		 width: 100%;
	}
	 100% {
		 width: 0;
	}
}

.button-typewriter{
	width: auto;
	float: right;
	padding-right: 10px;
}
 .button__wrapper {
	 display: inline-block;
	 position: relative;
	 width: 185px;
	 height: auto;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 .button-typewriter button {
	 background: #00AEEF;
	 color: #fff;
	 border: 0px solid #fff;
	 border-radius: 3px;
	 height: 32px;
	 padding: 0.1rem 0.8rem;
	 font-size: 1.2rem;
	 outline: none;
	 cursor: pointer;
	 position: relative;
	 transition: 0.2s ease-in-out;
	 letter-spacing: 1px;
}
.ripple-btn.btn{
	outline: 0;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	background: #00AEEF;
	min-width: 200px;
	border: 0;
	border-radius: 2px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
	box-sizing: border-box;
	padding: 5px 15px;
	margin-right: 12px;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	overflow: hidden;
	cursor: pointer;
}
 .ripple-btn.btn .fa {
	 border-radius: 100%;
	 animation: ripple 0.6s linear infinite;
}
 @keyframes ripple {
	 0% {
		 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
	}
	 100% {
		 box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
	}
}


/*-------------------------- Login state wise CSS Start --------------------*/
.stateLogin_sec{
	width: 100%;
	float: left;
	background: #091e5d;
	padding: 25px 0px 15px 0px;
}
.stateLogin_sec .section-title h2{
	color: #c4d3f0;
} 
.shadow-effect {
		    background: #fff;
		    padding: 10px;
		    border-radius: 4px;
		    text-align: center;
	border:1px solid #ECECEC;
		    box-shadow: 0 19px 38px rgb(0 0 0 / 17%), 0 15px 12px rgb(0 0 0 / 21%);
		}
		#testimonials-list .shadow-effect p {
		    font-family: inherit;
		    font-size: 17px;
		    line-height: 1.5;
		    margin: 0 0 17px 0;
		    font-weight: 300;
		}
		.testimonial-name {
		    margin: -17px auto 0;
		    display: table;
		    width: 94%;
		    background: #0661ab;
		    padding: 15px 10px;
		    border-radius: 8px;
		    font-size: 1.1rem;
		    text-align: center;
		    color: #fff;
		    box-shadow: 0 9px 18px rgba(0,0,0,0.12), 0 5px 7px rgba(0,0,0,0.05);
		}
		.testimonial-name a{
			width: 100%;
			float: left;
			text-align: center;
			color: #fff;
			
			font-size: 1.1rem;
		}
		#testimonials-list .item {
		    text-align: center;
		    padding: 5px;
		    margin-bottom: 0px;
		    opacity: 0.9;
		    -webkit-transform: scale3d(0.8, 0.8, 1);
		    transform: scale3d(0.8, 0.8, 1);
		    transition: all 0.3s ease-in-out;
		}
		#testimonials-list .owl-item.active.center .item {
		    opacity: 1;
		    -webkit-transform: scale3d(1.0, 1.0, 1);
		    transform: scale3d(1.0, 1.0, 1);
		}
		#testimonials-list .owl-carousel .owl-item img {
		    -webkit-transform-style: preserve-3d;
		            transform-style: preserve-3d;
			max-width: 90px;
			border-radius: 50%;
    		margin: 0 auto 17px;
		}
		#testimonials-list.owl-carousel .owl-dots .owl-dot.active span,
#testimonials-list.owl-carousel .owl-dots .owl-dot:hover span {
		    background: #3190E7;
		    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.7);
		            transform: translate3d(0px, -50%, 0px) scale(0.7);
		}
#testimonials-list.owl-carousel .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
}
#testimonials-list.owl-carousel .owl-dots .owl-dot{
	display: inline-block;
}
		#testimonials-list.owl-carousel .owl-dots .owl-dot span {
		    background: #3190E7;
		    display: inline-block;
		    height: 20px;
		    margin: 0 2px 5px;
		    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.3);
		            transform: translate3d(0px, -50%, 0px) scale(0.3);
		    -webkit-transform-origin: 50% 50% 0;
		            transform-origin: 50% 50% 0;
		    transition: all 250ms ease-out 0s;
		    width: 20px;
		}
#testimonials-list.owl-carousel .owl-nav{
	
}
#testimonials-list.owl-carousel .owl-nav button {
    display: inline-block;
    height: 46px;
    width: 46px;
    background: rgb(43 91 208 / 59%);
    border-radius: 2px;
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 46px;
    text-align: center;
    position: absolute;
    left: 5px;
    top: 50%;
    -webkit-transform: translateY(-23px);
    transform: translateY(-23px);
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}
#testimonials-list.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 5px;
}

/*------------- State dropdown CSS start ------------------*/
.owl-filter-bar, #testimonials-list{
	width: 100%;
    float: left;
}
.stateDropdown{
  position: relative;
  width: 100%;
  float: left;
  text-align: center;
  margin-bottom: 30px;
}

button.stateSelectBtn{
  position: relative;
  width: 200px;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  text-align: left;
  font-size: 1.1rem;
  background: #2196f3;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  color: #fff;
}
button.stateSelectBtn:hover, button.stateSelectBtn:focus{
	background: #EC691F;
	border: 1px solid #EC691F;
}
button.stateSelectBtn i{
	line-height: 38px;
}

ul.stateUl{
  position: absolute;
  margin: 0;
  padding: 0;
  width: 200px;
  height: 300px;
  overflow: auto;
  background: #ccc;
  transform-origin: top;
  transform: perspective(1000px) rotateX(-90deg);
  transition: 0.5s;
  left: calc(50% - 100px);
}

.stateUl.active{
  transform: perspective(1000px) rotateX(0deg);
  display: block;
}

ul.stateUl li {
  list-style: none;
}

ul.stateUl li a {
  display:
  block;
  padding: 6px 10px;
  font-size: 0.9rem;
  text-align: left;
  text-decoration: none;
  background: #3d79bc;
  color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0,.2);
  transition: 0.5s;
}

ul.stateUl li a:hover{
  background: #0d7ad0;
}

/*------ Sticky NPG Project Proposal Button CSS start-------------------*/

.sticky_button_wrap{
position:fixed;bottom: 40px;right: 20px;
cursor:pointer;z-index: 2;}
.sticky_button_wrap .iconbutton{
width:50px;
height:50px;border-radius: 100%;background: #00AEEF;box-shadow: 0 4px 17px 0 rgb(0 0 0 / 14%), 0 1px 32px 0 rgb(0 0 0 / 12%), 0 2px 9px -1px rgb(0 0 0 / 20%);}
.sticky_button_wrap .button{
width:60px;
height:60px;background: #EC691F;}
.sticky_button_wrap .button:after {
	 background-color: #EC691F;
	 content: "";
	 display: block;
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 top: 0;
	 left: 0;
	 border-radius: 30px;
	 animation-name: blink;
	 animation-duration: 1.5s;
	 animation-iteration-count: infinite;
	 animation-direction: alternate-reverse;
	 animation-timing-function: cubic-bezier(0.22, 1, 0.22, 1);
}
 @keyframes blink {
	 0% {
		 transform: scale3d(1, 1, 1);
		 opacity: 0.8;
	}
	 100% {
		 transform: scale3d(1.1, 1.3, 1.1);
		 opacity: 0;
	}
}
.sticky_button_wrap .iconbutton i{
display:flex;
align-items:center;
justify-content:center;height: 100%;
color:white;font-size: 1.2rem;}
.sticky_button_wrap ul{list-style-type: none;position:absolute;bottom: 60px;
right:0;}
.sticky_button_wrap .options li{
display:flex;
justify-content:flex-end;
padding:5px;
}
.sticky_button_wrap .options li:hover .btn-label.hide{
	display: block;
} 
.sticky_button_wrap a{
	    width: 100%;
    float: left;
    position: absolute;
    right: 58px;
    display: contents;
}
.sticky_button_wrap .btn-label{width: max-content;position: relative;padding: 4px 5px;
margin-right:10px;align-self: center;
user-select:none;background-color: #fff;font-size: 0.85rem;color: #00AEEF;text-align: center;border-radius: 3px;transition: all .8s;box-shadow: 0 4px 17px 0 rgb(0 0 0 / 14%), 0 1px 32px 0 rgb(0 0 0 / 12%), 0 2px 9px -1px rgb(0 0 0 / 20%);}
.sticky_button_wrap .btn-label:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    right: -6px;
    visibility: visible;
    opacity: 1;
    transition: all .4s;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hero__sliders.owl-carousel .owl-nav button {
		left: 5px;
	}
	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}
	.team__slider.owl-carousel .owl-nav button {
		left: -5px;
	}
	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -5px;
	}
	.counter__item {
		margin-right: 50px;
	}
	.header__top__widget .primary-btn {
		display: none;
	}
	.header__top__widget ul {
		margin-right: 0;
	}
	.header__top__widget {
		padding: 35px 0 35px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header__menu ul li {
		margin-right: 18px;
	}
	.header__top__widget ul {
		display: none;
	}
	.hero__sliders.owl-carousel .owl-nav button {
		left: 5px;
	}
	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: 5px;
	}
	.about__pic {
		margin-bottom: 30px;
	}
	.team__item__pic {
		position: relative;
		right: 0;
		margin-bottom: 20px;
		margin-top: -80px;
	}
	.team__item {
		padding: 30px 35px 40px;
	}
	.team__slider.owl-carousel .owl-nav {
		text-align: center;
		padding-top: 50px;
	}
	.team__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
	}
	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}
	.classes__filter {
		padding: 25px 50px 30px;
	}
	.classes__filter form .class__filter__select {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}
	.classes__filter form .class__filter__btn {
		position: relative;
		right: 0;
		bottom: 0;
		text-align: center;
	}
	.blog__sidebar {
		margin-top: 50px;
	}
	.counter__item {
		margin-right: 50px;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.appointment__text {
		padding: 60px 30px;
	}
	.hero__sliders.owl-carousel .owl-nav button {
		position: absolute;
		/* left: 15px; */
		bottom: 120px;
		line-height: 30px;
	}
	.hero__sliders.owl-carousel .owl-nav button.owl-next {
		right: -25px;
		height: 30px;
		width: 30px;
	}
	.hero__sliders.owl-carousel .owl-nav button.owl-next{
	right: 10px;
	} .hero__sliders.owl-carousel .owl-nav button.owl-prev{
		left: 10px;
	}
	.home__about__pic__item {
		width: 100%;
		margin-right: 0;
	}
	.about .p-0 {
		padding: 0 15px !important;
	}
	.about__pic {
		margin-bottom: 30px;
	}
	.team__item__pic {
		position: relative;
		right: 0;
		margin-bottom: 20px;
		margin-top: -100px;
	}
	.team__item {
		padding: 30px 35px 40px;
	}
	.team__slider.owl-carousel .owl-nav {
		text-align: center;
		padding-top: 50px;
	}
	.team__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
	}
	.team__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}
	.classes__filter {
		padding: 25px 50px 30px;
	}
	.classes__filter form .class__filter__select {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}
	.classes__filter form .class__filter__btn {
		position: relative;
		right: 0;
		bottom: 0;
		text-align: center;
	}
	.blog__sidebar {
		margin-top: 50px;
	}
	.blog__previous__btn,
	.blog__next__btn {
		margin-bottom: 20px;
	}
	.header__top__widget {
		display: none;
	}
	.header__nav {
		display: none;
	}
	.hero {
		margin-top: 0;
	}
	.header__top .container {
		position: relative;
		padding: 0px 8px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.5s;
		-moz-transition: all, 0.5s;
		-ms-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.canvas__open {
		font-size: 20px;
		color: #263246;
		height: 30px;
		width: 30px;
		line-height: 30px;
		text-align: center;
		border: 1px solid #263246;
		cursor: pointer;
		position: absolute;
		right: 8px;
		top: 11px;
		display: block;
	}
	.offcanvas-menu {
		position: fixed;
		width: 300px;
		height: 100%;
		left: -300px;
		background: #ffffff;
		z-index: 99;
		overflow-y: auto;
		padding: 50px 30px 30px 30px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.5s;
		-moz-transition: all, 0.5s;
		-ms-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
	}
	.offcanvas-menu.show-offcanvas-menu {
		left: 0;
		opacity: 1;
	}
	.offcanvas__logo {
		margin-bottom: 30px;
	}
	.offcanvas__logo a {
		display: inline-block;
	}
	.offcanvas__widget {
		margin-bottom: 30px;
	}
	.offcanvas__widget ul {
		margin-bottom: 20px;
	}
	.offcanvas__widget ul li {
		font-size: 16px;
		color: #263246;
		text-transform: uppercase;
		list-style: none;
		display: inline-block;
		line-height: 36px;
	}
	.offcanvas__widget .primary-btn {
		display: inline-block;
	}
	.offcanvas__social a {
		display: inline-block;
		font-size: 16px;
		color: #263246;
		margin-right: 10px;
	}
	.offcanvas__social a:last-child {
		margin-right: 0;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_nav {
		background: transparent;
		display: block !important;
		list-style: none;
		width: 100%;
		float: left;
		margin-bottom: 15px;
	}
	.slicknav_nav li{
		width: 100%;
		float: left;
		padding: 2px 8px;
		margin-bottom: 5px;
		background: #f0f0f0;
		border-bottom: 1px solid #9d9a9a;
	}
	.slicknav_nav .slicknav_row:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: #263246;
	}
	.slicknav_nav a:hover {
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: #263246;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 10px 0;
		margin: 0;
		color: #263246;
		font-size: 16px;
		border-bottom: 1px solid #e1e1e1;
	}
	.header__menu {
		display: none;
	}
	.header__social {
		display: none;
	}
	.hero__items {
		height: auto;
	}
	.hero__text {
		padding: 120px 0 170px;
	}
	.breadcrumb-option,
	.blog-hero {
		margin-top: 0;
	}
	.footer__copyright__text {
		text-align: center;
		margin-bottom: 10px;
	}
	.footer__copyright__social {
		text-align: center;
	}
	.home__about__pic {
		margin-right: 0;
		padding-right: 0;
	}
	.blog__details__tags__share p {
		float: none;
	}
	.blog__details__tags__share .blog__details__share {
		float: none;
	}
	.over-hid {
		overflow: hidden;
	}
	.call-to-action-box{
		margin-top: 8px;
	}
	.call-to-action-box .action-style-box{
		padding: 10px 10px 5px;
	}
	.header__logo img {
	    height: 36px;
	    padding-right: 0px;
	}
	.header__logo{
		justify-content: left !important;
	}
	.center-block{
		
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__text h2 {
		font-size: 40px;
		line-height: normal;
	}
	.hero__sliders.owl-carousel .owl-nav button {
		height: 30px;
		width: 30px;
	}
	.chooseus__item {
		width: 100%;
		margin-bottom: 60px;
	}
	.appointment .section-title h2 {
		font-size: 35px;
	}
	.counter__item {
		display: block;
		margin-right: 0;
	}
	.counter__text {
		padding: 95px 30px 20px 50px;
	}
	.blog__details__author__pic {
		float: none;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.map .map-inside {
		-webkit-transform: translateX(-150px);
		-ms-transform: translateX(-150px);
		transform: translateX(-150px);
	}
	.map .map-inside .inside-widget {
		width: 300px;
	}
	.blog__sidebar {
		padding-right: 0;
	}
	.faq__accordion .card .card-heading a {
		font-size: 16px;
	}
	.header__logo img {
	    height: 32px;
	    /* padding-right: 5px; */
	}
}



@media (min-width: 620px){
.modal-dialog {
    max-width: 700px;
}
}


