* {
	/* font-family: "Poppins", sans-serif; */
	/* font-family: "Manrope", sans-serif; */
	font-family: 'Libre Franklin', sans-serif;
	margin: 0px;
	padding: 0px;
}

html {
	scroll-behavior: smooth;
}

h2 {
	font-size: 46px;
	color: #26336b;
}

.btn_transparent {
	background: 0;
	outline: none;
	border: 1px solid #fff;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	border-radius: 35px;
	padding: 8px 22px;
	text-decoration: none;
}

.btn_transparent:hover {
	color: black;
	background-color: #fff;
	transition: 0.3s ease;
}

.btn_blue {
	background: 0;
	outline: none;
	border: 2px solid #26346b;
	background-color: #26346b;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	border-radius: 35px;
	padding: 8px 22px;
	text-decoration: none;
}

.btn_blue:hover {
	background-color: transparent;
	transition: 0.3s ease;
}

.hed_btm_line {
	position: relative;
}

.hed_btm_line::after {
	content: "";
	width: 5%;
	border-radius: 35px;
	height: 5px;
	background-color: #f3a732;
	position: absolute;
	bottom: -15px;
	left: 48%;
}

/* --------- */
.dull_back {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: black;
	opacity: 0.8;
	z-index: 22;
}

.page_loader {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 23;
}

.page_loader h1 {
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	position: relative;
}

.page_loader h1:after {
	position: absolute;
	content: "";
	-webkit-animation: Dots 2s cubic-bezier(0, 0.39, 1, 0.68) infinite;
	animation: Dots 2s cubic-bezier(0, 0.39, 1, 0.68) infinite;
}

.page_loader .loader {
	margin: 5% auto 30px;
}

.page_loader .book {
	border: 4px solid #ffffff;
	width: 60px;
	height: 45px;
	position: relative;
	perspective: 150px;
	background-color: #26336b;
}

.page_loader .page {
	display: block;
	width: 30px;
	height: 45px;
	border: 4px solid #ffffff;
	border-left: 1px solid #26336b;
	margin: 0;
	position: absolute;
	right: -4px;
	top: -4px;
	overflow: hidden;
	background: #26336b;
	transform-style: preserve-3d;
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.page_loader .book .page:nth-child(1) {
	-webkit-animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.6s infinite;
	animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.6s infinite;
}

.page_loader .book .page:nth-child(2) {
	-webkit-animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.45s infinite;
	animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.45s infinite;
}

.page_loader .book .page:nth-child(3) {
	-webkit-animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.2s infinite;
	animation: pageTurn 1.2s cubic-bezier(0, 0.39, 1, 0.68) 1.2s infinite;
}

/* Page turn */

@-webkit-keyframes pageTurn {
	0% {
		-webkit-transform: rotateY(0deg);
		transform: rotateY(0deg);
	}

	20% {
		background: #26336b;
	}

	40% {
		background: #26336b;
		-webkit-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
	}

	100% {
		background: #26336b;
		-webkit-transform: rotateY(-180deg);
		transform: rotateY(-180deg);
	}
}

@keyframes pageTurn {
	0% {
		transform: rotateY(0deg);
	}

	20% {
		background: #26336b;
	}

	40% {
		background: #26336b;
		transform: rotateY(-180deg);
	}

	100% {
		background: #26336b;
		transform: rotateY(-180deg);
	}
}

/* Dots */

@-webkit-keyframes Dots {
	0% {
		content: "";
	}

	33% {
		content: ".";
	}

	66% {
		content: "..";
	}

	100% {
		content: "...";
	}
}

@keyframes Dots {
	0% {
		content: "";
	}

	33% {
		content: ".";
	}

	66% {
		content: "..";
	}

	100% {
		content: "...";
	}
}

/* ------------------------------header------------------------------ */
.brand_logo_img {
	width: 130px;
}

.header nav li a {
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	padding: 15px 25px;
	position: relative;
	font-weight: 500;
}

.header nav li a:after {
	background: none repeat scroll 0 0 transparent;
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	background: #f3a732;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.header nav li a:hover:after {
	width: 100%;
	left: 0;
}

/* ------------------------------header end------------------------------ */
/* ------------------------------slider------------------------------ */

.carousel,
.item,
.active {
	height: 100%;
}

.carousel-inner {
	height: 100%;
	background: #000;
}

.carousel-caption {
	padding-bottom: 80px;
}

.slider h2 {
	font-size: 60px;
}

.slider p {
	padding: 10px;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
	width: 100%;
	height: 100%;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	opacity: 0.6;
}

/**
   * Button
   */
.btn-transparent {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-transparent:hover {
	background-color: #fff;
}

.btn-rounded {
	border-radius: 70px;
}

.btn-large {
	padding: 11px 45px;
	font-size: 18px;
}

/**
   * Change animation duration
   */
.animated {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100px, 0, 0);
		transform: translate3d(100px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

/* ------------------------------slider end------------------------------ */
/* ------------------------------banner------------------------------ */
.slider .slider_div img {
	width: 100%;
	height: 700px;
}

.slider .slider_div .ban_overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: black;
	opacity: 0.75;
}

.slider .slider_div .ban_text {
	width: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.slider .slider_div .ban_text h1 {
	font-size: 60px;
	text-transform: capitalize;
	margin-bottom: 40px;
}

.slider .slider_div .ban_btn a {
	margin: 0 15px;
}

/* ------------------------------banner end------------------------------ */
/* ------------------------------affiliation ------------------------------ */
.affiliation {
	padding: 60px 0px;
}

.affiliation h3 {
	font-weight: 300;
}

.affiliation .aff_img {
	margin: 30px 0px;
}

.affiliation .aff_img img {
	width: 300px;
	display: block;
}

.affiliation .aff_img img.british {
	margin-left: auto;
}

.affiliation .aff_img img.cambridge {
	margin-right: auto;
}

.img_divider {
	position: relative;
	margin: 30px;
}

.img_divider::after {
	content: "";
	width: 2px;
	height: 110px;
	background-color: #d5d5d5;
	position: absolute;
	top: 50%;
	left: 50%;
}

/* ------------------------------affiliation end------------------------------ */
/* ------------------------------about_vss------------------------------ */
.about_vss {
	padding: 60px 0px;
	background-color: #f9f9f9;
}

.about_vss .card {
	transition: 0.7s ease;
}

.about_vss .card:hover {
	transform: scale(1.1);
}

.about_vss .about_pera {
	margin: 28px 0px;
}

.about_vss .about_pera p {
	font-weight: 300;
	text-align: justify;
}

.about_vss h5 {
	color: #3048ad;
	margin: 35px 0px 16px;
	letter-spacing: 2px;
}

.about_vss p.card-text {
	font-weight: 300;
	text-align: justify;
	letter-spacing: 0px;
	padding: 0px 14px 11px;
	line-height: 26px;
	font-size: 14px;
}

.about_vss .card-body {
	position: relative;
	height: 430px;
}

.about_vss .icon_img {
	position: absolute;
	border: 4px solid #fff;
	background-color: #26346b;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	top: -30px;
	left: 42%;
	color: #fff;
	font-size: 24px;
}

.about_vss .about_card_img {
	height: 276px;
}

/* ------------------------------about_vss end------------------------------ */
/* ------------------------------program------------------------------ */
.program {
	padding: 70px 0px 0px;
}

.program .left {
	display: flex;
	justify-content: center;
	align-items: center;
}

.program .left .text {
	width: 70%;
	border-left: 4px solid #f3a732;
	padding: 20px 0px 23px 20px;
}

.program .left .text h5 {
	color: #26346b;
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 20px;
}

.program .left .text h6 {
	color: #b1b1b1;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
}

.program .left .text p {
	color: #b1b1b1;
	font-weight: 400;
}

.program .left .text a {
	color: #fff;
	text-decoration: none;
	background-color: #6b6b6b;
	padding: 8px 20px;
	border: 1px solid #6b6b6b;
}

.program .left .text a:hover {
	border: 1px solid #6b6b6b;
	background-color: transparent;
	color: #6b6b6b;
	transition: 0.7s ease all;
}

.program .right img {
	width: 100%;
	height: 480px;
	object-fit: cover;
}

.program .container-fluid {
	padding-top: 30px;
}

/* ------------------------------program end------------------------------ */
/* ------------------------------admission------------------------------ */
.admission {
	padding: 70px 0px;
}

.admission .box {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 60px 0px;
}

.admission .box .box_icon {
	color: #26336b;
	font-size: 42px;
}

.admission .box .box_head {
	font-size: 18px;
	text-transform: uppercase;
}

.admission .box .box_text {
	font-weight: 200;
	font-size: 14px;
	text-transform: capitalize;
}

.admission .box .box_btn {
	text-decoration: none;
	color: #26336b;
	border: 1px solid #26336b;
	background-color: #fff;
	transition: 0.7s;
	border-radius: 64px;
	padding: 4px 13px;
	font-size: 12px;
}

.admission .box .box_btn:hover {
	color: #fff;
	background-color: #26336b;
}

.admission .hed_btm_line {
	margin-bottom: 50px;
}

.admission .box.bg_gery {
	background-color: #f3f2f2;
}

/* ------------------------------admission end------------------------------ */
/* ------------------------------campuses------------------------------ */
.campuses .img_box {
	background-repeat: no-repeat;
    background-size: contain;
	padding: 1rem;
	width: 100%;
	height: 151%;
	background-position: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.campuses .img_box.img_box_1 {
	background-image: url("../img/campus3.jpg");
}

.campuses .img_box.img_box_2 {
	background-image: url("../img/campus2.jpg");
}

.campuses .img_box.img_box_3 {
	background-image: url("../img/campus1.jpg");
}

.campuses .img_box .img_over {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: black;
	opacity: 0.7;
	top: 0;
	left: 0;
}

.campuses .img_box h4 {
	z-index: 1;
	color: #f3a732;
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 10px;
}

.campuses .img_box p {
	margin-top: 12px;
	z-index: 1;
	color: white;
	font-weight: 400;
}

.campuses .img_box p span {
	color: #f3a732;
}

.campuses .img_box a {
	text-decoration: none;
	z-index: 1;
	color: #fff;
	font-size: 14px;
	background-color: #636260;
	padding: 3px 18px;
}

/* ------------------------------campuses end------------------------------ */
/* ------------------------------register------------------------------ */
.register {
	background-color: #2a2e69;
	padding: 150px 0px 60px;
}

.register .hed_btm_line {
	color: #fff;
}

.register .register_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0px 20px;
}

.register .register_btn a {
	text-decoration: none;
	padding: 17px 60px;
	margin: 0px 2px;
}

.register .register_btn a.bg_white {
	color: #2a2e69;
	background-color: #fff;
}

.register .register_btn a.bg_yel {
	color: #fff;
	background-color: #f3a732;
}

/* ------------------------------register end------------------------------ */
/* ------------------------------contact------------------------------ */
.contact {
	padding: 70px 0px;
}

.contact .contact_card {
	text-align: center;
	padding: 30px 0px 0px;
}

.contact .contact_card .icon {
	color: #26336b;
	font-size: 34px;
}

.contact .contact_card .card_text {
	color: #b1b1b1;
	margin-bottom: 5px;
	font-size: 18px;
}

.contact .map {
	width: 100%;
	height: 500px;
	margin-top: 50px;
}

.contact .contact_form {
	margin-top: 50px;
}

.contact .contact_form .input_text input,
.contact .contact_form .input_text textarea {
	width: 100%;
	outline: none;
	border: 1px solid #e3e3e3;
	background-image: none;
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding: 6px 0px 4px 20px;
	margin: 10px 0px;
}

.contact .contact_form .input_text input::placeholder,
.contact .contact_form .input_text textarea::placeholder {
	color: #b1b1b1;
}

.contact .contact_form .submit_btn button {
	font-size: 14px;
	font-weight: 500;
}

.contact .contact_form .submit_btn button:hover {
	color: #26346b;
}

/* ------------------------------contact end------------------------------ */
/* ------------------------------footer------------------------------ */
.footer {
	background-color: #403f3f;
	padding: 60px 100px;
}

.footer h5 {
	color: #f3a732;
	font-weight: 300;
	font-size: 30px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f3a732;
}

.footer .list p {
	color: #b1b1b1;
	font-size: 14px;
}

.footer .list p i {
	margin-right: 10px;
}

.footer .list {
	margin: 30px 0px 35px;
}

.footer .social a {
	border: 1px solid #b1b1b1;
	padding: 11px 16px;
	margin-right: 6px;
	color: #b1b1b1;
	text-decoration: none;
	border-radius: 50%;
}

.footer .social a:hover {
	color: #f3a732;
	border: 1px solid #f3a732;
	transition: 0.7s ease;
}

.footer .a_list ul {
	list-style-type: none;
	padding: 0;
	margin: 30px 0px 35px;
}

.footer .a_list ul li {
	margin: 7px 0px 8px;
}

.footer .a_list ul a {
	text-decoration: none;
	font-size: 16px;
	color: #b1b1b1;
	position: relative;
}

.footer .a_list ul a:hover:after {
	width: 100%;
	right: 0;
}

.footer .a_list ul a:after {
	background: none repeat scroll 0 0 transparent;
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	position: absolute;
	background: #f3a732;
	transition: width 1s ease 0s, left 0.5s ease 0s;
	width: 0;
}

.copywrite {
	background-color: #26346b;
	text-align: center;
	padding: 25px 0px 15px;
}

.copywrite p {
	color: #fff;
	font-weight: lighter;
}

.copywrite p span {
	font-weight: 600;
}

/* -----------------Learning Page start-------------------- */
.landing_banner {
	background-image: url(../img/learning.jpg);
	background-size: 100% auto;
	padding: 90px;
	position: relative;
}

.landing_banner .heading {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 1;
}

.landing_banner .heading h1::after {
	content: "";
	width: 4%;
	border-radius: 35px;
	height: 5px;
	background-color: #f3a732;
	position: absolute;
	bottom: -15px;
	left: 48%;
}

.landing_banner::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: black;
	opacity: 0.75;
}


/* -----------------Learning Page end-------------------- */

/* ------------------------------footer end------------------------------ */

/* --------------------Learning Page---------------------------------- */
/* --------------------Text Area---------------------------------- */

.text_sec .text_area .text_heading {
	color: #26346b;
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
}

.text_sec .text_area {
	margin-top: 60px;
	font-family: 'Libre Franklin', sans-serif;
}

.text_sec .text_area .text_year {
	color: #6b6b6b;
	font-weight: 600;
	margin: 6px 0px 17px;
}
.text_sec .text_area .text_pera{
	font-weight: 200;
}
.text_sec .text_area .text_pera p{
	margin-top: 10px;
}
.text_sec .text_area .text_pera p span{
	font-size: 6px;
	color: #f3a732;
	margin-right: 10px;
}
/* --------------------Text Area End---------------------------------- */
/* --------------------Learning Page End---------------------------------- */

/* --------------------Admission Page---------------------------------- */
.admission_sec{
	background-color: #f6f3f3;
	padding: 60px 0px 50px;
}
.admission_sec ul li {
	margin-right: 5px;
}
.admission_sec .tab_btn.active{
	background-color: #26336B !important;
}
.admission_sec .tab_btn{
	border-radius: 0;
	background-color: #6b6b6b;
	color: #fff;
	font-size: 13px;
    padding: 13px 18px;
}
.admission_sec .tab-pane{
	border: .5px solid #c6c6c6;
	padding: 40px 30px;
	background-color: #fff;
}
.admission_sec .tab-pane  .steps p {
	font-size: 22px;
	margin: 50px 0px;	
	color: #474747;
	line-height: 24px;	
}

.admission_sec .tab-pane .list {
    background-color: #f2f2f2;
}
.admission_sec .tab-pane .list{
	font-size: 14px;
	padding: 30px 40px;
}
.admission_sec .tab-pane .list p{
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
}
.admission_sec .tab-pane .list ul{
	padding: 10px;
	margin: 0;
}
.admission_sec .tab-pane .list li{
	font-weight: 300;
	font-size: 14px;
	list-style-type: none;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.admission_sec .tab-pane .list li i{
	color: #f3a732;
	font-size: 4px;
	margin-right: 10px;
}
.admission_sec .admi_proc ul{
margin-bottom: 20px;
}
.admission_sec .admi_proc li{
font-size: 15px;
}
.admission_sec .steps{
	display: flex;
	justify-content: center;
	padding-top: 45px;
	flex-direction: column;
    align-items: center;
}
.admission_sec .steps div.circle{
	position: relative;
    background-color: #26336B;
    border: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
	z-index: 2;
}
.admission_sec .steps div.circle::after{
	content: '';
    position: absolute;
    top: 50%;
    width: 500px;
    background-color: #26336B;
    height: 1px;
    left: -610%;
	z-index: 1;
}
/* --------------------Admission Page End---------------------------------- */

/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
	.slider .slider_div .ban_text h1 {
		font-size: 38px;
	}

	.slider .slider_div img {
		height: 525px;
	}

	.about_vss .card-body {
		height: 453px;
	}
}

/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {
	.header nav li a {
		font-size: 14px;
	}

	.brand_logo_img {
		width: 105px;
	}

	.slider .slider_div .ban_btn a {
		padding: 5px 15px;
		font-size: 16px;
	}

	.slider .slider_div .ban_text h1 {
		font-size: 34px;
	}

	.affiliation .aff_img img {
		width: 264px;
	}

	h2 {
		font-size: 38px;
	}

	.about_vss p.card-text {
		padding: 0px;
	}

	.program .left .text {
		width: 85%;
	}

	.campuses .img_box h4 {
		font-size: 34px;
	}

	.campuses .img_box p {
		font-size: 13px;
		margin-top: 0px;
	}

	.campuses .img_box {
		height: 460px;
	}

	.about_vss p.card-text {
		line-height: 20px;
	}

	.contact .contact_card .card_text {
		font-size: 14px;
	}

	.about_vss .card-body {
		height: 412px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.header a.navbar-brand {
		margin-right: 5px;
	}

	.brand_logo_img {
		width: 95px;
	}

	.header .container-fluid {
		padding: 0px;
	}

	.header .row .col-md-12 {
		padding: 0px;
	}

	.header nav li a {
		font-size: 11px;
	}

	.slider .slider_div .ban_text h1 {
		font-size: 30px;
	}

	.slider .slider_div .ban_btn a {
		margin: 0 8px;
	}

	.slider .slider_div img {
		height: 376px;
	}

	.affiliation {
		padding: 40px 0px;
	}

	.affiliation .aff_img img {
		width: 233px;
	}

	.about_vss {
		padding: 38px 0px;
	}

	.about_vss .about_pera p {
		font-size: 14px;
	}

	.about_vss .row .col-md-4 {
		padding: 3px;
	}

	.about_vss p.card-text {
		line-height: 18px;
	}

	.about_vss .icon_img {
		left: 37%;
	}

	.about_vss .icon_img {
		width: 56px;
		height: 56px;
	}

	.about_vss h5 {
		margin-top: 25px;
	}

	.program {
		padding: 45px 0px 0px;
	}

	.program .left .text h5 {
		font-size: 26px;
	}

	.program .right img {
		height: 407px;
	}

	.program .left .text p {
		font-size: 14px;
	}

	.campuses .img_box h4 {
		font-size: 28px;
	}

	.campuses .img_box p {
		font-size: 10px;
	}

	.register .register_btn a {
		padding: 12px 50px;
	}

	.contact {
		padding: 34px 0px;
	}

	.footer h5 {
		font-size: 25px;
	}

	.footer .list p {
		font-size: 12px;
	}

	.footer .a_list ul a {
		font-size: 12px;
	}

	.footer .social a {
		padding: 7px 12px;
	}

	.copywrite p {
		font-size: 14px;
	}

	.about_vss .card-body {
		height: 455px;
	}

	.about_vss .about_card_img {
		object-fit: cover;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	.slider .slider_div .ban_text h1 {
		font-size: 27px;
	}

	.affiliation .aff_img img {
		margin: auto;
	}

	.affiliation .img_divider {
		display: none;
	}

	.affiliation .aff_img img {
		width: 215px;
	}

	.affiliation {
		padding: 25px 0px;
	}

	.about_vss .icon_img {
		left: 44%;
	}

	.program .left .text {
		margin: 5px 0px 5px;
	}

	.program .prog_box_3 {
		order: 2;
	}

	.program .prog_box_4 {
		order: 1;
	}

	.admission {
		padding: 29px 0px;
	}

	.admission .box {
		padding: 26px 0px;
	}

	.admission .ad_box_1 {
		order: 2;
	}

	.admission .ad_box_2 {
		order: 1;
	}

	.register .register_btn a {
		padding: 12px 27px;
	}

	.contact .contact_1 {
		order: 2;
	}

	.contact .contact_2 {
		order: 1;
	}

	.footer h5 {
		margin-top: 40px;
	}

	.footer {
		padding: 0px 100px;
	}

	.about_vss .card-body {
		height: auto;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	.header .container-fluid {
		padding: 0px 15px;
	}

	.header nav li a {
		font-size: 13px;
		padding: 6px 10px;
	}

	.slider .slider_div .ban_text h1 {
		font-size: 23px;
	}

	.slider .slider_div img {
		height: 341px;
	}

	.affiliation .aff_img img {
		width: 195px;
	}

	h2 {
		font-size: 28px;
	}

	.about_vss .about_pera p {
		font-size: 12px;
	}

	.about_vss p.card-text {
		font-size: 12px;
	}

	.program .left .text h5,
	.program .left .text h6 {
		font-size: 20px;
	}

	.program .left .text p {
		font-size: 12px;
	}

	.program .left .text a {
		font-size: 12px;
		padding: 6px 15px;
	}

	.register .register_btn a {
		font-size: 13px;
	}

	.contact .map {
		height: 273px;
	}
}

/* Small devices (landscape phones, 420px and up) */
@media (max-width: 479px) {
	.brand_logo_img {
		width: 80px;
	}

	.slider .slider_div .ban_text h1 {
		font-size: 16px;
	}

	.slider .slider_div .ban_btn a {
		padding: 3px 13px;
		font-size: 12px;
		margin: 0px 5px;
	}

	.slider .slider_div img {
		height: 260px;
	}

	.affiliation .aff_img img {
		width: 165px;
	}

	.about_vss .icon_img {
		left: 40%;
	}

	.program .left .text {
		width: 100%;
	}

	.program .right img {
		height: 310px;
	}

	.register .register_btn a {
		padding: 8px 4px;
	}

	.footer {
		padding: 0px 14px;
	}

	.copywrite p {
		font-size: 12px;
	}
}