/*--------------------------------------------------------------
	# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,600;1,800;1,900&display=swap');

:root {
	--main: #9119f5;
	--hover: #758ba7;
	--mainbg: #204b9b;
	--hoverbg: #92b9e8;
	--button-color: #fff;
}

body {
	font-family: 'Montserrat', sans-serif;
	z-index: 99;
	overflow-x: hidden;
	padding: 0;
	margin: 0;
}

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 10px 0;
	padding: 0;
}

img {
	max-width: 100%
}

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

.v-hidden {
	visibility: hidden;
}

.owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 45px;
	font-weight: 200;
	color: #000;
}

.owl-prev {
	position: absolute;
	top: 10%;
	left: -30px;
}

.owl-next {
	position: absolute;
	top: 10%;
	right: -30px;
}

.owl-dots {
	margin-top: 5px;
	text-align: center;
}

.owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ccc !important;
}

.owl-dot.active {
	background-color: #000 !important;
}


/*--------------------------------------------------------------
	# 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: 9996;
	background: #fff0;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 1px solid #9119F5;
}

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

.back-to-top:hover {
	background: #fff0;
	border: 1px solid #9119F5;
}

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

/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
	height: 80px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 99999;
	border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
	background: linear-gradient(to right, #0a094100, #0000);
}

#header.header-scrolled,
#header.header-inner {
	background-image: linear-gradient(to right, #0a0941, #000);
	height: 80px;

}

#header #logo {
	color: #ffff
}

#header #logo img {
	padding: 5px;
	margin: 0;
	max-height: 80px;
}

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

/*--------------------------------------------------------------
	# 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 a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
	padding: 6px 4px;
	margin-left: 10px;
	text-transform: uppercase;
}

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

/*--------------------------------------------------------------
	# Mobile 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-nav .dropdown-menu {
	position: relative;
	overflow: hidden;
}

.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: #000000;
	background: #fff;
	padding: 7px 22px !important;
	margin: 0 0 0 15px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 700 !important;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: none;
	display: inline-block;
	position: relative;
}

.default-button:hover,
.default-button:focus {
	background: linear-gradient(to right, #5e2af4, #821ef5, #a113f5);
	color: #fff;
}

.bt-button {
	color: #fff !important;
	background: #fff0;
	padding: 7px 22px !important;
	margin: 0 0 0 15px;
	border-radius: 0px;
	transition: all ease-in-out 0.3s;
	font-weight: 700 !important;
	line-height: 1;
	font-size: 16px;
	line-height: 22px;
	white-space: nowrap;
	text-transform: uppercase;
	border: 2px solid #fff;
	;
}

.model-close-button {
	color: var(--button-color);
	background: linear-gradient(to right, #5e2af4, #821ef5, #a113f5);
	padding: 7px 22px;
	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: none;
	margin-left: 15px;
}

.model-close-button:hover,
.model-close-button:focus {
	color: #000;
	background: #fff;
}

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

/* ----------------------------
	Sections Header
--------------------------------*/
.section-header {
	margin-bottom: 20px;
	padding-bottom: 7px;
	text-align: center;
}

.section-header h2 {
	font-size: 32px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0px;
	color: #000;
}

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

/*-------------------------------------------------------------
	# Summit Objective Section 
--------------------------------------------------------------*/
#program {
	padding: 60px 0 40px 0;
	z-index: 999;
	text-align: left;
	background: url(../img/banner/overview-banner.png) top center no-repeat;
	background-size: cover;
	position: relative;
	color: #000;
	background-color: #e9e7e7;
}

#program .text-sec {
	background-color: #fff0;
	padding: 30px;
}

#program .heading {
	font-weight: 800;
	font-size: 22px;
}

#program .text-field {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 9px;
}

/*--------------------------------------------------------------
	# counter
--------------------------------------------------------------*/
#counter {
	padding: 0;
	z-index: 999;
	background: transparent;
	background-size: cover;
	position: relative;
	color: #fff;
}

#counter .col-md-6 {
	padding: 0;
}

#counter .left-text {
	background: transparent linear-gradient(180deg, #140C49 0%, #3C074D 100%) 0% 0% no-repeat padding-box;
	padding: 60px 40px 60px 120px;
	;
}

#counter .left-text h2 {
	padding-bottom: 20px;
	font-size: 25px;
	font-weight: 800;
	text-transform: uppercase;
}

#counter .right-text {
	background: transparent linear-gradient(180deg, #5F29F4 0%, #9F14F5 100%) 0% 0% no-repeat padding-box;
	padding: 40px;
	font-size: 17px;
	line-height: 1.5;
}

#counter .small-icon {
	width: 30%;
	margin-left: -10px;
	margin-bottom: -15px;
}

#counter .count-num {
	font-weight: 400;
	font-size: 30px;
	color: #fff;
}

#counter .smalltext {
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 40px;
}

#counter .owl-nav {
	color: #fff;
	font-weight: 600;
}

#counter .owl-dot {

	background-color: #fff !important;
}

#counter .owl-dot.active {
	background-color: #2f2f2f !important;
}

/*-------------------------------------------------------------
	# whyattend Section 
--------------------------------------------------------------*/
#whyattend {
	padding: 60px 0 40px 0;
	background: url(../img/banner/whyindia.png) top center no-repeat;
	background-size: cover;
	position: relative;
}

#whyattend .col-md-3 {
	background-color: #fff;
	padding: 40px 35px;
	box-shadow: 0px 3px 50px #00000029;
	margin: 0 15px;
	width: 22%;
}

@media (max-width: 1200px) {
	#whyattend .col-md-3 {
		width: 45%;
		margin: 15px auto;
	}
}

@media (max-width: 767px) {
	#whyattend .col-md-3 {
		width: 90%;
		padding: 25px 10px;
		margin: 15px auto;
	}
}

#whyattend img {
	width: 30px;
}

#whyattend h3 {
	font-size: 24px;
	font-weight: 600;
	padding: 10px 0;
	margin: 0;
}

#whyattend p {
	font-size: 15px;
	color: #757095;
	padding: 0;
	margin: 0;
	line-height: 1.4;
}

#whyattend .owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 45px;
	font-weight: 600;
	color: #fff;
}

#whyattend .testimonial-item {
	padding: 20px;
	background: #fff;

}

#feactureddiscussion {
	padding: 60px 0 40px 0;
	position: relative;
}

#feactureddiscussion .testimonial-item {
	background: linear-gradient(145deg, #9119F5, #11165b);
	border-radius: 20px;
	padding: 30px 20px;
	color: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	height: 100%;
	transition: transform 0.3s ease;
	padding: 40px 20px;
	/* background: #9119F5; */
	margin: 0 10px;
	height: 200px;
}

#feactureddiscussion .testimonial-item img {
	width: 40px;
}

#feactureddiscussion .testimonial-item p {
	color: #fff;
	padding: 10px 0;
	line-height: 1.4;
}

#feactureddiscussion .owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 90px;
	font-weight: 200;
	color: #9119F5;
}

#feactureddiscussion .owl-prev {
	position: absolute;
	top: 14%;
	left: -30px;
}

#feactureddiscussion .owl-next {
	position: absolute;
	top: 14%;
	right: -30px;
}

.icon-wrapper.mx-auto.mb-3 {
	font-size: 25px;
}

/*-------------------------------------------------------------
	#Speaker Section
--------------------------------------------------------------*/


/*-------------------------------------------------------------
	# attend Section
--------------------------------------------------------------*/
#attend {
	padding: 60px 0 40px 0;
	z-index: 98;
	background: url(../img/banner/attendee.jpg) top center no-repeat;
	background-size: cover;
	position: relative;
	color: #fff;
}

#attend .section-header h2 {
	color: #ff8600;
}

#attend ul li {
	font-size: 19px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 5px;
	padding-left: 1px;
}

/*-------------------------------------------------------------
	# selectos-covered Section 
--------------------------------------------------------------*/
#selectos-covered {
	padding: 60px 0 40px 0;
	z-index: 999;
	text-align: center;
	background: url(../img/banner/sector-bg.jpg) top center no-repeat;
	background-size: cover;
	position: relative;
	color: #fff;
}

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

#selectos-covered .outer-box {
	background-color: #eaf7fd;
	padding: 10px;
	margin-bottom: 30px;
}

#selectos-covered .outer-box img {
	width: 200px;
}

#selectos-covered h3 {
	font-weight: 600;
	font-size: 23px;
	padding: 10px 0;
	color: #020580;
}

/*-------------------------------------------------------------
	# voicetechin Section 
--------------------------------------------------------------*/

.voicetechin {
	padding: 60px 0 60px 0;
	z-index: 999;
	text-align: center;
	background: url(../img/banner/sector-bg.png) top center no-repeat;
	background-size: cover;
	position: relative;
	color: #fff;
}

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


.voicetechin img {
    width: 60% !important;
    margin: 30px 0;
    z-index: 99 !important;
    cursor: pointer;
}
.voicetechin-popup .modal-dialog {
	max-width: 900px;
	margin: 1.75rem auto;
}

.voicetechin-popup .text,
.voicetechin-popup .modal-title3,
.voicetechin-popup .modal-title2 {
	color: #000;
}

.voicetechin .owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 90px;
	font-weight: 200;
	color: #fff;
}

.voicetechin .owl-prev {
	position: absolute;
	top: 26%;
	left: -30px;
}

.voicetechin .owl-next {
	position: absolute;
	top: 26%;
	right: -30px;
}

.voicetechin .owl-dots {
	margin-top: 5px;
	text-align: center;
}

.voicetechin .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

.voicetechin .owl-dot.active {
	background-color: #43d7dd !important;
}

/*--------------------------------------------------------------
	# mediac
--------------------------------------------------------------*/
#mediac {
	padding: 60px 0 60px 0;
	z-index: 999;
	text-align: center;
	background: url(../img/banner/media-bg.jpg) top center no-repeat;
	background-size: cover;
	position: relative;
	color: #fff;
}

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

#mediac .count-num {
	font-weight: 600;
	font-size: 40px;
	letter-spacing: -1px;
	margin-top: 20px;
}

#mediac .smalltext {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
}

#mediac .owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 45px;
	font-weight: 200;
	color: #000;
}

#mediac .owl-prev {
	position: absolute;
	top: 10%;
	left: -30px;
}

#mediac .owl-next {
	position: absolute;
	top: 10%;
	right: -30px;
}

#mediac .owl-dots {
	margin-top: 5px;
	text-align: center;
}

#mediac .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

#mediac .owl-dot.active {
	background-color: #43d7dd !important;
}

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

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

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

/*--------------------------------------------------------------
	# attending-companies
--------------------------------------------------------------*/
#attending-companies {
	background: #fff;
	padding: 50px 0;
}

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

#attending-companies .testimonial-item {
	padding: 0 20px
}

#attending-companies .owl-nav {
	margin-top: 5px;
	text-align: center;
}

#attending-companies .owl-dots {
	margin-top: 5px;
	text-align: center;
}

#attending-companies .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

#attending-companies .owl-dot.active {
	background-color: #43d7dd !important;
}

/*--------------------------------------------------------------
	# 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;
	color: #fff;
}

.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;
}

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

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

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

#clients {
	padding: 60px 0;
	background-color: #fff;
}

#clients .our_client_logo {
	max-width: 80%;
	opacity: 0.9;
	transition: 0.3s;
	padding: 15px 4px;
	width: 90%;
}

#clients .owl-nav {
	margin-top: 5px;
	text-align: center;
	display: block !important;
	font-size: 45px;
	font-weight: 200;
	color: #000;
}

#clients .owl-prev {
	position: absolute;
	top: 10%;
	left: -30px;
}

#clients .owl-next {
	position: absolute;
	top: 10%;
	right: -30px;
}

#clients .owl-dots {
	margin-top: 5px;
	text-align: center;
}

#clients .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd !important;
}

#clients .owl-dot.active {
	background-color: #43d7dd !important;
}

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

#vip-registration {
	padding: 100px 0 30px 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: 22px;
}

#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 {
	text-transform: Uppercase;
	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;
}

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

.page-not-found {
	background: #181818;
	padding: 300px 0;
}

.page-not-found .heading {
	color: #fff;
	font-size: 40px;
	text-align: center;
}

.page-not-found .btn-danger {
	padding: 10px 30px;
}

.page-not-found .btn-danger a {
	color: #fff;
}

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

#terms-conditions {
	padding-top: 8%;
	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-color: #0B0A34;
	padding: 0 0 0 0;
	color: #eee;
	font-size: 14px;
}

#footer .footer-top {
	background-color: #0B0A34;
	padding: 60px 0 30px 0;
}

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

#footer .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 .footer-top .ucon-logo {
	width: 70%;
	margin-bottom: 10px;
}

#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;
	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: 18px;
	color: #fff;
}

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

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

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

#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: #0a58ca;
	font-size: 18px;
	font-weight: 500;
}

#footer .footer-top .footer-links ul li {

	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;
}

@media(max-width:767px) {
	#home {
		margin-bottom: 0px;
	}

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

	#home .home-container::before {
		content: "";
		background: rgba(6, 12, 34, 0);
		position: absolute;
		bottom: 0;
		top: 0;
		left: 0;
		right: 0;
		height: auto;
		padding-bottom: 40px;
	}

	#home .home-container {
		margin-top: -5px;
		position: absolute;
		bottom: 0;
		top: 10px;
		left: 0;
		right: 0;
		color: #000;
		justify-content: center;
		align-items: center;
		-webkit-box-orient: vertical;
		display: block;
		padding-bottom: 40px;
	}

	#timer-sec {
		margin: auto;
		padding: 0px 0 0px 0 !important;
		margin-top: 0px !important;
	}

	#home .banner-logo {
		border: none;
		padding: 0;
		margin: 0;
		width: 100%;
	}

	#home .eventname {
		padding-top: 60px;
		font-size: 42px;
		font-weight: 800;
		margin-bottom: 0px;
	}

	#home .tagline {
		font-size: 30px;
		font-weight: 500;
		margin: 10px;
	}

	#home .date {
		font-size: 26px;
		font-weight: 500;
		margin-top: 10px;
		margin-bottom: 10px;
		line-height: 1.4;
	}

	#home .d-flex {
		display: block !important;
	}

	#home .d-flex a {
		display: table !important;
		margin: 20px auto;
		min-width: 210px;
		text-transform: capitalize;
		font-weight: 600;
	}

	#home .register-button {
		padding: 7px 22px;
		font-weight: 800;
		font-size: 16px;
		line-height: 22px;
		white-space: nowrap;
	}

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

@media(max-width:767px) {
	#home .tagline {
		font-size: 26px;
		color: #ffffff;
	}

	#home .date span {
		color: #ffffff;
		font-size: 26px;

	}



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

	#program {
		padding: 50px 15px;
	}

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

	#program .heading {
		font-weight: 700;
		font-size: 19px;
		text-align: center;
	}

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

	#program .imgsec {
		order: 1;
	}

	#program .text-sec {
		padding: 10px 0;
	}

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

	#counter .left-text h2 {
		font-size: 22px;
		font-weight: 600;
		text-align: center;
	}

	#counter {
		padding: 0;
		text-align: center;
	}

	#counter .small-icon {
		width: 50%;
		margin: auto;
	}

	#counter .left-text {
		padding: 30px;
	}

	#speakers {
		padding: 30px 0
	}

	#speakers .justify-content-center {
		width: 100%;
	}

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

	.voicetechin {

		padding: 60px 0 !important;
	}

	.voicetechin img {
		margin: 5px 0;
		width: 80% !important;
		padding: 30px;
	}

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

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

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

	#clients .our_client_logo {
		width: 90%;
	}

	#clients .owl-nav {

		display: none !important;

	}

	#ranking .firstcharacter {
		font-size: 100px;
	}

	#ranking .firstcharacterb {
		font-size: 100px;
	}

	#ranking h6 {
		padding-bottom: 20px;
	}

	#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;
	}

	.voicetechin .owl-nav {
		display: none !important;
	}

	#partners {
		padding: 40px 0 !important;
	}
}

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

@media(max-width:767px) {
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block !important;
	}
}

.owl-carousel,
.owl-carousel .owl-item {
	overflow-x: hidden;
}

@media (max-width: 1368px) {
	#organized-by {
		display: none !important;
	}
}

.edition-card {
	background: white;
	border-radius: 15px;
	padding: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	height: 100%;
}

.edition-card:hover {
	transform: translateY(-5px);
}

.edition-header {
	position: relative;
	border-bottom: 2px solid #eee;
}

.badge {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #6229f4;
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: bold;
}

.section-header-featured  {
	font-size: 2.5rem;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
	color: #000;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	font-weight: 700;
}
.section-header-featured h1::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
	/* border-radius: 3px; */
}