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

:root {
	--main: #3a1468;
	--secondary: #e21562;
	--hover: #758ba7;
	--mainbg: #204b9b;
	--hoverbg: #92b9e8;
	--button-color: #fff;
}

body {
	background: #fff;
	color: #000;
	font-family: "Montserrat", sans-serif;
	z-index: 99;
}

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: 99997;
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.6);
	background:#0000;
	background: Linear-gradient(to right, #16516f, #23404b);
}

#header.header-scrolled,
#header.header-inner {
	
	height: 70px;
	background: Linear-gradient(to right, #16516f, #23404b);
}

#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: #ff6a13;
	font-weight: 800;
	font-size: 16px;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	padding: 6px 4px;
	text-transform: uppercase;
}
.navbar .menu1, 
.navbar .menu2 {
	color: #f03481;
}
.navbar .menu3
{
	background-image: linear-gradient(45deg, #f03481, #fc6a13);
    padding: 3px;
    margin: 0 10px;
}
.spl-class{background: Linear-gradient(to right, #16516f, #23404b);
	padding: 6px 10px!important;}
.navbar .menu4,
.navbar .menu5,
.navbar .menu6 {
	color: #ff6a13;
}
.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: #ff6a13;
}


/*--------------------------------------------------------------
	# 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::before {
	content: "";
    background: rgba(6, 12, 34, 0.0);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#home .home-container {
	background: url(../img/banner/banner.png) center no-repeat;
	background-size: cover;
	position: relative;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	color: #fff;
	justify-content: center;
	align-items: center;
	-webkit-box-orient: vertical;	
}
#home .text-sec{
	padding-top:120px;
	padding-bottom:120px;
	text-align: center;
}
#home .eventname {
	padding-top: 60px;
	font-size: 50px;
	font-weight: 200;
	margin-bottom: 0px;
	text-transform:uppercase;
}
#home .tagline {
	font-size: 40px;
    font-weight:800;
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
	padding:0;
	display:table;
	margin:auto;
	padding:10px;
	text-transform:uppercase;
}
#home .webinar {
	font-size: 32px;
    font-weight:700;
    margin: 45px auto 0px;
    line-height: 1.4;
	padding:0;
	display:table;

	padding:10px;
	text-transform:uppercase;
}
#home .date {
	font-size: 20px;
    font-weight:700;
    margin-bottom: 5px;
    line-height: 1.6;
	text-transform:uppercase;
}
#home .date span{
	
	font-size: 22px;
}
#home .register-button {
	color: #000;
	background: linear-gradient(to right, #ccaa39, #f5da45,#c3a92f,#ccaa39, #f5da45,#c3a92f);
	padding: 7px 22px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 800;
	font-size: 14px;
    line-height: 22px;
    white-space: nowrap;
    text-transform: uppercase;
    border: none;
    display: inline-block;
    position: relative;
	min-width:250px;
	margin:20px 10px 60px;
}
#home .register-button:hover,
#home .register-button:focus {
	background: #fff;	
	cursor:pointer;
}
/* ----------------------------
	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: none;
	background-image: linear-gradient(45deg, #f03481, #fc6a13);
	text-transform: uppercase;
	border-radius: 10px;
	display: inline-block;
    cursor: pointer;
    position: relative;
}

#home .about-btn:hover {
	background-image: linear-gradient(45deg, #f03481, #fc6a13);
	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;
}
/*-------------------------------------------------------------
	# Main
--------------------------------------------------------------*/


/*-------------------------------------------------------------
	# Summit Objective Section 
--------------------------------------------------------------*/

.summit_objective {
	background: #fff;
	padding: 30px 0;
	color:#000;
	background: url(../img/banner/overview-banner.png) top center no-repeat;
    background-size: cover;
    position: relative;
}

.summit_objective .section-header h2 {
	font-size: 40px;
	color: #e61061;
	font-weight:800;
	padding:20px 0;
	background-color: #f3ec78;
    background-image: linear-gradient(45deg, #f03481, #fc6a13);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}
.summit_objective .section-header::before {
	content: "";
	position: absolute;
	display: block;
	width: 300px;
	height: 2px;
	background: #fff0;
	bottom: 0;
	left: calc(5% - 50px);
}

.summit_objective ul{
	font-size: 22px;
    line-height: 1.3;
    padding-bottom: 10px;
}
.summit_objective ul 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;
}
#speakers .section-header h2 {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
    color: #e61061;
    display: table;
    margin: auto;
    text-align: center;
    padding: 10px 20px;
	background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 8px, transparent 8px) 0% 0%/10px 10px no-repeat,
            radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px) 100% 0%/10px 10px no-repeat,
            radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px) 0% 100%/10px 10px no-repeat,
            radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100% 100%/10px 10px no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 4px) calc(100% - 20px) no-repeat,
            linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 20px) calc(100% - 4px) no-repeat,
            linear-gradient(294deg, #f03580 16.894%, #fb6915 33.11%, #fb6719 94.849%, #f23e6d 100%);
border-radius: 10px;
box-sizing: border-box;
}
#speakers .section-header::before {
    content: "";
    position: absolute;
    display: block;
    width: 300px;
    height: 0px;
    background: #fff0;
    bottom: 0;
    left: calc(5% - 50px);
}
.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: 5px;
	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;
}
#speakers .owl-nav {
    margin-top: 5px;
    text-align: center;
    display: block; 
    font-size: 90px;
	font-weight: 200;
}
#speakers .owl-prev {
    position: absolute;
	top: 37%;
	left: -30px;
}
#speakers .owl-next {
    position: absolute;
	top: 37%;
	right: -30px;
}
.modal-backdrop {
	position: absolute;
}
.speaker-bio{
	margin:55px 0;
}
.speaker-bio .modal-footer {
  
    margin-bottom: 30px;
}
.bioimg {
	padding-left: 15px;
	padding-bottom: 15px;
	float: right;
}

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

.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 {
	align-items: center;
	margin-top: 15px;
	margin-left: 0;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 0px;
display: table;;
	padding: 12px 30px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: none;
	background-image: linear-gradient(45deg, #f03481, #fc6a13);
	text-transform: uppercase;
	border-radius: 10px;
	text-align:center;
	max-width:300px;
	margin:auto;
}

#about .about-btn:hover {
		background-image: linear-gradient(45deg, #f03481, #fc6a13);
	color: #ffffff;
}
#about .vpcio {
	color:#000;
	  font-weight: 600;
}
#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;
	position: absolute;
    left: 0;
    right: 0;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 0px;
display: table;
	padding: 12px 30px;
	transition: 0.5s;
	line-height: 1;
	color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: none;
	background-image: linear-gradient(45deg, #f03481, #fc6a13);
	text-transform: uppercase;
	border-radius: 10px;
	text-align:center;
	max-width:300px;
	margin:auto;
}

#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 30px 0;
	background: linear-gradient(to right, #0a0941, #000);
	min-height: 300px;
}
#vip-visitor-sec{
	background-color: #fff;
	padding:70px 30px;
	color:#000;
}
#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: url(../img/banner/footer-bg.png) top center no-repeat;
    background-size: cover;
    position: relative;
	padding: 0 0 0 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top {
	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: #000;
	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;
	}
	
	#home .power-logo {
		width: 40%;
		margin-bottom: 40px;
	}
	
	#home .timer-banner #seconds {
		font-size: 25px;
	}
	
	#home .timer-banner span {
		font-size: 28px;
	}
	
	#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;
		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 .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 .menamap {
		width: 80%;
		margin-left: 10%;
		padding: 30px 0;
	}
	
	#timer-sec .timer-banner div {
		padding: 6px 0px;
	}
	
	#timer-sec .timer-banner #days,
	#timer-sec .timer-banner #hours,
	#timer-sec .timer-banner #minutes,
	#timer-sec .timer-banner #seconds {
		font-size: 30px;
	}
	
	#timer-sec .timer-banner #seconds {
		font-size: 25px;
	}
	
	#timer-sec .timer-banner span {
		font-size: 16px;
	}
	
	#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;}

@media (max-width: 998px) {
	#home .home-container {
		top: 0px;
	}
	#home .eventname {
		font-size: 30px;
		padding:0;
	}
	#home .eition {
		font-size: 19px;
		margin: 0 0 15px;
	}
	#home .webinar {
		font-size: 27px;
	}
	#speakers .speaker .details h3 {
		font-size: 16px;
	}
	#speakers .owl-nav{display:none;}
}
@media (max-width: 450px) {
	#home .home-container {
		left: 0;
		padding: 0 20px;
	}
	
	#home .text-sec {
		margin-left: 20px;
	}
	#home .eventname {
		font-size: 20px;
		padding:0;
	}
	#home .eition {
		font-size: 17px;
		margin: 0 0 15px;
	}
	#home .webinar {
		font-size: 27px;
	}
	.summit_objective .section-header h2 {
    font-size: 25px;
	    padding: 0;
	}
	.summit_objective p {
    font-size: 16px;
	}
	.summit_objective ul {
    font-size: 17px;}
	.summit_objective ul li {
    font-size: 15px;}
	#about .aboutuniphoe h1 {
    font-size: 28px;
	}
}