/*--------------------------------------------------------------
	# General
--------------------------------------------------------------*/

:root {
	--main: #ec0085;
	--secondary: #f3631a;
	--hover: #758ba7;
	--mainbg: #204b9b;
	--hoverbg: #92b9e8;
	--button-color: #fff;
}
body {
	background: #fff;
	color: #000;
	font-family: "Montserrat", sans-serif;
	z-index: 99;
}
html, body {
  overflow-x: hidden;
}
body {
  position: relative
}
a {
	color: #942581;
	text-decoration: none;
	transition: 0.5s;
	}

a:hover,
a:active,
a:focus {
	color: #f8234a;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 10px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}

img {
	max-width: 100%
}

/*--------------------------------------------------------------
	# General Classes
--------------------------------------------------------------*/
.displaynone,
.d-none {
	display: none
}

/*--------------------------------------------------------------
	# Prelaoder
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: visible;
	background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
	# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #ef4024;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #c92323;
	color: #ffffff;
	border: 1px solid #cf2525;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/

#header {
	height: 64px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 997;
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.6);
	background: Linear-gradient(to right, var(--main), var(--secondary));
}

#header.header-scrolled,
#header.header-inner {
	height: 70px;
	background: Linear-gradient(to right, var(--main), var(--secondary));
}

#header #logo h1 {
	font-size: 18px;
	margin: 0;
	font-weight: 700;
	letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
	color: #fff;
	font-weight: 900;
}

#header #logo img {
	    padding: 10px 0;
	margin: 0;
	max-height:65px;
}

@media (max-width: 992px) {
	#header #logo img {
		
	}
}


/*--------------------------------------------------------------
	# Desktop Navigation Menu
--------------------------------------------------------------*/

.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar>ul>li {
	white-space: nowrap;
	padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-weight: 800;
	font-size: 16px;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	padding: 6px 4px;
	text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
	visibility: visible;
	width: 100%;
}

.navbar a:hover,
.navbar li:hover>a {
	color: #ffffff;
}


/*--------------------------------------------------------------
	# Desktop Navigation Menu
--------------------------------------------------------------*/

.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background: linear-gradient(to right, #0a0941, #000);
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile>ul>li {
	padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--main);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}


/*--------------------------------------------------------------
	# Button States
--------------------------------------------------------------*/

.default-button {
	color: var(--button-color);
	background: var(--main);
	padding: 7px 22px;
	margin: 0 0 0 15px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 800;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: 1px solid var(--main);
}

.default-button:hover,
.default-button:focus {
	color: var(--main);
	background-color: #fff;
}

.model-close-button {
	color: var(--button-color);
	background: var(--main);
	padding: 7px 22px;
	margin: 0 0 0 15px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 800;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: 1px solid var(--main);
}

.model-close-button:hover,
.model-close-button:focus {
	color: var(--main);
	background-color: #fff;
}

/*--------------------------------------------------------------
	# Home Section
--------------------------------------------------------------*/

#home {
	margin-bottom: 0px;
}

#home .bg-img-sec {
	position: relative;
	height: 100%;
}

#home .home-container {
	position: absolute;
	bottom: 0;
	left: 0px;
	top: 120px;
	color: #fff;
	justify-content: center;
	align-items: center;
	-webkit-box-orient: vertical;
	text-align: left;
	/*display: flex;*/
}
#home .text-sec{
	margin-left: 40px;
	}
#home .eventname {
	font-size: 50px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #ec0382;
    max-width: 600px;
}

#home .eition {
	font-size: 23px;
	  color: #ec0382;
}

#home .date {
	    font-size: 30px;
	    font-weight: 500;
	    margin-top: 20px;
	    margin-bottom: 5px;
	    line-height: 1.4;
		color: #000;
}

#home .tagline {
	font-size: 34px;
	font-weight: 600;
	margin: 10px 0px;
}

#home .tagline span {
	display: block;
}

#home .poweredby {
	position: absolute;
	right: 20px;
	top: 100px;
	font-weight: 900;
}

#home .power-logo {
	width: 15%;
	float: right;
}

/* ----------------------------
	Sections timer-sec
--------------------------------*/
#home .about-btn {
	align-items: center;
	margin-top: 15px;
	margin-left: 0;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 0px;
	display: inline-block;
	padding: 12px 30px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: 2px solid #ffffff;
	background: Linear-gradient(to right, var(--main), var(--secondary));
	text-transform: uppercase;
	border-radius: 10px;
}

#home .about-btn:hover {
	background: #d21462;
	color: #ffffff;
}

#waves-img {
	background: #fff;
	padding: 3px 0;
}

/* ----------------------------
	Sections Header
--------------------------------*/

.section-header {
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 7px;
}

.section-header::before {
	content: "";
	position: absolute;
	display: block;
	width: 300px;
	height: 2px;
	background: #e61061;
	bottom: 0;
	left: calc(50% - 150px);
}

.section-header h2 {
	font-size: 26px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	margin-bottom: 0px;
	color: #e61061;
}

.section-header p {
	text-align: center;
	padding: 0;
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	color: #9195a2;
}

.section-with-bg {
	background-color: #f6f7fd;
}
/*-------------------------------------------------------------
	# Summit Objective Section 
--------------------------------------------------------------*/

.summit_objective {
	background: #1d1d1d;
padding: 30px 0;
color:#fff;
}

.summit_objective .section-header h2 {
	font-size: 32px;
	color: #e61061;
	padding:20px 0;
}
.summit_objective .section-header::before {
	content: "";
	position: absolute;
	display: block;
	width: 300px;
	height: 2px;
	background: #fff0;
	bottom: 0;
	left: calc(5% - 50px);
}

.summit_objective li {
	font-size: 20px;
    line-height: 1.3;
    text-align: justify;
    padding-bottom: 10px;
}
.summit_objective  p{
	font-size: 20px;
    line-height: 1.3;
	 padding-bottom: 10px;
}
/*-------------------------------------------------------------
	#Speaker Section  
--------------------------------------------------------------*/
#speakers {
	    background: #fff;
	    padding: 30px 0;
}

#speakers .speaker {
	margin-top: 20px;
}

.spk-bg {
	background: #fff;
	margin: 2%;
	border-radius: 10px;
	margin-top: 150px;
	border: 3px solid #e61061;
}

#speakers .speaker .speaker-img img {
	border-radius: 50%;
	border: 3px solid #e61061;
	margin-top: -150px;
}

#speakers .bio-avalible img {
	cursor: pointer;
}

#speakers .speaker .details {
	min-height: 100px;
	text-align: center;

}

#speakers .speaker .details h3 {
	color: #000;
	font-size: 22px;
	font-weight: 900;
	line-height: 23px;
	margin: 5px 0;
	text-transform: uppercase;

}

#speakers .speaker .details p {
	color: #000;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: 18px;
	margin-bottom: 10px;
	overflow: auto;
	overflow-x: visible;
}

#speakers .company-logo {
	margin: 0px;
}

#speakers .company-logo .logo {
	width: auto;
	height: 50px;
}

#speakers .spk-biotext {
	color: #000;
	border-top: 1px solid #e61061;
	padding-top: 5px;
	padding-bottom: 20px;
	margin-top: 10px;
	font-size: 13px;
	font-style: italic;
}

.spkprofile {
	margin-top: 20px;
	cursor: pointer;
}

#speakers .likedinpfrofile {
	float: right;
}

#speakers .likedinpfrofile .bi {
	font-size: 20px;
}

#speakers .likedinpfrofile a {
	color: #204b9b;
	margin-right: 3px;
}

#speakers .likedinpfrofile a:hover {
	color: #00c5d7;
}

.modal-backdrop {
	position: absolute;
}

.bioimg {
	padding-left: 15px;
	padding-bottom: 15px;
	float: right;
}

.speaker-bio p,
.speaker-bio h6 {
	color: #000 !important;  
	font-size: 16px;
    text-align: left;
}

.speaker-bio .modal-dialog {
	max-width: 60% !important;
}

.speaker-bio .modal-title {
	color: #000 !important;
}
.bottom-spk-divider {
    margin-top: -140px;
}
#init {
	background-color: #fff;
	padding: 30px 0 0px 0;
}

/*-------------------------------------------------------------
	#olf_Speaker Section
--------------------------------------------------------------*/
#about {
	padding-bottom: 30px;
	    padding-top: 60px;
	background-color: #f2f2f2;
	position: relative;
}

#about .about-btn {
	width: auto;
    align-items: center;
    margin: auto;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0px;
    display: inline-block;
    padding: 12px 60px;
    transition: 0.5s;
    line-height: 1;
    color: #ffffff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #c72b0200;
    background: Linear-gradient(to right, var(--main), var(--secondary));
    text-transform: uppercase;
    border-radius: 10px;
}

#about .about-btn:hover {
	background: #fff;
	color: var(--secondary);
	border: 2px solid var(--secondary);
}

#about .aboutuniphoe h1 {
	padding: 30px 0 0 0;
	font-size: 40px;
	color: #817a7a;
	display: inline;
	    text-transform: uppercase;
    font-weight: 600;
}
#about .box-content {
	border: 5px solid #e71161;
	border-radius: 30px;
	padding: 30px 0 30px 0px;
}
#about .box-content p {
	padding-left:30px;
	}
#about .box-content .about-btn {
	width: auto;
    align-items: center;
    margin: auto;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0px;
    display: inline-block;
    padding: 12px 60px;
    transition: 0.5s;
    line-height: 1;
    color: #ffffff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #c72b0200;
    background: Linear-gradient(to right, var(--main), var(--secondary));
    text-transform: uppercase;
    border-radius: 10px;
	position: absolute;
    left: 0;
    right: 0;
    display: inline-table;
	margin-top: 10px;
}

#about .box-content .about-btn:hover {
	background: #fff;
	color: var(--secondary);
	border: 2px solid var(--secondary);
}



#about .visitsecton {
	font-size: 30px;
	font-weight: 500;
	text-align: center;
	margin-top: 5px;
}

#about .visitsecton .site a {
	font-weight: 400;
	color: #fff;
}

#about .site a:hover {
    background: #fff;
    color: var(--secondary);
}
/*-------------------------------------------------------------
	#olf_Speaker Section
--------------------------------------------------------------*/

.initsec {
	background-color: #ffffffa6;
	padding: 0px 0px 60px 0px;
}


#init .box {
	margin-top: 30px;
	padding: 6px;
	height: auto;
}

#init .box p {
	padding: 0px 20px 20px 10px;
	COLOR: #545454;
	margin: 0;
	font-size: 20px;
	text-align: center;
	min-height: 90px
}

#init .box img {
	padding: 20px;
	width: 40%;
	margin-left: 30%;
}

#init .section-header::before {
	width: 250px;
	background: #545454;
	left: calc(50% - 125px);
}

#init .section-header {
	margin-bottom: 10px;
}

#init .section-header h2 {
	color: #545454;
	font-weight: 600;
	font-size: 30px;
	padding-top: 0px;

}

/*--------------------------------------------------------------
	# supporters
--------------------------------------------------------------*/

#sponsors {
	background: #fff;
	padding: 40px 0;
	color: #000;
}

#sponsors .section-header h2 {
	text-align: center;
	font-size: 28px;
	background-color: #fff;
	font-weight: 600;
	margin: 30px 0px 0px 0;
	color: #000;
}

/*--------------------------------------------------------------
	# contact-page
--------------------------------------------------------------*/

.contact-page {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
	padding: 100px 0 0 0;
}

.contact-page a,
.contact-page a:hover {
	color: #fff;
}

.contact-page h3 {
	color: #fff;
	font-weight: 700;
	padding: 10px;
}

.contact-page p {
	margin: 5px;
}

.contact-page .heading2 {
	font-size: 30px;
	font-weight: 800;
	color: #fff;
}

.contact-page .address {
	padding: 30px 0 10px 0;
	margin: 0;
}

.contact-page p {
	padding: 2px 30px 0 0;
	color: #fff;
}

.contact-page label {
	font-size: 15px;
}

.contact-page span.input-group-text {
	font-size: 12px;
	width: 50%;
}

.contact-page #Speaker-form .row {
	padding-bottom: 20px;
}


/*--------------------------------------------------------------
	# vip-registration 
--------------------------------------------------------------*/

#vip-registration {
	padding: 100px 0 0px 0;
	background: linear-gradient(to right, #0a0941, #000);
	min-height: 300px;
}

#vip-registration .section-header h2 {
	font-size: 28px;
	padding-bottom: 0px;
	color: #ffffff;
}

#vip-registration .section-header p {
	text-align: center;
	margin: auto;
	font-size: 19px;
	color: #fff;
	width: 90%;
	font-weight: 500;
	padding-bottom: 10px;
}

#vip-visitor-form {
	background-color: #fff;
	padding: 15px 15px;
	margin: 0 10px;
}

#vip-visitor-form label {
	font-weight: 600;
	font-size: 17px;
	color: #000;
}

#vip-visitor-form textarea {
	width: 100%;
	margin: 0;
}

@media (max-width:798px) {
	#vip-registration .section-header p {
		width: 90%;
	}
}

#vip-registration #vip-visitor-form .row {
	color: #000;
}

#vip-registration label {
	padding-top: 10px;
}

.form-check-input {
	margin-right: 10px;
}

#vip-registration .radio_color {
	color: #000;
	padding-right: 20px;
	margin-left: -10px;
}

#vip-registration .form-check-label {
	font-size: 16px !important;
	font-weight: 400 !important;
	margin-top: -30px !important;
	padding: 8px 0;
}

#vip-registration .finally .form-check-label {
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-top: -8px !important;
	padding: 8px 0;
}

#vip-registration #vip-visitor-form .Heading {
	text-align: center;
	font-size: 28px;
}

#vip-registration .radio-options {
	text-align: center;
	font-size: 22px;
	font-weight: 500;
}

#vip-registration .info {
	color: #000;
	padding: 0;
	margin: 0;
}

#vip-registration .meeting_logo {
	width: 35%;
	margin-top: -30px;
}

#vip-registration .vip-Msg {
	color: #fff;
	padding: 15px 0;
	margin: 0;
	text-align: center;
	align-items: center;
}

#vip-registration .vip-Msg h2 {
	font-size: 40px;
	font-weight: 800;
}

#vip-registration .vip-Msg p {
	font-size: 18px;
}

#vip-registration .vip-Msg h5 {
	font-size: 20px;
}

.vip-sponsor-bio {
	color: #000;
}

/*--------------------------------------------------------------
	# attendee-registration 
--------------------------------------------------------------*/
#attendee-registration {
	padding: 100px 0 30px 0;
	background: linear-gradient(to right, #0a0941, #000);
	min-height: 300px;
}

#attendee-registration .section-header h2 {
	font-size: 28px;
	padding-bottom: 0px;
	color: #ffffff;
}

#attendee-registration .section-header p {
	text-align: center;
	margin: auto;
	font-size: 19px;
	color: #fff;
	width: 90%;
	font-weight: 500;
	padding-bottom: 10px;
}

#attendee-registration-form {
	background-color: #fff;
	padding: 15px 15px;
	margin: 0 10px;
}

#attendee-registration-form label {
	font-weight: 400;
	font-size: 17px;
	color: #000;
}

#attendee-registration-form textarea {
	width: 100%;
	margin: 0;
}

@media (max-width:798px) {
	#attendee-registration .section-header p {
		width: 90%;
	}
}

#attendee-registration #attendee-registration-form .row {
	color: #000;
}

#attendee-registration label {
	padding-top: 10px;
}

.form-check-input {
	margin-right: 10px;
}

#attendee-registration .radio_color {
	color: #000;
	padding-right: 20px;
	margin-left: -10px;
}

#attendee-registration .form-check-label {
	font-size: 16px !important;
	font-weight: 400 !important;
	margin-top: -30px !important;
	padding: 8px 0;
}

#attendee-registration .finally .form-check-label {
	font-size: 18px !important;
	font-weight: 400 !important;
	margin-top: -8px !important;
	padding: 8px 0;
}

#attendee-registration #attendee-registration .Heading {
	text-align: center;
	font-size: 22px;
}

#attendee-registration .info {
	color: #000;
	padding: 0;
	margin: 0;
}

#attendee-registration .meeting_logo {
	width: 35%;
	margin-top: -30px;
}

#attendee-registration .vip-Msg {
	color: #000;
	padding: 30px 0;
	margin: 0;
}


/*--------------------------------------------------------------
	# faq
--------------------------------------------------------------*/

#faq {
	padding-top: 8%;
}

#faq.section-with-bg {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
}

#faq .section-header h2 {
	color: #fff;
}

#faq .text {
	padding-top: 30px;
	padding-bottom: 10px;
	font-size: 18px;
}

#faq ul li {
	padding-top: 10px;
	font-size: 18px;
	list-style-type: decimal;
}

#faq .card {
	border-radius: 0px;
}

.card-body {
	color: #000;
}

.card-header a {
	color: #000;
}


/*--------------------------------------------------------------
	# terms-conditions
--------------------------------------------------------------*/

#terms-conditions {
	padding-top: 8%;
}

#terms-conditions.section-with-bg {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
}

#terms-conditions .section-header h2 {
	color: #fff;
}


/*--------------------------------------------------------------
	# privacy-policy
--------------------------------------------------------------*/

#privacy-policy {
	padding-top: 8%;
}

#privacy-policy.section-with-bg {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
}

#privacy-policy .section-header h2 {
	color: #fff;
}


/*--------------------------------------------------------------
	# Footer
--------------------------------------------------------------*/

#footer {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
	padding: 0 0 0 0;
	color: #eee;
	font-size: 14px;
}

#footer .footer-top {
	background: linear-gradient(90deg, rgb(6 14 42) 0%, rgb(10 44 88) 47%, rgb(17 33 66) 100%);
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .global-locations h1 {
	color: #fff;
	font-weight: 700;
	font-size: 22px;
}

#footer .bi-geo-alt-fill {
	float: left;
	margin-right: 10px;
	font-size: 30px;
	color: #f13434;
}

#footer .global-locations .adddres {}

#footer .global-locations .footer-top .footer-info h3 {
	font-size: 26px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}

#footer .demos {}

#footer .demos .heading {
	font-size: 20px;
	font-weight: 700;
}

#footer .demos .text {
	font-size: 14px;
	font-weight: 500;
}

#footer .footer-top .ucon-logo {
	width: 26%;
	margin-bottom: 10px;
}

#footer a {
	color: #fff;
	line-height: 1;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	color: #fff;
}

#footer .footer-top .social-links a {
	display: inline-block;
	background: #ffffff;
	color: #eee;
	line-height: 1;
	margin-right: 4px;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#footer .footer-top .social-links a i {
	line-height: 0;
	font-size: 16px;
	color: #204b9b;
}

#footer .footer-top .social-links a:hover {
	background: #204b9b;
	color: #fff;
}

#footer .footer-top .social-links a i:hover {
	color: #fff;
}

#footer .footer-top h4 {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
	border-bottom: 2px solid #f9f9f9;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links p {
	line-height: 26px;
	color: #fff;
}

#footer .footer-top .footer-links ul i {
	padding-right: 5px;
	color: #f9f9f9;
	font-size: 18px;
}

#footer .footer-top .footer-links ul li {
	border-bottom: 1px solid #f9f9f9;
	padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
	color: #f9f9f9;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
	line-height: 26px;
	color: #fff;
}

#footer .footer-top .footer-contact a {
	color: #fff;
}

#footer .cr {
	text-align: center;
}

@media(max-width:1200px) {
	#home .home-container {
		top: 0px;
		margin-top: 100px;
	}

	#home .eventname {font-size: 33px;}

	#home .tagline {
		font-size: 28px;
		margin: 0px 0px;
	}

	#home .power-logo {
		width: 40%;
		margin-bottom: 40px;
	}
	#home .about-btn {
		font-size: 14px;
	}

	#home .poweredby {
		position: relative;
		top: 54px;
		left: 0;
		right: 0;

	}
}

@media(max-width:1024px) {
	#home .home-container {
		top: 50px;
	}

	#home .date {
		font-size: 14px;
	}

	#home .tagline {
		font-size: 20px;
	}

	#home .about-btn {
		font-size: 11px;
	}
}

@media(max-width:767px) {

	#header #logo h1 a,
	#header #logo h1 a:hover {
		font-size: 14px;
	}

	#home .home-container {
		display: block;
		top: 80px;
		left: 20px;
		margin-top: 20px
	}

	#home .edition {
		margin-top: 20px;
		position: relative;
		text-align: center;
		top: 0;
		left: 0;
		font-size: 19px;
		float: none;
	}

	#home .eventlogo {
		width: 50%;
	}
	#home .text-sec {
    margin-left: 0px;
}
#home .eventname {font-size: 28px;}
	#home .liveinperson {
		position: relative;
		text-align: center;
		top: 0;
		right: 0;
		padding-top: 5px;
		font-size: 19px;
		float: none;
	}

	#home .date {
		font-size: 16px;
		margin-top: 20px;
	}

	#home .tagline {
		font-size: 18px;
		padding: 7px 0;
	}

	.content {
		margin: 0 22%;
	}
	#timer-sec .about-btn {
		padding: 12px 60px;
		font-size: 10px;
		margin-left: 18px;
	}

	#timer-sec .col-md-5 {
		margin: 30px 0px;
	}

	.section-header {
		margin-bottom: 0px;
	}

	.summit_objective {
		padding: 50px 15px;
	}

	.summit_objective .section-header {
		margin-bottom: 30px;
	}

	.summit_objective .heading {
		font-size: 28px;
	}

	.summit_objective .robot-img {
		float: right;
		width: 60%;
	}

	.summit_objective .text {
		font-size: 14px;
		padding-right: 0;
		text-align: justify;
	}

	#counter {
		padding: 40px 0 0px 0;
	}

	#attend h1 {
		font-size: 27px;
	}

	.voicetechin {
		background: #fff;
		padding: 40px 0;
	}

	.voicetechin img {
		margin: 5px 0;
	}

	.section-header h2 {
		font-size: 30px;
	}

	#clients {
		padding: 60px 0 30px 0;
	}

	#clients .row {
		padding: 20px 10px;
	}

	#clients .our_client_logo {
		width: 24%;
	}

	#speakers .col-lg-4.col-md-6 {
		margin: 0 0 20px;
	}

	#speakers .spk-bg {

		width: 80%;
	}

	#speakers .speaker .speaker-img img {
		width: 80%;
	}

	#speakers .speaker .details {
		min-height: auto;

	}

	#speakers .company-logo .dummylogo {
		display: none
	}

	#speakers .company-logo .logo {
		width: auto;
		height: 50px;
	}

	#init {
		padding: 0px;
	}

	#init .sec2 {
		padding-top: 0px;
	}

	#init .box {
		height: auto;
	}

	#init .about-btn {
		padding: 15px 14px;
		font-size: 15px;
	}

	#init .sec2 h1 {
		margin-top: 20px;
	}

	#sponsors {
		padding: 40px 0 0 0;
	}

	.voicetechin h6 {
		font-size: 20px;
		margin: 0;
	}

	.voicetechin h4 {
		font-size: 24px;
		margin: 0;
	}

	.voicetechin h5 {
		font-size: 26px;
	}

	.benifits {
		font-size: 10px;
		padding: 3px 8px;
	}

	.contact-page .address {
		padding: 16px 0 10px 0;
	}

	.contact-page label {
		font-size: 11px;
	}

	.contact-page #Speaker-form .row {
		padding-bottom: 0px;
	}

	#contact-sec .col-md-6 {
		margin-bottom: 20px;
	}

	#vip-registration .finally .form-check-label {
		font-size: 13px !important;
		margin-top: -27px !important;
	}

	#faq,
	#terms-conditions,
	#privacy-policy {
		padding-top: 30%;
	}

	#services .border-right {
		border-right: none;
		border-bottom: 3px solid #ffff;
		padding-bottom: 15px;
	}
}
#Speaker-form h4 {color:#fff;}