.wrapper {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("img/1.jpg");
  background-size: cover;
  filter: blur(0px);
  overflow: hidden;
}

.circle_container {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  transform-origin: left center;
}
.circle_container .circle {
  position: absolute;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.3);
  left: 0;
  opacity: 0;
  -webkit-animation-name: move;
          animation-name: move;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes move {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(70vmin);
    opacity: 0;
  }
}

@keyframes move {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(70vmin);
    opacity: 0;
  }
}
.wrapper .name_container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80vmin;
  height: 80vmin;
  background: rgba(255, 255, 255, 0.0);
  border-radius: 100%;
  box-shadow: inset 0px 0px 30px 30px rgba(200, 200, 200, 0.0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wrapper .name_container > div {
  font-family: "Poppins", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.9);
}
.wrapper .name_container .name {
  font-size: 5.5vmax;
}
.wrapper .name_container .designation {
  margin-top: 10px;
  font-size: 1.5em;
}

/*
* Cards
*/
.custom-cards {
		margin-top: -125px;
}

@media (max-width: 199px) {
		.custom-cards {
				margin-top: 3rem;
		}
}

.custom-cards .col-custom-cards .card {
		bottom: 0;
		position: relative;
}

@media (max-width: 199px) {
		.custom-cards .col-custom-cards .card {
				position: static;
		}
}

/* Custom Screens */
.custom-screens-carousel {
		position: relative;
		z-index: 30;
		margin-top: -860px;
}

@media (max-width: 1025px) {
		.custom-screens-carousel {
				margin-top: -800px;
		}
}


@media (max-width: 991px) {
		.custom-screens-carousel {
				margin-top: -750px;
		}
}

@media (max-width: 539px) {
		.custom-screens-carousel {
				margin-top: -780px;
		}
}


@media (max-width: 413px) {
		.custom-screens-carousel {
				margin-top: -780px;
		}
}

/* Carousel Ipad */
.carousel-ipad {
		border-radius: 0px;
		border: 0px solid #403f44;
		padding: 10px;
		background: #000;
		box-shadow: 0px 5px 50px rgba(0, 0, 0, 0.1);
		position: relative;
}

@media (max-width: 991px) {
		.carousel-ipad {
				padding: 4px;
				border-radius: 0px;
		}
}

.carousel-ipad img {
		border: 1px solid #FFF;
}

.carousel-ipad .carousel-ipad-camera {
		background: #3c3d3d;
		width: 8px;
		height: 8px;
		position: absolute;
		left: 0;
		margin-left: 20px;
		bottom: 50%;
		margin-bottom: -5px;
		border-radius: 100%;
}

.carousel-ipad .carousel-ipad-home {
		background: #F9F9F9;
		box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
		border-radius: 28px;
		width: 40px;
		height: 40px;
		position: absolute;
		right: 0;
		margin-right: 5px;
		bottom: 50%;
		margin-bottom: -20px;
}

.carousel-ipad .carousel-ipad-home:after {
		width: 15px;
		height: 15px;
		margin-top: -8px;
		margin-left: -8px;
		border: 1px solid rgba(0, 0, 0, 0.12);
		border-radius: 4px;
		position: absolute;
		display: block;
		content: '';
		top: 50%;
		left: 50%;
}

@media (max-width: 991px) {
		.carousel-ipad .carousel-ipad-camera, .carousel-ipad .carousel-ipad-home {
				display: none;
		}
}

.carousel-ipad.carousel-ipad-sm {
		padding: 40px;
		border-radius: 25px;
}

@media (max-width: 991px) {
		.carousel-ipad.carousel-ipad-sm {
				padding: 20px;
				border-radius: 12px;
		}
}

 /* Speakers Section */
.speakers-section {
	padding: 100px 5%;
	background-color: var(--dark-color);
}

.speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 60px;
}

.speaker-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.speaker-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.speaker-image {
	height: 300px;
	overflow: hidden;
}

.speaker-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.speaker-card:hover .speaker-image img {
	transform: scale(1.1);
}

.speaker-info {
	padding: 20px;
}

.speaker-name {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}

.speaker-role {
	color: var(--primary-color);
	font-size: 16px;
	margin-bottom: 15px;
}

.speaker-bio {
	font-size: 16px;
	margin-bottom: 20px;
	opacity: 0.8;
}

.speaker-social {
	display: flex;
	gap: 15px;
}

.speaker-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
}

.speaker-social a:hover {
	background-color: var(--primary-color);
	color: var(--dark-color);
}

/* Schedule Section */
.schedule-section {
	padding: 100px 5%;
	background-color: var(--light-color);
	color: var(--dark-color);
}

.tabs {
	display: flex;
	justify-content: center;
	margin: 50px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-button {
	padding: 15px 30px;
	background: none;
	border: none;
	font-size: 18px;
	font-weight: 600;
	color: var(--accent-color);
	cursor: pointer;
	position: relative;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.tab-button::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--primary-color);
	transition: width 0.3s;
}

.tab-button.active {
	opacity: 1;
}

.tab-button.active::after {
	width: 100%;
}

.schedule-timeline {
	max-width: 900px;
	margin: 0 auto;
}

.timeline-item {
	display: flex;
	margin-bottom: 30px;
	position: relative;
}

.timeline-item::after {
	content: '';
	position: absolute;
	left: 60px;
	top: 30px;
	bottom: -30px;
	width: 2px;
	background-color: rgba(44, 62, 80, 0.1);
}

.timeline-item:last-child::after {
	display: none;
}

.timeline-time {
	flex: 0 0 120px;
	font-weight: 700;
	font-size: 18px;
	padding-top: 20px;
	color: var(--primary-color);
}

.timeline-content {
	flex: 1;
	background-color: rgba(44, 62, 80, 0.05);
	border-radius: 10px;
	padding: 25px;
	position: relative;
}

.timeline-content::before {
	content: '';
	position: absolute;
	left: -8px;
	top: 20px;
	width: 16px;
	height: 16px;
	background-color: var(--primary-color);
	border-radius: 50%;
	z-index: 1;
}

.session-title {
	font-size: 20px;
	margin-bottom: 10px;
}

.session-speaker {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--accent-color);
}

.session-description {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.8;
}

 .read-more-btn {
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

/* owl-carousel */

.owl-carousel.custom-nav-1 .owl-nav .owl-prev, .owl-carousel.custom-nav-1 .owl-nav .owl-next {
		width: 50px;
		height: 50px;
		background: transparent;
}

.owl-carousel.custom-nav-1 .owl-nav .owl-prev:before, .owl-carousel.custom-nav-1 .owl-nav .owl-next:before {
		color: #000;
		left: 0 !important;
		top: 1px !important;
		font-size: 16px !important;
}

.owl-carousel.custom-nav-1-pos-1 .owl-nav {
		z-index: 5;
		top: 100%;
		transform: none !important;
}

.owl-carousel.custom-nav-1-pos-1 .owl-nav .owl-prev {
		transform: none !important;
		left: auto;
		top: -62px;
		right: 63px;
}

.owl-carousel.custom-nav-1-pos-1 .owl-nav .owl-next {
		transform: none !important;
		top: -62px;
		right: 12px;
}

.owl-carousel.custom-nav-1-pos-2 .owl-nav .owl-prev {
		margin-left: -25px;
}

.owl-carousel.custom-nav-1-pos-3 .owl-nav {
		margin-top: -45px;
}

.owl-carousel.custom-nav-1-pos-3 .owl-nav .owl-prev {
		margin-left: -25px;
}

.owl-carousel.custom-nav-1-pos-3 .owl-nav .owl-next {
		margin-right: -25px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #D6D6D6;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #FBC105;
}

@media (max-width: 1199px) {
	.owl-carousel.custom-nav-1-pos-4 .owl-nav {
			bottom: 33px;
			top: auto;
	}
}

/* box (countdown) */
.box{
  background-color: #FBC105;
  border-radius:15px;
  width:140px;
  height:140px;
  text-align:center;
}

@media (max-width: 767px) {
		.box {
			width:80px;
			height:100px;
	}
}

/*-------------------------------------------------------------
    CUSTOM PERSPECTIVE, HERO FONT, STROKE TEXT, FOOTER AND HERO IMAGE
-------------------------------------------------------------*/

.custom-perspective {
		perspective: 1000px;
}

.custom-available-bullet {
		padding-left: 18px;
		position: relative;
}

.custom-available-bullet:before {
		animation: blinker 1s linear infinite;
		content: '';
		position: absolute;
		width: 12px;
		height: 12px;
		top: 3px;
		left: 0;
		display: block;
		border-radius: 100%;
		background-color: #39b54a;
}

@keyframes blinker {
		50% {
				opacity: 0.4;
		}
}

.custom-hero-font-1 {
		font-size: calc(40px + 50 * ((100vw - 300px) / (1200 - 300)));
		line-height: calc(40px + 50 * ((100vw - 300px) / (1200 - 300)));
		text-transform: uppercase;
        font-weight: 700;
        letter-spacing: -0.03em;
}

.custom-border-bottom-1 {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-border-bottom-2 {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-border-bottom-3 {
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.custom-hero-text-1 {
		padding: 0 0 0 15px;
		display: block;
		max-width: 430px;
		font-size: 20.8px;
		font-size: 1.3rem;
		line-height: 1.7;
		margin: 0;
}

@media (max-width: 1200px) {
		.custom-hero-text-1 {
				font-size: 1rem;
		}
}

@media (max-width: 991px) {
		.custom-hero-text-1 {
				max-width: 95%;
		}
}

.custom-stroke-text-effect-1 {
		-webkit-text-fill-color: transparent;
		-webkit-text-stroke-width: 3.0px;
		-webkit-text-stroke-color: var(--dark);
		white-space: nowrap;
}

@media (max-width: 1023px) {
		.custom-stroke-text-effect-1 {
				-webkit-text-stroke-width: 2.5px;
		}
}

@media (max-width: 767px) {
		.custom-stroke-text-effect-1 {
				-webkit-text-stroke-width: 2.0px;
		}
}

@media (max-width: 545px) {
		.custom-stroke-text-effect-1 {
				-webkit-text-stroke-width: 1.5px;
		}
}

.custom-stroke-text-effect-2 {
		-webkit-text-fill-color: transparent;
		-webkit-text-stroke-width: 1px;
		-webkit-text-stroke-color: var(--light);
		white-space: nowrap;
}

.custom-hero-img-1 {
		max-width: 200px;
		max-height: 200px;
		margin: 15px;
}

.custom-footer-font-1 {
		font-size: calc(40px + 50 * ((100vw - 300px) / (1200 - 300)));
		line-height: calc(40px + 50 * ((100vw - 300px) / (1200 - 300)));
		text-transform: uppercase;
}

.custom-footer-font-1 em {
		padding: 0 40px;
		border-radius: 20px;
		font-style: normal;
		zoom: 0.52;
		position: relative;
		top: -40px;
}

.custom-footer-img-1 {
		max-width: 300px;
		max-height: 300px;
		margin: 15px;
}

@media (max-width: 991px) {
		.custom-disable-scroll-mobile-1 {
				transform: none !important;
		}
}

/*-------------------------------------------------------------
    custom-big-text-style-1
-------------------------------------------------------------*/

.custom-big-text-style-1 {
		font-size: 132.6px;
		font-size: 7rem;
		letter-spacing: -0.03em;
		line-height: 0.90;
}
@media (max-width: 991px) {
		.custom-big-text-style-1 {
				font-size: 5.0rem;
		}
		.custom-big-text-style-1.custom-big-text-style-1-variation {
				font-size: 3.0rem;
		}
}

@media (max-width: 767px) {
		.custom-big-text-style-1 {
				font-size: 4.0rem;
		}
		.custom-big-text-style-1.custom-big-text-style-1-variation {
				font-size: 2.0rem;
		}
}

@media (max-width: 575px) {
		.custom-big-text-style-1 {
				font-size: 3.0rem;
		}
		.custom-big-text-style-1.custom-big-text-style-1-variation {
				font-size: 1.0rem;
		}
}

@media (max-width: 411px) {
		.custom-big-text-style-1 {
				font-size: 2.5rem;
		}
		.custom-big-text-style-1.custom-big-text-style-1-variation {
				font-size: 0.5rem;
		}
}

/*
* Tabs
*/
.custom-tabs-style-1.tabs .nav-tabs .nav-link {
		border-bottom-width: 1px !important;
}

.custom-tabs-style-1.tabs .nav-tabs .nav-link h4 {
		color: var(--default);
}

@media (max-width: 991px) {
		.custom-tabs-style-1.tabs .nav-tabs .nav-item {
				width: auto !important;
		}
}

/*
* Custom Call to Action
*/
.custom-call-to-action {
		margin-left: 50px;
		margin-right: 50px;
		border-radius: 70px;
}

