 @charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
	font-family: "Noto Sans", sans-serif;
}
li {
	list-style: none;
}
ul {
	padding: 0px;
	margin: 0px;
}
p {
	font-size: 16px;
	color: #494949;
	line-height: 26px;
}
a {
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.container {
	max-width: 1350px;
}
.header-section.is-sticky {
	position: fixed;
	box-shadow: 0 5px 16px rgba(0,0,0,.1);
	width: 100%;
	background-color: #fff;
	z-index: 99;
	left: 0;
	top: 0;
	height: 80px;
}
#navbar {
	transition: top 0.8s;
}
li {
	list-style: none;
}
::-webkit-scrollbar {
 width:8px
}
::-webkit-scrollbar-track {
 background:#fff
}
::-webkit-scrollbar-thumb:hover {
 background:#00cfe5
}
::-webkit-scrollbar-thumb {
 background-image:-webkit-linear-gradient(45deg, #00cfe5, #00cfe5);
 background-image:-o-linear-gradient(45deg, #00cfe5, #00cfe5);
 background-image:linear-gradient(45deg, #00cfe5, #00cfe5)
}
/*----------------------------------------*/
/*          Theme-btn Hover css
/*----------------------------------------*/
.theme-btn a {
    overflow: hidden;
    position: relative;
    z-index: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    transition: opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1), transform 0.3s cubic-bezier(0.2, 0, 0.1, 1), box-shadow 0.5s ease, color 0.5s ease, background 0.5s ease;
    will-change: box-shadow, color, transform, opacity, background;
    background: #00cfe5;
    padding: 8px 29px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2px;
    clip-path: polygon(10% 0%, 100% 0%, 91% 100%, 0% 100%);
}
.theme-btn a {
	color: #fff;
}
.theme-btn a:hover {
	color: #fff;
}
.theme-btn a.outlined {
	display: inline-flex;
	background: none;
	color: #170b39;
}
.theme-btn a:after, .theme-btn a:before {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
	top: 0;
	right: -50%;
	left: -50%;
	height: 0;
	padding-bottom: 200%;
	border-radius: 39%;
	border: unset;
	transition: transform 0s cubic-bezier(0.2, 0, 0.1, 1) 0.5s, opacity 0.5s cubic-bezier(0.2, 0, 0.1, 1);
	opacity: 0;
}
.theme-btn a:before {
    transform: translate3d(-10%, 4.8em, 0) rotate(330deg);
    background: linear-gradient(25deg, #28eaff, rgba(150, 56, 216, 0));
}
.theme-btn a:after {
    transform: translate3d(10%, 4.8em, 0) rotate(0deg);
    background: linear-gradient(70deg, #01acbf, rgba(124, 56, 216, 0));
}
.theme-btn a:hover, .theme-btn a:focus {
	transition: opacity 0.3s cubic-bezier(0.2, 0, 0.1, 1), transform 0.3s cubic-bezier(0.2, 0, 0.1, 1), box-shadow 2s ease, color 1.5s ease, background 1s ease 0.75s;
	background: #7840b3;
	animation: pulse 2s infinite;
}
.theme-btn a:hover.outlined, .theme-btn a:focus.outlined {
	color: white;
}
.theme-btn a:hover:before, .theme-btn a:hover:after, .theme-btn a:focus:before, .theme-btn a:focus:after {
	transition: transform 2s ease 0s, opacity 0.2s ease;
	opacity: 1;
}
.theme-btn a:hover:before, .theme-btn a:focus:before {
	transform: translate3d(-10%, -1em, 0) rotate(100deg);
}
.theme-btn a:hover:after, .theme-btn a:focus:after {
	transform: translate3d(10%, -1em, 0) rotate(180deg);
}
@keyframes pulse {
 0% {
 box-shadow: 0 0 0 0 rgba(0, 207, 229, 0.6);
}
 70% {
 box-shadow: 0 0 0 15px rgba(0, 207, 229, 0);
}
 100% {
 box-shadow: 0 0 0 0 rgba(0, 207, 229, 0);
}
}









/*----------------------------------------*/
/*        Nice-select Box css
/*----------------------------------------*/
.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	border-radius: 7px;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 14px;
	text-transform: capitalize;
	height: 50px;
	line-height: 50px;
	outline: none;
	padding-left: 10px;
	padding-right: 10px;
	position: relative;
	text-align: left;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: 100%;
	border: solid 1px #cccccc;
	color: #494949;
	font-weight: 500;
}
.nice-select:hover {
	border-color: #000;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
	border-color: #000;
}
.nice-select:after {
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	content: '';
	display: block;
	height: 8px;
	margin-top: 0;
	pointer-events: none;
	position: absolute;
	right: 18px;
	top: 37%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 8px;
}
.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	width: 100%;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}
.nice-select.disabled {
	border-color: #ededed;
	pointer-events: none;
}
.nice-select.disabled:after {
	border-color: #cccccc;
}
.nice-select.wide {
	width: 100%;
}
.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}
.nice-select.right {
	float: right;
}
.nice-select.right .list {
	left: auto;
	right: 0;
}
.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}
.nice-select.small:after {
	height: 4px;
	width: 4px;
}
.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}
.nice-select .list {
	background-color: #fff;
	border-radius: 0px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	border: solid 1px #494949;
	box-sizing: border-box;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
}
.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.nice-select .option.selected {
	font-weight: bold;
	color: #fff;
	background-color: #494949;
}
.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}
.no-csspointerevents .nice-select .list {
	display: none;
}
.no-csspointerevents .nice-select.open .list {
	display: block;
}
.select-box-wrapper .select-box {
    max-width: 250px;
    margin: 0px auto;
    width: 100%;
    min-width: 250px;
}
.product-single-content .product-single-title1 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 0px;
	line-height: 1.7;
}
.product-single-content .product-single-title2 {
	color: #171717;
	transition: all .3s cubic-bezier(.22, .61, .36, 1);
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	margin-bottom: 18px;
	margin-top: 18px;
}
.section-title-n-row .select-box-wrapper {
    float: right;
}
/*----------------------------------------*/
/*              Menu css
/*----------------------------------------*/
.wrapper-menu ul.navbar-nav li a {
	color: #fff;
	font-size: 19px;
	font-weight: bold;
	margin-left: 4px;
}
.nav-item.buy-now a {
	background: #302018;
	border-radius: 10px;
	padding: 5px 22px !important;
}
.wrapper-menu.fixed ul.navbar-nav li.buy-now a {
	color: #fff;
	font-size: 17px;
	font-weight: bold;
	margin-left: 23px;
	background: #ffa725;
}
.wrapper-menu ul.navbar-nav {
	margin-left: auto;
}
.add-banner-wr .col-md-3 {
	padding: 0px;
}
.add-banner-wr {
	background-size: cover;
}
@media (max-width:991px) {
.container {
	max-width: 100%;
}
.menu-bar ul.menu {
	position: fixed;
	width: 261px;
	left: 0;
	text-align: left;
	background: #ffffff;
	z-index: 2;
	padding: 0px 0px;
	z-index: 9999;
	top: 0;
	height: 100%;
	left: -100%;
	transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 30%);
	box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}
.nav_area ul li a img {
	padding-right: 10px;
	max-width: 41px;
	margin-top: -10px;
}
.menu-bar ul.menu.open {
	left: 0;
	overflow-y: scroll;
	padding-bottom: 30px;
}
.header .row {
	align-items: center;
}
.menu-view-div-row .toggle {
	color: #fff;
	cursor: pointer;
	font-size: 28px;
	margin: 0;
	text-align: left;
	position: relative;
}
.menu-side {
	position: initial;
}
.nav_area ul li a {
	line-height: 45px !important;
	font-size: 15px;
	color: #000000;
	padding: 0px 14px;
	display: inline-block;
	width: 100%;
	font-weight: 500;
	text-decoration: none;
}
span.arrow {
	position: absolute;
	right: 10px;
	color: #000000;
	top: 10px;
	width: 40px;
	text-align: center;
	height: 30px;
}
nav.nav_area ul li {
	display: block;
	position: relative;
	border: 0;
}
nav.nav_area ul li {
	border-bottom: solid 1px #c9c9c9;
}
.menu-logo-mobile-view {
	padding: 12px;
}
.menu-logo-mobile-view a {
	display: inline-block;
	max-width: 95%;
}
ul.sub-menu {
	display: none;
	position: relative;
	background: transparent;
	padding: 0;
}
ul li .sub-menu li a {
	line-height: 14px;
	font-size: 15px;
	letter-spacing: initial;
}
.header .container {
	position: initial;
}
ul.sub-menu span.arrow {
	right: 10px;
	text-align: right;
}
span.arrow.close-icon i:before {
	content: '\f106';
}
ul.sub-menu li.menu-item-has-children span.arrow.close-icon i:before {
	content: "\f106";
}
.home-slider.owl-carousel .owl-item img {
	height: 300px;
}
.top-bar img {
	max-width: 25px;
	vertical-align: middle;
}
.select-drop {
	margin: 20px auto 0;
}
.menu-bar {
	position: initial;
	background: transparent;
}
.toggle {
    color: #ffffff;
    cursor: pointer;
    font-size: 22px;
    margin: 0;
    text-align: center;
    display: block;
    position: absolute;
    right: 0;
    top: -44px;
    z-index: 9999;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background: #00cfe5;
    /* left: 0; */
}
.toggle i {
	font-weight: 300;
}
}
@media (min-width: 992px) {
label.toggle {
	display: none;
}
.menu-bar {
	width: 100%;
	text-align: right;
}
.nav_area > ul > li {
	display: inline-block;
	position: relative;
	float: left;
	margin-left: 54px;
}
li.menu-item-has-children.language::after {
	content: "";
	position: absolute;
	border-right: solid 1px #fff;
	right: -4px;
	height: 14px;
	top: 5px;
}
li.menu-item-has-children.language {
	position: relative;
}
li.menu-item-has-children.language-chan {
	padding-right: 0px;
}
.nav_area ul li a {
    color: #fff;
    font-size: 22px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-bottom: 7px;
    padding-top: 7px;
    font-weight: normal;
}
.nav_area > ul > li.menu-item-has-children:first-child {
	margin-left: 0 !important;
}
span.arrow {
	padding-left: 5px;
	color: #ffffff;
	margin-left: 0px;
	position: absolute;
	top: 15px;
	font-size: 13px;
	font-weight: 300;
}
span.arrow i {
	font-weight: 500;
}
.nav_area > ul > li ul.sub-menu {
	display: block;
	-webkit-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
	display: none;
}
ul.sub-menu {
	min-width: 195px;
}
ul.sub-menu {
	position: absolute;
	background: #003681;
	z-index: 555;
	text-align: left;
}
ul.sub-menu li {
	position: relative;
}
.nav_area ul li:hover > ul.sub-menu {
	display: block;
}
ul.sub-menu {
	position: absolute;
	background: #ffffff;
	z-index: 555;
	text-align: left;
	border-radius: 0px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
	width: 200px;
}
.nav_area > ul > li:hover > ul.sub-menu, 
.nav_area ul.sub-menu > li:hover > ul.sub-menu {
	/* transform: scaleY(1) translateZ(0); */
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	overflow: visible;
	z-index: 20;
	padding-top: 0px;
	-webkit-transition: opacity .2s ease-out, -webkit-transform .25s cubic-bezier(.1, .47, .3, 1.15);
	transition: opacity .2s ease-out, -webkit-transform .25s cubic-bezier(.1, .47, .3, 1.15);
	-o-transition: opacity .2s ease-out, transform .25s cubic-bezier(.1, .47, .3, 1.15);
	transition: opacity .2s ease-out, transform .25s cubic-bezier(.1, .47, .3, 1.15);
	transition: opacity .2s ease-out, transform .25s cubic-bezier(.1, .47, .3, 1.15), -webkit-transform .25s cubic-bezier(.1, .47, .3, 1.15);
}
ul.sub-menu li ul.sub-menu {
	left: 100%;
	top: 0px;
	width: 100%;
}
.nav_area > ul > li ul.sub-menu li a:hover {
    width: 100%;
    color: #fff;
    background: #00cfe5;
}
.nav_area > ul > li ul.sub-menu li a {
	color: #413834;
	position: relative;
	letter-spacing: 0px;
	font-weight: 500;
	margin-top: 0px;
	font-size: 14px;
}
ul.sub-menu li a {
	color: #000;
	line-height: 21px;
	padding: 9px 14px;
	font-size: 14px;
	display: inline-block;
	text-transform: capitalize;
	text-decoration: none;
	font-weight: bold;
	-webkit-transition: padding .2s ease-out;
	-o-transition: padding .2s ease-out;
	transition: padding .2s ease-out;
	width: 100%;
	border-bottom: solid 1px #f1f1f1;
}
ul.sub-menu li.menu-item-has-children .arrow {
	color: #fff;
	padding-left: 0;
}
}
.top-logo.logo-mobile {
	display: none;
}
.navbar-nav li:hover > ul.dropdown-menu {
	display: block;
}
.dropdown-submenu {
	position: relative;
}
.dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
}
/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
	text-decoration: underline;
	transform: rotate(-90deg);
}
.wrapper-menu ul.navbar-nav li ul.dropdown-menu {
	background: #50418a;
	padding-top: 0px;
	padding-bottom: 0px;
	border-radius: 0;
	margin-top: 0px;
}
.wrapper-menu ul.navbar-nav li ul.dropdown-menu a {
	font-size: 15px;
	padding-left: 11px;
	padding-right: 7px;
	margin-left: 0px;
	line-height: 28px;
}
.wrapper-menu ul.navbar-nav li ul.dropdown-menu a:hover {
	background: #3b2a7b;
}
.wrapper-menu ul.navbar-nav li ul.dropdown-menu .dropdown-toggle::after {
	position: absolute;
	right: 10px;
	top: 14px;
}
.wrapper-menu nav#nav {
	padding-bottom: 0px;
}
.wrapper-menu ul.navbar-nav > li > a {
	padding-bottom: 12px;
}
.mobile-menu.wrapper-menu {
	padding-top: 28px;
}
.header-menu-bg .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    justify-content: center;
}
.header-menu-bg {
	background: #00cfe5;
}
/*----------------------------------------*/
/*          Swiper-slide Home css
/*----------------------------------------*/
.footer {
	background: #00cfe5;
	position: relative;
	float: left;
	width: 100%;
	padding-top: 25px;
}
.swiper-container2 {
	position: relative;
	overflow: hidden;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.icon-div-box ul li {
	display: inline-block;
	margin-right: 8px;
	border-radius: 100px;
	border-bottom-right-radius: 0px;
	    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.icon-div-box ul li.icon-bg1 {
	background: #635acd;
}
.icon-div-box ul li.icon-bg2 {
	background: #c381e0;
}
.icon-div-box ul li.icon-bg3 {
	background: #892884;
}
.icon-div-box {
	float: right;
	margin-top: 22px;
}
.icon-div-box ul li a {
	display: inline-block;
	width: 47px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon-div-box ul li:hover {
	-webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
.icon-div-box ul {
	display: flex;
}
.footer-info-row {
	display: flex;
}
.footer-info-row .footer-text1 {
	color: #fff;
	font-size: 16px;
}
.footer-info-row .footer-icon1 {
	color: #fff;
	font-size: 20px;
	width: 28px;
	text-align: center;
}
.footer-info-row .footer-icon1 i {
	font-weight: 300;
}
.footer-row-info1 {
	display: flex;
	gap: 30px;
}
.footer-copy-right {
	border-top: solid 1px #fff;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 21px;
}
.copy-right, .besign-by a {
	font-size: 15px;
	color: #fff;
	text-decoration: none;
}
.besign-by {
	text-align: right;
}
.event-container-section {
    padding-top: 0;
    padding-bottom: 50px;
}
.event-card-box-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
}
.event-card-box-date {
    display: flex;
    flex-flow: column;
    max-width: 90px;
    min-height: 90px;
    background: #efefef;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -15px;
    z-index: 1;
    width: 100%;
    top: 0px;
}
.event-card-box-date strong {
    color: #29669f;
    font-size: 33px;
    line-height: 17px;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}
.event-card-box-date span {
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    margin-top: 8px;
    color: #29669f;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}
.event-box-home {
    border: solid 2px #99f5ff;
    background: #ecfcff;
    border-radius: 10px;
}
.row-links-logo {
	grid-template-columns: repeat(5, 1fr);
	display: grid;
	justify-items: center;
	gap: 21px;
}
.home-container-section-bg {
    background-image: url(../images/home-bg.jpg);
    background-size: cover;
    background-position: center;
    float: left;
    width: 100%;
    padding-top: 51px;
    padding-bottom: 51px;
}
.links-logo-section {
    float: left;
    width: 100%;
    padding-bottom: 40px;
}
.header-top-section {
    padding-top: 7px;
    padding-bottom: 9px;
}
.banner-section {
    position: relative;
}
.banner-title span {
    clip-path: polygon(10% 0%, 100% 0%, 91% 100%, 0% 100%);
    background: #00cfe5;
    padding: 4px 46px;
    font-size: 45px;
    color: #ffffff;
    line-height: normal;
    position: relative;
    z-index: 1;
}
.banner-title .overlay-bg1 {
    clip-path: polygon(10% 0%, 100% 0%, 91% 100%, 0% 100%);
    background: #a4f4ff;
    position: absolute;
    left: -11px;
    top: -16px;
    min-width: 100%;
    height: 70px;
    z-index: 0;
}
/*----------------------------------------*/
/*          Calendar Page css
/*----------------------------------------*/
.content-section {
	padding: 113px 0px 60px;
}
.photo-list3 {
    position: relative;
    z-index: 0;
}
.banner-section {
	position: relative;
}
.banner-titleinfo {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}
.banner-title-info {
    position: relative;
    padding-bottom: 30px;
    z-index: 2;
}
.banner-title {
    position: relative;
    display: inline-block;
}
.calendar-wrapper-details {
	width: 90%;
	margin: auto;
}
.calendar-section {
	background-color: #fafdf4;
	padding-top: 45px;
	padding-bottom: 15px;
}
.calendar_remark {
	width: 100%;
	padding: 25px 0px 0;
	text-align: center;
}
.calendar_remark .remark_item {
	display: inline-block;
	vertical-align: top;
	padding: 0px 23px;
}
.calendar_remark .remark_1:before {
	background-color: #bf92eb;
}
.calendar_remark .remark:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 14px;
	height: 14px;
}
.calendar_remark .remark {
	padding-left: 24px;
	position: relative;
	line-height: 13px;
	font-size: 16px;
	color: #363636;
	font-weight: bold;
}
.calendar_remark .remark_2:before {
	background-color: #7a51c5;
}
.calendar_remark .remark_3:before {
	background-color: #cc4eae;
}
.calendar_remark .remark_4:before {
	background-color: #7bb8c8;
}
a.down-btn {
	color: #ffffff;
	padding: 6px 27px;
	display: table;
	margin: 25px auto;
	border-radius: 3px;
	text-decoration: none;
	font-size: 23px;
	font-weight: 600;
	background: #00cfe5;
}
a.down-btn i.fa.fa {
	padding-left: 10px;
}
.event-item {
	border: 2px solid #e6e6e6;
	padding: 15px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	background: #fff;
}
span.event-date {
	font-size: 25px;
	color: #000;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	min-width: 100px;
	border-right: solid 2px #3a639f;
	margin-right: 20px;
	font-weight: 600;
	line-height: 28px;
}
.title-text h4 {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0px;
}
.title-text p {
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 0px;
	color: #000000;
	font-weight: 500;
}
span.event-date b {
	font-weight: bold;
	display: block;
	font-size: 19px;
}
.event-title {
	color: #000000;
	font-size: 35px;
	margin-bottom: 10px;
	position: relative;
	padding-left: 23px;
	font-family: "Alata", sans-serif;
}
.event-title::after {
	content: "";
	position: absolute;
	border-left: solid 9px #00cfe5;
	height: 31px;
	left: 0;
	top: 10px;
}
.title-text .pl-4 {
	padding-left: 1.5rem !important;
}
a.down-btn i {
	margin-left: 11px;
}
.fc-toolbar h2 {
	font-family: "Alata", sans-serif;
	text-transform: uppercase;
	font-weight: bold;
}
.banner-graphic1-img {
    position: absolute;
    bottom: 0px;
    max-width: 53%;
}
/*----------------------------------------*/
/*          News-Details Page css
/*----------------------------------------*/
.section-heading .section-heading-text {
    color: #244077;
    font-size: 32px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}
.date-box {
    font-size: 19px;
    color: #666666;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.section-heading {
    margin-bottom: 34px;
    border-bottom: solid 1px #d6e9f5;
    padding: 0px 5px 10px;
}
.cont-text p {
    font-size: 16px;
    text-align: justify;
    color: #000000;
    line-height: 29px;
}
.news-details-info .news-details-img {
    margin: 0px 90px;
    padding-top: 19px;
    padding-bottom: 34px;
}
.upload-description {
    text-align: center;
}
.upload-description a {
    font-size: 24px;
    text-decoration: none;
    color: #244077;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.theme-btn-row {
    text-align: center;
    margin-top: 37px;
} 
.theme-btn a img {
    margin-right: 7px;
} 
.calendar-icon {
    display: inline-block;
    max-width: 35px;
    margin-right: 5px;
}
/*----------------------------------------*/
/*            News Page css
/*----------------------------------------*/
.news-details .card-date-box {
	margin-right: 14px;
}
.row-news .news-details .news-details-title {
    font-size: 26px;
    font-weight: bold;
    color: #244077;
    line-height: 35px;
    font-family: "Roboto", sans-serif;
}
.news-list-container .row-news {
	margin-top: 30px;
	align-items: center;
	padding-bottom: 30px;
	position: relative;
	border-bottom: solid 1px #c3e4f5;
}
.pagination-wrapper {
	text-align: center;
	margin-top: 38px;
}
.pagination-wrapper li {
	display: inline-block;
	margin: 0px 5px;
}
.pagination-wrapper li a {
    width: 44px;
    height: 44px;
    display: inline-block;
    border: solid 1px #cccccc;
    border-radius: 100px;
    line-height: 41px;
    text-decoration: none;
    font-size: 18px;
    color: #234479;
    background: #fff;
}
.pagination-wrapper li a.active, .pagination-wrapper li a:hover {
	background: #00cfe5;
	border: solid 1px #00cfe5;
	color: #fff;
}
.pdf-icon {
	text-align: center;
}
.select-box-wrapper {
	position: relative;
	z-index: 1;
}
.row-news .news-details-img img {
	width: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.row-news .news-details-img {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}
.row-news .news-details-img:hover img {
	-webkit-transform: rotate(3deg) scale(1.1, 1.1);
	-ms-transform: rotate(3deg) scale(1.1, 1.1);
	transform: rotate(3deg) scale(1.1, 1.1);
}
.row-news .news-details {
	position: relative;
	padding-left: 20px;
}
/*----------------------------------------*/
/*          Photo-details Page css
/*----------------------------------------*/
.news-details-info .row-owl-carousel-wrapper {
    margin: auto;
    padding: 0px 48px 40px;
    position: relative;
}
#sync2 .owl-nav button {
	outline: 0;
	color: #00cfe5;
	font-size: 35px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}
#sync2 .owl-nav button i {
	font-weight: 300;
}
#sync2 .owl-nav button.owl-prev {
	left: -28px;
}
#sync2 .owl-nav button.owl-next {
	right: -28px;
}
#sync1 .owl-nav button {
    outline: 0;
    font-size: 22px;
    width: 39px;
    height: 39px;
    color: #fff;
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    line-height: 0px;
    border: solid 2px #00cfe5;
    color: #00cfe5;
}
#sync1 .owl-nav button:hover {
	background-color: #00cfe5; color: #fff;
}
#sync1 .owl-nav button.owl-prev {
	left: -50px;
}
#sync1 .owl-nav button.owl-next {
	right: -50px;
}
.news-details-info .section-heading-text {
    text-transform: none;
    margin-top: 9px;
}
/*----------------------------------------*/
/*          Photo list Page css
/*----------------------------------------*/
.event-card-box {
    position: relative;
}
.photo-list-div .event-card-box {
    border: solid 2px #b5eaf4;
    background: #ecfcff;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
}
/*----------------------------------------*/
/*          Left side Bar  css
/*----------------------------------------*/
.sidemenu {
    border: solid 2px #b5eaf4;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background: #ffffff;
    padding: 9px 19px;
    min-height: 431px;
    box-shadow: rgb(0 0 0 / 5%) 0px 1px 4px;
    padding-top: 23px;
}
.sidemenu li {
    border-bottom: 2px solid #aee5f3;
    position: relative;
}
.sidemenu li > a {
    font-size: 17px;
    line-height: 16px;
    color: #29669f;
    letter-spacing: 1px;
    display: flex;
    padding: 16px 10px;
    padding-bottom: 17px;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    padding-left: 0px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    font-family: "Noto Sans", sans-serif;
}
i.fa-arrow-right.toggle-submenu {
    color: #7bd3e2;
    text-align: center;
    font-size: 17px;
    line-height: 21px;
    position: absolute;
    right: 4px;
    top: 12px;
    width: 24px;
    cursor: pointer;
    border: solid 1px #7bd3e2;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.sidemenu .submenu-side i.fa-arrow-right.toggle-submenu {
	font-size: 14px;
	width: 25px;
	height: 25px;
	top: 0;
}
.submenu-side ul li {
    border: none;
}
.sidemenu-wrapper {
    padding-right: 22px;
}
.sidemenu .submenu-side {
    padding-bottom: 12px;
}
.sidemenu .submenu-side .submenu-side {
	padding-left: 16px;
}
.submenu-side ul li a {
    line-height: 33px;
    /* color: #00cfe5; */
	color: #29669f;
    padding-top: 0;
    padding-bottom: 0px;
    font-weight: normal;
    padding-right: 0px;
    position: relative;
    justify-content: flex-start;
}
.submenu-side .submenu-side ul li a {
    font-size: 15px;
	color: #5ca7ed;
}
.submenu-side ul li a:before {
    content: "\f0da";
    font-family: "Font Awesome 6 Sharp";
    font-weight: 600;
    margin-right: 5px;
}
.sidemenu-wrapper .sidemenu:before {
    content: "";
    height: 14px;
    width: 100%;
    position: absolute;
    left: 0px;
    background: #00cfe5;
    top: 0px;
}

.section-title-text {
    display: flex;
    align-items: center;
}
.section-title-text span {
    font-size: 36px;
    margin-right: 9px;
    color: #00cfe5;
    font-weight: bold;
    letter-spacing: 3px;
}
.section-title-n-row {
    margin-bottom: 29px;
}
.footer:before {
    content: "";
    height: 11px;
    background-image: url(../images/footer-bg.png);
    position: absolute;
    top: -11px;
    display: inline-block;
    left: 0px;
    z-index: 1;
    width: 100%;
    background-size: contain;
}
.slider-home .swiper-button-prev, .slider-home .swiper-button-next {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: hsla(0,0%,100%,.77);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: #171717;
    transition: all .3s cubic-bezier(.22, .61, .36, 1);
    opacity: 0;
    visibility: hidden;
    text-align: center;
}
.slider-home .swiper-button-prev i, .slider-home .swiper-button-next i {
    font-weight: 300;
}
.swiper-button-next, .swiper-button-prev {
    background-image: none !important;
}
.slider-home:hover .swiper-button-prev, .slider-home:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
}
.calendar-section-home .row.event-box-home {
    margin: 0;
    padding: 19px 9px;
} 
.calendar-home-bg .fc-center {
    background: none !important;
    padding: 0px !important;
}
.calendar-home-bg .fc-center h2 {
    font-size: 23px;
}
.calendar-home-bg .fc-center h2::before {display: none;}
.section-title-bg  {
    position: relative;
    display: inline-block;
}

.section-title-bg span {
    clip-path: polygon(10% 0%, 100% 0%, 91% 100%, 0% 100%);
    background: #00cfe5;
    padding: 4px 46px;
    font-size: 45px;
    color: #ffffff;
    line-height: normal;
    position: relative;
    z-index: 1;
}
.section-title-bg .overlay-bg1 {
    clip-path: polygon(10% 0%, 100% 0%, 91% 100%, 0% 100%);
    background: #a4f4ff;
    position: absolute;
    left: -11px;
    top: -16px;
    min-width: 100%;
    height: 70px;
    z-index: 0;
}
.news-list-card {
    border: solid 2px #99f5ff;
    background: #ecfcff;
    border-radius: 10px;
    padding-top: 32px;
    padding-bottom: 38px;
}
.news-list-card-row {
    display: flex;
    padding: 16px 20px;
}
.news-list-card-row .news-list-card-date {
    font-size: 17px;
    color: #29669f;
}
.news-list-card-row .news-list-card-name {
    width: 100%;
    padding-left: 19px;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}
.news-list-card-row:nth-child(2n) {
    background: #fff;
}
.border-radius-btn a {
    border-radius: 100px;
    clip-path: none;
}

.calendar-home-bg .fc-scroller.fc-day-grid-container {
    height: 303px !important;
    overflow-y: scroll !important;
}

.calendar-home-bg .fc-scroller.fc-day-grid-container .fc-row {
    height: auto !important;
    background: #fff;
}
.calendar-home-bg #calendar {
    background: #fff;
}
.calendar-home-bg #calendar .fc-widget-header {
    background: #0064a1;
    color: #fff;
    font-weight: 400;
}
.calendar-home-bg #calendar .fc-toolbar.fc-header-toolbar {
    margin-bottom: 4px;
    padding-top: 3px;
}
.calendar-home-bg .section-title-text {
    margin-top: 0;
    margin-bottom: 16px;
}

.news-list-card1 .news-list-card-row:nth-child(2n) {
    background: none;
}
.news-list-card1 .news-list-card-row {
    border-bottom: solid 1px #99f5ff;
}
.calendar-section-home .theme-btn a {
    background: #0066a1;
}
.calendar-section-home {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}
.links-logo-row {
    padding-bottom: 38px;
    margin-top: 23px;
}
.links-logo-row .theme-btn {
    text-align: right;
}
.calendar-section-home .event-box-home .theme-btn {
    text-align: right;
    margin-bottom: 18px;
}
.event-container-section .event-box-home {
    padding-top: 59px;
    padding-left: 20px;
    padding-right: 20px;
} 
.event-container-section  .section-title-bg {
    position: relative;
    bottom: -23px;
}

#event-card-slider .owl-nav button {
    width: 31px;
    height: 31px;
    border: solid 1px #00cfe5;
    border-radius: 100px;
    color: #00cfe5;
     top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

#event-card-slider .owl-nav button.owl-prev {
    left: -39px;
}

#event-card-slider .owl-nav button.owl-next {
    right: -39px;
}
.event-card-info p {
    color: #000;
}
.event-container-section .theme-btn {
    text-align: center;
    margin-top: -20px;
}
#event-card-slider .owl-dots {
    display: none;
}
#event-card-slider {
    padding-bottom: 53px;
}

.row-links-logo-btn-mobile-view {
    display: none;
}

.calendar-wrapper-details .fc-center {
    border-radius: 100px !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.calendar-wrapper-details .fc-center h2 {
    color: #fff;
}
.calendar-wrapper-details .fc-center h2::before {
    color: #fff !important;
    position: relative;
    top: -4px;
}
.section-title-row3 {
    margin-bottom: 29px;
}


.select-menu-title-mobile-view {
    display: none;
}

.event-card-box-img img {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.event-card-box-img:hover img {
    -webkit-transform: rotate(3deg) scale(1.1, 1.1);
    -ms-transform: rotate(3deg) scale(1.1, 1.1);
    transform: rotate(3deg) scale(1.1, 1.1);
}








/********* Mobile Layout *********/
@media only screen and (max-width: 767px) {
.footer-row-info1 {
    display: inline-block;
    margin-top: 19px;
}
.section-title-n-row .select-box-wrapper {
    float: none;
    margin-top: 28px;
}
.event-card-box-img img {
    width: 100%;
}

.news-details-info .row-owl-carousel-wrapper {
    padding: 0px 42px 40px;
}
.select-menu-title-mobile-view {
    display: block;
    background: #00cfe5;
    padding: 12px 15px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidemenu {
    min-height: auto;
}
.sidemenu li:last-child {
    border-bottom: none;
}
.left-sidemenu-div {
    margin-bottom: 36px;
}



.besign-by {
    text-align: center;
    margin-top: 11px;
}
.copy-right {
    text-align: center;
}
.icon-div-box ul {
    display: flex;
    justify-content: center;
}
.icon-div-box {
    float: none;
    margin-top: 22px;
    text-align: center;
    width: 100%;
}
.row-links-logo {
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}
.links-logo-section .col-md-3 .theme-btn {
    display: none;
}

.row-links-logo-btn-mobile-view {
    margin-top: 33px;
    text-align: center;
    display: block;
}

.news-list-card-row {
    display: inline-block;
    padding: 16px 20px;
}
.news-list-card-row .news-list-card-name {
    padding-left: 0;
    font-size: 15px;
    line-height: 23px;
}
.section-title-text .section-title-img {
    display: none;
}
.header-top-section .icon-div-box {
    display: none;
}

.fc-toolbar.fc-header-toolbar .fc-left {
    display: none;
}
.fc-toolbar h2 {
    font-size: 19px !important;
}
a.down-btn {
    font-size: 15px;
}
.event-item {
    display: inline-block;
}
.title-text {
    margin-top: 19px;
}
.d-flex.align-items-center {
    width: 100%;
    display: inline-block !important;
    float: left;
    margin-top: 0px;
}
.d-flex.align-items-center img {
    width: 100%;
}
.d-flex.align-items-center .pl-4 {
    padding-left: 0px !important;
    padding-top: 11px !important;
}
.d-flex.align-items-center .pl-4 h4 {
    padding-bottom: 9px;
}
.footer-info-row .footer-icon1 {
    margin-right: 6px;
}

.banner-section .banner-wrapper img {
    height: 238px;
    object-fit: cover;
}
.banner-title-info {
    position: relative;
    padding-bottom: 4px;
}
.banner-title .overlay-bg1 {
    left: -8px;
    top: -11px;
    height: 44px;
}
.banner-title span {
    padding: 4px 28px;
    font-size: 24px;
        letter-spacing: 5px;
}
.banner-title-info {
    text-align: center;
}
.pagination-wrapper li {
    margin: 0px 1px;
}

.pagination-wrapper li a {
    width: 38px;
    height: 38px;
    line-height: 37px;
}
.row-news .news-details {
    padding-left: 0;
    margin-bottom: 22px;
}

.row-news .news-details .news-details-title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
}
.row-news .news-details-img {
    margin-bottom: 14px;
}
.news-details-info .news-details-img {
    margin: 0px 0px;
    padding-top: 0px;
    padding-bottom: 15px;
}
.upload-description a {
    font-size: 19px;
}
.theme-btn-row {
    margin-top: 22px;
}
.section-heading {
    margin-bottom: 0;
}
.section-heading .section-heading-text {
    font-size: 23px;
    margin-top: 11px;
}

.header-logo-div {
    max-width: 246px;
}

body.open label.toggle i.fa::before {
    content: "\f00d";
}
body.open:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    z-index: 33;
    display: inherit;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}


.calendar-section-home .event-box-home .theme-btn {
    text-align: center;
}
.calendar-section-home .theme-btn a {
    padding: 8px 12px;
    margin-top: 29px;
}
.news-list-card1 .news-list-card-row {
    padding-left: 0px;
    padding-right: 0px;
}

.calendar-home-bg #calendar .fc-widget-header {
    font-size: 12px;
    padding: 2px 0px;
}


.section-title-bg span {
    padding: 5px 37px;
    font-size: 27px;
}

.section-title-bg .overlay-bg1 {
    left: -8px;
    top: -14px;
    height: 52px;
    z-index: 0;
}
.calendar-home-bg #calendar .fc-toolbar.fc-header-toolbar {
    margin-bottom: 12px;
    padding-top: 8px;
}
.section-title-bg-center {
    text-align: center;
}

.event-container-section .col-md-4.tablet-full {
    margin-top: 27px;
}
.links-logo-section {
    padding-bottom: 12px;
}


}


/********* Mobile Layout *********/
@media only screen and (min-width: 768px) and (max-width: 991px) {
body.open label.toggle i.fa::before {
    content: "\f00d";
}
body.open:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    z-index: 33;
    display: inherit;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}
.header-top-section .icon-div-box {
    display: none;
}




.footer-row-info1 {
    display: inline-block;
}
.footer-info-row .footer-text1 {
    font-size: 13px;
}
.tablet-full {
    width: 100%;
}
.banner-section .banner-wrapper img {
    height: 283px;
    object-fit: cover;
}
.row-news .news-details {
    padding-left: 0;
}
.news-list-container .row-news .theme-btn a img {
    display: none;
}
.news-list-container .row-news .theme-btn a {
    font-size: 15px;
    padding: 8px 16px;
}
.row-news .news-details .news-details-title {
    font-size: 22px;
    line-height: 31px;
}
.banner-title-info {
    padding-bottom: 3px;
}
.news-details-info .news-details-img {
    margin: 0px 42px;
}
.photo-list3 {
    width: 33.333%;
}
.section-title-img {
    display: none;
}








}

/******** Medium Layout ********/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
.news-list-container .row-news .theme-btn a img {
    display: none;
}
.news-list-container .row-news .theme-btn a {
    font-size: 15px;
    padding: 8px 16px;
}
.row-news .news-details {
    padding-left: 0;
}




}
