.schedule-timeline{
	position: relative;
}

.schedule-block{
	position: relative;
	margin-bottom: 30px;	
}
.schedule-block * {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

.schedule-block:after{
	display: table;
	clear: both;
	content: "";
}

.schedule-block .inner-box{
	position: relative;
	float: right;
	width: 50%;
	text-align: left;
}

.schedule-block .image-box{
	position: relative;
}

.schedule-block .image{
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.schedule-block .image-box .image:after{
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0.0) 100%
  );
}
.schedule-block .item-social-icons {
  right: 30px !important;
  top: -22px !important;
  background: #fff !important;
}
.item-social-icons > .micon {
  color: #333 !important;
}
.schedule-block:nth-of-type(2n) .item-social-icons{
  left: 30px !important;
  top: -22px !important;
}
.schedule-block .inner-box:hover .image-box .image:after {
  opacity: 1;
  top: -20%;
  left: -30%;
  transition-property: left, top, opacity;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: linear;
}

.schedule-block .image img{
	display: block;
	width: 100%;
}

.schedule-block .inner-box .inner{
	position: relative;
	padding: 20px 30px 20px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	margin-left: 80px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.schedule-block .inner-box .inner:hover{
	box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

.schedule-block .inner:before{
	position: absolute;
    top: 0;
    bottom: -30px;
    right: 100%;
    border-left:2px dashed #dddddd;
    content: "";
    margin-right: 80px;
}

.schedule-block .inner:after{
	position: absolute;
	right: 100%;
	top: 35px;
	border-top: 15px solid transparent;
	border-right: 20px solid #ffffff;
	border-bottom: 15px solid transparent;
	content: "";
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.schedule-block .date{
    position: absolute;
    left: -132px;
    width: 100px !important;
    top: 0px;
    height: 100px !important;
    background-color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    color: #212639;
    font-weight: 500;
    border-radius: 50%;
    border:2px dashed #dddddd;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}
.schedule-block .date-in{padding-top: 36px;
}

.schedule-block .speaker-info{
	position: relative;
	padding: 10px 0px;
}

.schedule-block .speaker-info .name{
	font-size: 16px;
	color: #212639;
	font-weight: 500;
	line-height: 1.2em;
}

.schedule-block .speaker-info .designation{
	font-size: 13px;
}

.schedule-block h4{
	position: relative;
	font-size:22px;
	line-height: 1.2em;
	color: #0f1925;
	font-weight: 600;
	margin-bottom:15px;
	padding-top: 15px;
}

.schedule-block h4 a{
	color: #212639;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.schedule-block h4 a:hover{
	color: #f14b59;
}

.schedule-block .text{
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #888888;
	margin-bottom: 15px;
}

.schedule-block .btn-box{
	position: relative;
	padding: 6px 0;
}

.schedule-block .btn-box a{
	padding: 10px 20px;
	line-height: 20px;
	font-size: 14px;
	background-color: #444444;
	color: #ffffff;
	border-top:2px solid transparent;
	border-bottom:2px solid transparent;
	border-radius: 5px;
}

.schedule-block .btn-box a:hover{
	color: #ffffff;
	/* box-shadow: 0 10px 20px rgba(0,0,0,0.10); */
}

.schedule-block:nth-of-type(2n) .inner-box{
	float: left;
	text-align: right;
}

.schedule-block:nth-of-type(2n) .inner-box .inner{
	margin-left: 0;
	margin-right: 80px;
}

.schedule-block:nth-of-type(2n) .inner:before{
	right: auto;
	left: 100%;
	margin-left: 80px;
	margin-right: 0;
}

.schedule-block:nth-of-type(2n) .inner:after{
	right: auto;
	left: 100%;
	border-right: 0;
	border-left: 20px solid #ffffff;
}

.schedule-block:last-child .inner:before{
	display: none;
}

.schedule-block:nth-of-type(2n) .date{
	left: auto;
	right: -132px;
}

.schedule-block:nth-of-type(2n) .speaker-info{
	padding-left: 0;
	padding-right: 0px;
}

.schedule-block:nth-of-type(2n) .speaker-info .thumb{
	left: auto;
	right: 0;
}

.schedule-block:nth-child(4n + 1) .date,
.schedule-block:nth-child(4n + 1) .inner:before{
	border-color: #ffc20b;
}

.schedule-block:nth-child(4n + 2) .date,
.schedule-block:nth-child(4n + 2) .inner:before{
	border-color: #40cbb4;
}

.schedule-block:nth-child(4n + 3) .date,
.schedule-block:nth-child(4n + 3) .inner:before{
	border-color: #4c35a9;
}

.schedule-block:nth-child(4n + 4) .date,
.schedule-block:nth-child(4n + 4) .inner:before{
	border-color: #e6275a;
}

/* Backgroud */

.schedule-block:nth-child(4n + 1) .btn-box a{
	background-color:#ffc20b;
}

.schedule-block:nth-child(4n + 1) .btn-box a:hover{
	color:#ffc20b;
	border-radius:0px;
	background: none;
	border-color:#ffc20b;
}

.schedule-block:nth-child(4n + 2) .btn-box a{
	background-color: #40cbb4;
}

.schedule-block:nth-child(4n + 2) .btn-box a:hover{
	border-radius:0px;
	color: #40cbb4;
	background:none;
	border-color: #40cbb4;
}

.schedule-block:nth-child(4n + 3) .btn-box a{
	background-color: #4c35a9;
}

.schedule-block:nth-child(4n + 3) .btn-box a:hover{
	border-radius:0px;
	color: #4c35a9;
	background:none;
	border-color: #4c35a9;
}



.schedule-block:nth-child(4n + 4) .btn-box a{
	background-color: #e6275a;
}

.schedule-block:nth-child(4n + 4) .btn-box a:hover{
	border-radius:0px;
	color: #e6275a;
	background:none;
	border-color: #e6275a;
}

/* color */

.schedule-section.style-three .schedule-block:nth-child(4n + 1) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 1) .date,
.schedule-block:nth-child(4n + 1) h4 a:hover{
	color: #ffc20b;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 2) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 2) .date,
.schedule-block:nth-child(4n + 2) h4 a:hover{
	color: #40cbb4;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 3) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 3) .date,
.schedule-block:nth-child(4n + 3) h4 a:hover{
	color: #4c35a9;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 4) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 4) .date,
.schedule-block:nth-child(4n + 4) h4 a:hover{
	color: #e6275a;
}



@media only screen and (max-width: 1023px){
	
	
	.schedule-block .inner:before{
		display: none;
	}
	.schedule-block .inner-box{
		width: 100%;
	}

	.schedule-block:nth-of-type(2n) .inner-box .inner{
		margin-right: 140px;
	}
	.schedule-block .inner-box .inner{
		margin-left: 140px;
	}
	
}


@media only screen and (max-width: 599px){

.schedule-block .inner:after{
	border-top: 0px solid transparent;
	border-right: 0px solid #ffffff;
	border-bottom: 0px solid transparent;
}
	.schedule-block:nth-of-type(2n) .inner-box .inner,
	.schedule-block .inner-box .inner {
	    margin: 0;
	}

	.schedule-block .date{
		position: relative;
		display: inline-block;
		margin-bottom: 15px;
		left: 0;
		top: 0;
		padding: 0;
		border: 0;
		box-shadow: none;
		height: auto;
		width: auto;
	}

	.schedule-block:nth-of-type(2n) .date{
		right: 0;
	}

	.schedule-section.style-two .schedule-block .inner-box .inner{
		text-align: center;
		padding: 30px 20px;
	}

	.schedule-section.style-two .schedule-block .speaker-info .thumb{
		position: relative;
		display: inline-block;
		left: 0;
		top: 0;
		margin-bottom: 5px;
	}

	.schedule-section.style-two .schedule-block .speaker-info{
		padding-left: 0;
		text-align: center;
	}

	.schedule-section.style-three .schedule-block .inner-box .inner{
		padding: 30px 20px;
	}

}





