@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	margin: 0px;
	padding: 0px;
	color: #6A6A6A;
	font-size: 16px;
	line-height: 167%;
	font-weight: 400;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

ul,
ol {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
	color: #196666;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

img:focus,
input:focus,
textarea:focus,
button:focus {
	outline: none;
}

.form-control:focus {
	box-shadow: none;
}

p {
	color: #6A6A6A;
	font-size: 16px;
	line-height: 169%;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}

h1,
.title-div {
	font-family: 'Merriweather', serif;
	font-style: normal;
	font-weight: 700;
	font-size: 60px;
	line-height: 167%;
	color: #002856;
}

h2 {
	font-family: 'Merriweather', serif;
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
	line-height: 40px;
	color: #002856;
}

h3 {
	font-size: 28px;
	line-height: 1.3;
	color: #002856;
}

.defult-btn,.btn.btn-primary {
	min-width: 183px;
	font-size: 20px;
	line-height: 27px;
	text-align: center;
	color: #A6C6FD;
	display: inline-block;
	border: 1px solid #A6C6FD;
	padding: 10px;
	border-radius: 10px;
}
.btn.btn-primary{
	color: #002856;
	border-color: #002856;
	min-width: 210px;
	background: #ffffff;
}
.defult-btn:hover,.btn.btn-primary:hover {
	background: #A6C6FD;
	border-color: #A6C6FD;
	color: #fff;
}
.btn.btn-primary:hover{
	background-color: #A6C6FD;
	border-color: #A6C6FD;
	color: #002856;
}
.container {
	max-width: 1740px;
	width: calc(100% - 30px);
}

.mobile-show {
	display: none !important;
}


/* Header CSS */

.site-header {
	background: url(../images/navigation-bg.svg) no-repeat;
	background-position: 130px 0;
	height: 92px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
}

.logo-white-bg {
	background: radial-gradient(101.74% 101.74% at 44.45% -7.16%, #FFFFFF 0%, rgba(255, 255, 255, 0.81) 41.67%, rgba(255, 255, 255, 0) 100%);
	filter: blur(24px);
	height: 92px;
	width: 162px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}

.site-header .container {
	max-width: 100%;
	width: 100%;
}

.site-header .row {
	display: block;
}

.logo-icondiv {
	display: block;
	text-align: center;
	float: left;
	position: relative;
	z-index: 1;
}

.logo-icondiv img {
	height: 78px;
}

.logo-icondiv a {
	display: inline-block;
	margin: 7px 0 7px 36px;
}

.header-innerwrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	/*height: 92px;*/
	background-color: #8A1E41;
	position: relative;
}

.header-innerwrap:after {
	position: absolute;
	background-color: #8A1E41;
	top: 0;
	right: -20%;
	height: 100%;
	width: 20%;
	content: "";
}

.logo-textdiv img {
	max-width: 100%;
}

.logo-textdiv a {
	display: inline-block;
}

.logo-textdiv .mobile-sticky-logo {
	display: none;
}

.nav-rightwrap {
	margin-right: 0;
	margin-left: auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	padding-right: 82px;
}

.navigation-div {
	float: left;
}

.navigation-div>ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
}

.navigation-div ul li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
}

.navigation-div>ul>li {
	width: 100%;
}

.navigation-div ul li a {
	padding: 26px 20px 26px 0;
	display: flex;
	align-items: flex-end;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	min-height: 92px;
}

.navigation-div>ul>li>a {
	position: relative;
}

.navigation-div>ul>li:hover>a:before {
	content: "";
	background: #253A6E;
	height: 5px;
	width: calc(100% - 22px);
	position: absolute;
	top: 0;
	left: 0;
}

.navigation-div>ul>li:hover>a {
	color: #A6C6FD;
}

.navigation-div ul ul {
	/* display:none; */
	position: absolute;
	top: 100%;
	left: 0;
	background: #253A6E;
	padding: 0;
	transition: all 0.5s ease-in-out;
	transform: translateY(-100%);
	z-index: -1;
}

.navigation-div ul ul li {
	float: none;
	width: 400px;
}

.navigation-div ul ul a {
	padding: 10px 25px;
	display: block;
	min-height: inherit;
}

.navigation-div ul ul a:hover {
	background: #8A1E41;
}

.navigation-div ul ul ul {
	top: 0;
	left: 100%;
}

.navigation-div ul li:hover>ul {
	/* display:block; */
	transform: translateY(0);
}

.search-user-div {
	float: right;
	position: relative;
}

.search-user-div ul li {
	display: block;
	padding: 8px 0px 8px 22px;
	font-size: 0;
	line-height: normal;
	float: left;
	border-left: 1px solid #fff;
}

.search-user-div ul li.hamburger-li {
	border-left: none;
	display: none;
}

.search-user-div ul li.usericon-li,
.search-user-div ul li.usericon-li,
.search-user-div ul li.searchicon-li {
	padding: 8px 22px;
}

#google-translate-btn{
	background: transparent;
	border: 0;
	outline: 0;
	box-shadow: none;
	float:left;
	cursor: pointer;
}

#google-translate-btn .show-on-mobile{
	display: none;
}

#google-translate-btn .dropdown-menu{
	padding: 0;
	padding: 0;
	right: 0 !important;
	left: auto !important;
	transform: none !important;
	top: 100% !important;
}

.search-user-div ul li a {
	line-height: normal;
	height: 24px;
}

.search-user-div .user-click {
	display: inline-block;
}

.search-user-div .search-click {
	display: inline-block;
}

.search-user-div .search-click:hover svg path {
	fill: #A6C6FD;
}

.search-user-div .user-click:hover svg path {
	fill: #A6C6FD;
}

.search-user-div .user-click:hover svg path.ustrok {
	stroke: #A6C6FD;
	fill: transparent;
}

.search-dropdown {
	background: #FFFFFF;
	box-shadow: 0px 8px 12px #A6C6FD;
	position: absolute;
	width: 625px;
	top: 66px;
	right: -20px;
	display: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.search-icondiv {
	width: 64px;
	border-right: 1px solid #A6C6FD;
	float: left;
	height: 64px;
}

.search-icondiv img {
	margin: 0 auto;
	display: block;
	padding: 20px 0;
}

.search-fildiv {
	float: left;
	padding: 7px 64px 7px 9px;
}

.search-fildiv .form-control {
	min-width: 488px;
	height: 50px;
	background: #F3F1F1;
	border-radius: 10px;
	font-size: 14px;
	line-height: 19px;
	color: #000;
	border: none;
	padding: 13px 18px;
}

.search-fildiv .form-control::-webkit-input-placeholder {
	color: #A6C6FD;
}

.search-fildiv .form-control::-moz-placeholder {
	color: #A6C6FD;
}

.search-fildiv .form-control:-ms-input-placeholder {
	color: #A6C6FD;
}

.search-fildiv .form-control:-moz-placeholder {
	color: #A6C6FD;
}

.search-close {
	position: absolute;
	right: 25px;
	height: 12px !important;
	top: 50%;
	margin-top: -6px;
	cursor: pointer;
}

.search-close svg {
	vertical-align: top;
}

.search-dropdown.show-search {
	display: block;
}

.mobile-navigation {
	display: none;
}


/* Home Slider CSS */

.home-slider {
	position: relative;
	width: 100%;
}

.home-slider .slick-prev,
.home-slider .slick-next {
	font-size: 0;
	background-position: center;
	height: 50px;
	width: 50px;
	position: absolute;
	top: 50%;
	margin-top: -25px;
	z-index: 1;
	background-color: #8A1E41;
	border: none;
}

.home-slider .slick-prev {
	left: 30px;
	background-image: url(../images/gallery-prev-icon.png);
	background-repeat: no-repeat;
}

.home-slider .slick-next {
	right: 30px;
	background-image: url(../images/gallery-next-icon.png);
	background-repeat: no-repeat;
}

.home-slider .slick-prev:focus,
.home-slider .slick-next:focus {
	outline: 0;
}

.home-slider .slick-slide {
	position: relative;
}

.home-slider .sliderimg-div {
	background-position: center;
	position: relative;
	/* padding-bottom: 56.25%; */
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}
.home-slider .slidervideo-div {
	min-height: 55.7vw;
	max-height: 1080px;
}
.home-slider .sliderimg-div iframe {
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	min-width: 1920px;
	width:100%;
}
.banner-outer-container{
	position: relative;
	overflow: hidden;
}
.home-slider .slider-content,.banner-outer-container .slider-content{
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 100%;
	left: 0;
}

.home-slider .slider-content::after,.banner-outer-container .slider-content::after{
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/flares-bg.svg);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	width: calc(100% + 5px);
	left: -2px;
}

.home-slider .slider-content:before,.banner-outer-container .slider-content:before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #002856 9.06%, rgba(0, 40, 86, 0) 34.3%);
}

.home-slider .slider-title,.banner-outer-container .slider-title{
	position: absolute;
	bottom: 16%;
	left: auto;
	right: auto;
	z-index: 1;
	width: 100%;
	color: #fff;
	text-align: center;
	margin-bottom: 0;
	padding: 0 20px;
}

.video-background-controls {
	top: auto !important;
	bottom: 8%;
	right: 5.5% !important;
}

.video-background-controls button {
	background: transparent;
	border: none;
	padding: 0;
	line-height: normal;
	width: 23px;
	height: 22px;
}

.video-background-controls .fa {
	background-image: url(../images/volume-icon.png);
	background-repeat: no-repeat;
	width: 23px;
	height: 22px;
	background-position: right top;
	line-height: normal;
}

.video-background-controls button.muted .fa {
	background-position: left top;
}

.video-background-controls .fa-volume-mute:before,
.video-background-controls .fa-volume-up:before {
	display: none;
}


/* Home CRC Message Section */

.crcmessage-section {
	padding: 65px 0;
}

.crcmessage-content {
	max-width: 1120px;
	padding: 29px 0 29px 140px;
	margin: 0 auto;
	position: relative;
}

.crcmessage-content:before {
	position: absolute;
	top: 0;
	left: -30px;
	height: 100%;
	width: 8px;
	background-color: #982648;
	content: "";
	opacity: 0;
}

.crcmessage-content p,.crcmessage-content .redactor-simple {
	font-size: 22px;
	line-height: 191%;
	color: #2B3E6A;
	margin-bottom: 0;
}

.crcmessage-section.aos-animate .crcmessage-content:before {
	animation: crcleftanimate 1.0s forwards;
	animation-delay: 0.5s;
	left: 0;
}

@keyframes crcleftanimate {
	from {
		left: -70px;
		opacity: 0;
	}
	to {
		left: 0px;
		opacity: 1;
	}
}


/* Home Lerning CSS  */

.home-lerningslider .sliderimg-div {
	background-position: center;
	position: relative;
	padding-bottom: 41%;
	background-repeat: no-repeat;
	background-size: cover;
}

.home-lerningslider .sliderimg-div:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 90%;
	height: 100%;
	background: linear-gradient(94.05deg, #002856 19.52%, rgba(255, 255, 255, 0) 73.07%);
}

.home-lerningslider .container {
	max-width: 1540px;
	width: 80%;
}

.home-lerningslider .slider-content {
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 100%;
	left: 0;
	background: url(../images/lerning-shap-bg.svg) no-repeat bottom left;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: center;
}

.home-lerningslider .title-div {
	color: #fff;
	margin-bottom: 60px;
	max-width: 595px;
}

.home-lerningslider .slider-content p,
.home-lerningslider .slider-content .redactor-simple-styles {
	font-weight: 600;
	font-size: 22px;
	line-height: 191%;
	color: #FFFFFF;
	max-width: 595px;
}

.home-lerningslider .slider-content .defult-btn {
	margin-top: 60px;
}

.home-lerningslider .slick-slide {
	position: relative;
}

.home-lerningslider .slick-prev,
.home-lerningslider .slick-next {
	position: absolute;
	top: 50%;
	opacity: 0.5;
	margin-top: -33px;
	z-index: 1;
	border: none;
	cursor: pointer;
}

.home-lerningslider .slick-prev:hover,
.home-lerningslider .slick-next:hover {
	opacity: 1;
}

.home-lerningslider .slick-prev {
	left: 3.5%;
}

.home-lerningslider .slick-next {
	right: 3.5%;
}

.home-lerningslider .slick-prev:focus,
.home-lerningslider .slick-next:focus {
	outline: 0;
}

.home-lerningslider .slick-dots,
.testimonial .slick-dots,
.image-textbox-module .slick-dots {
	position: absolute;
	bottom: 10%;
	z-index: 1;
	width: 100%;
	text-align: center;
}

.home-lerningslider .slick-dots li,
.testimonial .slick-dots li,
.image-textbox-module .slick-dots li {
	width: 16px;
	height: 16px;
	display: inline-block;
	margin: 0 12px;
}

.home-lerningslider .slick-dots li button,
.testimonial .slick-dots li button,
.image-textbox-module .slick-dots li button {
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	border: none;
	width: 16px;
	border-radius: 100%;
	height: 16px;
	padding: 0;
	background: #fff;
	opacity: 0.5;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.home-lerningslider .slick-dots li button:before,
.testimonial .slick-dots li button:before,
.image-textbox-module .slick-dots li button:before {
	display: none;
}

.home-lerningslider .slick-dots li.slick-active button,
.testimonial .slick-dots li:hover button,
.testimonial .slick-dots li.slick-active button,
.testimonial .slick-dots li:hover button,
.image-textbox-module .slick-dots li.slick-active button,
.image-textbox-module .slick-dots li:hover button {
	opacity: 1;
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	-ms-transform: scale(1.4);
	transform: scale(1.4);
}

.home-lerningslider .slick-dots li:hover button {
	opacity: 1;
}

.testimonial .slick-dots {
	bottom: -50px;
}

.image-textbox-module .slick-dots {
	bottom: 7%;
}


/* Home Event Section */

.event-section {
	padding-top: 110px;
}

.event-section .title-div {
	color: #002856;
	text-align: center;
	margin-bottom: 60px;
}

.calender-event {
	margin: 0 0 46px 0;
	background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
	box-shadow: 4px 4px 10px rgba(166, 198, 253, 0.8);
	border-radius: 10px;
	overflow: hidden;
}

.calendar-div {
	padding: 30px 15px;
	-ms-flex: 0 0 46.666667%;
	flex: 0 0 46.666667%;
	max-width: 46.666667%;
	background: linear-gradient(135.95deg, #002856 2.33%, #8A1E41 52.33%), #002856;
}

.custom-calendar-wrap {
	position: relative;
}

.fc-calendar-container {
	/* height: 483px;*/
	height: auto;
	width: calc(100% - 130px);
}

.fc-calendar {
	border-top: none;
}

.fc-calendar .fc-row>div {
	border-right: none;
}

.fc-calendar .fc-row {
	border-bottom: none;
	height: auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.fc-calendar .fc-body {
	border: none;
}

.fc-calendar .fc-head {
	/* height: 88px; */
	height: auto;
	background: transparent;
}

.fc-calendar .fc-head>div {
	border: 1px solid transparent;
	padding: 4px;
	padding-bottom: 13%;
	width: -moz-calc(100%/7);
	width: -webkit-calc(100%/7);
	width: calc(100%/7);
	text-align: center;
	color: #fff;
}

.fc-calendar .fc-head>div>span.fc-week {
	width: 30px;
	height: 30px;
	color: #fff;
	text-shadow: none;
	position: absolute;
	bottom: auto;
	right: auto;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
	text-align: center;
	font-weight: 800;
	font-size: 18px;
	line-height: 30px;
}

.fc-calendar .fc-row>div>span.fc-date {
	width: 30px;
	height: 30px;
	color: #fff;
	text-shadow: none;
	bottom: auto;
	right: auto;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	line-height: 30px;
}

.fc-calendar .fc-row>div {
	cursor: pointer;
}

.fc-calendar .fc-row>div.fc-today {
	background: #A6C6FD;
}

.fc-calendar .fc-row>div.fc-content {
	border: 1px solid #A6C6FD;
}
.fc-calendar .fc-content div{
	display: none;
}
.fc-calendar .fc-row>div {
	border: 1px solid transparent;
	padding-bottom: 13%;
	width: -moz-calc(100%/7);
	width: -webkit-calc(100%/7);
	width: calc(100%/7);
}

.calendar-arrow {
	position: absolute;
	top: 15px;
	right: 0px;
	z-index: 1;
}

.calendar-arrow .custom-prev {
	margin-right: 25px;
	padding: 10px;
	background-image: url(../images/left-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
	display: inline-block;
	background-size: 21px 35px;
	cursor: pointer;
	height: 60px;
	width: 45px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.calendar-arrow .custom-next {
	padding: 10px;
	background-image: url(../images/right-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	background-color: transparent;
	background-size: 21px 35px;
	cursor: pointer;
	height: 60px;
	width: 45px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.calendar-arrow .custom-prev:hover,
.calendar-arrow .custom-next:hover {
	/*background-color: #752044;*/
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.calendar-year {
	position: absolute;
	width: 119px;
	top: 50%;
	right: 0px;
	transform: translateY(-50%) rotate(180deg);
	writing-mode: tb-rl;
	height: 100%;
	text-align: center;
}

.custom-month,
.custom-year {
	font-weight: 700;
	font-size: 42px;
	line-height: 119px;
	text-align: center;
	color: #FFFFFF;
	display: inline-block;
}

.custom-year {
	margin-top: 8px;
}

.calendar-div .defult-btn {
	border-color: #fff;
	color: #fff;
	width: 210px;
	margin: 10px auto 0;
	display: block;
}

.calendar-div .defult-btn:hover {
	border-color: #A6C6FD;
}

.event-wrap {
	padding: 0;
	-ms-flex: 0 0 53.333333%;
	flex: 0 0 53.333333%;
	max-width: 53.333333%;
	position: relative;
}

.event-imgbg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 40%;
	height: auto;
}

.event-content {
	max-width: 665px;
	padding: 33px 15px;
	margin: 0 auto;
}

.event-content p {
	color: #002856;
}

.event-content h2 {
	margin-bottom: 30px;
}

.event-content h2 a {
	color: #002856;
}

.event-date {
	font-style: italic;
	font-size: 18px;
	line-height: 26px;
	color: #979797;
	margin-bottom: 16px;
	display: block;
}

.event-content ul {
	margin-top: 45px;
}

.event-content ul li {
	display: inline-block;
	margin-right: 45px;
	color: #979797;
	position: relative;
	padding-left: 28px;
}

.event-content ul li:last-child {
	margin-right: 0px;
}

.event-time-li:before {
	content: "";
	background: url(../images/clock-icon.svg) no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	height: 17px;
	width: 17px;
	margin-top: -8px;
}

.event-location-li:before {
	content: "";
	background: url(../images/location-icon.svg) no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 21px;
	margin-top: -10px;
}

.event-link {
	position: absolute;
	bottom: 15px;
	right: 42px;
	background: url(../images/angle-down.svg) no-repeat center #FFFFFF;
	border: 1px solid #A6C6FD;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
	display: inline-block;
	padding: 11px;
	width: 46px;
	height: 50px;
	border-radius: 10px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.event-link:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.viewall-event-tablet,
.viewall-news-tablet {
	display: none;
}


/* Home Latest News Section CSS */

.letestnes-section {
	padding: 110px 0;
}

.letestnes-section .title-div {
	color: #002856;
	text-align: center;
	margin-bottom: 60px;
}

.latestnews-slider {
	margin: 0 -15px;
	padding-right: 160px;
}

.latestnews-img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	padding-top: 141%;
}

.latestnews-img:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.21) 47.51%, #002856 103.36%);
}

.latestnews-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.latestnews-content {
	position: absolute;
	bottom: 0;
	right: auto;
	left: auto;
	padding: 25px 22px;
	width: calc(100% - 30px);
}

.latestnews-content h2 {
	color: #fff;
	width: calc(100% - 90px);
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 120px;
}

.latestnews-content .more-link {
	position: absolute;
	bottom: 25px;
	right: 22px;
	background: url(../images/angle-down.svg) no-repeat center #FFFFFF;
	border: 1px solid #A6C6FD;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
	display: inline-block;
	padding: 11px;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.latestnews-content .more-link:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.latestnews-slider .slick-slide {
	position: relative;
	padding: 0 15px;
}

.latestnews-slider .slick-prev,
.latestnews-slider .slick-next {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	border: none;
	cursor: pointer;
}

.latestnews-slider .slick-prev {
	right: 85px;
	font-size: 0;
	background: url(../images/angle-left.svg) no-repeat center #FFFFFF;
	border: 1px solid #A6C6FD;
	display: inline-block;
	padding: 11px;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.latestnews-slider .slick-next {
	right: 15px;
	font-size: 0;
	background: url(../images/angle-right.svg) no-repeat center #FFFFFF;
	border: 1px solid #A6C6FD;
	display: inline-block;
	padding: 11px;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.latestnews-slider .slick-prev:focus,
.latestnews-slider .slick-next:focus {
	outline: 0;
}

.latestnews-slider .slick-prev:hover,
.latestnews-slider .slick-next:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	box-shadow: 4px 2px 10px rgba(166, 198, 253, 0.8);
}


/* Home Vision Section */

.vision-section {
	background-color: #002856;
	padding: 215px 0;
	position: relative;
}

.vision-section .curve-bg {
	position: absolute;
	top: -215px;
	left: -40%;
	background: #fff;
}

.vision-section .title-div {
	float: left;
	width: 530px;
	color: #fff;
	padding-left: 40px;
}

.vision-content {
	max-width: 960px;
	width: calc(100% - 530px);
	padding-left: 140px;
	position: relative;
	float: left;
	margin-left: 3px;
	border-left: 8px solid #8A1E41;
}

.vision-content p {
	font-weight: 600;
	font-size: 22px;
	line-height: 191%;
	color: #FFFFFF;
	margin-bottom: 0;
}


/* Footer CSS */

.site-footer {
	padding: 70px 0;
	border-bottom: 10px solid #002856;
	position: relative;
}

.site-footer.innerpage-footer {
	margin-top: 25px;
}

.site-footer.innerpage-footer:before {
	content: '';
	background: linear-gradient(273.11deg, #002856 1.14%, #8A1E41 59.09%);
	height: 25px;
	left: 0;
	width: 100%;
	position: absolute;
	top: -25px;
}

.footer-logo img {
	max-width: 100%;
}

.footer-link {
	padding-right: 92px;
}

.footer-link ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: space-around;
	border-bottom: 1px solid #A6C6FD;
	padding-top: 15px;
	padding-bottom: 90px
}

.footer-link ul li {
	text-align: center;
}

.footer-link ul li span {
	display: block;
	margin-top: 34px;
}

.footer-link ul li a {
	display: block;
	font-weight: 300;
	color: #002856;
}

.footer-link ul a svg:hover path {
	fill: #A6C6FD;
}

.footer-logo.mobile-show {
	display: none;
}

.copyright-links {
	margin-top: 50px;
	padding-right: 92px;
}

.copyright-links ul {
	float: left;
}

.copyright-links ul li {
	display: block;
	position: relative;
	padding: 0 10px;
	float: left;
	font-size: 14px;
	line-height: 27px;
}

.copyright-links ul li a {
	display: block;
	color: #002856;
}

.copyright-links ul li+li::before {
	background: #002856;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -8px;
	height: 16px;
	width: 1px;
}

.copyright-text {
	color: #002856;
	margin-bottom: 0;
	float: right;
	font-size: 14px;
	line-height: 27px;
}

.copyright-text a {
	margin-left: 30px;
	line-height: normal;
	vertical-align: top;
}


/*==  newsletter reader view start ==*/

.newsinfobar-content {
	background: #FFFFFF;
	box-shadow: 0px 8px 12px #A6C6FD;
	position: relative;
	max-width: 1098px;
	width: 100%;
	margin: 0 auto;
	height: 64px;
	display: flex;
	flex-wrap: wrap;
	margin-top: -15px;
}

.newsinfobar-content h2 {
	color: #253A6E;
}

.newinforight-content p {
	font-size: 14px;
	line-height: 19px;
	color: #002856;
}

.newinforight-content li p {
	margin-bottom: 0px;
	line-height: 64px;
}

.newinforight-content li p img {
	margin-right: 10px;
}

ul.newinforight-content {
	display: flex;
	height: 100%;
	padding-right: 64px;
}

ul.newinforight-content li {
	border-left: 1px solid #A6C6FD;
	padding-left: 20px;
	flex-grow: 1;
	flex-basis: 0;
}

.search-icon {
	background: #002856;
	height: 100%;
	width: 64px;
	text-align: center;
	line-height: 64px;
	position: absolute;
	right: -1px;
	top: 0;
}

.newsinfobar-left {
	width: 43%;
	align-self: center;
	padding-left: 40px;
}

.newsinfobar-right {
	width: 57%;
	position: relative;
}

.newinforight-content li::before {
	content: '';
}

.search-bar {
	width: 0px;
	position: absolute;
	right: 0;
	background-color: #fff;
	top: 0;
	height: 64px;
	transition: 0.3s ease-in-out;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
}

.search-bar.active {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.full-search ul {
	display: flex;
	padding-right: 64px;
}

a.final-search {
	display: block;
	padding: 0px 21px;
	line-height: 64px;
}

.search-bar li {
	border-left: 1px solid #A6C6FD;
}

.search-bar li:nth-child(2) {
	width: calc(100% - 74px);
}

.search-bar input {
	background-color: #f5f5f5;
	padding: 0px 15px;
	margin: 7px 7px 0px;
	border: 0px;
	border-radius: 10px;
	font-size: 14px;
	height: calc(100% - 14px);
	width: 100%;
}

.search-bar .search-toggle img {
	max-width: 12px;
}

.search-bar .search-icon {
	background-color: #fff;
}

.listbox-content {
	border-radius: 10px 10px 0px 0px;
	padding: 18px 100px 1px;
	max-width: 1098px;
	margin: 0px auto;
	text-align: center;
	min-height: 255px;
	margin-top: -126px;
	position: relative;
}

.bg-marrone {
	background: #8A1E41;
}

.bg-blue {
	background: #002856;
}

.bg-sky {
	background: #A6C6FD;
}

.text-blue {
	color: #002856;
}

.text-sky {
	color: #A6C6FD;
}

.text-marron {
	color: #8A1E41;
}

.listbox-content p,
.name {
	font-weight: bold;
	font-size: 14px;
	line-height: 25px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.newsdetail {
	margin: 75px 0px;
}

.listbox-dec {
	max-width: 1016px;
	margin: 0px auto;
}

.listbox-dec p {
	font-size: 16px;
	line-height: 187%;
	color: #606060;
	margin-bottom: 30px;
}

.listbox-dec h6 {
	font-weight: bold;
}

.listbox-dec h2 {
	margin: 0px 0px 10px;
}

.newsreader-listbox .listbox-dec {
	margin: 75px auto 0px;
}

.name {
	font-weight: normal;
	position: relative;
	padding-top: 9px;
}

.name,
.name span {
	display: block;
	text-transform: initial;
}

.listbox-content h2.title-div::after,
.listbox-content p+.name::after {
	content: '';
	position: absolute;
	border: 1px solid #fff;
	width: 100%;
	height: 1px;
	left: 0;
	max-width: 390px;
	right: 0;
	text-align: center;
	margin: 0 auto;
	bottom: 0;
	opacity: 0.5;
}

.listbox-content p+.name::after {
	bottom: unset;
	top: 0;
	border: 1px solid #002856;
}

.listbox-content p+.name {
	margin-top: 20px;
}

.occupation {
	font-style: italic;
}

.listbox-grid {
	padding-bottom: 100px;
}

.listbox-content h2.title-div {
	padding-bottom: 30px;
	position: relative;
	margin: 0px;
	line-height: 134%;
}

.listbox-dec h2.small-title {
	margin-top: 65px;
	margin-bottom: 30px;
	line-height: 1.3;
}

.listbox-dec img {
	padding-top: 10px;
}

.listbox-content h2.title-div.text-marron::after {
	border-color: #8A1E41;
}

section.news-infobar {
	margin-bottom: 85px;
	position: relative;
	z-index: 2;
}

section.newsreader-listbox {
	margin-top: 125px;
}

.listbox-image {
	position: relative;
	padding-top: 31%;
}

.listbox-image img {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	object-fit: cover;
	height: 100%;
}


/*== newsletter reader view end ==*/


/*==  newsletter archive start ==*/

.select-box .select {
	-webkit-appearance: none;
	background: #002856;
	background-image: url(../images/down-arrow.svg);
	background-repeat: no-repeat;
	outline: 0px;
	background-position: top 19px right 18px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 19px;
	color: #FFFFFF;
	border: 0px;
	min-width: 212px;
	height: 50px;
	padding: 13px 18px;
}

.news-grid .container {
	max-width: 1052px;
}

.news-grid h2 {
	color: #002856;
	margin-bottom: 60px;
}

.news-grid .row {
	margin-left: -20px;
	margin-right: -20px;
}

.news-grid .row .col-md-4,
.news-grid .row .col-sm-12 {
	padding: 0px 20px;
}

.newsgrid-img img {
	box-shadow: 0px 4px 4px rgba(166, 198, 253, 0.3);
	border-radius: 10px;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
}

.newsgrid-img {
	position: relative;
	padding-top: 106%;
}

.newsgrid-content {
	background: rgba(0, 40, 86, 0.85);
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 4px 4px rgba(166, 198, 253, 0.3);
	border-radius: 0px 0px 10px 10px;
	position: absolute;
	height: 104px;
	bottom: 0px;
	width: 100%;
	transition: 0.5s ease-in-out
}

.newsgrid-content h3 {
	font-size: 28px;
	line-height: 30px;
	font-family: 'Merriweather', serif;
	font-weight: normal;
	margin-bottom: 0px;
}

.newsgrid-box {
	position: relative;
	margin-bottom: 42px;
	z-index: 1;
}

.newsgrid-box a:hover .newsgrid-content,
.newsgrid-box a:focus .newsgrid-content {
	height: 100%;
	border-radius: 10px;
}

.featured-button .defult-btn {
	color: #002856;
	border-color: #002856;
	min-width: 210px;
}

.featured-button .defult-btn:hover,
.featured-button .defult-btn:focus {
	background-color: #A6C6FD;
	border-color: #A6C6FD;
	color: #002856;
}

.viwemore-button {
	margin: 70px 0px 80px;
}

.viwemore-button .defult-btn {
	border-color: #002856;
	color: #002856;
}

.viwemore-button .defult-btn:hover {
	background-color: #A6C6FD;
	border-color: #A6C6FD;
	color: #002856;
}


/*== newsletetr archive  end ==*/


/*== newsletter-start==*/

.newsletter {
	background: linear-gradient(102.43deg, #002856 22.84%, #8A1E41 77.19%);
	padding: 86px 0px;
	position: relative;
}

.newsletter h2 {
	font-weight: normal;
	font-family: Open Sans;
}

.newsletter input {
	background: #FFFFFF;
	border-radius: 10px;
	border: 0px;
	font-size: 20px;
	line-height: 27px;
	color: #000;
	height: 50px;
	padding: 0px 20px;
	width: 411px;
	margin: 0px 22px 0px 25px;
}


/*==newsletter-end==*/


/*== generalmodule-start ==*/

.common-content,
.crcmessage-common .crcmessage-content {
	max-width: 1020px;
	width: 100%;
	margin: 0 auto;
}

.common-content h1,.redactor-styles h1 {
	color: #8A1E41;
	margin-bottom: 15px;
}

.common-content a {
	word-break: break-word;
}
.common-content p {
	font-size: 16px;
	line-height: 187%;
	color: #606060;
	margin-bottom: 30px;
}

.common-content h2,
.common-content h4,
.common-content h3 {
	margin-bottom: 30px;
}

.common-content h5,
.common-content h6 {
	margin-bottom: 20px;
}

.common-content h3,
.common-content h2,
.common-content h4,
.common-content h5,
.common-content h6 {
	margin-top: 0px;
}

.common-content h2,
.common-content h3 {
	color: #2B3E6A;
}

.common-content ul li,
.common-content ol li,
.accordian-content ul li,
.accordian-content ol li {
	position: relative;
	padding-left: 27px;
	margin-bottom: 10px;
}

.common-content ul li::before,
.common-content ol li::before,
.accordian-content ul li::before,
.accordian-content ol li::before {
	content: '';
	position: absolute;
	background-color: #606060;
	width: 7px;
	height: 7px;
	display: inline-block;
	border-radius: 50%;
	top: 10px;
	left: 0;
}

.common-content ul,
.common-content ol,
.accordian-content ul,
.accordian-content ol {
	margin-bottom: 30px;
}

.file-dwonload-a,.btn.download-btn {
	display: table;
	transition: 0.5s ease-in-out;
	margin-bottom: 21px;
	background-image: url(../images/download-arro.svg);
	background-position: center left 20px;
	background-repeat: no-repeat;
	font-size: 20px;
	line-height: 27px;
	color: #8A1E41;
	border: 1px solid #8A1E41;
	border-radius: 10px;
	padding: 9px 20px 9px 50px;
	white-space: normal;
	text-align: left;
	word-break: break-word;
}
.btn.download-btn a{
	color: #8A1E41;
	transition: 0.5s ease-in-out;
}
.btn.download-btn:hover a{
	color: rgba(166, 198, 253 , 1);
}
.btn.download-btn:hover{
	border-color: rgba(166, 198, 253 ,1);
	color: rgba(166, 198, 253 , 1);
	background-image: url(../images/download-arro-hover.svg);
}
.file-dwonload-a:hover,
.file-dwonload-a:focus {
	border-color: rgba(166, 198, 253, 1);
	color: rgba(166, 198, 253, 1);
	background-image: url(../images/download-arro-hover.svg);
}

.common-content table th,
.accordian-content table th{
	font-size: 22px;
	border: 0px;
	line-height: 30px;
	color: #fff;
	padding: 16px 44px;
	font-weight: normal;
	background: #8A1E41;
}
.common-content table th p,
.accordian-content table th p{
	color: #fff;
}
.common-content table thead,
.accordian-content table thead {
	background: #8A1E41;
}

.common-content table td,
.accordian-content table td {
	font-size: 16px;
	line-height: 30px;
	color: #6A6A6A;
	padding: 11px 44px;
	border-top: 0px;
}

.common-content table tr,
.accordian-content table tr {
	border-bottom: 2px solid rgba(166, 198, 253, 0.4);
}

.common-content table tr:last-child,
.accordian-content table tr:last-child {
	border: 0px;
}

.common-content table,
.accordian-content table {
	width: 100%;
	margin: 110px 0px;
	border-radius: 10px 10px 0px 0px;
	overflow: hidden;
}

.accordian-content table {
	margin: 35px 0px !important;
}

section.page-content {
	margin-top: 80px;
	margin-bottom: 125px;
}

.crcmessage-common .crcmessage-content {
	padding-top: 8px;
	padding-bottom: 8px;
}

.crcmessage-common {
	padding: 85px 0;
}

.pb0{
	padding-bottom: 5px;
}
.featured-button {
	padding: 55px 0px 0px;
}
.pb-55{
	padding: 0px 0px 55px 0px;
}

/*== generalmodule-end ==*/


/*==newsdetail-start==*/

.newsdetail-top {
	background: #E5E5E5;
	padding: 34px 0px 25px;
}

.newsdetail-top-content {
	max-width: 1016px;
	width: 100%;
	margin: 0px auto;
	text-align: center;
}

.newsdetail-top-content h6 {
	font-weight: bold;
	font-size: 14px;
	line-height: 25px;
	text-transform: uppercase;
	color: #002856;
}

.newsdetail-top .listbox-content {
	margin-top: 0px;
	min-height: unset;
	padding: 0px;
}


/*==newsdetail-end==*/


/*== newsgrid-start ==*/

.news-gridwrap {
	max-width: 1060px;
	margin: 0 auto;
}

.news-grid-part {
	max-width: 1060px;
	margin: 0 auto;
	width: 100%;
}

.news-grid-part:after {
	content: '';
	display: block;
	clear: both;
}

.news-grid-item {
	float: left;
}

.news-grid-sizer,
.news-grid-item {
	width: 33.33%;
	height: 371px;
	position: relative;
	padding: 20px;
}

.news-grid-item .innerboxdiv {
	height: 100%;
	position: relative;
	box-shadow: 0px 4px 4px rgba(166, 198, 253, 0.3);
	border-radius: 10px;
}

.news-grid-item .innerboxdiv .card-body {
	padding: 24px 20px;
	position: relative;
	height: 100%;
}

.news-grid-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-grid-item h6 {
	font-weight: bold;
	font-size: 14px;
	line-height: 25px;
	text-align: center;
	text-transform: uppercase;
	color: #A6C6FD;
}

.news-grid-item h3 {
	color: #FFFFFF;
	font-size: 28px;
	line-height: 35px;
	font-family: 'Merriweather', serif;
	text-align: center;
	position: relative;
	margin: 25px 0px 19px;
	padding-bottom: 15px;
}

.news-grid-item h3::after {
	content: '';
	border: 1px solid #fff;
	position: absolute;
	bottom: 0px;
	width: 100%;
	margin: 0px auto;
	left: 0;
	width: calc(100% - 50px);
	right: 0;
	opacity: 0.5;
}

.news-grid-item p {
	color: #fff;
	font-size: 14px;
	line-height: 25px;
	text-align: center;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*== all-module -set -grid==*/

.news-grid-item.grid-item-width {
	width: 66.66%;
}

.news-grid-item.grid-item-height {
	height: 740px;
}

.darkbluecolor_boxdiv .innerboxdiv {
	background: #002856;
}

.darkmarronecolor_boxdiv .innerboxdiv {
	background: #8A1E41;
}

.lightbluecolor_boxdiv .innerboxdiv {
	background: #A6C6FD;
}

.lightbluecolor_boxdiv h6 {
	color: #002856;
}

.lightbluecolor_boxdiv h3 {
	color: #8A1E41;
}

.lightbluecolor_boxdiv p {
	color: #002856;
}

.widemediumimage_boxdiv .card-image img {
	border-radius: 10px 0px 0px 10px;
}

.tall-box .card-image img {
	border-radius: 10px 10px 0px 0px;
}

.tall-box .card-image {
	height: calc(100% - 313px);
}

.news-grid-item.lightbluecolor_boxdiv h3::after {
	border: 1px solid #8A1E41;
}

.innerboxdiv .row {
	height: 100%;
}

.news-grid-item.tall-box .innerboxdiv .card-body {
	height: auto;
}

.widemediumimage_boxdiv .card-image {
	height: 100%;
}

.widemediumimage_boxdiv .left-div {
	width: calc(50% + 20px);
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% + 20px);
	flex: 0 0 calc(50% + 20px);
	max-width: calc(50% + 20px);
}

.widemediumimage_boxdiv .right-div {
	width: calc(50% - 20px);
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 20px);
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
}

.largewideimage_boxdiv {
	position: relative;
}

.largewideimage_boxdiv .innerboxdiv {
	border-radius: 0px 0px 10px 0px;
}

.largewideimage_boxdiv .row {
	justify-content: flex-end;
	align-items: flex-end;
	height: 100%;
}

.largewideimage_boxdiv>div {
	border-radius: 10px;
	box-shadow: 0px 4px 4px rgba(166, 198, 253, 0.3);
}

section.gridview {
	margin-bottom: 180px;
}

.largewideimage_boxdiv .card-image {
	display: none;
}


/*== newsgrid-end ==*/


/*== innerbanner-start==*/

.home-slider.innerpage-banner .sliderimg-div {
	padding-bottom: 40%;
	height: auto;
	min-height: 600px;
}

.slider-content .breadcrumb a {
	font-size: 14px;
	color: #fff;
}

ol.breadcrumb {
	position: absolute;
	bottom: 30px;
	background-color: transparent;
	left: auto;
	right: auto;
	justify-content: center;
	z-index: 1;
	width: 100%;
	color: #fff;
	text-align: center;
	margin-bottom: 0;
	padding: 0 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
	background-image: url(../images/bredcums-icon.png);
	background-repeat: no-repeat;
	content: '';
	width: 7px;
	height: 12px;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
}

ul.newinforight-content li.active .gray-img {
	display: inline-block;
}

ul.newinforight-content li .gray-img,
ul.newinforight-content li.active .active-img {
	display: none;
}

.newinforight-content li.active p {
	color: #6A6A6A;
}

.listbox-capton-image span,
.our-learning span {
	color: #979797;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	font-style: italic;
	border-left: 3px solid #8A1E41;
	padding: 12px 0px 1px 10px;
	display: inline-block;
	margin-top: -10px;
}

.listbox-capton-image {
	display: inline-block;
	text-align: right;
}

.listbox-capton-image-center {
	text-align: center;
}

.newsletter input::-webkit-input-placeholder,
.search-bar input::-webkit-input-placeholder {
	color: #A6C6FD;
}

.newsletter input:-ms-input-placeholder,
.search-bar input:-ms-input-placeholder {
	color: #A6C6FD;
}

.newsletter input::placeholder,
.search-bar input::placeholder {
	color: #A6C6FD;
}
.newsletter label{
	display: none;
}
.newsletter .defult-btn{
	background: transparent;
}
.newsletter .defult-btn:hover{
	background: #A6C6FD;
}
.newsletter .sample-column{
	display: inline-block;
}

/*==innnerbanner-end==*/


/*==modulepage-start==*/


/*.our-learning .common-content {max-width:unset;}*/

.our-learning img {
	border-radius: 10px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	object-fit: cover;
}

.our-learning .item {
	text-align: right;
}

.our-learning .slick-slide {
	margin: 0 20px;
}

.our-learning .slick-list {
	margin: 0 -20px;
	padding-left: 0px !important;
}

.our-learning .slick-prev,
.our-learning .slick-next {
	position: absolute;
	font-size: 0;
	top: 40px;
	width: 50px;
	height: 50px;
	right: 0;
	z-index: 1;
	border: none;
	cursor: pointer;
	border: 1px solid #A6C6FD;
	border: 1px solid #A6C6FD;
	display: inline-block;
	padding: 11px;
	border-radius: 10px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.our-learning .slick-prev {
	left: 0px;
	background: url(../images/angle-left.svg) no-repeat center #FFFFFF;
}

.our-learning .slick-next {
	left: 73px;
	background: url(../images/angle-right.svg) no-repeat center #FFFFFF;
}

.lerning-slider {
	padding-top: 140px;
}

.our-learning .slick-prev:hover,
.our-learning .slick-next:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	box-shadow: 4px 2px 10px rgba(166, 198, 253, 0.8);
}

.ourlearning-slider {
	overflow: hidden;
	padding-right: 30px;
	padding-left: calc(50% - 527px);
}

.lerning-slider-image {
	position: relative;
	padding-top: 64%;
	background-size: cover; 
}

section.our-learning {
	margin-bottom: 122px;
}

.our-learning h3 {
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	color: #253A6E;
}

.vision {
	background: #002856;
	color: #fff;
	padding: 154px 0px;
}

.vision h2,
.vision p {
	color: #fff;
}

.vision .row {
	align-items: center;
}

.vision h2 {
	text-align: center;
}

.vision .crcmessage-content:before {
	left: 0;
	opacity: 1;
}

.vision .crcmessage-content {
	padding: 29px 60px 29px 95px;
}

.image-text-content h2 {
	font-size: 40px;
	line-height: 50px;
	color: #A6C6FD;
	margin-bottom: 32px;
}

.image-text-content h3 {
	color: #A6C6FD;
	margin-bottom: 40px;
	line-height: 1.4;
}

.image-text-content p {
	font-size: 16px;
	line-height: 187%;
	color: #fff;
	margin-bottom: 30px;
}

.image-text-content a {
	margin-top: 20px;
}

.image-text-content .row {
	justify-content: flex-end;
}

.image-textbox-module .slick-slide {
	position: relative;
}

.image-text-content {
	background-size: 70%;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background-image: url(../images/lerning-shap-rightbg.svg);
	background-position: bottom right;
	background-repeat: no-repeat;
	width: 100%;
}

.image-textbox-imgdiv {
	background-position: center left;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	min-height: 780px;
}

.image-textbox-imgdiv::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	height: 100%;
	background: linear-gradient(-94.05deg, #002856 19.52%, rgba(255, 255, 255, 0) 73.07%);
}

.image-text-content .container {
	height: 100%;
}

.image-text-content .row {
	align-items: center;
	height: 100%;
}

.accordian-content {
	max-width: 1055px;
	margin: 0 auto;
}

.accordian-content .btn-link {
	font-size: 28px;
	position: relative;
	text-align: left;
	line-height: 30px;
	color: #8A1E41;
	border: 0px;
	background-color: transparent;
	display: block;
	padding: 20px 12px;
}

.accordian-content .card {
	border: 0px;
	border-radius: 0px;
	border-bottom: 2px solid rgba(166, 198, 253, 0.5);
}

.accordian-content .btn-link:hover,
.accordian-content .btn-link:focus {
	text-decoration: none;
}

.accordian-content .listbox-capton-image-center {
	text-align: center;
	float: right;
	margin-left: 74px;
	margin-bottom: 23px;
}

.card-body {
	padding: 20px 12px;
}

.accordian-content p {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 30px;
}


.accordian-content .btn-link::after {
	content: '';
	transition: 0.1s ease;
	transform: rotate(180deg);
	background-image: url(../images/download-arro.svg);
	background-repeat: no-repeat;
	width: 21px;
	height: 12px;
	display: block;
	position: absolute;
	right: 12px;
	top: 32px;
}

.accordian-content .btn-link.collapsed::after {
	transform: rotate(0deg);
}

.tiles-module-content h2,
.our-learning h2 {
	font-weight: normal;
	font-family: 'Open Sans', sans-serif;
	color: #253A6E;
}

.tiles-module-content .news-grid-item .innerboxdiv::before {
	content: '';
	border-radius: 10px;
	background: rgba(166, 198, 253, 0.85);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.tiles-module-content .innerboxdiv .card-body {
	position: absolute !important;
	width: 100%;
	padding: 24px 36px;
	top: 0;
	z-index: 4;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}

.tiles-module-content .card-body h2 {
	font-weight: bold;
	width: 100%;
	justify-content: center;
	min-height: 80px;
	display: flex;
	align-items: flex-end;
	font-family: 'Merriweather', serif;
	color: #002856;
	margin-top: 0px;
	margin-bottom: 60px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.tiles-module-content .news-grid-item p {
	border-top: 1px solid rgba(0, 40, 86, 01);
	min-height: 67px;
	font-size: 16px;
	color: #002856;
	line-height: 27px;
	padding-top: 12px;
	margin-bottom: 0px;
}

.tiles-module-content .card-image img {
	border-radius: 10px !important;
}

.tiles-module {
	margin: 122px auto;
}
.webform-module,.acordian-module{
	margin: 122px 0;
}
.tiles-module-content .innerboxdiv:hover::before {
	background: linear-gradient(117.41deg, rgba(0, 40, 86, 0.4) 1.97%, rgba(138, 30, 65, 0.4) 99.07%);
}
.tiles-module-content .no-image .innerboxdiv:hover::before {
	background: #8a1e41;
}
.tiles-module-content .innerboxdiv:hover .card-body h2 {
	color: #fff;
	min-height: unset;
	margin-bottom: 0px;

}

.tiles-module-content .innerboxdiv:hover p {
	display: none;
}

.tiles-module-content .innerboxdiv:hover .card-body {
	justify-content: center;
	align-content: flex-end;
}

.tiles-module-content .card-image {
	height: 100%;
	background-size: cover;
	border-radius: 10px;
}

.testimonial {
	background-color: #8A1E41;
	padding: 90px 0;
	margin: 80px 0px;
}

.testimonial-wrapper {
	max-width: 1020px;
	width: 100%;
	margin: 0 auto;
}

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

.testimonial-content .redactor-styles-simple{
	/*color: #fff;*/
	color: #A6C6FD;
	font-style: italic;
	font-weight: normal;
	font-size: 24px;
	line-height: 175%;
	font-family: Merriweather;
	margin-bottom: 20px;
	padding: 0 30px;
	position: relative;
}
.testimonial-content .redactor-styles-simple p{
	color: #A6C6FD;
	font-style: italic;
	font-weight: normal;
	font-size: 24px;
	line-height: 175%;
	font-family: Merriweather;
}
.testimonial-content p {
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 0;
}

.testimonial-content .redactor-styles-simple::before {
	content: "";
	background-image: url('../images/left-quote.svg');
	background-repeat: no-repeat;
	height: 40px;
	width: 50px;
	position: absolute;
	top: 50%;
	left: -100px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.testimonial-content .redactor-styles-simple::after {
	content: "";
	background-image: url('../images/right-quote.svg');
	background-repeat: no-repeat;
	height: 40px;
	width: 50px;
	position: absolute;
	top: 50%;
	right: -100px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.page-content p:last-child {
	margin-bottom: 0px;
}

.image-textbox-module-outer {
	margin: 100px 0px;
}

.testimonial-slide>div {
	padding: 0px 100px;
}

.search-toggle {
	cursor: pointer;
}


/*==module-end==*/


/*== event-start ==*/

.eventdec-colwrap {
	order: 2;
}

.event-part .calendar-div {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.eventdec .eventdec-box {
	box-shadow: 0px 8px 12px #A6C6FD;
	border-radius: 10px;
	margin-bottom: 46px;
}

.eventdec-box-info h2 {
	font-size: font-weight: 600;
	font-size: 62px;
	line-height: 84px;
	color: #002856;
	font-family: 'Open Sans', sans-serif;
}

.eventdec-box-info h2 span {
	font-size: 22px;
	line-height: 30px;
	display: block;
}

.eventdec-box-info p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 0px;
	color: #A6C6FD;
	display: inline-block;
}
.eventdec-location p,.eventdec-time p{
	position: relative;
	padding-left: 35px;
}
.eventdec-time p{
	padding-left: 42px;
}
.eventdec-box-info p img {
	margin-right: 10px;
}
.eventdec-location p img,.eventdec-time p img {
	position: absolute;
	left: 0;
	top:-4px;
}

.eventdec-box-info {
	background: #002856;
	text-align: center;
	height: 171px;
	display: flex;
	border-radius: 10px 10px 0px 0px;
	align-items: flex-start;
}

.eventdec-date {
	background: #A6C6FD;
	padding-left: 70px;
	border-radius: 10px 0px 0px;
	width: 315px;
	height: 172px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.eventdec-time {
	padding: 0px 45px 0px 40px;
	min-width: 250px;
}

.eventdec-location {
	padding: 0px 40px 0px 45px;
}

.eventdec-content {
	padding: 45px 70px;
	min-height: 350px;
}

.eventdec-content h2 {
	margin-bottom: 30px;
}

.eventdec-content p,
.eventdec-content ul,
.eventdec-content ol {
	color: #002856;
	line-height: 27px;
	margin-bottom: 35px;
}

.eventdec-content ul li,
.eventdec-content ol li {
	color: #002856;
	position: relative;
	padding-left: 15px;
}

.eventdec-content ul,
.eventdec-content ol {
	padding-left: 30px;
}

.eventdec-content ul li::before {
	content: '';
	background-color: #002856;
	top: 11px;
	position: absolute;
	left: 0;
	width: 5px;
	height: 5px;
	background-size: 5px;
	display: inline-block;
	margin-right: 12px;
	border-radius: 50%;
}

.b-description_readmore_button {
	font-size: 16px;
	cursor: pointer;
	margin-top: 25px;
	line-height: 38px;
	color: #979797 !important;
}

.b-description_readmore_button::before {
	content: '';
	position: relative;
	top: -3px;
	display: inline-block;
	background-image: url(../images/angle-down.svg);
	background-size: 16px 8px;
	width: 38px;
	height: 38px;
	border: 1px solid #A6C6FD;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
	background-repeat: no-repeat;
	border-radius: 10px;
	vertical-align: middle;
	background-position: center;
	margin-right: 12px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.b-description_readmore_button.b-description_readmore_button_active::before {
	transform: rotate(180deg);
	box-shadow: -4px -4px 4px rgba(0, 0, 0, 0.25);
}

.b-description_readmore_button:hover:before {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	box-shadow: 4px 2px 10px rgba(166, 198, 253, 0.8);
}

.b-description_readmore_button.b-description_readmore_button_active:hover:before {
	transform: rotate(180deg) scale(1.1);
	box-shadow: -4px -4px 4px rgba(166, 198, 253, 0.8);
}

.event-part {
	margin-top: 25px;
}

.calendar-bottom-img {
	position: relative;
	padding-top: 131%;
}

.calendar-bottom-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-part .calendar-arrow {
	position: relative;
	top: 0;
	right: 0px;
	z-index: 1;
}

.event-part .calendar-year {
	position: relative;
	width: 100%;
	top: 0;
	right: 0px;
	transform: inherit;
	writing-mode: inherit;
	height: auto;
	text-align: center;
}

.event-part .fc-calendar .fc-head>div {
	/*line-height: 70px;*/
}

.event-part .fc-calendar .fc-head {
	/* height: 70px; */
}

.event-part .custom-month,
.event-part .custom-year {
	line-height: 96px;
}

.event-part .custom-year {
	margin-top: 0;
	margin-left: 8px;
}

.event-part .calendar-arrow .custom-prev {
	position: absolute;
	left: 14px;
	top: 23px;
	margin-right: 0;
	background-size: 16px 25px;
	height: 50px;
	width: 35px;
}

.event-part .calendar-arrow .custom-next {
	position: absolute;
	right: 14px;
	top: 23px;
	background-size: 16px 25px;
	height: 50px;
	width: 35px;
}

.event-part .fc-calendar-container {
	width: 100%;
}

.event-part .calendar-div {
	padding: 10px 15px 40px;
}


/*== event-end ==*/


/*==extra-css-start==*/

.tiles-module-content .news-grid-part {
	margin-left: -20px;
	margin-right: -20px;
	width: calc(100% + 40px);
}

.home-slider.innerpage-banner .slider-title {
	bottom: 14%;
}

.wrap-drop {
	background: #002856;
	border-radius: 10px;
	cursor: pointer;
	margin: 0 auto;
	position: relative;
	z-index: 3;
	padding: 13px 50px 13px 18px;
	display: inline-block;
	min-width: 212px;
}

.wrap-drop::after {
	content: '';
	background: #002856;
	background-image: url(../images/down-arrow.svg);
	background-repeat: no-repeat;
	outline: 0px;
	width: 22px;
	height: 14px;
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 18px;
}

.wrap-drop.active::after {
	transform: rotate(180deg);
}

.wrap-drop .drop {
	background: #002856;
	padding-bottom: 13px;
	border-radius: 0px 0px 10px 10px;
	display: none;
	left: 0;
	list-style: none;
	margin-top: 0;
	opacity: 0;
	padding-left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 2;
}

.wrap-drop .drop li a {
	font-weight: bold;
	font-size: 18px;
	line-height: 25px;
	color: #ffff;
	display: block;
	padding: 7px 18px;
	text-decoration: none;
}

.wrap-drop span {
	color: #ffff;
	font-size: 14px;
	line-height: 19px
}

.wrap-drop.active {
	border-radius: 10px 10px 0px 0px;
}

.wrap-drop.active .drop {
	display: block;
	opacity: 1;
	pointer-events: auto;
}

.wrap-drop .drop li a:hover,
.wrap-drop .drop li a:focus {
	color: #fff;
	background: #8A1E41;
}

#calendar+.clearfix {
	display: inline-block !important;
}

.footer-link svg {
	max-height: 36px;
}

.mute-unmute-label {
	position: absolute;
	display: none;
	background: #A6C6FD;
	font-weight: 400;
	font-size: 14px;
	line-height: 19px;
	color: #002856;
	padding: 0 10px;
	top: -37px;
	left: 50%;
	border-radius: 10px;
	min-width: 74px;
	margin-left: -37px;
}

.mute-unmute-label:after {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 50%;
	margin-left: -11px;
	width: 0px;
	height: 0px;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-top: 14px solid #A6C6FD;
}

.mute-toggle:hover .mute-unmute-label {
	display: block;
}

body.opneNav {
	overflow-y: hidden;
}

.fc-calendar .content_wrap {
	position: absolute;
	display: none;
	background: #A6C6FD;
	padding: 15px 10px;
	bottom: calc(100% + 15px);
	left: 50%;
	min-width: 180px;
	margin-left: -90px;
	border-radius: 8px;
}

.fc-calendar .content_wrap p {
	font-size: 14px;
	line-height: 19px;
	color: #002856;
	margin: 0;
	text-align: center;
}

.fc-calendar .content_wrap:after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	margin-left: -28px;
	width: 0px;
	height: 0px;
	border-left: 28px solid transparent;
	border-right: 28px solid transparent;
	border-top: 14px solid #A6C6FD;
}

.fc-calendar .fc-row>div.fc-content {
	overflow: inherit;
}

.fc-calendar .fc-row>div.fc-content:hover .content_wrap {
	display: block;
}

.common-content ol,
.accordian-content ol,
.eventdec-content ol {
	list-style: decimal;
	padding-left: 17px;
}

.common-content ol li,
.accordian-content ol li {
	padding-left: 10px;
}

.common-content ol li::before,
.accordian-content ol li::before {
	display: none;
}

.eventdec-content ol {
	padding-left: 48px;
}

.eventdec-content ol li {
	padding-left: 5px;
}


/*==extra-css-end==*/


/***===commonbuttoncss-end=====***/


/*==loader-start==*/

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 99;
}

#status {
	width: 180px;
	height: 147px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(../images/footer-logo.svg);
	background-repeat: no-repeat;
	background-position: center;
	margin: -73px 0 0 -90px;
	background-size: 180px;
	animation-name: spin;
	animation-duration: 10000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.redactor-styles figure.has-caption{
	display: inline-block;
	position: relative;
	margin-bottom: 40px !important;
}
.redactor-styles figure.has-caption figcaption{
	color: #979797;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	font-style: italic;
	border-left: 3px solid #8A1E41;
	padding: 12px 0px 1px 10px;
	display: inline-block;
	margin-top: -10px;
	position: absolute;
	top:100%;
	right:0;
}
.redactor-styles img,
.redactor-styles video,
.redactor-styles audio,
.redactor-styles embed,
.redactor-styles figure,
.redactor-styles object {
	max-width: 100% !important;
}

.redactor-styles img,
.redactor-styles video,
.redactor-styles embed,
.redactor-styles object {
	height: auto !important;
}
.redactor-styles h1:first-child,
.redactor-styles h2:first-child,
.redactor-styles h3:first-child,
.redactor-styles h4:first-child,
.redactor-styles h5:first-child,
.redactor-styles h6:first-child,
.redactor-styles p:first-child,
.redactor-styles blockquote:first-child,
.redactor-styles hr:first-child,
.redactor-styles .pane:first-child,
.redactor-styles .grid:first-child,
.redactor-styles .field:first-child,
.redactor-styles .toolbar:first-child,
.redactor-styles .buttons:first-child {
	margin-top: 0px !important;
}
.redactor-styles h1{
	margin-top:60px;
}
.redactor-styles h2{
	margin-top:50px;
}
.redactor-styles h3{
	margin-top:50px;
}
.redactor-styles h4{
	margin-top:50px;
}
.redactor-styles h5{
	margin-top:40px;
}
.redactor-styles a{
	color:#007bff;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
.redactor-styles a:hover{
	color:#000da4;
}
.eventdec-location p,.eventdec-time p{
	text-align: left;
	margin-top: 60px;
}
.tooltip-inner p{
	font-size: 14px;
	line-height: 19px;
	color: #002856;
	margin:0;
	text-align: center !important;
}
.tooltip.show{
	opacity: 1;
}
.tooltip-inner{
	min-width: 180px;
	background: #A6C6FD;
	padding: 15px 10px;
	border-radius: 8px;
}
.tooltip .arrow::before{
	border-left: 28px solid transparent;
	border-right: 28px solid transparent;
	border-top: 14px solid #A6C6FD;
	border-width:;
	border-top-color:#A6C6FD;
	transform: translate(-50%,0);
}
.web-form .btn-primary{
	margin-top: 20px;
}
.video-module{
	padding: 0 30px;
}
.video-module video{
	max-width: 100%;
}
@keyframes spin {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1);
	}
}


/*==loader-end==*/

@-moz-document url-prefix() {
	.defult-btn {
		line-height: 26px;
		padding: 11px;
	}
}


/* Media Query CSS */

@media (max-width: 1700px) {
	.nav-rightwrap {
		padding-right: 40px;
	}
}

@media (max-width: 1620px) {
	.logo-icondiv {
		/* width: 170px; */
	}
	.nav-rightwrap {
		padding-right: 0px;
		padding-left: 25px;
	}
	.navigation-div ul li a {
		font-size: 14px;
	}
	.search-user-div ul li {
		padding: 8px 0px 8px 15px;
	}
	.search-user-div ul li.usericon-li,
	.search-user-div ul li.hamburger-li {
		padding: 8px 15px;
	}
	.search-dropdown {
		right: 0;
	}
	.vision-section .title-div {
		width: 460px;
	}
	.vision-section .curve-bg {
		left: -380px;
	}
	.footer-link {
		padding-right: 0px;
	}
}

@media (max-width: 1440px) {
	.navigation-div ul li a {
		padding: 26px 12px 26px 0;
	}
	.navigation-div ul ul a {
		padding: 10px 25px;
	}
	.navigation-div ul ul li {
		width: 340px;
	}
	.home-lerningslider .sliderimg-div {
		padding-bottom: 50%;
	}
	.calendar-div .defult-btn {
		margin: 30px auto 0;
	}
	.latestnews-content h2 {
		width: calc(100% - 65px);
	}
}

@media (max-width: 1366px) {
	.site-header {
		background-position: 100px 0;
	}
	.logo-icondiv img {
		height: 74px;
	}
	.nav-rightwrap {
		padding-left: 25px;
	}
	.logo-icondiv {
		/* width: 130px; */
	}
	.logo-icondiv a {
		margin: 9px 0 9px 13px;
	}
	.logo-textdiv {
		padding-left: 10px;
	}
	.navigation-div ul li a {
		font-size: 13px;
	}
	.navigation-div ul ul a {
		padding: 10px 20px;
	}
	.navigation-div ul ul li {
		width: 320px;
	}
	.search-user-div ul li {
		padding: 8px 0px 8px 12px;
	}
	.search-user-div ul li.usericon-li,
	.search-user-div ul li.hamburger-li {
		padding: 8px 12px;
	}
	.vision-section .title-div {
		width: 430px;
	}
	.vision-content {
		padding-left: 100px;
		width: calc(100% - 450px);
	}
	.vision-section {
		padding: 180px 0;
	}
	.vision-section .curve-bg {
		top: -180px;
	}
	.event-imgbg {
		padding-bottom: 45%;
	}
	.event-content {
		padding: 33px;
	}
	.image-text-content h2 {
		margin-bottom: 25px;
	}
	.image-text-content h3 {
		margin-bottom: 30px;
	}
	.image-text-content p {
		margin-bottom: 20px;
	}
	.calendar-arrow {
		position: relative;
		top: 0;
		right: 0px;
		z-index: 1;
	}
	.calendar-year {
		position: relative;
		width: 100%;
		top: 0;
		right: 0px;
		transform: inherit;
		writing-mode: inherit;
		height: auto;
		text-align: center;
	}
	.custom-month,
	.custom-year {
		font-size: 40px;
		line-height: 96px;
	}
	.custom-year {
		margin-top: 0;
		margin-left: 8px;
	}
	.calendar-arrow .custom-prev {
		position: absolute;
		left: 14px;
		top: 23px;
		margin-right: 0;
		background-size: 16px 25px;
		height: 50px;
		width: 35px;
	}
	.calendar-arrow .custom-next {
		position: absolute;
		right: 14px;
		top: 23px;
		background-size: 16px 25px;
		height: 50px;
		width: 35px;
	}
	.fc-calendar-container {
		/*height: 385px;*/
		width: 100%;
	}
	.calendar-div {
		padding: 0 25px 15px;
	}
	.calendar-div .defult-btn {
		margin: 20px auto 0;
	}
}

@media (max-width: 1300px) {
	.navigation-div ul li a {
		padding: 26px 11px 26px 0;
	}
	.navigation-div ul ul a {
		padding: 10px 20px;
	}
	.search-user-div ul li {
		padding: 8px 0px 8px 10px;
	}
	.search-user-div ul li.usericon-li,
	.search-user-div ul li.hamburger-li {
		padding: 8px 10px;
	}
}

@media (max-width: 1279px) {
	.search-user-div {
		width: 40px;
	}
	.search-dropdown {
		top: 86px;
	}
}

@media (max-width: 1199px) {
	.home-lerningslider .sliderimg-div {
		padding-bottom: 55%;
	}
	.ourlearning-slider {
		padding-left:30px;
	}
	.header-innerwrap {
		height: 92px;
	}
	.logo-icondiv a {
		margin: 9px 0 9px 15px;
	}
	.navigation-div {
		display: none;
	}
	.search-dropdown {
		top: 66px;
	}
	.search-user-div ul li.hamburger-li {
		display: block;
	}
	.search-user-div {
		width: auto;
	}
	.search-user-div ul li {
		padding: 8px 0px 8px 22px;
	}
	.search-user-div ul li.usericon-li,
	.search-user-div ul li.hamburger-li {
		padding: 8px 33px;
	}
	/* Mobile menu css */
	.mobile-navigation {
		position: fixed;
		z-index: 9;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #fff;
		width: 100%;
		height: 100vh;
		display: none;
		overflow-y: scroll;
	}
	.mobile-navheader {
		padding: 30px 60px;
		position: relative;
		min-height: 90px;
	}
	.mobile-search-user {
		position: absolute;
		top: 30px;
		left: 60px;
	}
	.mobile-search-user ul li {
		float: left;
		display: block;
	}
	.mobile-search-user .usericon-li {
		margin-right: 60px;
	}
	.mobile-search-user .search-dropdown.show-search {
		display: block;
		right: auto;
		left: 0;
		top: 40px;
		z-index: 1;
	}
	.mobile-navlogo {
		display: block;
		text-align: center;
	}
	.mobile-navlogo a {
		display: inline-block;
		animation-duration: 2s;
		transform-origin: bottom;
	}
	.mobile-navlogo img {
		max-width: 100%;
	}
	.mobile-closediv {
		position: absolute;
		top: 30px;
		right: 60px;
		height: 30px;
		width: 30px;
	}
	.mobile-closediv a {
		display: block;
	}
	.mobile-closediv img {
		max-width: 100%;
		opacity: 0.6;
	}
	.mobile-navwrap {
		background: linear-gradient(109.66deg, #8A1E41 10.09%, #253A6E 45.48%), #FFFFFF;
		padding: 50px 65px 120px;
		height: calc(100vh - 90px);
		position: relative;
	}
	.navigation-nav {
		/*position: relative;*/
		height: 100%;
		overflow-y: auto;
	}
	.navigation-nav>ul {}
	.navigation-nav ul>li {
		width: 50%;
	}
	.navigation-nav ul>li>a {
		font-weight: 600;
		font-size: 22px;
		line-height: 100px;
		color: #FFFFFF;
		display: block;
		position: relative;
		border-bottom: 1px solid transparent;
		max-width: 290px;
	}
	.navigation-nav ul>li>ul {
		position: absolute;
		left: 50%;
		width: 50%;
		top: 50px;
		margin: 0;
		display: none;
	}
	.navigation-nav ul>li>ul>li {
		width: auto;
	}
	.navigation-nav ul>li>ul>li>a {
		font-weight: 600;
		font-size: 16px;
		line-height: 60px;
		color: #FFFFFF;
		border-bottom: none;
		max-width: 100%;
	}
	.navigation-nav ul>li>ul>li>ul {
		width: 100%;
		position: relative;
		left: 0;
		padding-left: 40px;
		display: none;
		top: 0;
		height: auto;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: opacity 600ms, visibility 600ms;
		transition: opacity 600ms, visibility 600ms;
	}
	.navigation-nav ul>li>ul>li>ul>li {
		width: auto;
	}
	.navigation-nav ul>li>ul>li.sub-menu>a:after {
		content: "";
		display: inline-block;
		margin-left: 10px;
		background-image: url(../images/down-arrow.svg);
		background-repeat: no-repeat;
		background-size: cover;
		height: 9px;
		width: 14px;
	}
	.navigation-nav ul>li>ul>li.sub-menu.active>a:after {
		background-image: url(../images/down-arrow-nav.svg);
		transform: scaleY(-1);
	}
	.navigation-nav ul>li>ul>li>ul>li>a {
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
		padding: 18px 0;
		color: #FFFFFF;
		border-bottom: none;
		max-width: 100%;
	}
	.navigation-nav ul>li.active>ul {
		display: block;
	}
	.navigation-nav ul>li.active>a {
		color: #6AAAE4;
		border-bottom: 1px solid #6AAAE4;
	}
	.navigation-nav ul>li>ul>li.active>a {
		color: #6AAAE4;
		border-bottom: none;
	}
	.navigation-nav ul>li>ul>li.active>ul {
		visibility: visible;
		opacity: 1;
		display: block;
	}
	.mobile-navfooter {
		position: absolute;
		bottom: 30px;
		width: 100%;
		z-index: 1;
		left: 0;
	}
	.mobile-navfooter ul {
		text-align: center;
	}
	.mobile-navfooter ul li {
		display: inline-block;
		margin: 0 45px;
	}
	/* Mobile menu CSS End */
	.latestnews-slider {
		padding-right: 150px;
	}
	.latestnews-img {
		padding-top: 170%;
	}
	.latestnews-content h2 {
		color: #fff;
		width: calc(100% - 60px);
		font-size: 26px;
	}
	.footer-link {
		padding-right: 0;
		padding-left: 30px;
	}
	.copyright-links {
		margin-top: 40px;
		padding-right: 0px;
		padding-left: 30px;
	}
	.calendar-arrow {
		position: relative;
		top: 0;
		right: 0px;
		z-index: 1;
	}
	.calendar-year {
		position: relative;
		width: 100%;
		top: 0;
		right: 0px;
		transform: inherit;
		writing-mode: inherit;
		height: auto;
		text-align: center;
	}
	.fc-calendar .fc-head>div {
		/* line-height: 70px; */
	}
	.fc-calendar .fc-head {
		/* height: 70px; */
	}
	.custom-month,
	.custom-year {
		font-size: 40px;
		line-height: 96px;
	}
	.custom-year {
		margin-top: 0;
		margin-left: 8px;
	}
	.calendar-arrow .custom-prev {
		position: absolute;
		left: 14px;
		top: 23px;
		margin-right: 0;
		background-size: 16px 25px;
		height: 50px;
		width: 35px;
	}
	.calendar-arrow .custom-next {
		position: absolute;
		right: 14px;
		top: 23px;
		background-size: 16px 25px;
		height: 50px;
		width: 35px;
	}
	.fc-calendar-container {
		/*height: 385px;*/
		width: 100%;
	}
	.calendar-div {
		padding: 0 15px 15px;
	}
	.calendar-div .defult-btn {
		margin-top: 20px;
	}
	.newsreader-listbox .listbox-content,
	.newsreader-listbox .listbox-dec {
		width: calc(100% - 60px);
	}
	.newsgrid-content h3 {
		font-size: 24px;
	}
	.newsinfobar-right {
		width: 60%;
	}
	.newsinfobar-left {
		width: 40%;
	}
	ul.newinforight-content li {
		padding-left: 15px;
	}
	.listbox-content h2.title-div {
		font-size: 50px;
		padding-bottom: 20px;
	}
	.listbox-dec h2 {
		font-size: 50px;
	}
	.listbox-content {
		min-height: 200px;
		margin-top: -80px;
	}
	.newsreader-listbox .listbox-dec {
		margin: 50px auto 0px;
	}
	.listbox-grid {
		padding-bottom: 80px;
	}
	section.news-infobar,
	section.gridview {
		margin-bottom: 60px;
	}
	section.newsreader-listbox {
		margin-top: 0px;
	}
	.listbox-dec h2 {
		font-size: 35px;
	}
	.listbox-dec h2.small-title {
		margin-top: 40px;
		margin-bottom: 20px;
	}
	.newsletter {
		text-align: center;
		padding: 60px 0px;
	}
	.newsletter input {
		margin: 0px 22px 0px 0px;
		float: none;
		margin-top: 40px;
		display: inline-block;
	}
	.newsletter .btn {
		display: inline-block;
		vertical-align: baseline;
	}
	.common-content h1 {
		font-size: 50px;
	}
	section.page-content {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.widemediumimage_boxdiv .left-div {
		width: calc(50% + 8px);
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% + 8px);
		flex: 0 0 calc(50% + 8px);
		max-width: calc(50% + 8px);
	}
	.widemediumimage_boxdiv .right-div {
		width: calc(50% - 8px);
		-webkit-box-flex: 0;
		-ms-flex: 0 0 calc(50% - 8px);
		flex: 0 0 calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
	.news-grid-item {
		padding: 8px;
	}
	.newinforight-content p {
		font-size: 13px;
	}
	.accordian-content .btn-link {
		font-size: 23px;
	}
	.news-grid-part {
		margin-left: -8px;
		margin-right: -8px;
		width: calc(100% + 16px);
	}
	.eventdec-time,
	.eventdec-location {
		padding: 0px 20px;
	}
	.eventdec-box-info p {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 10px;
	}
	.eventdec-box-info h2 {
		font-size: 40px;
		line-height: 1.3
	}
	.eventdec-box-info h2 span {
		font-size: 17px;
		line-height: 21px;
		margin-top: 5px;
	}
	.eventdec-date {
		padding: 0px 30px;
		width: auto;
	}
	.eventdec-content {
		padding: 45px 30px;
	}
	.testimonial,
	section.page-content,
	section.our-learning,
	.image-textbox-module,
	.tiles-module,
	.common-content table,
	.newsdetail,
	.accordian-content table,.webform-module,.acordian-module {
		margin: 60px 0px;
	}
	.crcmessage-section {
		margin: 60px 0;
		padding: 0px;
	}
	.event-part .custom-month,
	.event-part .custom-year {
		font-size: 25px;
	}
	.image-text-content {
		padding: 40px 0px;
		background-size: unset;
	}
}

@media (max-width: 1024px) {
	.container {
		width: calc(100% - 70px);
	}
	.ourlearning-slider {
		padding-left:50px;
	}
	.header-innerwrap {
		height: 92px;
	}
	.navigation-div {
		display: none;
	}
	.search-user-div ul li.hamburger-li {
		display: block;
	}
	.video-background-controls {
		display: none;
	}
	.home-slider .sliderimg-div {
		padding-bottom: 0;
	}
	.home-slider .slider-content:before {
		background: linear-gradient(358.92deg, #FFFFFF 1.04%, #253A6E 9.35%, rgba(37, 58, 110, 0) 39.91%);
	}
	.home-slider .slider-content:after {
		background-image: url(../images/tablet-flares-bg.svg);
		width: calc(100% + 5px);
		left: -2px;
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: contain;
	}
	.home-slider .slider-title,.banner-outer-container .slider-title{
		bottom: 14%;
	}
	.crcmessage-content,
	.vision .crcmessage-content {
		padding: 8px 0 8px 110px;
	}
	.home-lerningslider .sliderimg-div {
		padding-bottom: 85%;
	}
	.home-lerningslider .slick-prev,
	.home-lerningslider .slick-next {
		display: none !important;
	}
	.home-lerningslider .slick-dots {
		bottom: 20px;
	}
	.home-lerningslider .title-div,
	.home-lerningslider .slider-content p {
		max-width: 524px;
	}
	.home-lerningslider .slider-content {
		align-items: flex-end;
		background-size: contain;
	}
	.home-lerningslider .slider-content .col-md-12 {
		margin-bottom: 60px;
	}
	.event-section .title-div,
	.letestnes-section .title-div {
		margin-bottom: 50px;
	}
	.home-lerningslider .container {
		width: calc(100% - 70px);
	}
	.event-section {
		padding-top: 80px;
	}
	.calendar-div {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 540px;
	}
	.event-wrap {
		padding: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: calc(100% - 540px);
	}
	.calendar-arrow {
		position: relative;
		top: 0;
		right: 0px;
		z-index: 1;
	}
	.calendar-year {
		position: relative;
		width: 100%;
		top: 0;
		right: 0px;
		transform: inherit;
		writing-mode: inherit;
		height: auto;
		text-align: center;
	}
	.fc-calendar-container {
		/* height: 385px;*/
		width: 100%;
	}
	.calendar-div {
		padding: 0 15px 18px;
	}
	.fc-calendar .fc-head>div {
		/* line-height: 70px; */
	}
	.fc-calendar .fc-head {
		/*height: 70px;*/
	}
	.custom-month,
	.custom-year {
		line-height: 96px;
	}
	.custom-year {
		margin-top: 0;
		margin-left: 8px;
	}
	.calendar-div .defult-btn {
		display: none;
	}
	.calendar-arrow .custom-prev {
		position: absolute;
		left: 29px;
		top: 23px;
		margin-right: 0;
		background-size: 16px 25px;
		height: 50px;
		width: 35px;
	}
	.calendar-arrow .custom-next {
		position: absolute;
		right: 29px;
		top: 23px;
		background-size: 16px 25px;
		height: 50px;
		width: 35px;
	}
	.event-imgbg {
		padding-bottom: 0;
		min-height: 200px;
	}
	.event-content {
		padding: 10px 25px;
	}
	.event-content ul li {
		margin-right: 12px;
		font-size: 15px;
	}
	.event-link {
		display: none;
	}
	.viewall-event-tablet,
	.viewall-news-tablet {
		display: block;
		margin-top: 40px;
	}
	.viewall-event-tablet .defult-btn,
	.viewall-news-tablet .defult-btn {
		border: 1px solid #253A6E;
		color: #253A6E;
	}
	.letestnes-section {
		padding: 60px 0;
	}
	.vision-section {
		padding: 210px 0 135px;
	}
	.vision-section .title-div {
		width: 250px;
		padding-left: 0px;
		line-height: 144%;
	}
	.vision-content {
		padding-left: 50px;
		width: 100%;
		max-width: calc(100% - 253px);
	}
	.vision-section .curve-bg {
		top: -210px;
		left: -307px;
		width: 600px;
		height: 101px;
	}
	.latestnews-content h2 {
		width: 100%;
	}
	.latestnews-content .more-link {
		display: none;
	}
	.letestnes-section .container {
		padding: 0;
		width: 100%;
	}
	.letestnes-section .row {
		margin: 0;
	}
	.letestnes-section .col-md-12 {
		padding: 0;
	}
	.latestnews-slider .slick-slide {
		padding: 0 10px;
	}
	.latestnews-img {
		padding-top: 170%;
	}
	.latestnews-content {
		padding: 15px;
		width: calc(100% - 20px);
	}
	.latestnews-slider {
		padding-right: 0px;
		margin: 0;
	}
	.footer-link {
		padding-right: 0;
		padding-left: 30px;
	}
	.footer-link ul {
		padding-bottom: 40px;
		padding-top: 10px;
	}
	.copyright-links {
		margin-top: 40px;
		padding-left: 30px;
		padding-right: 0;
	}
	.copyright-links ul {
		float: none;
		text-align: center;
	}
	.copyright-links ul li {
		display: inline-block;
		float: none;
		padding: 0 8px 0 10px;
	}
	.copyright-text {
		float: none;
		text-align: center;
		margin-top: 30px;
	}
	.site-footer {
		padding: 55px 0 30px;
	}
	.newsreader-listbox .listbox-content,
	.newsreader-listbox .listbox-dec {
		width: calc(100% - 100px);
	}
	.newsinfobar-content {
		max-width: 1097px;
	}
	.calender-event {
		-ms-flex-wrap: inherit;
		flex-wrap: inherit;
	}
}

@media (max-width: 991px) {
	.calendar-div,
	.event-wrap {
		max-width: 100%;
	}
	.calender-event.homepage-calender {
		display: block;
	}
	.home-slider .slider-title p{
		margin-top:20px;
	}
	.event-imgbg {
		min-height: 260px;
	}
	.footer-link,
	.copyright-links {
		padding-left: 20px;
	}
	.newsinfobar-content h2 {
		font-size: 18px;
		line-height: 1.2;
	}
	.newsinfobar-left {
		padding: 0px 15px;
	}
	.newsinfobar-left {
		width: 30%;
	}
	.newsinfobar-right {
		width: 70%;
	}
	.search-icon {
		width: 50px;
		right: 0px;
	}
	.search-icon .search-toggle img {
		max-width: 20px;
	}
	.search-bar .search-toggle img {
		max-width: 12px;
	}
	ul.newinforight-content {
		padding-right: 50px;
		min-height: 64px;
	}
	.newinforight-content p {
		font-size: 12px;
	}
	.newinforight-content li p img {
		margin-right: 7px;
		max-width: 25px;
		max-height: 25px;
	}
	ul.newinforight-content li {
		padding-left: 10px;
	}
	.listbox-content h2.title-div,
	.common-content h1 {
		font-size: 40px;
		line-height: 1.2;
	}
	.listbox-dec h2.small-title {
		font-size: 25px;
	}
	.full-search ul {
		padding-right: 50px;
	}
	.select-box .select {
		width: calc(100% - 15px);
		min-width: auto;
		font-size: 13px;
	}
	.news-grid h2 {
		margin-bottom: 30px;
	}
	.news-grid .row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.news-grid .row .col-md-4,
	.news-grid .row .col-sm-12 {
		padding: 0px 15px;
	}
	.newsgrid-content h3 {
		font-size: 20px;
	}
	.newsgrid-content {
		height: 80px;
	}
	.viwemore-button {
		margin: 20px 0px 50px;
	}
	.common-content h2,
	.vision h2,
	.image-text-content h2,
	.accordian-content h2 {
		font-size: 28px;
		line-height: 1.3;
	}
	.common-content h3,
	.image-text-content h3 {
		font-size: 24px;
		line-height: 1.3;
	}
	.file-dwonload-a {
		font-size: 18px;
		line-height: 1.3;
	}
	table th {
		font-size: 19px;
		line-height: 30px;
		padding: 13px 30px;
	}
	table td {
		padding: 8px 30px
	}
	table {
		margin: 60px 0px;
	}
	.featured-button {
		padding: 40px 0px 0px;
	}
	.pb-55{
		padding: 0px 0px 40px 0px;
	}
	section.gridview {
		max-width: 1020px;
		margin: 0 auto;
	}
	.news-grid-item.grid-item-width {
		width: 50%;
	}
	.news-grid-sizer,
	.news-grid-item {
		width: 50%;
	}
	.widemediumimage_boxdiv .right-div,
	.widemediumimage_boxdiv .left-div,
	.largewideimage_boxdiv .row>div {
		width: 100%;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.widemediumimage_boxdiv {
		height: 740px;
	}
	.widemediumimage_boxdiv .card-image img {
		border-radius: 10px 10px 0px 0px;
	}
	.widemediumimage_boxdiv .left-div {
		height: calc(100% - 318px);
	}
	.largewideimage_boxdiv .card-image {
		height: 355px;
	}
	.lerning-slider {
		padding-top: 70px;
	}
	.our-learning .slick-prev,
	.our-learning .slick-next {
		top: 7px;
	}
	.vision {
		padding: 60px 0px;
	}
	.vision h2 {
		margin-bottom: 40px;
	}
	.image-text-content {
		/* padding: 60px 0px;*/
	}
	.accordian-content .btn-link {
		white-space: normal;
		font-size: 18px;
		padding: 10px 24px 10px 12px;
		line-height: 1.3;
	}
	.accordian-content .btn-link::after {
		top: 22px;
		background-size: 16px;
		right: 10px;
	}
	.accordian-content .listbox-capton-image-center {
		float: none;
		margin-left: 0px;
	}
	.card-body {
		padding: 20px 12px 0px;
	}
	.tiles-module-content .widemediumimage_boxdiv {
		height: 371px;
	}
	section.page-content {
		margin-top: 50px;
	}
	.testimonial {
		margin: 60px 0px;
	}
	section.our-learning {
		margin-bottom: 60px;
	}
	.image-textbox-module,
	.tiles-module,.webform-module,.acordian-module {
		margin: 60px 0px;
	}
	.eventdec {
		margin-top: 25px;
	}
	.image-textbox-module .slick-dots {
		bottom: 30px;
	}
	.testimonial,
	section.page-content,
	section.our-learning,
	.image-textbox-module,
	.tiles-module,
	.newsdetail,.webform-module,.acordian-module {
		margin: 50px 0px;
	}
	section.news-infobar,
	section.gridview {
		margin-bottom: 50px;
	}
	h1,
	.title-div {
		font-size: 50px;
		line-height: 1.3;
	}
	.common-content h4 {
		font-size: 22px;
		line-height: 1.3
	}
	.common-content table th,
	.accordian-content table th {
		font-size: 16px;
		line-height: 1.3;
	}
	.common-content table td,
	.accordian-content table td {
		font-size: 15px;
		line-height: 1.3
	}
	.wrap-drop {
		width: 100%;
		min-width: unset;
	}
	.crcmessage-content p {
		font-size: 20px;
	}
	.image-textbox-imgdiv::before {
		left: 0;
		background: linear-gradient(94.05deg, #002856 19.52%, rgba(255, 255, 255, 0) 73.07%);
		right: auto;
	}
	.image-text-content {
		/* background: url(../images/lerning-shap-bg.svg) no-repeat bottom left;*/
		background-size: 130%;
	}
	.image-textbox-imgdiv {
		background-position: center;
		min-height: 650px;
	}
	.newsgrid-box {
		margin-bottom: 30px;
	}
	.calendar-bottom-img {
		display: none;
	}
	.mobile-navheader {
		padding: 30px 50px;
	}
	.mobile-search-user {
		left: 50px;
	}
	.mobile-closediv {
		right: 50px;
	}
	.mobile-navwrap {
		padding: 50px 50px 120px;
	}
	.navigation-nav ul>li>ul>li>ul {
		padding-left: 30px;
	}
}

@media (max-width: 767px) {
	.container {
		width: calc(100% - 30px);
	}
	.ourlearning-slider {
		padding-left:30px;
	}
	#google-translate-btn .show-on-mobile{
		display: inline-block;
	}
	.navigation-nav ul>li>ul{
		top:0;
	}
	#google-translate-btn .show-on-mobile path{
		fill: inherit;
	}
	#google-translate-btn .show-on-desktop{
		display: none;
	}
	.lb-nav a.lb-prev,.lb-nav a.lb-next{
		opacity: 1;
	}
	.slider-content .breadcrumb{
		display: none;
	}
	.eventdec-location p img,.eventdec-time p img {
		top:50%;
		transform: translate(0,-50%);
	}
	.eventdec-location p, .eventdec-time p{
		margin-top:0;
	}
	.eventdec-location p{
		text-align: center; 
	}
	.eventdec-box-info .eventdec-location{
		padding-left:15px;
		padding-right: 15px;
	}
	h1,
	.title-div {
		font-size: 30px;
	}
	.web-form .btn-primary{
		margin-top: 15px;
	}
	.event-section .title-div,
	.letestnes-section .title-div {
		margin-bottom: 30px;
	}
	.site-header {
		background: #fff;
		height: auto;
		position: static;
		top: -327px;
	}
	.site-header.mobile-sticky {
		background: #fff;
		z-index: 9;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		-webkit-transition: top 300ms;
		-moz-transition: top 300ms;
		transition: top 300ms;
	}
	.header-innerwrap {
		position: relative;
		display: block;
		padding: 30px 15px;
		height: auto;
		background-color: #fff;
	}
	.header-innerwrap:after {
		display: none;
	}
	.nav-rightwrap {
		padding-left: 0;
		display: block;
		margin: 0;
	}
	.logo-icondiv {
		display: none;
	}
	.dektop-show {
		display: none !important;
	}
	.mobile-show {
		display: inline-block !important;
	}
	.logo-textdiv .mobile-show img {
		max-width: 248px;
		width: 100%;
	}
	.mobile-sticky .logo-textdiv .mobile-sticky-logo {
		display: inline-block;
		position: relative;
		z-index: 1;
	}
	.mobile-sticky .logo-textdiv .mobile-show {
		display: none !important;
	}
	.mobile-sticky .logo-textdiv .mobile-sticky-logo img {
		height: 40px;
	}
	.logo-textdiv {
		padding-left: 0px;
		padding-top: 65px;
		text-align: center;
	}
	.mobile-sticky .logo-textdiv {
		padding-top: 0;
	}
	.mobile-sticky .header-innerwrap {
		padding: 5px;
	}
	.search-user-div {
		float: none;
		position: absolute;
		top: 30px;
		left: 15px;
		width: calc(100% - 20px);
	}
	.mobile-sticky .search-user-div {
		left: 5px;
		width: calc(100% - 10px);
	}
	.mobile-sticky .search-user-div {
		top: 13px;
	}
	.search-user-div ul li.usericon-li {
		position: absolute;
		top: 0;
		right: 85px;
	}
	.mobile-sticky .search-user-div ul li.searchicon-li {
		right: 45px;
	}
	.search-user-div ul li.translateicon-li {
		position: absolute;
		top: 0;
		right: 0;
	}
	.search-user-div ul li.searchicon-li {
		position: absolute;
		top: 0;
		right: 45px;
	}
	.search-user-div ul li.usericon-li,
	.search-user-div ul li.hamburger-li,
	.search-user-div ul li.searchicon-li,
	.search-user-div ul li {
		padding: 0px;
	}
	.search-user-div ul li svg path {
		fill: #8A1E41;
	}
	.search-user-div ul li {
		border-left: none;
	}
	.search-user-div ul li a.user-click svg path.ustrok {
		stroke: #8A1E41;
		fill: transparent;
	}
	.search-user-div ul li.hamburger-li svg path {
		stroke: #982648;
	}
	.search-dropdown {
		top: 35px;
		right: -15px;
		width: 290px;
	}
	.search-fildiv {
		width: calc(100% - 56px);
		padding: 7px 30px 7px 7px;
	}
	.search-icondiv {
		width: 56px;
		height: 56px;
	}
	.search-icondiv img {
		padding: 16px 0;
	}
	.search-close {
		right: 10px;
	}
	.search-fildiv .form-control {
		min-width: 100%;
		height: 42px;
		padding: 10px;
	}
	.home-slider .sliderimg-div {
		height: calc(100vh - 327px);
	}
	.home-slider .youtube-background{
		pointer-events: auto !important;
	}
	.home-slider .video-content{
		pointer-events: none;
	}
	.home-slider.innerpage-banner .sliderimg-div {
		padding-bottom: 0;
		height: calc(100vh - 327px);
		min-height: initial;
	}
	.home-slider .slider-title,.banner-outer-container .slider-title{
		bottom: 16%;
	}
	.home-slider .sliderimg-div:before {
		content: "";
		position: absolute;
		z-index: 1;
		height: 20%;
		top: 0;
		left: 0;
		width: 100%;
		background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(125, 185, 232, 0) 100%);
		background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(125, 185, 232, 0) 100%);
		background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(125, 185, 232, 0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#007db9e8', GradientType=0);
	}
	.crcmessage-content p,
	.home-lerningslider .slider-content p,
	.vision-content p {
		font-size: 18px;
		line-height: 179%;
	}
	.crcmessage-content,
	.vision .crcmessage-content {
		padding: 8px 0 8px 55px;
	}
	.home-lerningslider .sliderimg-div {
		padding-bottom: 0;
		min-height: 610px;
	}
	.home-lerningslider .title-div {
		margin-bottom: 20px;
	}
	.home-lerningslider .slider-content .defult-btn {
		margin-top: 10px;
	}
	.home-lerningslider .slider-content {
		background-size: 157%;
	}
	.event-section {
		padding-top: 50px;
	}
	.letestnes-section {
		padding: 50px 0;
	}
	.calendar-div,
	.calendar-bottom-img {
		display: none;
	}
	.event-imgbg {
		min-height: 200px;
	}
	.event-content {
		padding: 25px;
	}
	.vision-section {
		padding: 94px 0;
	}
	.vision-section .curve-bg {
		top: -181px;
		left: 50%;
		margin-left: -180px;
		width: 360px;
		height: 60px;
	}
	.viewall-event-tablet .defult-btn,
	.viewall-news-tablet .defult-btn {
		min-width: 163px;
		text-transform: capitalize;
	}
	.vision-section .title-div {
		width: 100%;
		display: block;
		text-align: center;
		margin-bottom: 30px;
	}
	.vision-content {
		max-width: 100%;
		margin-left: 0;
		padding-left: 55px;
	}
	.home-lerningslider .slick-dots li,
	.testimonial .slick-dots li,
	.image-textbox-module .slick-dots li {
		width: 10px;
		height: 10px;
		margin: 0 8px;
	}
	.home-lerningslider .slick-dots li button,
	.testimonial .slick-dots li button,
	.image-textbox-module .slick-dots li button {
		height: 10px;
		width: 10px;
	}
	.home-lerningslider .container {
		width: calc(100% - 30px);
	}
	.testimonial .slick-dots {
		bottom: -30px;
	}
	.latestnews-slider .slick-dots {
		width: 100%;
		text-align: center;
		margin-top: 15px;
	}
	.latestnews-slider .slick-dots li {
		width: 10px;
		height: 10px;
		display: inline-block;
		margin: 0 8px;
	}
	.latestnews-slider .slick-dots li button {
		cursor: pointer;
		font-size: 0;
		line-height: 0;
		border: none;
		width: 10px;
		border-radius: 100%;
		height: 10px;
		padding: 0;
		background: #C4C4C4;
		opacity: 0.5;
		border-radius: 100%;
		-webkit-transition: all 0.2s ease;
		-moz-transition: all 0.2s ease;
		-o-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	.latestnews-slider .slick-dots li button:before {
		display: none;
	}
	.latestnews-slider .slick-dots li.slick-active button,
	.latestnews-slider .slick-dots li:hover button {
		background: #A6C6FD;
		opacity: 1;
		-webkit-transform: scale(1.4);
		-moz-transform: scale(1.4);
		-ms-transform: scale(1.4);
		transform: scale(1.4);
	}
	.site-footer .col-md-4 {
		display: none;
	}
	.footer-link,
	.copyright-links {
		padding-left: 0px;
	}
	.footer-link ul li span {
		display: none;
	}
	.footer-link ul {
		padding-top: 0px;
		justify-content: space-between;
		border-bottom: none;
	}
	.footer-link ul li svg {
		height: 28px;
	}
	.footer-logo.mobile-show {
		display: block !important;
		text-align: center;
		padding-bottom: 25px;
		border-bottom: 1px solid #A6C6FD;
	}
	.footer-logo.mobile-show img {
		max-width: 162px;
		width: 100%;
	}
	.site-footer {
		padding: 40px 0 30px;
	}
	.copyright-links {
		margin-top: 25px;
	}
	.copyright-text {
		margin-top: 20px;
		font-size: 14px;
		line-height: 27px;
	}
	.copyright-text a {
		margin-left: 10px;
		vertical-align: middle;
	}
	/* Mobile menu css */
	.mobile-navigation {
		overflow-y: scroll;
	}
	.mobile-navheader {
		padding: 30px 25px;
	}
	.mobile-navlogo {
		padding-top: 40px;
	}
	.mobile-search-user .usericon-li {
		margin-right: 40px;
	}
	.mobile-search-user {
		left: 25px;
	}
	.mobile-closediv {
		right: 25px;
		height: 24px;
		width: 24px;
	}
	.mobile-navlogo img {
		max-width: 147px;
		width: 100%;
	}
	.mobile-navwrap {
		padding: 10px 25px 100px;
		/* height: auto; */
	}
	.navigation-nav {
		/* height: auto; */
	}
	.mobile-search-user .search-dropdown.show-search {
		left: -10px;
	}
	.navigation-nav ul>li {
		width: 100%;
		text-align: center;
	}
	.navigation-nav ul>li>ul {
		position: relative;
		display: none;
		left: 0;
		width: 100%;
	}
	.navigation-nav ul>li.active>ul {
		display: block;
	}
	.navigation-nav ul>li>a {
		line-height: 60px;
		max-width: 100%;
	}
	.navigation-nav ul>li.active>a {
		color: #A6C6FD;
		border-bottom: 1px solid #A6C6FD;
	}
	.navigation-nav ul>li>ul>li>a {
		display: inline-block;
	}
	.mobile-navfooter ul li svg {
		height: 28px;
	}
	.mobile-navfooter ul {
		display: flex;
		justify-content: space-between;
	}
	.mobile-navfooter ul li {
		margin: 0;
	}
	.mobile-navfooter {
		bottom: 25px;
		padding: 0 25px;
	}
	.navigation-nav ul>li>ul>li>ul {
		padding-left: 0;
	}
	.navigation-nav ul>li>ul>li.active>a {
		color: #6AAAE4;
		border-bottom: 1px solid #A6C6FD;
	}
	.newsreader-listbox .listbox-content,
	.newsreader-listbox .listbox-dec {
		width: calc(100% - 60px);
	}
	.newsletter .col-auto {
		width: 100%;
	}
	.common-content table td,
	.accordian-content table td {
		padding: 12px;
		font-size: 14px;
	}
	.common-content table th,
	.accordian-content table th {
		padding: 12px;
	}
	.newsinfobar-content {
		display: block;
		height: unset;
		padding: 20px 0px 0px;
	}
	.newsinfobar-left,
	.newsinfobar-right {
		width: 100%;
		text-align: center;
	}
	ul.newinforight-content li {
		padding: 0px 5px;
	}
	ul.newinforight-content li:first-child,
	.search-bar li:first-child {
		border-left: 0px;
	}
	.newinforight-content li p img {
		display: block;
		max-width: 30px;
		margin: 0px auto 10px;
		max-height: 22px;
	}
	.newinforight-content li p {
		line-height: 1.3;
	}
	.newsinfobar-right {
		margin-top: 20px;
	}
	.listbox-image {
		padding-top: 54%;
	}
	.listbox-content h2.title-div,
	.listbox-dec h2 {
		font-size: 30px;
	}
	.listbox-content {
		min-height: 150px;
		margin-top: -15%;
	}
	.newsreader-listbox .listbox-dec {
		margin: 30px auto 0px;
	}
	.listbox-grid {
		padding-bottom: 50px;
	}
	.listbox-dec h2.small-title {
		font-size: 22px;
		line-height: 1.5;
	}
	.listbox-dec h2.small-title {
		margin-top: 30px;
		margin-bottom: 15px;
	}
	.listbox-content {
		padding: 18px 20px 1px;
	}
	.listbox-content h2.title-div::after {
		max-width: 250px;
	}
	.listbox-dec p:last-child {
		margin-bottom: 0px;
	}
	a.final-search {
		display: block;
		padding: 0px 13px;
	}
	.search-bar li:nth-child(2) {
		width: calc(100% - 60px);
	}
	.final-search img {
		max-width: 20px;
	}
	.search-bar {
		height: 100%;
		bottom: 0px;
		top: unset;
	}
	.full-search ul {
		height: 100%;
	}
	.select-box {
		text-align: left;
	}
	.select-box .select {
		width: 100%;
		background-position: top 21px right 18px;
		background-size: 18px;
	}
	.news-grid {
		text-align: center;
	}
	.newsgrid-box {
		margin-bottom: 15px;
	}
	.news-grid .row {
		margin-left: -7px;
		margin-right: -7px;
	}
	.news-grid .row .col-md-4,
	.news-grid .row .col-sm-12 {
		padding: 0px 7px;
	}
	.newsgrid-content h3 {
		font-size: 14px;
		line-height: 1.3;
		margin-bottom: 0px;
	}
	.viwemore-button {
		margin-top: 20px;
	}
	.newsletter h2 {
		line-height: 30px;
		margin-bottom: 30px;
	}
	.newsletter input {
		width: calc(100% - 200px);
		margin: 0px 10px 0px 0px;
	}
	.newsletter .btn {
		min-width: unset;
		padding: 7px 15px;
		min-width: unset;
		font-size: 15px;
		vertical-align: top;
	}
	.newsletter {
		padding: 50px 0px;
	}
	.common-content h1,
	.common-content h2,
	.common-content h4,
	.common-content h3 {
		margin-bottom: 25px;
	}
	.common-content ul,
	.common-content ol,
	.accordian-content ul,
	.accordian-content ol {
		margin-bottom: 20px
	}
	.file-dwonload-a {
		font-size: 15px;
		background-position: center left 15px;
		padding: 9px 15px 9px 40px;
		background-size: 15px
	}
	table {
		margin: 50px 0px;
	}
	table th {
		font-size: 14px;
		line-height: 1.3;
		padding: 13px 10px;
	}
	table td {
		padding: 7px 10px;
		font-size: 14px;
		line-height: 1.3;
	}
	.largewideimage_boxdiv .card-image {
		display: block;
	}
	.largewideimage_boxdiv .card-image img {
		border-radius: 10px 10px 0px 0px
	}
	.largewideimage_boxdiv .innerboxdiv {
		border-radius: 10px;
	}
	section.crcmessage-section.crcmessage-common {
		padding: 0px;
		margin: 50px 0px;
	}
	.newsgrid-content {
		height: 60px;
		padding: 10px;
	}
	.news-grid-sizer,
	.news-grid-item,
	.widemediumimage_boxdiv .left-div,
	.largewideimage_boxdiv .innerboxdiv {
		width: 100%;
	}
	.news-grid-item.grid-item-width {
		width: 100%;
	}
	.news-grid-item.grid-item-height {
		height: auto;
	}
	ul.newinforight-content li.active .gray-img {
		display: block;
	}
	.our-learning .slick-prev,
	.our-learning .slick-next {
		height: 40px;
		width: 40px;
	}
	.our-learning .slick-next {
		left: 55px;
	}
	.our-learning .slick-slide {
		margin: 0 7px;
	}
	.our-learning .slick-list {
		margin: 0 -7px;
	}
	.ourlearning-slider {
		padding-right: 0px;
	}
	section.our-learning .common-content h3 {
		padding-right: 30px;
	}
	.vision h2 {
		margin-bottom: 30px;
	}
	.image-text-content h2 {
		font-size: 32px margin-bottom:20px;
	}
	.image-text-content h3 {
		margin-bottom: 25px;
	}
	.tiles-module-content .widemediumimage_boxdiv {
		height: 371px;
	}
	.testimonial {
		margin: 50px 0px;
		padding: 50px 0px;
	}
	section.our-learning {
		margin-bottom: 50px;
	}
	.image-textbox-module,
	.tiles-module,.webform-module,.acordian-module {
		margin: 50px 0px;
	}
	.site-footer.innerpage-footer {
		margin-top: 15px;
	}
	.site-footer.innerpage-footer:before {
		height: 15px;
		bottom: unset;
		top: -15px;
	}
	.testimonial-slide>div {
		padding: 0px;
	}
	.testimonial-content .redactor-styles-simple::before,
	.testimonial-content .redactor-styles-simple::after {
		background-size: 20px;
		transform: none;
	}
	.testimonial-content .redactor-styles-simple::before {
		left: 0px;
		top: 0px;
	}
	.testimonial-content .redactor-styles-simple::after {
		bottom: 0px;
		right: 0px;
		top: unset;
		background-position: bottom;
	}
	.testimonial-content .redactor-styles-simple, .testimonial-content .redactor-styles-simple p{
		font-size: 20px;
		line-height: 170%;
	}
	.eventdec-box-info {
		display: block;
		height: unset;
		border-radius: 10px 10px 0px 0px;
	}
	.eventdec-date {
		padding: 20px;
		display: block;
		height: unset;
		border-radius: 10px 10px 0px 0pc;
	}
	.eventdec-time {
		padding: 20px 0px 10px;
	}
	.eventdec-location {
		padding: 10px 0px 20px;
	}
	.eventdec-content {
		padding: 20px;
		min-height: unset;
	}
	.eventdec-content h2 {
		margin-bottom: 13px;
	}
	.eventdec-content p:last-child {
		margin-bottom: 0px;
	}
	.eventdec .eventdec-box {
		margin-bottom: 30px;
	}
	.home-slider.innerpage-banner .slider-title {
		bottom: 76px;
	}
	.eventdec-content p,
	.eventdec-content ul,
	.eventdec-content ol {
		margin-bottom: 20px;
	}
	.eventdec-content ul {
		padding-left: 15px;
	}
	.eventdec-content ol {
		padding-left: 33px;
	}
	li.sub-menu.parent-li.active {
		border-bottom: 1px solid #A6C6FD;
	}
	.mobile-navwrap {
		background: linear-gradient(117.63deg, #8A1E41 16.42%, #253A6E 65.34%), #FFFFFF;
	}
	.footer-link {
		max-width: 375px;
		margin: 0 auto;
	}
	.image-text-content {
		background-size: 157%;
	}
	#status {
		width: 100px;
		background-size: 100px;
		height: 81px;
		margin: -40px 0 0 -50px;
	}
	.common-content table th,
	.accordian-content table th,
	.common-content table td,
	.accordian-content table td {
		font-size: 14px;
	}
	.eventdec-colwrap {
		order: inherit;
	}
	.calender-event {
		margin-bottom: 30px;
	}
	.calender-event .calendar-div {
		display: block;
	}
	.homepage-calender .calendar-div {
		display: none;
	}
	.fc-calendar .fc-row>div>span.fc-date,
	.fc-calendar .fc-head>div,
	.fc-calendar .fc-head>div>span.fc-week {
		font-size: 16px;
	}
	.event-part .custom-month,
	.event-part .custom-year {
		font-size: 32px;
		line-height: 56px;
	}
	.event-part .calendar-arrow .custom-prev {
		left: 0;
		top: 9px;
		background-size: 12px 23px;
		height: 40px;
		width: 30px;
	}
	.event-part .calendar-arrow .custom-next {
		right: 0;
		top: 9px;
		background-size: 12px 23px;
		height: 40px;
		padding: 6px;
		width: 30px;
	}
	.latestnews-content h2 {
		font-size: 24px;
		line-height: 30px;
		max-height: 90px;
	}
	.image-textbox-imgdiv {
		background-position: center;
		min-height: inherit;
		padding-bottom: 130%;
	}
	.image-text-content {
		position: relative;
		background-size: cover;
	}
	.image-textbox-module .slick-slide {
		height: 100% !important;
		background: #002856;
	}
	.image-textbox-imgdiv::before {
		left: 0;
		background: linear-gradient(rgba(255, 255, 255, 0) 0%, #002856 100%);
		right: auto;
		width: 100%;
		height: 50%;
		bottom: 0;
		top: auto;
	}
	.image-text-content {
		margin-top: -130px;
		padding: 0 0 40px 0px;
	}
	.image-text-content p {
		font-size: 14px;
	}
	.image-textbox-module .slick-dots {
		bottom: 15px;
	}
	.logo-white-bg {
		display: none;
	}
	.our-learning .slick-prev {
		background-size: 12px;
	}
	.our-learning .slick-next {
		background-size: 11px;
	}
}

@media (max-width: 480px) {
	h1,
	.title-div {
		font-size: 30px;
	}
	h2 {
		font-size: 26px;
		line-height: 36px;
	}
	.event-content h2 {
		margin-bottom: 10px;
		line-height: 28px;
		font-size: 22px;
	}
	.btn.btn-primary{
		font-size: 18px;
		line-height: 25px;
		padding: 1px 10px;
	}
	.defult-btn {
		min-width: 110px;
		font-size: 18px;
		line-height: 25px;
		padding: 1px 10px;
	}
	.crcmessage-content p,
	.home-lerningslider .slider-content p,
	.vision-content p {
		font-size: 14px;
		line-height: 179%;
	}
	.event-imgbg {
		min-height: 190px;
	}
	.event-content p {
		font-size: 15px;
	}
	.event-content ul li {
		margin-right: 0px;
		display: block;
		margin-bottom: 5px;
	}
	.event-content ul {
		margin-top: 15px;
	}
	.viewall-event-tablet,
	.viewall-news-tablet {
		margin-top: 30px;
	}
	.latestnews-img {
		padding-top: 0;
		min-height: 350px;
	}
	.latestnews-content h2 {
		font-size: 22px;
		line-height: 28px;
		max-height: 84px;
	}
	.vision-section .curve-bg {
		top: -167px;
		width: 280px;
		margin-left: -146px;
		height: 47px;
	}
	.news-grid-sizer,
	.news-grid-item {
		width: 100%;
	}
	.tiles-module-content .news-grid-item .innerboxdiv {
		height: 331px;
	}
	.common-content p,
	.listbox-dec p {
		font-size: 14px;
		line-height: 175%;
		margin-bottom: 20px;
	}
	.common-content ul li,
	.common-content ol li,
	.accordian-content ul li,
	.accordian-content ol li {
		font-size: 14px;
		line-height: 175%;
	}
	.newsletter input {
		width: 100%;
		font-size: 16px;
		margin: 0px;
		height: 42px;
	}
	.newsletter .defult-btn {
		width: auto;
		line-height: 38px;
		margin-top: 15px;
	}
	.fc-calendar .fc-row>div>span.fc-date,
	.fc-calendar .fc-head>div,
	.fc-calendar .fc-head>div>span.fc-week {
		font-size: 14px;
	}
	.fc-calendar .fc-row>div {
		padding-bottom: 12%;
	}
	.event-part .calendar-div {
		padding: 10px 12px 20px;
	}
	.event-part .custom-month,
	.event-part .custom-year {
		font-size: 20px;
		line-height: 40px;
	}
	.event-part .calendar-arrow .custom-prev {
		left: 0;
		top: 3px;
		background-size: 12px 19px;
		padding: 6px;
		height: 35px;
		width: 25px;
	}
	.event-part .calendar-arrow .custom-next {
		right: 0;
		top: 3px;
		background-size: 12px 19px;
		height: 35px;
		padding: 6px;
		width: 25px;
	}
	.image-text-content a {
		margin: 20px auto 0;
		display: block;
		width: 110px;
	}
}

@media(max-width:359px) {
	.common-content table th,
	.accordian-content table th {
		padding: 12px 5px;
	}
	.common-content table th,
	.accordian-content table th,
	.common-content table td,
	.accordian-content table td {
		font-size: 12px;
	}
}