body,
html {
	margin: 0px;
	padding: 0px;
	font-family: 'Open Sans', sans-serif;
	/*font-family: 'Roboto', sans-serif;*/
	color: #1a1a1a;
	line-height: 1.5rem;
	font-size: 1rem;
	scroll-behavior: smooth;
}

* {
	margin: 0px;
	padding: 0px;
}

a,
a:hover {
	color: #000;
	text-decoration: none;
	transition: 0.5s;
	cursor: pointer;
	text-decoration: none;
}

h1 {
	font-size: 42px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 2.5rem
}

p {
	margin-bottom: 1.5rem
}

.btn {
	background-color: #53b847;
	font-weight: normal;
	color: #fff;
	border-radius: 0px;
}

.img-resposive img {
	width: 100%;
}

.bg-none {
	background: none !important;
}


/************************************************

         Link hover effects css

*************************************************/

.hvr-float {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}


/************************************************

    Page scroll fadeUp animation css

*************************************************/

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}


/************************************************

        Header & nav css 

*************************************************/

header {
	display: block;
	min-height: 80px;
	padding: 0 20px;
	transition: all 0.6s ease-out;
	position: absolute;
	width: 100%;
	z-index: 1;
	border-bottom: solid 1px #84a1cc;
}

.hdr-inr-bg {
	border-bottom: solid 1px #5981be;
	background: #1149a1a3;
}

.logo {
	float: left
}

.logo img {
	width: 75px;
	padding-top: 5px
}

nav {
	margin: 0px;
	padding: 0px
}

nav ul {
	float: right;
	list-style: none;
	margin-bottom: 0px;
}

nav ul li {
	display: inline-block;
	line-height: 5.5
}

nav ul li a {
	text-decoration: none;
	padding: 0 0 15px 0;
	border-radius: 0px;
	margin: 0 15px;
	color: #fff;
	font-weight: 400;
	/* border-bottom: solid 3px #ec323700; */
}

nav ul li a:hover {
	color: #fff;
	background: none;
	transition: all 0.5s;
	text-decoration: none;
	/* border-bottom: solid 3px #ec3237; */
}

nav ul li a:focus,
a:active,
{
	text-decoration: none;
	transition: 1s;
	color: #ec3237;
	border-bottom: solid 5px #ec3237;
}

nav ul li a.active {
	border-bottom: solid 5px #ec3237;
	color: #ec3237;
}

nav ul li .btn {
	min-width: 145px;
	height: 39px;
	margin-left: 30px;
	border: 0px;
}

nav ul li .btn-light:hover {
	background-color: #53b847bf;
	color: #fff;
}

ul.dropdown-menu {
	border-radius: 0px;
	min-width: 250px;
	padding: 0px;
}

ul.dropdown-menu li a {
	color: #0249cd;
	font-weight: 500;
	font-size: 15.5px;
}

ul.dropdown-menu li {
	width: 100%;
	border-bottom: solid 1px #0249cd;
	/* padding: 11px 0; */
	line-height: 2.8;
	display: block;
}

ul.dropdown-menu li:last-child {
	border-bottom: 0px;
}

ul.dropdown-menu li:hover a {
	color: #fff;
}

ul.dropdown-menu li:hover {
	background: #0249cd;
	transition: 0.5s;
	cursor: pointer;
}


/************************************************

         Header & nav responsive menu css

*************************************************/

#check {
	display: none
}

label.checkbtn {
	position: absolute;
	background-color: #000;
	color: #fff;
	padding: 5px 10px;
	font-size: 22px;
	top: 20px;
	right: 10%;
	display: none;
	cursor: pointer
}

@media (max-width: 1023px) {
	ul.dropdown-menu {
		border-radius: 0px;
		min-width: 250px;
		padding: 0px;
		height: auto !important;
		width: 97%;
	}
	.w-100 {
		height: 400px;
		width: unset !important;
		background-size: cover;
	}
	#check {
		display: block;
		opacity: 0;
		transition: all 0.5s;
	}
	label.checkbtn {
		display: block;
	}
	nav ul {
		width: 50%;
		right: -100%;
		top: 80px;
		z-index: 1;
		text-align: center;
		transition: all 0.5s;
		position: absolute;
		height: 100vh;
		/* background: #022c5d; */
		background: rgba(8, 41, 157, 0.9);
		padding-top: 25px;
		display: none;
	}
	nav ul li {
		display: block !important;
		line-height: 4.5 !important;
		font-size: 18px !important;
		text-align: center;
		padding: 5px 0 !important;
	}
	nav ul li a {
		display: block;
		line-height: 2.2;
		background: none !important;
	}
	#check:checked~ul {
		right: 0%;
		display: block;
		transition: all 0.5s;
	}
	header {
		height: 80px;
	}
	#check:checked~ul .carousel-item {
		display: none;
	}
	nav ul li a {
		padding-bottom: 0px;
	}
	nav ul li {
		border-bottom: solid 1px #1038797d;
	}
	.home-bannner .carousel-caption {
		z-index: 0;
	}
	nav ul li:last-child {
		border-bottom: 0px;
	}
	.carousel-indicators {
		z-index: 0 !important;
	}
	.input-group-append {
		margin-left: -1px;
		z-index: 0;
	}
	nav ul li a {
		margin: 0 10px;
		color: #fff;
	}
}


/************************************************

         Header fixed animation css

*************************************************/

.fixedtop {
	position: fixed;
	background: rgba(8, 41, 157, 0.9);
	width: 100%;
	z-index: 999;
	min-height: 85px;
	animation-duration: 2s;
	animation-name: slidein;
	border-bottom: solid 1px #8080804d;
}

@keyframes slidein {
	0% {
		margin-top: -5%
	}
	50% {
		margin-bottom: 100%
	}
}


/* End */

.layout-main-div {
	padding: 0px !important
}

section {
	width: 100%;
	display: block;
}


/************************************************

         Home page css

*************************************************/


/*Banner section*/

.home-bannner {
	width: 100%;
	background: #000;
	float: left;
	padding: 0px;
	position: relative;
}

.carousel-indicators {
	margin-left: 15px;
	margin-right: 0px;
	justify-content: left;
	/*bottom: 14vh;*/
	bottom:5vh;
}

.carousel-indicators li {
	border-top: 0px;
	border-bottom: 0px;
	width: 13px;
	height: 13px;
	border-radius: 15px;
	background-color: #fff;
	opacity: unset;
}

.carousel-indicators li.active {
	background-color: #8f1bdc !important;
}

.ptn-rlv {
	position: relative;
}

.home-bannner .bnr-caption {
	width: 60%;
	min-height: 468px;
	align-items: center;
	margin-top: -468px;
	flex-wrap: wrap;
	padding-top: 25px;
	color: #fff;
}

.home-bannner .bnr-caption .btn {
	background: #fff;
	font-size: 18px;
	color: #2e2e2e;
	min-width: 140px;
	border-radius: 25px;
}

.home-bannner .bnr-caption span {
	display: block;
	padding-top: 15px;
}

.home-bannner .bnr-caption p {
	padding-right: 30%;
	font-size: 15px;
	line-height: 22px;
}

.home-bannner .w-100 {
	width: unset !important;
	height: 100vh;
}


/*Show result */

.show-result-main {
	position: relative;
	margin-top: -80vh;
    width: 380px;
	float: right;
    
	/* z-index: 2; */
}

.show-result {
	background: url("../images/form-bg.png") no-repeat right #fff;
	width: 333px;
	border-radius: 15px;
	padding: 18px 25px;
	float: right;margin-left: 24px; margin-top: 20px;
}

.show-result h3 {
	color: #0249cd;
	font-weight: normal;
	font-size: 20px;
	line-height: normal; margin-bottom: 10px;
}
.show-result p { font-size: .9rem; line-height: 18px;}

.show-result .form-control {
	appearance: none;
	background: url("../images/select-arw.png") no-repeat right #f6f6f6;
	border: 0px;
	margin-bottom: 20px !important;
	height: calc(1.5em + .75rem + 5px);
}

.show-result .btn {
	background-color: #0249cd;
	font-size: 20px;
	font-weight: normal;
	width: 100%;
	border-radius: 4px;
}

.show-result .btn:hover {
	color: #fff;
}


/*Home Seconed section*/

.home-second-sctn {
	display: inline-block;
	width: 100%;
	padding: 60px 0;
}

.home-second-sctn .carousel-item img {
	width: 100%;
}

.home-second-sctn .carousel-item img {
	width: 100%;
}

.home-second-sctn .btn,
.home-fourth-sctn-main .btn {
	background-color: #0249cd;
	font-size: 18px;
	font-weight: normal;
	color: #fff;
	min-width: 150px;
	padding: 8px 0;
	border-radius: 25px;
	margin-top: 30px;
}

.home-second-sctn .carousel-indicators {
	justify-content: center;
	bottom: inherit;
	position: relative;
	margin-top: 40px;
	margin-bottom: 0px;
}

.home-second-sctn .carousel-indicators li {
	background: #e8e8e8;
}


/*home third section*/

.home-third-sctn {
	width: 100%;
	display: block;
	background-color: #f1f1f1;
	padding-top: 60px;
	float: left;
	padding-bottom: 40px;
}

.home-third-sctn .card {
	display: block;
	text-align: center;
	padding: 30px 30px 0px 30px;
	border: 0px;
	min-height: 365px;
	position: relative;
}

.home-third-sctn .card img {
	width: 100%;
}

.home-third-sctn .card .img-rsln-ls {
	width: 80%;
}

.home-third-sctn h3,
.home-fourth-sctn-main h3,
.home-fifth-section h3 {
	color: #00000e;
	text-align: center;
	margin-bottom: 30px;
	font-size: 33px;
	margin-bottom: 40px;
}

.home-third-sctn h3 span,
.home-fourth-sctn-main span,
.home-fifth-section span {
	font-weight: 200;
}

.why-download {
	margin: 0 0 45px 0;
	padding: 0px;
}

.why-download li {
	list-style: none;
	min-width: 218px;
	max-width: 218px;
	color: #1a1a1a;
	text-align: center;
	display: inline-block;
	margin-bottom: 60px;
	position: relative;
}

.why-download li img {
	margin-bottom: 7px;
	width: 85px;
	background-color: #0249cd99;
	padding: 20px;
	border-radius: 44px;
}

.why-download li span {
	display: block;
	font-size: 16px;
	position: absolute;
	width: 100%;
	z-index: 2;
}


/*home fourth section*/

.home-fourth-sctn-main {
	background-color: #fff;
}

.frth-clm-lft h3 {
	text-align: left;
	margin-bottom: 20px;
}

.frth-clm-lft {
	text-align: left;
}

.frth-clm-lft p {
	color: #1a1a1a;
	font-style: italic;
	line-height: 30px;
	font-size: 20px;
	padding-right: 35%;
	margin-bottom: 0px;
}

.flag {
	margin: 0px;
	padding: 0px;
}

.flag li img {
	width: 50px;
	padding-right: 10px;
}

.flag li:hover {
	cursor: pointer;
}

.flag li {
	float: left;
	padding: 15px 15px;
	list-style: none;
	max-width: 228px;
	min-width: 228px;
	background: #e8e8e8;
	border-radius: 4px;
	display: inline-block;
	margin: 0 0 15px 15px;
	color: #1a1a1a;
	font-size: 18px;
}

.home-fourth-sctn-main {
	background-color: #fff;
	display: inline-block;
	padding: 60px 0;
}


/*home Fifth section*/

.home-fifth-section{
    background: url(../images/fifth-sctn-bg.webp) no-repeat;
	background-size: cover !important;
	min-height: 600px;
	color: #fff;
}

.home-fifth-section .frth-clm-lft {
	padding-top: 10%;
}

.home-fifth-section .frth-clm-lft p {
	color: #fff;
	font-size: 28px;
	font-weight: 100;
	line-height: 40px;
}

.home-fifth-section .frth-clm-lft h3 {
	color: #fff;
}

.home-fifth-section .frth-clm-lft .btn {
	color: #000;
	background: #fff;
	margin-top: 40px;
}
.text-black{ color: #000!important;}
.time-line{ padding: 50px 0px; border-bottom: 20px solid #f2f2f2;}
/*home sixth section*/

.home-sixth-section {
	background: url(../images/home-sixth-sctn-bg.webp) no-repeat;
	background-size: cover;
	color: #fff;
	min-height: 300px;
	padding: 60px 0 50px 0;
}

.scl-media li {
	background: none;
	color: #fff;
	font-weight: 100;
	margin-left: 0px;
	padding-left: 0px;
	max-width: initial;
	min-width: initial;
	width: 205px;
	margin-bottom: 0px;
	padding-right: 0px;
}

.home-sixth-section .frth-clm-lft {
	padding-top: 0px;
}

.home-sixth-section h3 {
	color: #fff;
	text-align: left;
	margin-bottom: 30px;
	font-size: 33px;
	margin-bottom: 20px;
	font-weight: lighter;
}

.home-sixth-section .frth-clm-lft p {
	font-size: 26px;
	font-style: normal;
}

.home-sixth-section .scl-media i {
	float: left;
	margin-right: 10px;
}

.home-sixth-section .frth-clm-lft p {
	padding-right: 0px;
}


/*home seventh section*/

.home-seventh-section {
	background: #fff;
	padding: 20px 0;
}

.home-seventh-section h3 {
	color: #3a3a3a;
	font-weight: normal;
	font-size: 28px;
}

.home-seventh-section h3 span {
	display: block;
}

.col-lft-txt p {
	line-height: 28px;
	text-align: justify
}

.col-lft-txt p img {
	margin-right: 15px;
}

.col-lft-txt {
	padding-top: 90px;
}


/*home eight section*/

.home-study-section {
	background: #f8f8f8;
	padding: 60px 0 100px 0;
}

.home-study-section h3 {
	color: #3a3a3a;
	font-weight: normal;
	font-size: 28px;
	text-align: center;
}

.home-study-section h3 span {
	display: block;
}

.home-study-section .card {
	box-shadow: -1px 0px 3px 0px #dee2e6;
	border-radius: 10px;
	border: 0px;
	padding: 25px;
	display: block;
}

.home-study-section .card .title {
	font-weight: bold;
	font-size: 22px;
	line-height: 30px;
}

.carousel-control-main {
	width: 40px;
	position: absolute;
	bottom: -23px;
	left: 49%;
}

.carousel-control-main a {
	font-size: 2rem;
	color: #8a8686 !important;
}

.home-study-section .card .title span {
	font-weight: normal;
	font-size: 16px;
	color: #6d6d6d;
	display: block;
	font-style: italic;
	margin-bottom: 5px;
}

.view-maore {
	margin: 20px 0px;
	float: right;
}

.home-study-section .card i {
	float: left;
	margin-right: 15px;
}

.home-study-section .card .view-course a {
	color: #b4b4b4;
}


/*home Neonth section*/

ul.scl-media.flag a.hvr-float {
	color: #fff;
}

.home-study-section a {
	color: #000;
}

.view-course {
	color: #b4b4b4;
}

.home-rltd-stdy-sctn a {
	color: #fff;
}

.home-rltd-stdy-sctn {
	background: url(../images/related-study-bg.webp) no-repeat;
	background-size: cover;
	color: #fff;
	padding: 60px 0 0 0;
	min-height: 600px;
}

.home-rltd-stdy-sctn h3 {
	color: #fff;
	font-weight: normal;
	font-size: 28px;
	text-align: center;
	margin-bottom: 0px;
}

.home-rltd-stdy-sctn h5 {
	color: #fff;
	font-weight: normal;
	text-align: center;
}

.card-item img {
	width: 100%;
}

.overlay-img-title {
	padding: 25px;
	margin-top: -132px;
	font-size: 18px;
	line-height: 25px;
}

.name-and-date {
	font-size: 18px;
	padding-top: 25px;
	padding-left: 0px;
}


/* Inner page About page css start here*/

.inner-pg-bnr-abt {
	background: url(../images/abt_banr.png) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.inr-pg-bnr-tiltle {
	width: 100%;
	text-align: center;
	padding-top: 150px;
}

.inr-pg-bnr-tiltle h2 {
	font-size: 38px;
	font-weight: bold;
	color: #fff;
	margin: 0 0 15px 0;
	padding: 0px;
}

.inr-pg-bnr-tiltle h2 span {
	font-weight: 100;
}

.sblk a,
.sblk a:hover {
	font-size: 18px;
	color: #fff;
}

.sblk .fa-angle-right {
	padding: 0 10px;
	font-size: 19px;
}

.abt-clnt-sctn i {
	width: 19%;
	display: inline-block;
	text-align: center;
}

.abt-clnt-sctn h3 {
	margin-bottom: 0px;
}

.abt-clnt-sctn i:last-child {
	width: auto;
}

.abt-clnt-sctn i:last-child img {
	width: 230px;
}

.abt-clnt-sctn i img {
	width: 110px;
}

.abt-clnt-sctn .img-sub-1 {
	width: 225px;
}

.abt-clnt-sctn .img-sub-2 {
	width: 170px;
	margin-left: -80px;
}

.abt-clnt-sctn .img-sub-4 {
	width: 150px;
}

.abt-clnt-sctn .img-sub-3 {
	width: 175px !important;
}

.abt-clnt-sctn {
	position: relative;
	padding-bottom: 0px;
	padding-top: 50px;
}

.abt-clnt-sctn .carousel-control-main {
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0;
	top: 0;
}

.abt-clnt-sctn a.carousel-control-next {
	right: -60px;
}

.abt-clnt-sctn a.carousel-control-prev {
	left: -90px;
}

section.home-study-section.abt-clnt-sctn {
	background-color: #fff;
}

.abt-clnt-sctn .carousel-control-main a {
	font-size: 3rem;
	color: #0249cd !important;
}

.std-jny-sctn {
	position: relative;
}

.std-jny-sctn h3 {
	margin-bottom: 40px !important;
}

.std-jny-sctn .why-download li:last-child {
	width: auto;
}

.std-jny-sctn .why-download li span {
	display: inline-block;
	position: initial;
	width: auto;
	z-index: inherit;
	padding-left: 10px;
	float: left;
	padding-top: 10px;
	line-height: 20px;
}

.std-jny-sctn .why-download .extra-pdng {
	padding-top: 20px;
}

.std-jny-sctn .why-download li:first-child {
	width: 14%;
}

.std-jny-sctn .why-download li:nth-child(3) {
	width: 19%;
}

.std-jny-sctn .why-download li {
	list-style: none;
	min-width: inherit;
	max-width: inherit;
	color: #1a1a1a;
	text-align: left;
	display: inline-block;
	margin-bottom: 0;
	position: relative;
	width: 17%;
}

/* .std-jny-sctn .why-download li img {
	margin-bottom: 7px;
	width: 60px;
	height: 60px;
	background-color: #5b8fcb;
	padding: 10px;
	border-radius: 44px;
	float: left;
} */

.std-jny-sctn .why-download li img {
    margin-bottom: 7px;
    width: 70px;
    height: 70px;
    background-color: #5b8fcb;
    padding: 0 14px 0 14px;
    border-radius: 44px;
    float: left;
}

.std-jny-sctn .why-download li:hover img {
	background: #08299d;
}

.std-jny-sctn .why-download {
	margin-bottom: 50px;
}

section.home-study-section.abt-clnt-sctn.std-jny-sctn {
	padding-top: 40px;
}

.stdy-dtls-crd-main {
	width: 100%;
	display: block;
}

.crd-item {
	width: 100%;
	display: inline-flex;
	margin-bottom: 15px;
}

.crd-item-vtl-mdl {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.stdy-dtls-crd-main .crd-item i {
	display: inline-block;
	width: 30%;
}

.stdy-dtls-crd-main .dsctn {
	width: 69%;
	display: inline-block;
	background-color: #5b8fcb;
	padding: 0px 35px;
	color: #fff;
	height: 271px;
	position: relative;
}

.stdy-dtls-crd-main .dsctn h3 {
	display: inline-block;
	text-align: left;
	width: 100%;
	line-height: 0px;
	color: #fff;
	margin-bottom: 6px !important;
}

.stdy-dtls-crd-main .dsctn .crd-item-vtl-mdl hr {
	border-top: 1px solid #fff;
}

.fnd-admsn-main {
	padding: 50px 0 75px 0;
}

.stdy-dtls-crd-main .crd-item i img {
	width: 100% !important;
}

.fnd-admsn-dscrptn {
	text-align: center;
	color: #1e1e1e;
}

.fnd-admsn-dscrptn h3 {
	text-transform: uppercase;
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 10px;
}

.fnd-admsn-dscrptn p {
	padding: 0 19%;
	color: #767676;
	line-height: 32px;
}

.fnd-cd-item {
	display: flex;
	background-color: #5b8fcb;
	height: 175px;
	font-size: 24px;
	line-height: 28px;
	color: #fff;
	border-radius: 10px;
	margin-top: 30px;
}

.fnd-cd-item div {
	margin: auto;
}

.fnd-cd-item:hover {
	background-color: #08299d;
	cursor: pointer;
	transition: 0.5s;
}

.fnd-cd-item img {
	width: 60px;
	float: left;
	margin-right: 10px;
}

.fnd-cd-item span {
	display: block;
	float: left;
}

section.cnt-sctn-main {
	background: url(../images/abt_cnt_02.png) right #f2f2f2 no-repeat;
	padding: 80px 0 100px 0;
	width: 100%;
	display: inline-block;
    background-position: bottom right;
    
}

section.cnt-sctn-main form {
	padding: 0 10%;
}

section.cnt-sctn-main h3 {
	color: #3a3a3a;
	font-weight: normal;
	font-size: 28px;
	text-align: center;
	margin-bottom: 40px;
}

section.cnt-sctn-main input {
	border: 0px;
	border-radius: 0px;
	height: 55px;
}

section.cnt-sctn-main .btn {
	min-width: 175px;
	background: #08299d;
	color: #fff;
	font-size: 24px;
	font-weight: lighter;
	margin-top: 25px;
}


/* Sticky social media link right side css start here */

.sticky-main {
	width: 55px;
	position: fixed;
	right: 0;
	top: 70vh;
	z-index: 1;
}

.sticky-main img {
	width:25px;
}

.sticky-main a {
	display: block;
	background-color: #08299d;
	text-align: center;
	padding: 8px 0;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	margin-bottom: 2px;
}

.sticky-main a:hover {
	background: #5b8fcb;
	cursor: pointer;
	transition: 0.5s;
}


/************************************************

     : center;    Footer section css start here

*************************************************/

footer {
	background: url(../images/footer-bg.png) bottom center;
    background-image: url(../images/footer-bg.png) bottom center;
	padding-top: 60px;
	float: left;
	width: 100%;
	font-size: 16px;
	color: #fff;
}

footer .ftr-clm-fst img {
	width: 80px;
	margin-bottom: 15px;
}

footer h4 {
	color: #fff;
	margin-bottom: 15px;
	font-weight: lighter;
}

footer strong {
	color: #3e3e3e;
	font-weight: bolder;
	font-size: 18px;
}

footer .scl-md-icons .fa {
	margin-top: 10px;
	padding-right: 15px;
	font-size: 24px;
	color: #3e3e3e;
}

footer .ftr-clm-scd a {
	font-size: 18px;
}

.quk-sb-clm-rgt {
	float: left;
}

.quk-sb-clm-lft {
	float: left;
	padding-right: 21%;
}

.quk-sb-clm-lft a,
.quk-sb-clm-rgt a {
	display: block;
	line-height: 32px;
    font-size: 14px;
	color: #fff;
}

footer a:hover {
	color: #007bff;
}

.cpy-rgt {
	border-top: solid 1px #1b1f2e;
	margin-top: 55px;
	padding: 15px 0;
	font-size: 16px;
}

.ftr-clm-sprt a {
	display: block;
	color: #fff;
	line-height: 30px;
}

.ftr-clm-sprt h3 {
	font-weight: lighter;
	font-size: 25px;
	margin-bottom: 25px;
	margin-top: 0px;
}

.ftr-clm-sprt .input-group>.form-control:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-radius: 0px;
}

.ftr-clm-sprt .btn {
	background-color: #08299d;
}

.ftr-clm-sprt .btn:hover {
	color: #fff;
}

.ftr-clm-sprt .input-group {
	margin-bottom: 12px;
}


/* newsletter */

.newsletter {
	padding: 80px 0;
	background: #f2f2f2;
}

.newsletter .content {
	max-width: 650px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.newsletter .content h2 {
	color: #243c4f;
	margin-bottom: 40px;
}

.newsletter .content .form-control {
	height: 50px;
	border-color: #ffffff;
	border-radius: 0;
}

.newsletter .content.form-control:focus {
	box-shadow: none;
	border: 2px solid #243c4f;
}

.newsletter .content .btn {
	min-height: 50px;
	border-radius: 0;
	background: #243c4f;
	color: #fff;
	font-weight: 600;
}


/* download-modal css */

.download-modal .modal-body {
	padding: 20px;
}

.download-modal .modal-body {
	padding: 15px 35px 20px 35px;
}

.download-modal .modal-content {
	background: url(../images/form-bg.png) no-repeat right #fff;
}

.download-modal .modal-title {
	font-weight: 500;
	color: #08299d;
	padding-left: 20px;
}


/* .svnth-clm-rgt img {
		width:100%;
	} */

.modal-dialog.download-modal {
	margin-top: 25vh;
}

.download-modal .btn {
	min-width: 110px;
	border-radius: 20px;
	background: #0062cc;
	margin-top: 10px;
}


/* dropdown-submenu css */

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu:hover ul.b-mn-stm {
	display: block;
}

ul.b-mn-stm {
	display: none;
	position: absolute;
	z-index: 5;
	left: 248px;
	width: 200px;
	background-color: #fff;
	color: #000;
	top: 0px;
}

li.dropdown-submenu .fa {
	float: right;
	margin-top: 13px;
	margin-right: 10px;
	font-size: 1.2rem;
}

ul.b-mn-stm li a {
	color: #0249cd !important;
}

ul.b-mn-stm li:hover a {
	color: #fff !important;
}

/*  Student Centric Services page css start here*/

section.std_ctc_svs_main {
	background: #f5f5f5;
}
.section_pdng_tp_btm {
    padding: 6rem 0;
}

#StudentCentricServices h3 {
    font-size: 38px;
	font-weight: lighter;
	color:#4777bb;
	text-align: center;
	margin-bottom: 3rem;
}

#StudentCentricServices p {
	color: #767676;
	line-height: 28px;
    font-size: 17px;
}

#StudentCentricServices h3 span{
	font-weight:700;
}

.std_clm-main h4 {
	color:#373737;
	font-size: 32px;
	font-weight: normal;
}

.std_clm-main p {
	color:#767676;
	line-height:28px;
	font-size:17px;
	padding-right:21px;
}

.std_clm-main h4 img {
    margin-right: 30px;
    float: left;
    margin-bottom: 50%;
    width: 100px;
    background: #4777bb;
    border-radius: 5px;
    padding: 10px;
	
}

/* NUMEROUSSTUDY OPTIONS section css */

.nmrs_std_optn_main .std_clm_main .card {
	background-color: #f6f6f6;
	border-radius:10px;
	height: 600px;
	border:0px;
}

.std_clm_main .card img {
	width:100%;
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;	
}

.nmrs_std_optn_main .std_clm_main .card h4 {
    font-size: 34px;
    font-weight: lighter;
    color: #fff;
    margin-top: -80px;
    padding-left: 25px;
}
.nmrs_std_optn_main .std_clm_main .card h4 span {
	font-weight: 700;
}
.nmrs_std_optn_main .std_clm_main .card p {
	padding: 45px 30px 0 30px;
	color: #767676;
    line-height: 28px;
    font-size: 17px;  
}

.h4-top {
	margin-top: -125px !important;
}

/* RESPONSIVE PLATFORM section css */

.rspv_plfm_main {
	background: url(../images/rspv_plfm_bg.png) no-repeat;
	background-size: cover;
}
.rspv_plfm_main h3 {
    color: #fff !important;
    margin-bottom: 0px !important;
}

.rspv_plfm_main p {
	padding:30px 30px 0 30px;
	color:#fff !important;
	line-height: 28px;
	font-size: 17px;
	text-align:center !important;
}
.rspv_clm_main .card {
	border:0px;
	background:none;
	border-radius:0px;
}
.rspv_clm_main .card h4 {
	font-size: 32px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
	margin-top: 15px;
	line-height: normal;
	padding-bottom: 0px;
}
.rspv_clm_main p {
    text-align: left !important;
    padding: 0px;
    margin-bottom: 30px;
}
.rspv_clm_main .card img {
	width:100%;
	margin-top:15px;
}

/* FREE & PERSONALISED section css */

.prsld_main_mbl_bg {
	background: url(../images/prsld_mbl_bg.png) no-repeat left center;
	background-size:41%;
}
.prsld_main img {
	margin-top:-150px;
}
.prsld_main p {
	line-height: 28px;
	font-size: 17px;
	margin-top: -45px;
}
.prsld_main h3 {
	margin-bottom: 7rem !important;
}
/* ANALYTICS SERVICES section css */

.antc_srvs_main {
	background: #f5f5f5;
}
.clm-1-p {
	text-align: center;
}
.antc_srvs_cnt h4{
    font-size: 34px;
    color: #373737;
    font-weight: 500 !important;
}
.antc_srvs_cnt h5 {
    font-size: 20px;
    color: #767676;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 5px 0;
}
.antc_srvs_cnt h5 span {
    font-weight: 600;
}
.antc_srvs_cnt ol {
	margin-left:20px;
}
.antc_srvs_cnt ol li {
	color: #767676;
    line-height: 34px;
}

/* ANALYTICS SERVICES form section css */

.antc_srvs_frm_main_bg {
    background: url(../images/antc_srvs_frm_bg.png) no-repeat;
    background-size: cover;
}
.antc_srvs_frm_main h3 {
	color:#fff !important;
}
.antc_srvs_frm_main p{
	color:#fff !important;
	padding-right:20px;
}
.clm-frm-main p {
	margin-bottom:10px !important;
}
.clm-frm-main .form-control {
	padding: 1.4rem .75rem;
	margin-bottom:16px;
	border: 0px !important;
}
.clm-frm-main .btn {
	color:#216bb0;
	font-size:21px;
	width: 170px;
	padding:11px 0;
	background:#fff;
	border: 0px;
	border-radius:30px;
	margin-top:12px;
}
/* What makes us UNIQUE section css */

.what_makes_us_main_bg {
    background: url(../images/what_makes_us_main_bg.png) no-repeat;
    background-size: cover;
}
.what_makes_us_main_bg  h3 {
	color: #fff !important;
	text-transform: uppercase;
}
ul.what_makes_ul {
    margin: 0px;
    padding: 0px;
}
ul.what_makes_ul li i {
	display: block;
	text-align: center;
	margin-bottom:10px;
}
ul.what_makes_ul li {
	width: 25%;
	float: left;
	color: #fff;
	list-style: none;
}
ul.what_makes_ul li a {
    color: #fff;
    line-height: 28px;
    font-size: 17px;
    text-align: center;
    padding: 0 21px;
}
.wht_mks_us_cnt {
	padding-top:4.5rem;
}
.wht_mks_us_cnt h4 {
	font-size: 34px;
    color: #373737;
    font-weight: 500 !important;
}
.wht_mks_us_cnt .p-pdg-btm {
	padding-bottom: 5%;
}

.prsld_main .btn {
    background-color: #0249cd;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    min-width: 150px;
    padding: 8px 0;
    border-radius: 25px;
    margin-top: -60px;
}

.nmrs_std_optn_main .btn, .std_ctc_svs_main .btn, .rspv_plfm_main .btn, .antc_srvs_main .btn {
    background-color: #0249cd;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    min-width: 150px;
    padding: 8px 0;
    border-radius: 25px;
    margin-top: 60px;
}

.rspv_plfm_main .btn {
	background:#fff !important;
	color: #4777bb !important;
}

.antc_srvs_main .btn {
	margin-top:30px !important;
}

img.img-rspv {
    background: #fff;
    padding: 15px;
}



/* media query css */

@media only screen and (max-width: 1300px) {
	nav ul li a {
		margin: 0 10px !important;
	}
	nav ul li .btn {
		margin-left: 0px;
	}
}

@media only screen and (max-width: 1024px) {

	.std_clm-main h4 img {
		margin-bottom: 0%;
	}
	.h4-top {
		margin-top: -165px !important;
	}
	.nmrs_std_optn_main .std_clm_main .card {
		height: 660px;
	}

	.std_clm-main h4 {
		margin-top:20px;
	}

	ul.what_makes_ul li a {
		padding:0px;
	}

	.wht_mks_us_cnt .p-pdg-btm {
		padding-bottom: 10%;
	}

	.fnd-admsn-main {
		padding: 0px 0 75px 0;
	}
	section.home-study-section.abt-clnt-sctn.std-jny-sctn {
		padding-top: 40px;
		margin-top: 25px;
		border-top: solid 1px #d6d6d6;
	}
	.stdy-dtls-crd-main .dsctn {
		height: 227px;
	}
	.std-jny-sctn .why-download li {
		margin-bottom: 25px;
		width: 33% !important;
	}
	.abt-clnt-sctn {
		padding-bottom: 40px;
	}
	.abt-clnt-sctn .carousel-control-main {
		width: 80px;
		bottom: -170px;
		left: 45%;
		top: 0;
	}
	.abt-clnt-sctn hr:last-child {
		display: none;
	}
	.abt-clnt-sctn a.carousel-control-prev {
		left: 0;
	}
	.abt-clnt-sctn a.carousel-control-next {
		right: 0;
	}
	.show-result-main {
		z-index: 0;
	}
	/* ul.dropdown-menu {
		top: 20px !important;
	} */
	.home-rltd-stdy-sctn {
		padding: 60px 0 60px 0;
		min-height: inherit;
	}
	.name-and-date {
		font-size: 18px;
		padding-top: 0px;
	}
	.home-fifth-section {
		min-height: inherit;
	}
	.frth-clm-lft p {
		padding-right: 4%;
	}
	.why-download li {
		min-width: 18%;
	}
	.home-study-section .card .title {
		font-size: 18px;
	}
	.carousel-indicators {
		bottom: 10vh;
	}
	nav ul li a {
		margin: 0 7px !important;
	}
	.home-seventh-section .col-md-5 img {
		width: 100%;
	}
	.show-result-main {
		margin-top: -62vh;
	}
	.home-bannner .bnr-caption {
		margin-top: -80vh;
	}
}

@media only screen and (max-width: 768px) {
	.std_clm-main h4 {
		font-size: 24px;
	}
	.img-rspv {
		width:100%;
	}

	.nmrs_std_optn_main .std_clm_main .card h4 {
		font-size: 21px;
	}

	.h4-top {
	    margin-top: -120px !important;
    line-height: normal;
	
	}


	#StudentCentricServices p {
		line-height: 26px;
		font-size: 15px;
	}

	.nmrs_std_optn_main .std_clm_main .card p {
		padding: 45px 15px 0 15px;
	}

	.nmrs_std_optn_main .std_clm_main .card {
		height: 610px;
	}

	.prsld_main img {
		margin-top: -125px;
		width: 250px;
	}

	ul.what_makes_ul li a {
		padding: 0px 20px;
	}

	.abt-clnt-sctn {
		padding-bottom: 70px;
	}


	/* .carousel-control-main {
		width: 70px;
		position: absolute;
		bottom: 100px;
		left: inherit;
		right: 25px;
	} */
	.fnd-cd-item {
		font-size: 19px;
	}
	.abt-clnt-sctn i {
		text-align: left;
	}
	.stdy-dtls-crd-main .crd-item i img {
		width: 100% !important;
		margin-top: 60px;
		border: solid 1px #5b8fcb;
		margin-left: 5px;
	}
	.stdy-dtls-crd-main .dsctn {
		width: 100%;
		display: block;
		padding: 30px;
		height: auto;
	}
	.stdy-dtls-crd-main .crd-item i {
		display: block;
		width: 100%;
	}
	.abt-clnt-sctn .img-sub-4 {
		margin-left: 0px;
	}
	.std-jny-sctn .why-download li {
		width: 32.9% !important;
		margin-bottom: 10px;
	}
	#Partners .carousel-control-main {
		top: 100px;
	}
	.abt-clnt-sctn a.carousel-control-prev {
		left: 0;
	}
	.abt-clnt-sctn a.carousel-control-next {
		right: 0;
	}
	.abt-clnt-sctn i {
		width: 36%;
	}
	.col-lft-txt {
		padding-top: 25px;
	}
	.frth-clm-lft {
		padding-bottom: 30px;
	}
	.overlay-img-title {
		padding: 19px;
		margin-top: -123px;
		font-size: 15px;
		line-height: 23px;
	}
	.name-and-date {
		font-size: 16px;
		padding-top: 0px;
	}
	.home-study-section .card i {
		margin-right: 7px;
	}
	.home-study-section .card .title {
		font-size: 15px;
		line-height: normal;
	}
	.home-study-section .card img {
		width: 40px;
	}
	ul.scl-media.flag li {
		width: 40%;
	}
	.home-sixth-section {
		background-size: cover !important;
	}
	.modal-dialog.download-modal {
		margin-top: 15vh;
	}
	.home-fifth-section {
		background-size: 100%;
	}
	.home-fifth-section .frth-clm-lft {
		padding-top: 0%;
	}
	.frth-clm-lft h3 {
		margin-bottom: 10px;
		font-size: 24px;
	}
	.home-fifth-section .frth-clm-lft .btn {
		margin-top: 20px;
	}
	.home-fifth-section .frth-clm-lft p {
		font-size: 18px;
		line-height: 28px;
	}
	.home-bannner h1 {
		font-size: 28px;
		line-height: normal;
	}
	.flag li {
		width: 45%;
		font-size: 16px;
		min-width: inherit;
		max-width: inherit;
	}
	.show-result-main {
		margin-top: -50vh;
	}
	.carousel-indicators {
		bottom: 6vh;
	}
	.home-bannner .bnr-caption span {
		padding-top: 0px;
	}
	.why-download li {
		min-width: 19%;
	}
}

@media only screen and (max-width: 767px) {

	.nmrs_std_optn_main .btn { 
		margin-top:15px;
	}

	.prsld_main .btn {
		margin-top:0px;
	}

	.clm-frm-main form .col {
		min-width: 100%;
		max-width: 100%;
	}

	.wht_mks_us_cnt .p-pdg-btm {
		padding-bottom: 0%;
	}


#StudentCentricServices h3 {
    margin-bottom: 1.5rem;
}

	.prsld_main p {
		margin-top: 0;
	}

	.rspv_clm_main .card h4 {
		margin-bottom: 0px;
		margin-top: 25px;
	}

	.prsld_main_mbl_bg {
		background: none;
	}

	.prsld_main h3 {
		margin-bottom: 0rem !important;
	}

	.prsld_main img {
		width: 250px;
		margin: 0 auto !important;
		display: block;
	}

	#StudentCentricServices h3 {
		font-size: 34px;
		line-height: 44px;
	}

	.rspv_plfm_main p {
		padding:20px 0 0 0;
		text-align:left !important;
	}

	.nmrs_std_optn_main .std_clm_main .card {
		height: auto;
		margin-bottom: 30px;
	}

	.nmrs_std_optn_main .std_clm_main .card h4 {
		font-size: 32px;
	}

	#StudentCentricServices p {
		line-height: 27px;
		font-size: 17px;
		text-align:left;
	}

	.section_pdng_tp_btm {
		padding: 3rem 0;
	}

	ul.what_makes_ul li {
		width: 100%;
	}

	ul.what_makes_ul li a {
		margin-bottom: 15px;
	}

	.home-second-sctn .carousel-item>div>div {
		margin-bottom: 25px;
	}
	.stdy-dtls-crd-main .dsctn h3 {
		line-height: normal;
	}
	.fnd-cd-item {
		font-size: 24px;
		line-height: 28px;
	}
	.abt-clnt-sctn i:last-child img {
		margin-bottom: 0px;
	}
	.stdy-dtls-crd-main .crd-item i img {
		margin-top: 25px;
		margin-left: 0px;
		margin-bottom: 0px;
	}
	.crd-item-vtl-mdl {
		position: unset;
		top: unset;
		transform: unset;
		appearance: none;
	}
	.crd-item {
		display: block;
		margin-bottom: 10px;
	}
	.std-jny-sctn .why-download li span {
		font-size: 14px;
	}
	.abt-clnt-sctn .img-sub-4 {
		width: 190px;
	}
	.abt-clnt-sctn i img {
		width: 100px;
	}
	.std-jny-sctn .why-download li {
		width: 48% !important;
	}
	.abt-clnt-sctn .carousel-control-main {
		width: 100%;
		bottom: 0;
		left: 0;
		top: 0% !important;
	}
	.abt-clnt-sctn img {
		margin-bottom: 30px;
	}
	.home-study-section {
		padding: 20px 0 20px 0;
	}
	.abt-clnt-sctn .img-sub-4 {
		margin-left: 0px;
		margin-bottom: -20px;
		margin-top: -20px;
	}
	.abt-clnt-sctn i:last-child {
		width: 100%;
	}
	.abt-clnt-sctn .img-sub-2 {
		width: 200px;
		margin-left: 0px;
	}
	.abt-clnt-sctn i {
		width: 100%;
		text-align: center;
	}
	.name-and-date {
		font-size: 18px;
		padding-top: 17px;
		line-height: 28px;
		margin-bottom: 30px;
	}
	.overlay-img-title {
		padding: 25px;
		margin-top: -123px;
		font-size: 23px;
		line-height: 32px;
	}
	.home-study-section .card {
		margin-bottom: 20px;
	}
	.home-study-section .card .title span {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.home-study-section .card .title {
		font-size: 22px;
		line-height: normal;
	}
	.home-study-section .card img {
		width: 65px;
		margin-right: 15px;
	}
	section.home-fourth-sctn-main.home-fifth-section {
		background: url(../images/fifth-sctn-bg.png) #0249cd no-repeat;
		background-size: 110%;
		color: #fff;
		padding: 30px 0;
	}
	.col-lft-txt p img {
		margin-bottom: 10px;
	}
	.col-md-5.svnth-clm-rgt.animation.fadeInUp.wow {
		display: none;
	}
	.show-result-main {
		z-index: 0;
	}
	.show-result-main {
		margin-top: 25px !important;
		padding-bottom: 20px;
	}
	header {
		border-bottom: 0px;
		background: rgba(8, 41, 157, 0.9);
		height: 85px;
	}
	.home-bannner {
		background: #f1f1f1;
	}
	.flag li {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
	.home-bannner .w-100 {
		margin-top: 85px;
		width: unset !important;
		height: 400px;
	}
	.show-result-main {
		margin-top: 0px;
	}
	header {
		border-bottom: 0px;
	}
	header {
		border-bottom: 0px;
	}
	.show-result {
		width: 100%;
		border-radius: 0px;
		padding: 20px;
	}
	.home-bannner .bnr-caption p {
		padding-right: 0%;
		font-size: 16px;
		line-height: 20px;
	}
	.home-bannner .bnr-caption {
		position: absolute;
		margin-top: -360px;
		width: 100%;
		padding: 0 30px 0 15px;
	}
	.why-download li {
		min-width: 45%;
	}
	.why-download li span {
		position: inherit;
	}
	.why-download li {
		margin-bottom: 30px;
	}
	.why-download {
		margin-bottom: 0px !important;
	}
	.home-second-sctn .carousel-item img {
		margin-top: 15px;
	}
	.carousel-indicators {
		bottom: 3vh;
		padding-left: 20px;
	}
	ul.b-mn-stm {
		display: none;
	}
	li.dropdown-submenu .fa {
		display: none;
	}
}


@media only screen and (max-width: 760px) {
   
    
    .show-result .form-control {margin-bottom: 5px !important;}
	nav ul {
		width: 100%;
		top: 85px;
	}
	ul.b-mn-stm {
		display: none;
	}
	li.dropdown-submenu .fa {
		display: none;
	}
    .show-result-main { width: 100%;}
    .show-result { margin: 7.6%;
	
	
	
	padding: 20px 25px;
        width: 85%;
	float: right;
        
}
    .sm-pt{ padding-top: 20px;}
    .map-bg{ padding: 0px 0px;  ;  vertical-align: middle; }
    .text-hilight{ line-height: 55px!important; padding:20px 20px !important; font-size: 35px; }
}

@media only screen and (max-width: 320px) {
   
	.std-jny-sctn .why-download li {
		width: 49% !important;
	}
	.std-jny-sctn .why-download li img {
		width: 50px;
		height: 50px;
	}
	.std-jny-sctn .why-download li span {
		padding-left: 4px;
	}
}

@media only screen and (max-width: 410px) {
      .form-group{ margin-bottom: 0px;}
    
}

.show-result{ position: absolute; z-index: 10; top: 0px; float: inherit;}
.pb-30{ padding-bottom: 30px;}
.newsletter{ background-image:url(../images/newsletter_bg.webp) ; background-position: bottom center;}
.newsletter h3{ margin-bottom: 10px; padding-bottom: 0px; color: #0249cd; font-weight: 700; font-size: 40px; padding-top: 20px;}
.blue-bg{ background:#0249cd;-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;}
.tp-30{ padding: 38px 0px;}

.side-bg{ background:url(../)}
.how-it-works-bg{ padding: 50px 0px; background: url(../images/how-it-work-form-bg.jpg);  background-repeat: no-repeat;
  background-size: cover;}
.show-result2{    margin: 0 auto; }

.show-result2 {
	background: url("../images/form-bg.png") no-repeat right #fff;
	width: 333px;
	border-radius: 15px;
	padding: 18px 25px;
	
}

.show-result2 h3 {
	color: #0249cd;
	font-weight: normal;
	font-size: 20px;
	line-height: normal; margin-bottom: 10px;
}
.show-result2 p { font-size: .9rem; line-height: 18px;}

.show-result2 .form-control {
	appearance: none;
	background: url("../images/select-arw.png") no-repeat right #f6f6f6;
	border: 0px;
	margin-bottom: 20px !important;
	height: calc(1.5em + .75rem + 5px);
}

.show-result2 .btn {
	background-color: #0249cd;
	font-size: 20px;
	font-weight: normal;
	width: 100%;
	border-radius: 4px;
}

.show-result2 .btn:hover {
	color: #fff;
}






.show-result3 {
	background: url("../images/form-bg.png") no-repeat right #fff;
	border-radius: 15px;
	padding: 40px 25px !important;
    background-position: bottom;
   
}

.show-result3 h3 {
	color: #0249cd;
	font-weight: normal;
	font-size: 20px;
	line-height: normal; margin-bottom:10px !important;
}
.show-result3 p { font-size: .9rem; line-height: 18px;}

.show-result3 .form-control {
	appearance: none;
	background: url("../images/select-arw.png") no-repeat right #f6f6f6;
	border: 0px;
	margin-bottom: 20px !important;
	height: calc(1.5em + .75rem + 5px);
}

.show-result3 .btn {
	background-color: #0249cd;
	font-size: 20px;
	font-weight: normal;
	width: 100%;
	border-radius: 4px;
}

.show-result3 .btn:hover {
	color: #fff;
}
.show-result3 form{ padding: 0px !important;}



.text-hilight { font-size: 50px; color: #fff; font-weight: 100; line-height: 205px;}
.text-hilight span{ font-weight: bold;}
.map-bg{ padding: 0px 0px; background-image: url(../images/map_bg.jpg);  background-position: center top; background-repeat: no-repeat; background-size: cover;  vertical-align: middle; }
.speech_box{ width: 102px; height: 60px; background-image: url(../images/speech_box.jpg); background-repeat: no-repeat; margin-left: 50px; margin-bottom: 50px;}
.text_blue { color: #2649a0; font-size: 32px; font-weight: 100; line-height: 38px; background-color: #f1e2ff; padding: 50px 0px;}

.countries_bg{ border-left: 10px solid #fff; border-right: 15px solid #fff; background-image: url(../images/countries_bg.jpg); background-repeat: no-repeat; background-position: top center;}

.universities_bg{ border-left: 10px solid #fff; border-right: 15px solid #fff;  background-image: url(../images/universities.jpg); background-repeat: no-repeat; background-position: top center;}

.study_programs_bg{ border-left: 10px solid #fff; border-right: 15px solid #fff;  background-image: url(../images/study_programs.jpg); background-repeat: no-repeat; background-position: top center;} 

.text_blue span{ font-size: 50px; font-weight: bold;}
.bm-50{ margin-bottom: 50px;}
.footer_bg{ padding-top:350px; background: url(../images/footer-bg.jpg) #051b36; background-position: top center; background-repeat: no-repeat;}
.contact-section{ margin-bottom: 40px; padding: 20px; font-size: 16px; line-height: 28px;}
.contact-section h2{ font-size: 38px; margin: 0px; padding: 0px; font-weight: 100; line-height: 50px;}
.mr{ margin-right: 20px;}
.mr-10{ margin-right: 6px;}
.footer-links{ padding: 0px; margin: 0px;}
.footer-links li{ list-style: none; font-size: 14px; margin-bottom: 10px;}
.footer-links li a{ list-style: none; font-size: 14px; font-weight: 100px; line-height: 18px !important; color: #fff;}

.germany-banner{
	background: url(../images/germany.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}
.section-space{ margin: 50px auto;}
.blue-text{ color: #08299d; font-weight: 100; }
.blue-text span{ font-weight: bold;}

.home-li {

    margin-right: 55px !important;

}

/*custome css */
.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.inner-pg-bnr-abt .btn {
    background: #fff;
    font-size: 18px;
    color: #2e2e2e;
    min-width: 140px;
    border-radius: 25px;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.textbox-css {
    background: #f6f6f6 !important;
}

.overlay-img-title {
    min-height: 125px;
}

.validation-error {
  color: #ff0000;
}

.validation-success {
  color: #009E55;
}

.map-img {
    width: 100% !important;
}

.h3-custom{
font-size: 33px !important;
}

.h1-custom {
    font-size: 42px !important;
}

.comp-marg{
	margin-top:30px;
}

.comp-mar {
	margin-left:130px !important;
}

.comp-vid {
	justify-content: center !important; bottom: -10vh !important;
}

@media only screen and (max-width: 768px)
{
	.comp-marg{
		margin-top:0px !important;
	}

	.h1-custom {
		font-size: 28px !important;
	}
	.carousel-indicators {
		bottom: 1vh !important;
	}	
	.tab-height{
		height: 474px;
	}
	.comp-mar {
		margin-left:0px !important;
	}				
}

.ndetails {
    width: 50% !important;
	padding-right: 0px !important;
	text-align:center !important;
}

.down-marg {
	margin-top:20px !important;
}

@media only screen and (max-width: 767px) {

	.down-marg {
		margin-top:0px !important;
	}

	.inr-pg-bnr-tiltle h2 {
		font-size: 28px !important;
	}

	.comp-vid {
		justify-content: center !important; bottom: -7vh !important;
	}
	.abt-clnt-sctn .img-sub-4 {
		margin-bottom: 0px !important;
	}
	.ndetails {
		width: 100% !important;
		padding-right: 0px !important;
	}
	
	.blue-bg {
		margin-left:5px !important;
		margin-right:5px !important;
	}	
	
	.flag-study{
		margin-top:20px;
		width:50% !important;
	}
}

.sticky-main {
    top: 59vh !important;
}

.sticky-main a {
	background-color: #618BDB !important;
}

.scl-media li {
    width: 222px !important;
}

.carousel-control-main {
	 bottom: 0px !important;
}

.home-third-sctn .btn {
    background-color: #0249cd;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    min-width: 150px;
    padding: 8px 0;
    border-radius: 25px;
}

.show-result {
    z-index: 0 !important;
}
.text-justify{
text-align:justify;
}

.text-center{
text-align:center;
}

.margin-10{
 margin-top: 25px !important;
}

.text-tagline{
text-align:center !important;
font-size:18px;
margin-top:5px;
color:#FFFFFF;
}

.text-tagline-grey{
text-align:center !important;
font-size:18px;
margin-top:5px;
color:#999999;
}

.text-tagline-dark{
text-align:center !important;
font-size:18px;
margin-top:5px;
color:#666666;
}

footer h4 {
    margin-bottom: 5px !important;
	font-weight:500;
}

footer .scl-media li {
    width: 45px !important;
}

footer .flag li img {
    width: 35px;
    padding-right: 5px;
}

.home-rltd-stdy-sctn {
    min-height: 455px !important;
}

element.style {
    visibility: visible;
    animation-name: fadeInUp;
}
footer .scl-media li {
    width: 45px !important;
}
footer .flag li {
    padding: 0px 0px !important;
}

footer {
    font-size: 15px !important;
}

.input-group div{
	font-weight:lighter !important;;
}

footer a{
	font-weight:lighter !important;
}


.cpy-rgt {
    font-size: 15px !important;
	font-weight:lighter !important;
}

.hot-job {
	color:#f21136!important;
}
.error-form{
	color:#f21136!important;
	min-height:15px;
}

.std_clm-main p {
    padding-right: 0px!important;
}

.rspv_clm_main .card h4 {
    font-size: 30px!important;
}

.feat-font {
    font-size: 18px !important;
}

.std_clm-main h4 img {
    margin-bottom: 2% !important;
}

.std_clm-main h4 {
	font-size:24px !important;
}

.germany-banner{
	background: url(../images/banners/germany.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.austria-banner{
	background: url(../images/banners/austria.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.croatia-banner{
	background: url(../images/banners/croatia.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.belgium-banner{
	background: url(../images/banners/belgium.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.czech-republic-banner{
	background: url(../images/banners/czech-republic.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.france-banner{
	background: url(../images/banners/france.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.ireland-banner{
	background: url(../images/banners/ireland.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.greece-banner{
	background: url(../images/banners/greece.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.hungary-banner{
	background: url(../images/banners/hungary.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.italy-banner{
	background: url(../images/banners/italy.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.latvia-banner{
	background: url(../images/banners/latvia.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.lithuania-banner{
	background: url(../images/banners/lithuania.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.netherlands-banner{
	background: url(../images/banners/netherlands.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.poland-banner{
	background: url(../images/banners/poland.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.portugal-banner{
	background: url(../images/banners/portugal.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.slovakia-banner{
	background: url(../images/banners/slovakia.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.slovenia-banner{
	background: url(../images/banners/slovenia.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.spain-banner{
	background: url(../images/banners/spain.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.sweden-banner{
	background: url(../images/banners/sweden.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.turkey-banner{
	background: url(../images/banners/turkey.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.uk-banner{
	background: url(../images/banners/uk.jpg) no-repeat;
	min-height: 300px;
	background-size: cover;
}

.inr-pg-bnr-tiltle h1 {
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    padding: 0px;
}

.inr-pg-bnr-tiltle h1 span {
    font-weight: 100;
}

.home-li {

    margin-right: 55px !important;

}
.study{
margin-top:13%;
}
.how{
    color:#252525
}
.reg{
color:#252525; font-weight:500; font-size:24px;
}
#countryContent{
    text-align:justify; line-height:30px;
}
.ifr{
    display:none;visibility:hidden;
    }