@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@1,300&family=Poppins:wght@300&family=Press+Start+2P&family=Prompt:wght@200&family=Spline+Sans+Mono&family=Ubuntu&display=swap');

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.5;
	/* font-family: 'Montserrat', sans-serif; */
	font-weight: 400;

}

body.hidden-scrolling {
	overflow-y: hidden;
}

* {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	box-sizing: border-box;
}

.container1 {
	/* max-width: 1170px; */
	margin: auto;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

ul.a {
  list-style-type: circle;
}

/*header*/
.header {
	/* position: absolute; */
	width: 100%;
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	top: 0;
	z-index: 99;
	/* padding: 15px; */
}

.header-main {
	background-color: #5F6F94;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	box-shadow: 0px 0px 2px 1px #394359;
	/* border-radius: 4px; */
}

.header .logo {
	padding: 0 15px;
	padding-left: 75px;
}

.header .logo a {
	font-size: 30px;
	text-transform: capitalize;
	/* padding-left: 30px; */
	color: #ffffff;
	font-weight: 600;
}

.header .nav-menu {
	padding: 0 15px;
}

.header .menu>.menu-item {
	display: inline-block;
	margin-left: 30px;
	position: relative;
}

.header .menu>.menu-item>a {
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #ffffff;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}

.header .menu>.menu-item>button {
	display: block;
	padding: 7px 20px;
	font-size: 16px;
	background-color: #042163;
	text-transform: capitalize;
	border-radius: 7px;
	border: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.header .menu>.menu-item>button:hover {

	background-color: #0d44c5;
}

.header .menu>.menu-item>button a {
	color: #FFF;
}

.header .menu>.menu-item>a .plus {
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left: 5px;
	pointer-events: none;
}

.header .menu>.menu-item>a .plus:before,
.header .menu>.menu-item>a .plus:after {
	content: '';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top: 50%;
	background-color: #ffffff;
	height: 2px;
	width: 100%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.header .menu>.menu-item:hover>a .plus:before,
.header .menu>.menu-item:hover>a .plus:after {
	background-color: #ffffff;
}

.header .menu>.menu-item>a .plus:after {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:hover,
.header .menu>.menu-item:hover>a {
	color: #97D2EC;
}

.header .menu>.menu-item>.sub-menu {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 220px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #97D2EC;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

@media(min-width: 992px) {
	.header .menu>.menu-item-has-children:hover>.sub-menu {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.header .menu>.menu-item-has-children:hover>a .plus:after {
		transform: translate(-50%, -50%) rotate(0deg);
	}
}

.header .menu>.menu-item>.sub-menu>.menu-item {
	display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.header .open-nav-menu {
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header .open-nav-menu span {
	display: block;
	height: 3px;
	width: 24px;
	background-color: #ffffff;
	position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	box-sizing: border-box;
}

.header .open-nav-menu span:before {
	top: -7px;
}

.header .open-nav-menu span:after {
	top: 7px;
}

.header .close-nav-menu {
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin: 0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}

.header .close-nav-menu img {
	width: 16px;
}

.header .menu-overlay {
	position: fixed;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section {
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}

.container img {

	width: 19%;
}

/* responsive */

@media(max-width: 1245px) {

	.header .menu-overlay.active {
		visibility: visible;
		opacity: 1;
	}

	.header .header-main .logo .title {
		font-size: 20px;
	}

	.header .nav-menu {
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top: 0;
		overflow-y: auto;
		background-color: #5F6F94;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}

	.header .nav-menu.open {
		visibility: visible;
		right: 0px;
	}

	.header .menu>.menu-item {
		display: block;
		margin: 0;
	}

	.header .menu>.menu-item-has-children>a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header .menu>.menu-item>button {
		margin-left: 75px;
		margin-top: 10px;
	}

	.header .menu>.menu-item>a {
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}

	.header .menu>.menu-item:first-child>a {
		border-top: 1px solid #333333;
	}

	.header .menu>.menu-item>a .plus:before,
	.header .menu>.menu-item>a .plus:after {
		background-color: #ffffff;
	}

	.header .menu>.menu-item-has-children.active>a .plus:after {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	.header .menu>.menu-item>.sub-menu {
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border: none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top: auto;
		max-height: 0;
		overflow: hidden;
	}

	.header .menu>.menu-item>.sub-menu>.menu-item>a {
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}

	.header .close-nav-menu,
	.header .open-nav-menu {
		display: flex;
	}
}

.btn {
	background-color: #042163;
	transition: 0.3s;
	border: none;
}

.btn:hover {
	background-color: #072c80;
}


/* ****************************about********************************** */
/* ***********************Mid part********************** */

/* .mid{
		background-image: url('../img/bg.jpg');	
		background-size: cover;
	} */
.mid {
	transition: all 0.3s ease;
}

.mid h1 {
	text-align: center;
	padding-bottom: 2rem;
	color: #042163;
}

.mid .abcont {
	display: flex;
	padding: 20px;
}

.mid .abcont img {
	width: 100%;
}

.mid p {
	padding: 0 20px;
}

@media screen and (max-width: 480px) {
	.mid .abcont {
		/* display: block; */
		flex-direction: column;
	}

	/* .a .mid .abcont img{
			width: 90%;
		} */

}

@media screen and (max-width: 900px) {
	.mid .abcont {
		/* display: block; */
		flex-direction: column;
	}

	/* .mid .abcont img{
			width: 17rem;
		} */
}

@media screen and (max-width: 1024px) {
	.mid .abcont {
		display: flex;
	}

	/* .mid .abcont img{
			width: 25rem;
		} */
}

@media screen and (max-width: 1280px) {
	.mid .abcont {
		display: flex;
	}

	/* .mid .abcont img{
			width: 30rem;
		} */
}


/* ********************noticebar********************* */


.Idate h2 {
	font-size: 250%;
	text-align: center;
	padding-bottom: 2rem;
	color: #042163;
}

.notice {
	display: flex;
	/* padding: 1rem 2rem; */
}

@media screen and (max-width: 900px) {
	.notice {
		flex-direction: column;
		padding: 10px;
		/* width: 100%; */
		align-items: center;
		/* padding: 1rem 2rem; */
	}

	.notice .vide {
		width: 100%;
		/* padding: 15px; */
	}
}

.vide {
	width: 45%;
	margin: 5px;
	float: right;
	padding-bottom: 10px;
	/* margin-top: 15px; */
	background: #fff;
	/* box-shadow: 1px 2px 3px 1.5px #4C0033; */
	/* border-radius: 10px; */
	border: 5px solid #032065;
}

.vide h2 {
	font-size: 21px;
	text-align: center;
	color: #fff;
	background: #032065;
	margin-top: 0px;
	letter-spacing: 0.6px;
	margin-bottom: 10px;
	padding: 10px 0;
	font-weight: normal;
	/* border-radius: 5px; */
}

.vide p {
	padding: 0px 15px 10px;
	text-align: center;
	font-size: 13px;
	margin: 12px 0;
	color: #fff;
	line-height: 20px;
	border-bottom: 1px solid #ccc;
}

.highl2 {
	font-weight: bold;
	color: rgb(43, 45, 75);
}

.vide a,
.vide a:hover {
	color: #000;
}

.vide a {
	text-decoration: none;
	color: #151035;
}



.Idate .notice .blank {
	padding: 10px 5px;
}

.Idate .notice .blank p i {
	color: #CC3636;
}

/* *****************************time********************* */

.time {
	display: flex;
	padding: 1rem;
	flex-direction: column;
	justify-content: left;
	align-items: left;
	text-align: left;
	/* background: red; */
	/* min-height: 40vh; */
	background-image: url("../my.gif");
	background-position: 0%;
	background-size: cover;
	background-position: center;
	position: relative;

}

.time:after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	/* background-color: rgba(34, 34, 34, 0.5); */
}

.time .content h4,
p {
	text-align: left;
	padding-left: 10px;
}

.time .content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.time .content h3 {
	color: #FFF;
	font-size: 30px;
	/* padding-top:.5rem; */
}

.time .content h5 {
	color: #FFF;
	font-size: 25px;
	/* font-weight: 900; */
	margin: 30px 0px;
}

.time .content .countdown {
	color: #FFF;
	font-size: 70px;
	/* font-weight: 400; */
	padding-bottom: 2rem;
}

.time .content h4 {
	color: #FFF;
	font-size: 20px;
}

.p1 {
	color: rgb(0, 0, 0);
	font-size: 18px;
	text-align: center;
}

.time .content p {
	color: #FFF;
	font-size: 15px;
}

/* header .content h2 span {
		font-weight: 400;
	} */
@media screen and (min-width: 200px) {
	.time .content h3 {
		font-size: 15px;
	}

	.time .content h5 {
		font-size: 10px;
	}

	.time .content .countdown {
		font-size: 20px;
	}

	.time .content h4 {
		font-size: 10px;
	}

	.time .content p {
		font-size: 10px;
	}
}

@media screen and (min-width: 768px) {
	.time .content h3 {
		font-size: 20px;
	}

	.time .content h5 {
		font-size: 15px;
	}

	.time .content .countdown {
		font-size: 24px;
	}

	.time .content h4 {
		font-size: 13px;
	}

	.time .content p {
		font-size: 9px;
	}
}

@media screen and (min-width: 1024px) {
	.time .content h3 {
		font-size: 28px;
	}

	.time .content h5 {
		font-size: 20px;
	}

	.time .content .countdown {
		font-size: 28px;
	}

	.time .content h4 {
		font-size: 18px;
	}

	.time .content p {
		font-size: 12px;
	}
}

@media screen and (min-width: 1280px) {
	.time .content h3 {
		font-size: 30px;
	}

	.time .content h5 {
		font-size: 25px;
	}

	.time .content .countdown {
		font-size: 50px;
	}

	.time .content h4 {
		font-size: 20px;
	}

	.time .content p {
		font-size: 15px;
	}
}






/* ********************speakers**************** */

.speakers {
	/* min-height: 80vh; */
	width: auto;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	background: #F9F9F9;
	text-align: center;
}

.speakers h1 {
	/* font-size: 8px; */
	position: relative;
	top: 40px;
}

.container_s {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	/* height: 10vh; */
}

/*Styles for product card*/

.product .product-card {
	z-index: 1;
	background: #AEBDCA;
	position: relative;
	width: 200px;
	height: 300px;
	margin: 40px;
	border-radius: 10px;
}

.product .product-card:before {
	content: '';
	background: rgba(255, 255, 255, 0.1);
	position: relative;
	display: block;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.product .product-card .product-img {
	/* z-index: 1; */
	position: absolute;
	max-width: 100px;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50px;
}

.product .product-card .name {
	z-index: 2;
	color: rgb(5, 5, 5);
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 70px;
	font-size: 20px;
	letter-spacing: 1px;
}



.product .product-card .popup-btn {
	z-index: 2;
	color: rgb(0, 0, 0);
	background: #fff;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 8px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	padding: 8px 20px;
	border-radius: 20px;
	cursor: pointer;
}

/*Styles for popup view*/

.product .popup-view {
	z-index: 2;
	background: rgba(255, 255, 255, 0.5);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}

.product .popup-view.active {
	opacity: 1;
	visibility: visible;
}

.product .popup-card {
	position: relative;
	display: flex;
	width: 800px;
	height: 500px;
	margin: 20px;
}

.product .popup-card .product-img {
	z-index: 2;
	background: #7895B2;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45%;
	height: 90%;
	transform: translateY(25px);
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.product .popup-card .product-img img {
	z-index: 2;
	position: relative;
	width: 200px;
	border-radius: 100px;
	/* left: -50px; */
}

.product .popup-card .info {
	z-index: 2;
	background: #AEBDCA;
	display: flex;
	flex-direction: column;
	width: 55%;
	height: 100%;
	box-sizing: border-box;
	padding: 40px;
	border-radius: 10px;
}

.product .popup-card .close-btn {
	color: #555;
	z-index: 3;
	position: absolute;
	right: 0;
	font-size: 20px;
	margin: 20px;
	cursor: pointer;
}

.product .popup-card .info h2 {
	font-size: 20px;
	line-height: 20px;
	margin: 10px;
	text-align: left;
}

.product .popup-card .info h2 span {
	font-size: 12px;
	text-transform: uppercase;
}

.product .popup-card .info p {
	font-size: 15px;
	text-align: justify;
	margin: 10px;
}

.product .popup-card .info .price {
	font-size: 45px;
	font-weight: 300;
	margin: 10px;
}

.product .popup-card .info .add-cart-btn {
	color: #fff;
	background: #390076;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	margin: 10px auto;
	padding: 10px 50px;
	border-radius: 20px;
}

.product .popup-card .info .add-wish {
	color: #390076;
	font-size: 16px;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}

/* ************read more******************** */

.moreText {
	display: none;
}

.read-more-btn {
	/* padding: 5px 6px;
  background-color: rgb(149, 170, 197);
  color: rgb(53, 49, 49);
  border: none;
  outline: none;
	align-items: center;
	justify-content: center;
  font-size: 18px;
  cursor: pointer;
	align-items: right;
	*/

	display: block;
	padding: 7px 20px;
	font-size: 16px;
	background-color: rgb(4, 33, 99);
	text-transform: capitalize;
	border-radius: 7px;
	border: none;
	font-weight: 600;
	transition: all 0.3s ease 0s;
	color: white;
}

.text.show-more .moreText {
	display: inline;
}

.text.show-more .dots {
	display: none;
}

/*Responsive styles*/

@media (max-width: 480px) {
	.product .popup-card {
		flex-direction: column;
		/* width: 550px; */
		height: auto;
		/* position: absolute; */
	}


	.product .popup-card .product-img {
		z-index: 3;
		width: 100%;
		/* margin-top: 10px; */
		padding-top: 10px;
		height: 200px;
		transform: translateY(0);
		border-bottom-left-radius: 0;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}

	.product .popup-card .product-img img {
		left: initial;
		max-width: 100%;
	}

	.product .popup-card .info {
		width: 100%;
		height: auto;
		padding: 20px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.product .popup-card .info h2 {
		margin: 20px 5px 5px 5px;
		font-size: 25px;
	}

	.product .popup-card .info h2 span {
		font-size: 10px;
	}

	.product .popup-card .info p {
		margin: 5px;
		font-size: 10px;
	}

	.product .popup-card .info .price {
		margin: 5px;
		font-size: 30px;
	}

	.product .popup-card .info .add-cart-btn {
		margin: 5px auto;
		padding: 5px 40px;
		font-size: 14px;
	}

	.product .popup-card .info .add-wish {
		font-size: 14px;
	}

	.product .popup-card .close-btn {
		z-index: 4;
	}
}

.text {
	text-align: justify;
}

.cfp {
	text-align: center;
}

.tlist {
	display: flex;
	/*text-align: left;*/
	justify-content: center;
}

.list1 {
	padding: 15px;
}

.list2 {
	padding: 15px;
}

@media (max-width: 900px) {
	.tlist {
		flex-direction: column;
		text-align: center;
	}
}

/* ***************topics******************* */
.topics h1 {
	text-align: center;
	padding-top: 10px;
	color: #042163;
}

.topics p {
	color: red;
}

.topics h4 {
	font-weight: bold;
	padding: 2px;
}

.tcontainer {
	/* display: flex; */
	padding: 25px;
	text-align: center;
}

.t1 {
	display: flex;
	/* text-align: center; */
	justify-content: center;
}

.t2 {
	display: flex;
	justify-content: center;
}

.t1 .ai {
	border: 2px solid black;
	width: 33%;
	padding: 7px;
	margin: 5px;
}

.t1 .dc {
	border: 2px solid black;
	width: 33%;
	padding: 7px;
}

.t1 .sc {
	border: 2px solid black;
	width: 33%;
	padding: 7px;
	margin: 5px;
}

.t1 :hover {
	margin: 5px;
	transition: 0.3s ease-in-out;
}

.t2 .se {
	border: 2px solid black;
	width: 33%;
	padding: 7px;
	margin: 5px;
}

.t2 .cv {
	border: 2px solid black;
	width: 33%;
	padding: 7px;
}

.t2 .em {
	border: 2px solid black;
	width: 33%;
	padding: 7px;
	margin: 5px;
}

.t2 :hover {
	margin: 5px;
	transition: 0.3s ease-in-out;
}

@media (max-width: 600px) {
	.tcontainer {
		flex-direction: column;
	}
}

@media (max-width: 900px) {
	.t1 {
		flex-direction: column;
	}

	.t1 .ai {
		width: 100%;
		margin-right: 10px;
		/* height: 450px; */
	}

	.t1 .dc {
		width: 100%;
		margin-right: 10px;
	}

	.t1 .sc {
		width: 100%;
		margin-right: 10px;
	}

	.t2 .se {
		width: 100%;
		/* height: 450px; */
	}

	.t2 .cv {
		width: 100%;
	}

	.t2 .em {
		width: 100%;
	}

	.t2 {
		flex-direction: column;
	}

	.tcontainer {
		display: flex;
	}
}



/* *****************contact us***************** */

.contact {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #032065;
	color: #fff;
	padding: 30px;
	margin: 3% 9%;
}

.contact .cform {
	/* height: 600px; */
	/* width: 70%; */
	background: #1a2534;
	padding: 30px;
	margin: 10px;
	border-radius: 5px;
}

.contact .cinfo {
	/* height: 100px; */
	background: #1a2534;
	padding: 30px;
	margin: 10px;
	border-radius: 5px;

}

.contact .cinfo p {
	text-align: left;
}

.contact .cmap {
	/* height: 100px; */
	/* background:#1a2534; */
	/* padding: 30px; */
	margin: 10px;
	border-radius: 5px;
}

.formbox {
	display: flex;
	/* padding: 10px; */
}

.row50,
.row51,
.newrow {
	padding: 0 10px;
}

.inputbox {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	/* width: 105%; */
}

.inputbox span {
	margin-top: 10px;
	margin-bottom: 5px;
}

.inputbox input {
	padding: 10px;
	outline: none;
	border: 1px solid #151035;
	font-size: medium;
	border-radius: 2px;
}

.inputbox textarea {
	padding: 10px;
	outline: none;
	border: 1px solid #151035;
	font-size: medium;
	resize: none;
	min-height: 150px;
	margin-bottom: 10px;
	border-radius: 2px;
}

.inputbox input[type="submit"] {
	background: #205ff3;
	color: #fff;
	border: none;
	max-width: 120px;
	cursor: pointer;
	font-weight: 500;
	padding: 14px 15px;
	border-radius: 2px;
}

.inputbox::placeholder {
	color: #2d3e58;
}

.div2 .infobox div {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.div2 .infobox div span {
	min-width: 40px;
	height: 40px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #205ff3;
	margin-right: 15px;
	font-size: 1.5em;
}

.div2 .infobox div a {
	color: #fff;
}

.sci {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sci li {
	margin-right: 15px;
	text-align: center;
}

.sci li a {
	color: #ccc;
	font-size: 2em;
}

.sci li a:hover {
	color: #fff;
}

.cmap {
	padding: 0;
}

.cmap iframe {
	height: 100%;
	width: 100%;
	border-radius: 5px;
}

.heading h2 {
	text-align: center;
	margin-top: 20px;
}

@media (max-width: 991px) {
	.contact {
		flex-direction: column;
		display: block;
		padding: 10px;
		margin: 0;
	}

	.contact .cform {
		/* padding: 0; */
		width: 96%;
	}

	.formbox {
		flex-direction: column;
	}
}

/* ***************Sponsers****************** */


.sponsors h2 {
	text-align: center;
	color: #042163;
	font-size: 30px;
}

.sponsors .spon-imgs {
	text-align: center;
}

.sponsors .spon-imgs img {
	height: 100px;
	padding-left: 10px;
}

@media (max-width: 580px) {
	/* .sponsors{
		position: relative;
		 padding-top: 150px;
	} */
}

/* *****************footer*************** */


.main-wrap {
	width: 100%;
	background: #607EAA;
}

.footer-wrap {
	position: relative;
	width: 100%;
	padding: 40px;
	background: #2d3e58;
}

.footer-wrap-1 {
	display: flex;
}

.footer-section {
	width: 22%;
	display: block;
	padding: 10px 35px;
}

.footer-section:last-of-type {
	width: 34%;
}

.footer-section p {
	color: #fff;
	font-size: 16px;
}

.footer-section h1 {
	font-size: 22px;
	color: #fff;
	margin-bottom: 8px;
}

.footer-section a {
	color: #fff;
	display: block;
	text-decoration: none;
	padding: 4px 0px;
}


/* form{
	position:relative;
}
form input{
	position:absolute;
	height:35px;
	width: 220px;
	margin:8px 0px;
	border:none;
	outline:none;
	padding:6px;
	font-size:14px;
	border-radius: 2px;
}
form .btn{
	height:35px;
	background:#032065;
	border:none;
	padding:0px 6px;
	margin:8px 0px;
	position:absolute;
	left:60%;
	font-weight: 600;
	cursor: pointer;
	color:#fff;
}
.btn:hover{
	background: #205ff3;
} */
.line {
	margin-top: 20px;
	width: 100%;
	height: 1px;
	;
	background: rgb(143, 142, 142);
}

.social-link {
	padding-top: 25px;
	text-align: center;
}

.social-link a {
	text-decoration: none;
	height: 26px;
	display: inline-block;
	width: 26px;
	padding: 0px;
	border-radius: 20px;
	margin: 5px;
	background: rgb(224, 222, 222);
}

.social-link a img {
	width: 14px;
	height: 14px;
}

.footer-bottom {
	background: #1a2534;
	width: 100%;
	padding: 20px;
	display: flex;
	justify-content: space-between;
}

.footer-bottom a {
	color: #fff;
	font-size: 14px;
	margin-left: 20px;
	text-decoration: none;
}

.first-box {
	margin-left: 20px;
}

.last-box {
	margin-right: 20px;
}

.last-box p {
	color: white;
	font-size: 12px;
}

.last-box p a {
	color: white;
	font-size: 12px;
	margin: 0;
	font-weight: 600;
}

@media (max-width: 800px) {
	.footer-wrap {
		padding: 0;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.footer-bottom .first-box a {
		font-size: 13px;
	}

	.footer-section a {
		/* color:#fff; */
		font-size: 10px;
	}

	.footer-section p {
		font-size: 10px;
	}

	.footer-section h1 {
		font-size: 15px;
	}

	/* form input{
		position:absolute;
		height:25px;
		width: 80px;
		border-radius: 2px;
	}
	form .btn{
		height:25px;
		font-size: 8px;
		left: 50%;
	} */
}

.footer-section .btn {
	color: #fff;
}

@media (max-width: 300px) {
	form .btn {

		left: 70%;
	}

	.img img {
		width: 90%;
	}
}

@media (max-width: 800px) {
	.cfp img {
		width: 90%;
	}

	.img img {
		width: 90%;
	}
}

@media screen and (max-width: 1100px) {
	.cfp img {
		width: 90%;
		/* padding: 0; */
	}

	.img img {
		width: 90%;
		padding-left: 18%;
	}
}


.heading h1 {
	color: red;
	font-size: 150px;
	text-align: center;
	padding-top: 120px;
	padding-bottom: 30px;
}

@media (max-width: 900px) {
	.heading h1 {
		font-size: 70px;
	}
}

.a_comm h1 {
	text-align: center;
	padding-top: 20px;
	font-weight: bold;
}

.cc {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.cc .chief {
	text-align: center;
	/* border: 1px solid black; */
	margin: 20px;
	border-radius: 10px;
	background-color: #607EAA;
	color: #fff;
	padding: 20px;
}

.chief h5 {
	padding: 10px;
}

.patron h5 {
	padding: 10px;
}

.chief img {
	border-radius: 50%;
	width: auto;
	height: 70px;
}

.cc .patron {
	text-align: center;
	/* border: 1px solid black; */
	margin: 20px;
	padding: 20px;
	border-radius: 10px;
	background-color: #607EAA;
	color: white;
}

.patron img {
	border-radius: 50%;
	width: auto;
	height: 70px;
}

.hc {
	text-align: center;
}

.one {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.names {
	padding-top: 10px;
	margin: 20px;
	border-radius: 20px;
	border-spacing: 10px;
	/*width: 35%;*/
	width: 360px;
	height: 170px;
    /*padding: 20px;*/
	background-color: #607EAA;
	color: #fff;
}

.two {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.one img {
	border-radius: 100%;
}

.two img {
	border-radius: 50%;
}

.hc img {
	height: 70px;
}

.names h5 {
	padding: 10px;
}

.three {
	padding-right: 10px;
	margin: 20px;
	border-radius: 10px;
	width: 50%;
	padding: 20px;
	background-color: #607EAA;
	color: #fff;
}

.three h5 {
	padding: 10px;
}

.four {
	margin: 35px;
	border: 1px solid black;
	padding: 40px;
	width: 96%;
}

.four h3 {
	background-color: #607EAA;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
	text-align: center;
}

.five {
	display: flex;
	text-align: center;
	justify-content: center;
}

.five h3 {
	background-color: #607EAA;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
}

.six {
	display: flex;
	margin: 20px;
	border: 1px solid black;
	padding: 20px;
}

.six h3 {
	background-color: #607EAA;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
}

.ten {
	display: flex;
	text-align: center;
	justify-content: center;
}

.ten h3 {
	background-color: #607EAA;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
}

.international {
	margin: 20px;
	border: 1px solid black;
	padding: 20px;
	width: 47%;
	
}

.international h3 {
	background-color: #607EAA;
	padding: 2px;
	color: #fff;
}

.national {
	margin: 20px;
	border: 1px solid black;
	padding: 20px;
	
	width: 47%;
}

.national h3 {
	background-color: #607EAA;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
}

.split {
	height: 10%;
	width: 50%;
	position: relative;
	top: 10px;
	overflow: hidden;
	padding: 20px;
}

.left {
	left: 0%;
}

.right {
	right: -50%;
	top: 0;
	bottom: 0px;
}
.updates h2{
	text-align: center;
	color: #042163;
	font-size: 30px;
}
.updates p {
	padding: 0px 15px 10px;
	text-align: center;
	font-size: 18px;
	margin: 12px 0;
	color: #fff;
}
.news {
	box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);
	width: 350px;
	height: 40px;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 6px;
	padding: 3px;
	-webkit-user-select: none
  } 
  .full-width{
	  width: 100%;
  }
  .news span {
	float: center;
	color: rgb(0, 0, 0);
	padding: 8px;
	position: relative;
	top: 1%;
	border-radius: 6px;
	box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4);
	font: 20px 'Source Sans Pro', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-user-select: none;
	cursor: pointer
  }
  
  .news ul {
	float:right;
	padding-right:45%;
	animation: ticker 10s cubic-bezier(1, 0, .5, 0) infinite;
	-webkit-user-select: none
  }
  
  .news ul li {line-height: 30px; list-style: none }
  
  .news ul li a {
	color: rgb(51, 1, 253);
	text-decoration: none;
	font: 17px Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-user-select: none
  }
  @keyframes ticker {
	0%   {margin-top: 0}
	25%  {margin-top: -30px}
	50%  {margin-top: -60px}
	75%  {margin-top: -90px}
	100% {margin-top: 0}
}
.news ul:hover { animation-play-state: paused }
.news span:hover+ul { animation-play-state: paused }

.venue h1{
	text-align: center;
	color: #0a0a0a;
	font-size: 45px;
}

.venue h3{
	text-align: center;
	color: #0a0a0a;
	font-size: 30px;
}
.text-venue p{
	text-align: center;
}
.schedule h2{
	padding-top: 20px;
	text-align: center;
	color: #f6f5f5;
	font-size: 15px;
}



@media screen and (max-width: 400px) {
	*{
		padding: 0px;
		margin: 0px;
	}
	.four {
		flex-direction: row;
	}
}