/*** Common CSS ***/
* {
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

body {
    font-family: 'Raleway';
    font-size: 16px;
    color: #585757;
}

img {
    margin: 0 auto;
    border: none;
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.pink-txt { color: #ee435f; }

.form-wrapper .pink-txt.lower-txt { text-transform: lowercase; }

.top-space { padding: 20px 0; }

.capital-txt { text-transform: capitalize; }

.primary-btn a, .primary-btn button, .primary-btn button:focus, .primary-btn button:hover {
	background-color: #ee435f;
	color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 0;
    outline: 0;
    border: 0;
    font-weight: 500;
    position: relative;
}

/*** Button Animation CSS ***/
@keyframes bottomright {
  0% {
    width: 0;
    height: 0;
    padding-top: 0;
  }
  25% {
    width: 100%;
    height: 0;
    padding-top: 0;
  }
  50% {
    height: 100%;
    width: 100%;
  }
  75% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}

.primary-btn a:after, .primary-btn button:after {
  content: "";
  position: absolute;
  bottom: -4px;
  padding-right: 5px;
  left: 4px;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  visibility: hidden;
}

.about-wrapper .primary-btn a:after, .form-wrapper .primary-btn button:after { border-color: #ee435f; }

.primary-btn a:hover:after, .primary-btn button:hover:after {
  animation: bottomright 4s ease-in-out forwards;
}

/*** Header Navigation CSS ***/
.navbar-header .navbar-brand { height: auto; }

#semiofest-navbar .nav li a {
	text-transform: uppercase;
	color: #000;
	padding: 5px 15px;
	font-size: 14px;
}

#semiofest-navbar .nav li:not(:last-child) {
	margin: 20px 5px 20px 5px;
}

#semiofest-navbar .nav li:last-child {
	margin: 20px 0;
}

/*#semiofest-navbar .nav li:last-child {
	padding: 0px 15px;
}*/

#semiofest-navbar .nav li.register-btn a {
	background-color: #ee435f;
	color: #fff;
}

.navbar-header img { width: 230px; }

.navbar-right { margin-top: 20px;}

/*** Banner CSS ***/
.banner-wrapper {
	max-height: 500px;
    overflow: hidden;
    position: relative;
}

.banner-wrapper .video-element {
	width: 100%;
}

.banner-wrapper #controls {
	position: absolute;
    cursor: pointer;    
    height: 100%;
    width: 100%;
}

.banner-wrapper #controls button {
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 5px 15px;
    background: rgba(0,0,0,0.6);
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.banner-wrapper #controls button:focus {
    outline: 0;
}

.banner-wrapper #controls .mute:before {
	content: "\f028";
	font-family: "fontAwesome";
	font-size: 24px;
}

.banner-wrapper #controls .unmute:before {
	content: "\f026";
	font-family: "fontAwesome";
	font-size: 24px;
}

#controls a:hover {
    color: #fff;
    text-decoration: none;
}

#controls a {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(0,0,0,.6);
    height: 70px;
    width: 70px;
    text-align: center;
    border-radius: 50%;
}

.play:after {
	font-family: 'FontAwesome';
	content: "\f04b";
	font-size: 40px;
    color: #fff;
    padding: 7px 0;
    display: block;
}

.pause:after {
	font-family: 'FontAwesome';
	content: "\f04c";
    font-size: 40px;
    color: #fff;
    padding: 7px 0;
    display: block;
}

/*** Banner Content CSS ***/
.banner-content {
	position: absolute;
	top: 44%;
    left: 9%;
    transform: translate(0,-50%);
    color: #fff;
    text-transform: uppercase;
}

.banner-content .animated-line { 
    height: 3px;
    background: #ee435f;
    position: relative;
    -webkit-animation: mymove 3s;  /* Safari 4.0 - 8.0 */
    -webkit-animation-fill-mode: forwards; /* Safari 4.0 - 8.0 */
    animation: mymove 3s;
    animation-fill-mode: forwards; 
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes mymove {
    from {width: 0px;}
    to { width: 120px; }
}

@keyframes mymove {
    from {width: 0px;}
    to { width: 120px; }
}

.banner-content .banner-main-heading { font-size: 40px; font-weight: 800; line-height: 50px; margin-bottom: 0; }

.banner-secondary-heading { padding: 20px 0; }

.banner-content p { font-size: 18px; font-weight: 600; }

.venue-space span { padding-left: 70px; }

.banner-content .primary-btn a:first-child {
	margin-right: 15px;
}

.about-wrapper { padding: 80px 0 50px 0; }

.about-wrapper .nav-tabs, .about-wrapper .nav-tabs li.active a {
	border: 0;
}

.about-wrapper .nav-tabs li {
	width: 50%;
}

.about-wrapper .nav-tabs li:last-child {
	padding-right: 9%;
}

.about-wrapper .nav-tabs li a {
	color: #cfcece;
	text-transform: uppercase;
	text-align: center;
	padding: 20px 0;
}

.about-wrapper .nav-tabs li a:hover { border: 1px solid transparent; }

.about-wrapper .nav-tabs li.active a {
	color: #ee435f;
	border-radius: 0;
	border: 0;
	font-weight: 700;
}

.about-wrapper .nav-tabs li:first-child a { 
	border-right: 2px solid #ee435f; 
	background: url("../images/doc-icon-gray.png") no-repeat; 
	background-position: 100px 10px;
}

.about-wrapper .nav-tabs li.active:first-child a { 
	background: url("../images/doc-icon-pink.png") no-repeat; 
	background-position: 100px 10px;
}

.about-wrapper .nav-tabs li:last-child a { 
	background: url("../images/mumbai-icon-gray.png") no-repeat; 
	background-position: 120px 10px;
}

.about-wrapper .nav-tabs li.active:last-child a { 
	background: url("../images/mumbai-icon.png") no-repeat; 
	background-position: 120px 10px;
}

.about-wrapper .tab-pane {
	padding: 30px 0
}

.about-wrapper .circular-img img {
	width: 100%;
    height: 100%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: 0 auto;
}

.about-wrapper .primary-btn {
	text-align: center;
	margin-top: 40px;
}

.pink-line { position: relative; }

.pink-line:after { 
	content: "";
    border-bottom: 1px solid #ee435f;
    position: absolute;
    left: 190px;
    top: 10px;
    right: 0;
}

.about-wrapper .tab-pane .pink-txt {
	font-weight: 500;
}

.about-wrapper .circular-img {
    padding-top: 30px;
}

.about-wrapper .view-btn-wrapper {
	text-align: center;
}

/*** Time ticker CSS ***/
.time-ticker-wrapper {
    width: 400px;
    margin: 0 auto;
    position: absolute;
    background-color: #fff;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 22px 0 10px 22px;
    /*-webkit-box-shadow: 0px 0px 2px #585757;
    -moz-box-shadow: 0px 0px 2px #585757;
    box-shadow: 0px 0px 2px #585757; */
}

.time-ticker-wrapper ul { padding: 0; }

#countdown li {
	display: inline-block;
	width: 26%;
	line-height: 37px;
	position: relative;
}

#countdown li:last-child {
	width: 14%;
}

.time-ticker-wrapper ul li div:first-child { font-family: Oswald; font-size: 50px; color: #003d42; font-weight: 700; }

.time-ticker-wrapper ul li div:last-child { color: #ee435f; text-transform: uppercase; }

#countdown li:not(:last-child):after {
	content: "\003A";
	position: absolute;
    right: 11px;
    top: 10px;
    font-size: 50px;
    color: #ee435f;
}

#video-popup { padding-right: 0; }

#video-popup .modal-body video { width: 100%; }

#video-popup .modal-dialog { width: 96%; }

#video-popup .close-btn.primary-btn { text-align: center; padding: 15px 0; }

/*** Slider CSS ***/
.slider-wrapper { padding-bottom: 50px; }

.carousel .carousel-inner .item { height: 380px; }

.carousel .carousel-inner .item > img { height: 100%; width: 100%; }

.slider-line { position: relative; padding-left: 120px; text-transform: uppercase; }

.slider-line:after {
    content: "";
    border-bottom: 1px solid #ee435f;
    width: 20%;
    position: absolute;
    left: 0;
    top: 10px;
}


.circular-img-about img {
	width: 100%;
    height: 100%;
    width:190px;
    height:190px;
    border-radius: 50%;
    margin: 0 auto;
}
#slider-thumbs .list-inline { padding-top: 25px; text-align: center; }

.list-inline li {
	position: relative;
	padding: 0 7px;
}

.list-inline li:not(:last-child) a:after {
	content: "";
    border-bottom: 1px solid #ee435f;
    width: 34%;
    position: absolute;
    right: -11px;
    top: 20px;
    z-index: -1;
}

.list-inline li a.selected:after {
	content: "";
    position: absolute;
    right: -18px;
}

.list-inline li img {
	width: 38px;
	height: 38px;
	border-radius: 50%;
}

.list-inline li a.selected img {
	transform: scale(1.5, 1.5);
	padding: 2px;
    border: 1px solid #ee435f;
    margin: 0 7px;
}

/*** Registration form CSS ***/
.form-wrapper { text-align: center; padding-bottom: 40px; }

.form-wrapper .pink-txt { text-transform: uppercase; }

.form-wrapper .center-div { margin: 0 auto; overflow: hidden; float: none; padding: 20px 0 15px; }

.registration-form label { font-weight: normal; text-transform: uppercase; }

.registration-form .form-control { 
	border: 0;
    border-bottom: 1px solid #ee435f;
    border-radius: 0;
    margin-left: 10px;
    box-shadow: none;
    max-width: 160px;
    width: 100%;
}

.registration-form .form-control:last-child { -webkit-appearance: none; }

.registration-form .form-control:focus { outline: 0; }

#formModal .modal-body {
	text-align: center;
	font-size: 22px;
	font-weight: 400;
}

#formModal .modal-dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
}

.form-wrapper .success-msg {
    padding-top: 20px;
    font-size: 20px;
    color: #585757;
    font-weight: 700;
}

/*** Footer CSS ***/
.footer {
	padding: 20px 0;
}

.footer .social-icons {
	text-align: right;
}

.footer .social-icons i {
	background-color: #ee435f;
	color: #fff;
	height: 28px;
    width: 28px;
    border-radius: 50%;
    text-align: center;
    padding: 7px 0;
}

.subcribe-input { border: 0; border-bottom: 1px solid #959595; box-shadow: none; width: 100%; }

.subcribe-input:focus { outline: 0; }

.subcribe-input::-webkit-input-placeholder { color: #ee435f; }



	p{line-height:24px;}

.about-line { position: relative;  font-size:18px;}

.about-line:after {
    content: "";
    border-bottom: 1px solid #ee435f;
    width: 50%;
    position: absolute;
    left: 200px;
    top: 10px;
}
.what-to{
	margin-bottom:20px;
}
.about-heading{
	
    margin: 40px 0px 20px 17px;
	
}
.board-name{
	
	font-size:18px;
}
 .abt-para{
	 
	 padding-top:20px;
 }
 .abt-para2{
	 
	padding-top:20px;
	text-align:right;
 }
 .right-border{
	
	 height:320px;
	 
 } 
.right-border:after {
    position: absolute;
    height: 180px;
    display: block;
    background: #ee435f;
    content: "";
    width: 1px;
    top: 42%;
    right: 0;
    transform: translateY(-50%);
}
.why-wrapper .view-btn-wrapper {
	text-align: center;
}
.atag{color: #585757;
    text-decoration: none;}
/** Meadia Query **/
.footer-wrapper{
	background:#efefef;
}
.space{ padding-top:15px; }
@media screen and (max-width: 767px) {
	body, .banner-content p { font-size: 14px; }

	.navbar-header .navbar-toggle { padding: 15px 0; }

	.navbar-header .navbar-toggle .icon-bar { border: 1px solid #ee435f; }

	.banner-wrapper { max-height: 520px; }

	.time-ticker-wrapper {
	    width: 240px;
	    padding-left: 25px;
	    padding-top: 7px;
	    position: relative;
	    bottom: 300px;
	    height: 54px;
	    left: 0;
	    transform: none;
	    margin: 0 auto;
	}

	#countdown li { width: 23%; line-height: 22px; }

	#countdown li:not(:last-child):after { font-size: 20px; }

	.time-ticker-wrapper ul li div:first-child { font-size: 18px; }

	.time-ticker-wrapper ul li div:last-child { font-size: 12px; }

	.banner-content {
	    position: relative;
	    left: 0;
	    bottom: -176px;
	    height: 270px;
	    color: #585757;
	    padding: 0 20px;
	}

	.banner-content .banner-main-heading {
	    color: #ee435f;
	    font-size: 20px;
    	line-height: 24px;
	}

	.venue-space span { padding-left: 0px; }

	.banner-secondary-heading { padding: 10px 0 10px; }

	.about-wrapper { padding: 40px 0 20px 0; }

	.about-wrapper .nav-tabs li a { padding: 10px 0; font-size: 12px; }

	.about-wrapper .nav-tabs li:first-child a, .about-wrapper .nav-tabs li.active:first-child a, 
	.about-wrapper .nav-tabs li:last-child a, .about-wrapper .nav-tabs li.active:last-child a {
		background: none;
	}

	.pink-line:after { left: 160px; }

	.list-inline li { padding: 0 5px; }

	.list-inline li img { width: 20px; height: 20px; }

	.list-inline li:not(:last-child) a:after {
	    right: -13px;
	    top: 11px;
	    width: 58%;
	}

	.list-inline li a.selected:after { right: -19px; }

	.slider-wrapper .slider-content { padding-top: 20px; }

	.slider-line { text-align: right; }

	.slider-line:after {
		left: auto;
	    top: 10px;
	    right: 170px;
	    width: 40%;
	}

	.slider-wrapper { padding-bottom: 20px; }

	.form-wrapper .center-div { padding: 10px 20px; }	

	.play:after { font-size: 40px; }

	.mobile-img { display: inline-block; width: 20px; }

	.desktop-img { display: none; }
}

@media screen and (min-width: 768px) {
	.navbar-header .navbar-brand { padding: 20px 0px; }

	.mobile-img { display: none; }

	.banner-content {
	    background: rgba(0,0,0,0.4);
	    padding: 20px 20px 25px;
	}

	.banner-wrapper #controls {
	    top: 0;
	}
	
}

@media screen and (min-width: 1200px)  and (max-width: 1355px) {
	.banner-content { top: 44%; }
}

@media screen and (min-width: 992px)  and (max-width: 1199px) {
	.banner-content { top: 44%; }

	.about-wrapper .nav-tabs li.active:first-child a, .about-wrapper .nav-tabs li:first-child a {
	    background-position: 52px 10px;
	}

	.about-wrapper .nav-tabs li:last-child a, .about-wrapper .nav-tabs li.active:last-child a {
	    background-position: 88px 10px;
	}
}

@media screen and (min-width: 768px)  and (max-width: 991px) {
	#semiofest-navbar .nav li:not(:last-child) { margin-right: 0; }

	#semiofest-navbar .nav li a { padding-right: 10px; padding-left: 10px; font-size: 14px; }

	.banner-secondary-heading { padding: 10px 0 20px; }

	.banner-content { top: 44%; }

	.banner-content p { margin-bottom: 7px; }

	.time-ticker-wrapper { bottom: -25px; padding-top: 10px; padding-left: 25px; }

	#countdown li { line-height: 30px; }

	.time-ticker-wrapper ul li div:first-child { font-size: 30px; }

	.about-wrapper .circular-img img {
	    width: 300px;
	    height: 300px;
	}

	.about-wrapper .nav-tabs li.active:first-child a, .about-wrapper .nav-tabs li:first-child a {
	    background-position: 0px 10px;
	}

	.about-wrapper .nav-tabs li:last-child a, .about-wrapper .nav-tabs li.active:last-child a {
	    background-position: 44px 10px;
	}

	.list-inline li img {
	    width: 23px;
	    height: 23px;
	}

	.list-inline li:not(:last-child) a:after {
	    width: 50%;
	    top: 12px;
	}

	.banner-wrapper #controls { top: 34%; }

	#controls a { left: 92%; }
	.about-line:after {
    content: "";
    border-bottom: 1px solid #ee435f;
    width: 0%;
    position: absolute;
    left: 200px;
    top: 10px;
}
}

@media screen and (min-width: 481px) and (max-width: 767px) { 
	.navbar-header img { width: 180px; }

	.banner-wrapper { max-height: 700px; }

	.banner-content {
	    bottom: -152px;
    	height: 221px;
	}

	.time-ticker-wrapper { bottom: 256px; }

	.banner-wrapper #controls { bottom: 23%; }

	.registration-form .form-group { display: inline-block; text-align: left; }

	.registration-form .form-control { max-width: 200px; margin-left: 0; }
	.about-heading{text-align:center;}
	.what-to{text-align:center;}
	.pull-right{float:none !important;}
	.about-line:after {
    content: "";
    border-bottom: 1px solid #ee435f;
    width: 0%;
    position: absolute;
    left: 200px;
    top: 10px;
}

 .abt-para{text-align:center;}
 .abt-para2{text-align:center;}
 
 .right-border{
	 
	height:auto;
 }
 .right-border:after {
  
    display:none;
   
}
.abt-para .primary-btn a{
	margin:0 auto;
	text-align:center;
	margin-bottom:20px;
}
.abt-para2 .primary-btn a{
	margin:0 auto;
	text-align:center;
	margin-bottom:20px;
}
}

@media screen and (min-width: 320px) and (max-width: 480px) {
	.navbar-header img { width: 100px; }

	.banner-wrapper {
	    max-height: 680px;
	}

	.banner-content {
	    bottom: -185px;
    	height: 281px;
    	text-align: center;
	}

	.banner-content .primary-btn a { margin: 0 auto !important; text-align: center; }

	.banner-content .primary-btn a:first-child { margin-bottom: 15px !important; }

	.banner-content .animated-line { margin-bottom: 10px; left: 50%; transform: translateX(-50%); }

	.time-ticker-wrapper { bottom: 313px; }

	.about-wrapper .circular-img img {
	    width: 300px;
	    height: 300px;
	}
	.about-wrapper .primary-btn a { margin: 0 auto; }

	.footer p { font-size: 12px; }

	.primary-btn a { 
		display: block;
		width: 154px;
    	margin-bottom: 10px;
	}

	.banner-wrapper #controls { bottom: 164px; }

	#controls a { height: 50px; width: 50px; }

	.play::after { font-size: 30px; padding: 4px 15px; }

	.registration-form .form-control { max-width: 100%; margin-left: 0; }

	.carousel .carousel-inner .item { height: 200px; }
	
	.about-heading{text-align:center;}
	.what-to{text-align:center;}
	.pull-right{float:none !important;}
.about-line:after {
    content: "";
    border-bottom: 1px solid #ee435f;
    width: 0%;
    position: absolute;
    left: 200px;
    top: 10px;
}
 .abt-para{text-align:center;}
 .abt-para2{text-align:center;}
 
  .right-border{
	 
	height:auto;
 }
 .right-border:after {
  
    display:none;
   
}
.abt-para .primary-btn a{
	margin:0 auto;
	text-align:center;
	margin-bottom:20px;
}
.abt-para2 .primary-btn a{
	margin:0 auto;
	text-align:center;
	margin-bottom:20px;
}
.space{
	text-align:center;
}

}

@media screen and (min-width: 992px) and (max-width: 1100px) {
	#controls a { left: 56%; }
}

@media screen and (max-width: 1100px) {
	.desktop-bg { display: none; }

	.mobile-bg { display: block; }
}

@media screen and (min-width: 1101px) {
	.desktop-bg { display: block; }

	.mobile-bg { display: none; }
}







