/*--------------------------------------------------------------
	# 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: #f7dc47;
	--hover: #ba9533;
	--mainbg: #fddd30;
	--hoverbg: #c9b033;
	--button-color: #fff;
}
html{
	    overflow-x: hidden;
}
body {
	font-family: 'Montserrat', sans-serif;
	z-index: 99;
	overflow-x: hidden;
	
}

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: 400;
	color:#fff;
}
.owl-prev {
    position: absolute;
	top: 25%;
	left: -10px;
}
.owl-next {
    position: absolute;
	top: 25%;
	right: -10px;
}
.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: #ddd !important;	
}
.owl-dot.active {
	background-color: #43d7dd  !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 var(--main);
}

.back-to-top i {
	font-size: 28px;
	color: var(--hover);
	line-height: 0;
}

.back-to-top:hover {
	background: #fff0;
	border: 1px solid var(--hover);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}
/*--------------------------------------------------------------
	# Header
--------------------------------------------------------------*/
#header {
	height: 70px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 999;
	border-bottom: 0px solid hsla(0, 0%, 100%, 0.1);
 /*background-image: linear-gradient(to right, #d5b500, #108a8a);*/
 background: #fff!important;
}

#header.header-scrolled,
#header.header-inner {
 background: #fff!important;
	height: 70px;
	
}
#header #logo {
	color:#ffff
}
#header #logo img {
	margin: 0;
    max-height: 80px;
      padding: 10px;
}

@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: #fff;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    padding: 6px 4px;
    margin-left: 20px;
    text-transform: uppercase;
}

.navbar a:hover,
.navbar li:hover>a {
	color: var(--main);
}
/*--------------------------------------------------------------
	# Mobile Navigation Menu
--------------------------------------------------------------*/

.mobile-nav-toggle {
	color: #000;
	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, #1f8d7f, #d4b501de);
    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;*/
}

.default-button:hover,
.default-button:focus {
	background: linear-gradient(to right, #108a8a, #d5b500);
	color:#fff;
}
.bt-button {
    background: linear-gradient(to right, #d5b500, #108a8a);
    border: none!important;
    padding: 7px 22px!important;
    margin: 0 0 0 15px;
    border-radius: 0px;
    transition: all ease-in-out 0.3s;
    font-weight: 500!important;
    line-height: 1;
    font-size: 16px;
    line-height: 22px;
    white-space: nowrap;
    text-transform: uppercase;
    border: 2px solid var(--main);
}
.bt-button:hover {
    background: linear-gradient(to right, #108a8a, #d5b500) !important;
}
.model-close-button {
	color: var(--button-color);
	background: linear-gradient(to right, #d5b500, #108a8a);
	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: linear-gradient(to right, #108a8a, #d5b500);
}

/*--------------------------------------------------------------
	# 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.8); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
}
#home .home-container {
	/*background: url(../img/banner/banner1.png) bottom no-repeat;*/
	/*background-size: cover;*/
	/*position: relative;*/
	/*bottom: 0;*/
	/*top: 0;*/
	/*left: 0;*/
	/*right: 0;*/
	/*color: #000;*/
	/*justify-content: center;*/
	/*align-items: center;*/
	/*-webkit-box-orient: vertical;	*/
	position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    -webkit-box-orient: vertical;
    display: flex;
    padding-bottom: 40px;
}
#home .text-sec{
	padding-top:120px;
	text-align: center;
}
#home .eventname {
	padding-top: 60px;
	font-size: 70px;
	font-weight: 800;
	margin-bottom: 0px;
}
#home .banner-logo{
	margin:	auto;
	width:40%;
	margin-bottom:40px;
}
#home .tagline {
	font-size: 40px;
    font-weight:500;
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
	padding:0;
	display:table;
	margin:auto;
	padding:10px;
	border:2px solid var(--main);
}
#home .date {
	font-size: 20px;
    font-weight:700;
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 1.6
}
#home .date span{
	
	font-size: 40px;
}
#home .register-button {
	color: #000;
	background:linear-gradient(to right, #d5b500, #108a8a)!important;;
	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 20px;
}
#home .register-button:hover,
#home .register-button:focus {
	background: linear-gradient(to right, #108a8a,#d5b500)!important;;	
	cursor:pointer;
}
/* ----------------------------
	Video
--------------------------------*/
#myVideo {
    position: relative;
    width: 100%;
    max-height: 100vh;
    object-fit: fill;
}
/* ----------------------------
	Timer-sec
--------------------------------*/
#timer-sec {
	margin:auto;
	padding:0 0 0 0;
	margin-top:-5px;
}
#timer-sec .content{
	padding: 0px 0;
}
#timer-sec .timer-banner{
	margin:auto;
	justify-content: center;
	align-items: center;
	-webkit-box-orient: vertical;
	display: flex;
}

#timer-sec .timer-banner div {
	display: inline-block;
	line-height: 1;
	padding: 6px 4px;
	font-size: 40px;
	text-align:center;
}

#timer-sec .timer-banner #days,
#timer-sec .timer-banner #hours,
#timer-sec .timer-banner #minutes,
#timer-sec .timer-banner #seconds {
	font-size:28px;
	font-weight: 800;
}

#timer-sec .timer-banner #seconds {
	font-size: 28px;
}

#timer-sec .timer-banner span {
	display: block;
	font-size: 20px;
}
/* ----------------------------
	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:#fff;
}

.section-header p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	color: #9195a2;
}
/*-------------------------------------------------------------
	# Summit Objective Section 
--------------------------------------------------------------*/
#program{
	padding: 0 0;
    z-index: 99;
	text-align: left;
	background: linear-gradient(to right, #ccaa39, #f5da45,#c3a92f);
    background-size: cover;
    position: relative;
    color: #000;
	background-color:#e9e7e7;
}
.summit_objective{background:#fff;
	padding:30px 20px;}

#program .section-header h2 {
 background: linear-gradient(to right, #d5b500, #108a8a)
 display: inline-block;
 font-size:24px;
 padding:10px 20px ;
 font-weight:600;
}
#program img{
	height:auto;
}
#program .heading{ 
	font-weight:800;
	font-size:22px;
}
#program .text-field {
	font-size: 15.6px;
    line-height: 1.5;
	margin-bottom:9px;
}
/*--------------------------------------------------------------
	# counter
--------------------------------------------------------------*/
#counter {	
	padding: 60px 0 40px 0;
    background: url(../img/banner/counter-bg.png) top center no-repeat;
    background-size: cover;
    position: relative;
}
#counter .count-num {
	font-weight: 600;
	font-size: 42px;
	letter-spacing: -1px;
	color:var(--main);
	text-align: center;
}
#counter .smalltext {
	font-size: 16px;
	text-transform: uppercase;
	font-weight:400;
	color:var(--main);
	text-align: center;
}
#counter .small-icon {
	width: 40%;
}
/*-------------------------------------------------------------
	# regions-covered Section   
--------------------------------------------------------------*/
#regions-covered{
	padding: 60px 0 40px 0;
}
#regions-covered .section-header h2{color:#000}
#regions-covered .img{
	 position: relative;
}
#regions-covered .percentage{
	 position: absolute;
   font-size: 20px;
    font-weight: 600;
    text-align: center;
	left:0;
	width: 100%;
	bottom: -15px;
}
/*-------------------------------------------------------------
	# key-topics Section   
--------------------------------------------------------------*/
#key-topics{
	padding: 60px 0 40px 0;
    background: url(../img/banner/key-bg.png) top center no-repeat;
    background-size: cover;
    position: relative;
}
#key-topics .section-header h2 {
	color:#fff;
}
#key-topics img {
	width:40%;
	margin-left:30%;
}
#key-topics .title{
	font-size:20px;
	color:#fff;
	line-height:1.3;
	padding-bottom:10px;
	font-weight:600;
	max-width:600px;
	margin:auto;
	text-align:center;
	margin-bottom:30px;
}
#key-topics .title span{font-size:32px; }
#key-topics .owl-dots {
	display:none;
}
#key-topics .owl-nav {
    margin-top: 5px;
    text-align: center;
    display: block; 
    font-size: 90px;
	font-weight: 200;
	color:#fff;
}
#key-topics .owl-prev {
    position: absolute;
	top: 37%;
	left: -30px;
}
#key-topics .owl-next {
    position: absolute;
	top: 37%;
	right: -30px;
}
/*-------------------------------------------------------------
	# 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 45px;
	box-shadow: 0px 3px 50px #00000029;
	margin:0 15px;
}

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

#feactureddiscussion {
	padding: 60px 0 40px 0;
}
#feactureddiscussion .testimonial-item {
	padding: 60px 40px;
	background: #9119F5 0% 0% no-repeat padding-box;
	margin:0 10px;
}
#feactureddiscussion .testimonial-item img{
	width:40px;
}
#feactureddiscussion .testimonial-item p{
	color:#fff;
	padding:10px 0;
	line-height:1.4;
}
#feactureddiscussion .owl-carousel .owl-stage{
	display: flex;
	}
#feactureddiscussion .article-items {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
#feactureddiscussion .aticle-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#feactureddiscussion .owl-dots {
	display:none;
}
#feactureddiscussion .owl-nav {
    margin-top: 5px;
    text-align: center;
    display: block!important; 
    font-size: 30px;
	font-weight: 400;
	color:#9119F5;
	position: absolute;
	top:100%;
	left:1%;
}
#feactureddiscussion .owl-prev span {
	border: 1px solid #9119F5;
    border-radius: 50%;
    padding: 0px 16px 5px;
    margin-right: 10px;
}
#feactureddiscussion .owl-next span{
	border: 1px solid #9119F5;
    border-radius: 50%;
    padding: 0px 16px 5px;
    margin-right: 10px;
}
/*-------------------------------------------------------------
	#Speaker Section
--------------------------------------------------------------*/
#speakers {
	padding: 60px 0 60px 0;
    z-index: 99;
    /* background: url(../img/banner/speaker-bg.jpg) top center no-repeat; */
    /* background: linear-gradient(to right, #319173, #c1b10f)!important;
	background-size: cover; */
    position: relative;
}


 .speaker_box {
  /*height: 80vh;*/
  /*max-width: 25%;*/
  margin-left: 8px;
  margin-right: 8px;
  /*margin-bottom: 20px;*/
  z-index: 10;
  border-width: 7px; 
  border-style: solid; 
  color: transparent;
  transition: border-color .1s infinite; 
 
}
.speaker_box:hover {
  animation: borderAnimation 3s linear infinite; 
}

@keyframes borderAnimation {
  100% {
    border-image: linear-gradient(180deg, #D6B500 0%, #D6B500 0%,#D6B500 56%, #D6B500 96%) 1;
  }

  50% {
    border-image: linear-gradient(-180deg, #D6B500 0%, #015538 0%, #D6B500 0%, #D6B500 0%) 1
  }
  0% {
    border-image: linear-gradient(90deg, #D6B500 0%, #D6B500 0%, #D6B500 0%, #D6B500 0%, #D6B500 0%) 1; /* Ending border color */
  }
}

#speakers .section-header h2 {
	color:#000;
	text-align:left;
}
#speakers .section-header p {
	color:#fff;
	text-align:left;
	max-width:500px;
	font-size:13px;
}
#speakers .section-header h2 span {
	float:right;
	font-size:18px;
	font-weight:400;
	padding-top:20px;
}
#speakers .section-header h2 span a {
	color:#fff;
}
#speakers .speaker {
	position: relative;
	margin-bottom: 40px;
	margin-left:0!important;
	margin-right:0!important;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 7px 15px 0 rgb(211 181 2), 0 1px 4px 0 rgb(53 146 113)
}
#speakers .speaker .speaker-img {
    padding:20px;
	border-radius: 0%;
}
#speakers .company-logo img{
	width:100%!important;
	margin:0!important;
}
#speakers .speaker .details {	
	padding-bottom: 0px;
	min-height: 107px;
}
#speakers .speaker .details h3 {
	padding:0 0;
	color: #1b2a51;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	margin: 0;
	text-transform: capitalize;
}
#speakers .speaker .details p {
	padding: 0 5px;
	color: #1a2950;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}
#speakers .spk-biotext {
	padding-top:5px;
	font-size: 14px;
	font-style: italic;
	padding-right: 20px;
	padding-left:20px;
}
#speakers .spk-biotext .spkprofile {
	cursor: pointer;
	color: #000;
    left: 0;
    right: 0;
    bottom:5px;
}
#speakers .spk-biotext .spkprofile i {
	color: #5F29F4;
    font-weight: 900;
    font-size: 17px;
}
#speakers .spk-biotext .likedinpfrofile {
	float: right;
	
}

#speakers .spk-biotext .likedinpfrofile .bi {
	font-size: 20px;
}
#speakers .spk-biotext .likedinpfrofile a {
	margin-right: 3px;
	color: #5F29F4;
}

#speakers .spk-biotext.likedinpfrofile a:hover {
	color: #9F14F5;
}

.speaker-bio .modal-dialog {
    max-width: 750px;
	    z-index: 1000!important;
}
.speaker-bio .bioimg {
	padding-left: 15px;
	padding-bottom: 15px;
	float: right;
}
.speaker-bio .modal-title {
	color: #000;
}
.speaker-bio p {
	color: #000;
}

@media(min-width: 996px) and (max-width: 1200px) { 
	#speakers .speaker .details {
		width: 100.7%;
	}	
}
@media(max-width: 767px) { 
	#speakers .speaker .details {
		width: 100%;
	}
	.speaker-profile {
		width: 98.2%;
	}
td {
    font-size: 12px !important;
}
	
}
/*-------------------------------------------------------------
	# attend Section
--------------------------------------------------------------*/
#attend{
	padding: 60px 0 40px 0;
    z-index: 99;
    background: url(../img/banner/attendee.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
}
#attend .section-header h2{
	color: var(--main);
	font-weight:600;
}
#attend ul{
	 margin-bottom: 0;
}
#attend ul li{
	font-size: 18px;
	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: 99;
	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: 99;
	text-align: center;
    background: url(../img/banner/sector-bg.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
} 
.voicetechin img {
	width: 100%;
	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: 30%;
	left: -30px;
}
.voicetechin .owl-next {
    position: absolute;
	top: 30%;
	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: 99;
	text-align: center;
    background: url(../img/banner/media-bg.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
    color: #000;
}
#mediac  .section-header h2 {
	color:#000;
}
#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;
}


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

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

#partners .section-header h2 {
	text-align: center;
	font-size: 28px;
	background-color: #fff;
	font-weight: 600;
	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
--------------------------------------------------------------*/
.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;
}
.register-button:hover {
	 border: 1px solid #ccaa39;
	 background: #fff;
}
.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: 15px;
}

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

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

.Contact-Msg {
	color:#fff;
}
#thank-you-toast{
    position: relative!important;
}
#clients {
	padding: 60px 0;
	background-color:#fff;
}
#clients .section-header h2 {
    font-size: 20px;
	color:#000;
}
#clients .our_client_logo {
	max-width: 80%;
    opacity: 0.9;
    transition: 0.3s;
    padding: 15px 4px;
    width: 90%;
}
/*--------------------------------------------------------------
	# 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 {
	padding: 20px 0 20px 0;
    z-index: 99;
    background: url(../img/banner/footer-bg.png) top center no-repeat;
    background-size: cover;
    position: relative;
    color: #000;
}

#footer .footer-top {
	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 .ucon-logo1 {
	width: 100%;
	margin-bottom: 10px;
	margin-left: -20px;
}

#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 var(--main);
}

#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: var(--main);
	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;
}
#footer .cr{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 {
		padding:70px;
		position:relative;
	}
	#home .text-sec {
		padding-top: 0px;
	}
	#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: 40px;
		font-weight: 500;
		margin: 5px 0px;
	}
	#home .date {
		font-size: 40px;
		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:auto;
		min-width:210px;
	}
	#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) {
	#timer-sec {
		margin: auto;
		padding: 0 0 10px 0;
		margin-top: -5px;
	}
	#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;
	}
	#program img {
    height: auto;
}
	.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;
	}
	#counter .left-text {
		padding: 30px;
	}
	
	#speakers .justify-content-center {
		width: 100%;
	}
	
	#attend h1 {
		font-size: 27px;
	}
	
	.voicetechin img {
		margin: 5px 0;
		padding:10px 60px;
	}
	.section-header h2 {
		font-size: 20px;
	}
	#clients {
		padding: 30px 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: 75%;
	}
	#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;
		
	}
}


.mobile-only {display:none!important;}
@media(max-width:767px) {
	.desktop-only {display:none;}
	.mobile-only {display:block!important;}
}
.displaydetails .table {
    border: 1px solid #fff;
    color: #fff;
    margin-top: 20px;
}
#in_visitor-sec, #visitor-sec {
    position: relative;
    color: white;
    margin: auto;
    
}
