Commit 88e1ba1772fb5136a74e44f51a9469af6254e3ec

Authored by kuldeep kumar
1 parent 423cebde33
Exists in master

minor change

assets/images/1_VGKkZwpf2Dg1m6NG7NTr5A.jpeg

128 KB

assets/images/ABOUT US2.jpg

243 KB

assets/images/about_us.jpg

258 KB

assets/images/download.jpeg

4.87 KB

assets/images/facebbok.jpeg

4.87 KB

assets/images/favicon.ico
No preview for this file type
assets/images/fevicon_open.ico
No preview for this file type
assets/js/custom.js
1 /** 1 /**
2 * Template Name: Eventoz 2 * Template Name: Eventoz
3 * Version: 1.0 3 * Version: 1.0
4 * Template Scripts 4 * Template Scripts
5 * Author: MarkUps 5 * Author: MarkUps
6 * Author URI: http://www.markups.io/ 6 * Author URI: http://www.markups.io/
7 7
8 Custom JS 8 Custom JS
9 9
10 1. FIXED MENU 10 1. FIXED MENU
11 2. EVENT TIME COUNTER 11 2. EVENT TIME COUNTER
12 3. MENU SMOOTH SCROLLING 12 3. MENU SMOOTH SCROLLING
13 4. VIDEO POPUP 13 4. VIDEO POPUP
14 5. SPEAKERS SLIDEER ( SLICK SLIDER ) 14 5. SPEAKERS SLIDEER ( SLICK SLIDER )
15 6. BOOTSTRAP ACCORDION 15 6. BOOTSTRAP ACCORDION
16 7. MOBILE MENU CLOSE 16 7. MOBILE MENU CLOSE
17 17
18 18
19 **/ 19 **/
20 20
21 21
22 22
23 (function( $ ){ 23 (function( $ ){
24 24
25 25
26 26
27 /* ----------------------------------------------------------- */ 27 /* ----------------------------------------------------------- */
28 /* 1. FIXED MENU 28 /* 1. FIXED MENU
29 /* ----------------------------------------------------------- */ 29 /* ----------------------------------------------------------- */
30 30
31 31
32 jQuery(window).bind('scroll', function () { 32 jQuery(window).bind('scroll', function () {
33 if ($(window).scrollTop() > 150) { 33 if ($(window).scrollTop() > 150) {
34 $('.mu-navbar').addClass('mu-nav-show'); 34 $('.mu-navbar').addClass('mu-nav-show');
35 35
36 } else { 36 } else {
37 $('.mu-navbar').removeClass('mu-nav-show'); 37 $('.mu-navbar').removeClass('mu-nav-show');
38 } 38 }
39 }); 39 });
40 40
41 /* ----------------------------------------------------------- */ 41 /* ----------------------------------------------------------- */
42 /* 2. EVENT TIME COUNTER 42 /* 2. EVENT TIME COUNTER
43 /* ----------------------------------------------------------- */ 43 /* ----------------------------------------------------------- */
44 44
45 $('#mu-event-counter').countdown('2018/03/17').on('update.countdown', function(event) { 45 $('#mu-event-counter').countdown('2018/03/17').on('update.countdown', function(event) {
46 var $this = $(this).html(event.strftime('' 46 var $this = $(this).html(event.strftime(''
47 + '<span class="mu-event-counter-block"><span>%D</span> Days</span> ' 47 + '<span class="mu-event-counter-block"><span>%D</span> Days</span> '
48 + '<span class="mu-event-counter-block"><span>%H</span> Hours</span> ' 48 + '<span class="mu-event-counter-block"><span>%H</span> Hours</span> '
49 + '<span class="mu-event-counter-block"><span>%M</span> Mins</span> ' 49 + '<span class="mu-event-counter-block"><span>%M</span> Mins</span> '
50 + '<span class="mu-event-counter-block"><span>%S</span> Secs</span>')); 50 + '<span class="mu-event-counter-block"><span>%S</span> Secs</span>'));
51 }); 51 });
52 52
53 53
54 /* ----------------------------------------------------------- */ 54 /* ----------------------------------------------------------- */
55 /* 3. MENU SMOOTH SCROLLING 55 /* 3. MENU SMOOTH SCROLLING
56 /* ----------------------------------------------------------- */ 56 /* ----------------------------------------------------------- */
57 57
58 //MENU SCROLLING WITH ACTIVE ITEM SELECTED 58 //MENU SCROLLING WITH ACTIVE ITEM SELECTED
59 59
60 // Cache selectors 60 // Cache selectors
61 var lastId, 61 var lastId,
62 topMenu = $(".mu-menu"), 62 topMenu = $(".mu-menu"),
63 topMenuHeight = topMenu.outerHeight()+13, 63 topMenuHeight = topMenu.outerHeight()+13,
64 // All list items 64 // All list items
65 menuItems = topMenu.find('a[href^=\\#]'), 65 menuItems = topMenu.find('a[href^=\\#]'),
66 // Anchors corresponding to menu items 66 // Anchors corresponding to menu items
67 scrollItems = menuItems.map(function(){ 67 scrollItems = menuItems.map(function(){
68 var item = $($(this).attr("href")); 68 var item = $($(this).attr("href"));
69 if (item.length) { return item; } 69 if (item.length) { return item; }
70 }); 70 });
71 71
72 // Bind click handler to menu items 72 // Bind click handler to menu items
73 // so we can get a fancy scroll animation 73 // so we can get a fancy scroll animation
74 menuItems.click(function(e){ 74 menuItems.click(function(e){
75 var href = $(this).attr("href"), 75 var href = $(this).attr("href"),
76 offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+22; 76 offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+22;
77 jQuery('html, body').stop().animate({ 77 jQuery('html, body').stop().animate({
78 scrollTop: offsetTop 78 scrollTop: offsetTop
79 }, 1500); 79 }, 1500);
80 e.preventDefault(); 80 e.preventDefault();
81 }); 81 });
82 82
83 // Bind to scroll 83 // Bind to scroll
84 jQuery(window).scroll(function(){ 84 jQuery(window).scroll(function(){
85 // Get container scroll position 85 // Get container scroll position
86 var fromTop = $(this).scrollTop()+topMenuHeight; 86 var fromTop = $(this).scrollTop()+topMenuHeight;
87 87
88 // Get id of current scroll item 88 // Get id of current scroll item
89 var cur = scrollItems.map(function(){ 89 var cur = scrollItems.map(function(){
90 if ($(this).offset().top < fromTop) 90 if ($(this).offset().top < fromTop)
91 return this; 91 return this;
92 }); 92 });
93 // Get the id of the current element 93 // Get the id of the current element
94 cur = cur[cur.length-1]; 94 cur = cur[cur.length-1];
95 var id = cur && cur.length ? cur[0].id : ""; 95 var id = cur && cur.length ? cur[0].id : "";
96 96
97 if (lastId !== id) { 97 if (lastId !== id) {
98 lastId = id; 98 lastId = id;
99 // Set/remove active class 99 // Set/remove active class
100 menuItems 100 menuItems
101 .parent().removeClass("active") 101 .parent().removeClass("active")
102 .end().filter("[href=\\#"+id+"]").parent().addClass("active"); 102 .end().filter("[href=\\#"+id+"]").parent().addClass("active");
103 } 103 }
104 }) 104 })
105 105
106 106
107 107
108 /* ----------------------------------------------------------- */ 108 /* ----------------------------------------------------------- */
109 /* 4. VIDEO POPUP 109 /* 4. VIDEO POPUP
110 /* ----------------------------------------------------------- */ 110 /* ----------------------------------------------------------- */
111 111
112 $('.mu-video-play-btn').on('click', function(event) { 112 $('.mu-video-play-btn').on('click', function(event) {
113 113
114 event.preventDefault(); 114 event.preventDefault();
115 115
116 $('.mu-video-iframe-area').addClass('mu-video-iframe-display'); 116 $('.mu-video-iframe-area').addClass('mu-video-iframe-display');
117 117
118 }); 118 });
119 119
120 // when click the close btn 120 // when click the close btn
121 121
122 // disappear iframe window 122 // disappear iframe window
123 123
124 $('.mu-video-close-btn').on('click', function(event) { 124 $('.mu-video-close-btn').on('click', function(event) {
125 125
126 event.preventDefault(); 126 event.preventDefault();
127 127
128 $('.mu-video-iframe-area').removeClass('mu-video-iframe-display'); 128 $('.mu-video-iframe-area').removeClass('mu-video-iframe-display');
129 129
130 }); 130 });
131 131
132 // stop iframe if it is play while close the iframe window 132 // stop iframe if it is play while close the iframe window
133 133
134 $('.mu-video-close-btn').click(function(){ 134 $('.mu-video-close-btn').click(function(){
135 135
136 $('.mu-video-iframe').attr('src', $('.mu-video-iframe').attr('src')); 136 $('.mu-video-iframe').attr('src', $('.mu-video-iframe').attr('src'));
137 137
138 }); 138 });
139 139
140 // when click overlay area 140 // when click overlay area
141 141
142 $('.mu-video-iframe-area').on('click', function(event) { 142 $('.mu-video-iframe-area').on('click', function(event) {
143 143
144 event.preventDefault(); 144 event.preventDefault();
145 145
146 $('.mu-video-iframe-area').removeClass('mu-video-iframe-display'); 146 $('.mu-video-iframe-area').removeClass('mu-video-iframe-display');
147 147
148 }); 148 });
149 149
150 $('.mu-video-iframe-area, .mu-video-iframe').on('click', function(e){ 150 $('.mu-video-iframe-area, .mu-video-iframe').on('click', function(e){
151 e.stopPropagation(); 151 e.stopPropagation();
152 }); 152 });
153 153
154 154
155 /* ----------------------------------------------------------- */ 155 /* ----------------------------------------------------------- */
156 /* 5. SPEAKERS SLIDEER ( SLICK SLIDER ) 156 /* 5. SPEAKERS SLIDEER ( SLICK SLIDER )
157 /* ----------------------------------------------------------- */ 157 /* ----------------------------------------------------------- */
158 158
159 $('.mu-speakers-slider').slick({ 159 $('.mu-speakers-slider').slick({
160 slidesToShow: 4, 160 slidesToShow: 4,
161 responsive: [ 161 responsive: [
162 { 162 {
163 breakpoint: 768, 163 breakpoint: 768,
164 settings: { 164 settings: {
165 arrows: true, 165 arrows: true,
166 slidesToShow: 3 166 slidesToShow: 3
167 } 167 }
168 }, 168 },
169 { 169 {
170 breakpoint: 480, 170 breakpoint: 480,
171 settings: { 171 settings: {
172 arrows: true, 172 arrows: true,
173 slidesToShow: 1 173 slidesToShow: 1
174 } 174 }
175 } 175 }
176 ] 176 ]
177 }); 177 });
178 178
179 179
180 180
181 181
182 182
183 /* ----------------------------------------------------------- */ 183 /* ----------------------------------------------------------- */
184 /* 6. BOOTSTRAP ACCORDION 184 /* 6. BOOTSTRAP ACCORDION
185 /* ----------------------------------------------------------- */ 185 /* ----------------------------------------------------------- */
186 186
187 /* Start for accordion #1*/ 187 /* Start for accordion #1*/
188 $('#accordion .panel-collapse').on('shown.bs.collapse', function () { 188 $('#accordion .panel-collapse').on('shown.bs.collapse', function () {
189 $(this).prev().find(".fa").removeClass("fa-angle-up").addClass("fa-angle-down"); 189 $(this).prev().find(".fa").removeClass("fa-angle-up").addClass("fa-angle-down");
190 }); 190 });
191 191
192 //The reverse of the above on hidden event: 192 //The reverse of the above on hidden event:
193 193
194 $('#accordion .panel-collapse').on('hidden.bs.collapse', function () { 194 $('#accordion .panel-collapse').on('hidden.bs.collapse', function () {
195 $(this).prev().find(".fa").removeClass("fa-angle-down").addClass("fa-angle-up"); 195 $(this).prev().find(".fa").removeClass("fa-angle-down").addClass("fa-angle-up");
196 }); 196 });
197 197
198 198
199 /* ----------------------------------------------------------- */ 199 /* ----------------------------------------------------------- */
200 /* 7. MOBILE MENU CLOSE 200 /* 7. MOBILE MENU CLOSE
201 /* ----------------------------------------------------------- */ 201 /* ----------------------------------------------------------- */
202 202
203 jQuery('.mu-menu').on('click', 'li a', function() { 203 jQuery('.mu-menu').on('click', 'li a', function() {
204 $('.mu-navbar .in').collapse('hide'); 204 $('.mu-navbar .in').collapse('hide');
205 }); 205 });
206 206
207 207 /* ........................................*/
208 /*chat code
209 /* ........................................*/
210
211 $(document).ready(function(){
212 $(".left-first-section").click(function(){
213 $('.main-section').toggleClass("open-more");
214 });
215 });
216 $(document).ready(function(){
217 $(".fa-minus").click(function(){
218 $('.main-section').toggleClass("open-more");
219 });
220 });
208 221
209 222
210 223
211 224
212 225
213 })( jQuery ); 226 })( jQuery );
214 227
215 228
216 229
230
217 231
218 232
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html lang="en"> 2 <html lang="en">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <meta name="viewport" content="width=device-width, initial-scale=1">
7 <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> 7 <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8 <title>OPEN. : Home</title> 8 <title>OPEN. : Home</title>
9 <!-- Favicon --> 9 <!-- Favicon -->
10 <link rel="shortcut icon" type="image/icon" href="assets/images/favicon.ico"/> 10 <link rel="shortcut icon" type="image/icon" href="assets/images/fevicon_open.ico"/>
11 <!-- Font Awesome --> 11 <!-- Font Awesome -->
12 <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet"> 12 <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
13 <!-- Bootstrap --> 13 <!-- Bootstrap -->
14 <link href="assets/css/bootstrap.min.css" rel="stylesheet"> 14 <link href="assets/css/bootstrap.min.css" rel="stylesheet">
15 <!-- Slick slider --> 15 <!-- Slick slider -->
16 <link href="assets/css/slick.css" rel="stylesheet"> 16 <link href="assets/css/slick.css" rel="stylesheet">
17 <!-- Theme color --> 17 <!-- Theme color -->
18 <link id="switcher" href="assets/css/theme-color/default-theme.css" rel="stylesheet"> 18 <link id="switcher" href="assets/css/theme-color/default-theme.css" rel="stylesheet">
19 19
20 <!-- Main Style --> 20 <!-- Main Style -->
21 <link href="style.css" rel="stylesheet"> 21 <link href="style.css" rel="stylesheet">
22 22
23 <!-- Fonts --> 23 <!-- Fonts -->
24 24
25 <!-- Open Sans for body font --> 25 <!-- Open Sans for body font -->
26 <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800" rel="stylesheet"> 26 <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800" rel="stylesheet">
27 <!-- Montserrat for title --> 27 <!-- Montserrat for title -->
28 <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet"> 28 <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
29 29
30 30
31 31
32 <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> 32 <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
33 <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> 33 <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
34 <!--[if lt IE 9]> 34 <!--[if lt IE 9]>
35 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> 35 <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
36 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> 36 <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
37 <![endif]--> 37 <![endif]-->
38 </head> 38 </head>
39 <body> 39 <body>
40 40
41 <!-- Start Header --> 41 <!-- Start Header -->
42 <header id="mu-hero" class="" role="banner"> 42 <header id="mu-hero" class="" role="banner">
43 <!-- Start menu --> 43 <!-- Start menu -->
44 <nav class="navbar navbar-fixed-top navbar-default mu-navbar"> 44 <nav class="navbar navbar-fixed-top navbar-default mu-navbar">
45 <div class="container"> 45 <div class="container">
46 <!-- Brand and toggle get grouped for better mobile display --> 46 <!-- Brand and toggle get grouped for better mobile display -->
47 <div class="navbar-header"> 47 <div class="navbar-header">
48 <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> 48 <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
49 <span class="sr-only">Toggle navigation</span> 49 <span class="sr-only">Toggle navigation</span>
50 <span class="icon-bar"></span> 50 <span class="icon-bar"></span>
51 <span class="icon-bar"></span> 51 <span class="icon-bar"></span>
52 <span class="icon-bar"></span> 52 <span class="icon-bar"></span>
53 </button> 53 </button>
54 54
55 <!-- Logo --> 55 <!-- Logo -->
56 <a class="navbar-brand" href="index.html">OPEN.</a> 56 <a class="navbar-brand" href="index.html">OPEN.</a>
57 57
58 </div> 58 </div>
59 59
60 <!-- Collect the nav links, forms, and other content for toggling --> 60 <!-- Collect the nav links, forms, and other content for toggling -->
61 <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> 61 <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
62 <ul class="nav navbar-nav mu-menu navbar-right"> 62 <ul class="nav navbar-nav mu-menu navbar-right">
63 <li><a href="#mu-hero">Home</a></li> 63 <li><a href="#mu-hero">Home</a></li>
64 <li><a href="#mu-about">About Us</a></li> 64 <li><a href="#mu-about">About Us</a></li>
65 <li><a href="#mu-schedule">Schedule</a></li> 65 <li><a href="#mu-schedule">Schedule</a></li>
66 <li><a href="#mu-speakers">Speakers</a></li> 66 <!-- <li><a href="#mu-speakers">Speakers</a></li> -->
67 <li><a href="#mu-faq">FAQ</a></li> 67 <li><a href="#mu-faq">FAQ</a></li>
68 <li><a href="#mu-register">Register</a></li> 68 <li><a href="#mu-register">Register</a></li>
69 <li><a href="#mu-sponsors">Sponsors</a></li> 69 <!-- <li><a href="#mu-sponsors">Sponsors</a></li> -->
70 <li><a href="#mu-contact">Contact</a></li> 70 <li><a href="#mu-contact">Contact</a></li>
71 </ul> 71 </ul>
72 </div><!-- /.navbar-collapse --> 72 </div><!-- /.navbar-collapse -->
73 </div><!-- /.container-fluid --> 73 </div><!-- /.container-fluid -->
74 </nav> 74 </nav>
75 <!-- End menu --> 75 <!-- End menu -->
76 76
77 <div class="mu-hero-overlay"> 77 <div class="mu-hero-overlay">
78 <div class="container"> 78 <div class="container">
79 <div class="mu-hero-area"> 79 <div class="mu-hero-area">
80 80
81 <!-- Start hero featured area --> 81 <!-- Start hero featured area -->
82 <div class="mu-hero-featured-area"> 82 <div class="mu-hero-featured-area">
83 <!-- Start center Logo --> 83 <!-- Start center Logo -->
84 <div class="mu-logo-area"> 84 <div class="mu-logo-area">
85 <!-- text based logo --> 85 <!-- text based logo -->
86 <!-- <a class="" href="#">OPEN.</a> --> 86 <!-- <a class="" href="#">OPEN.</a> -->
87 <!-- image based logo --> 87 <!-- image based logo -->
88 <a class="mu-logo" href="#"><img src="assets/images/open_Dot.jpg" alt="logo img" style="width: 150px"></a> 88 <a class="mu-logo" href="#"><img src="assets/images/open_Dot.jpg" alt="logo img" style="width: 150px"></a>
89 </div> 89 </div>
90 <!-- End center Logo --> 90 <!-- End center Logo -->
91 91
92 <div class="mu-hero-featured-content"> 92 <div class="mu-hero-featured-content">
93 93
94 <h1>HELLO! WELCOME TO OPEN.</h1> 94 <h1>HELLO! WELCOME TO OPEN.</h1>
95 <h2>An initiative: Serving to developer community</h2> 95 <h2>An initiative: Serving to developer community</h2>
96 <p class="mu-event-date-line">17 - 18 March, 2018. Chandigarh, IND</p> 96 <p class="mu-event-date-line">17 - 18 March, 2018. Chandigarh, IND</p>
97 97
98 <div class="mu-event-counter-area"> 98 <div class="mu-event-counter-area">
99 <div id="mu-event-counter"> 99 <div id="mu-event-counter">
100 100
101 </div> 101 </div>
102 </div> 102 </div>
103 103
104 </div> 104 </div>
105 </div> 105 </div>
106 <!-- End hero featured area --> 106 <!-- End hero featured area -->
107 107
108 </div> 108 </div>
109 </div> 109 </div>
110 </div> 110 </div>
111 </header> 111 </header>
112 <!-- End Header --> 112 <!-- End Header -->
113 113
114 <!-- Start main content --> 114 <!-- Start main content -->
115 <main role="main"> 115 <main role="main">
116 <!-- Start About --> 116 <!-- Start About -->
117 <section id="mu-about"> 117 <section id="mu-about">
118 <div class="container"> 118 <div class="container">
119 <div class="row"> 119 <div class="row">
120 <div class="col-md-12"> 120 <div class="col-md-12">
121 <div class="mu-about-area"> 121 <div class="mu-about-area">
122 <!-- Start Feature Content --> 122 <!-- Start Feature Content -->
123 <div class="row"> 123 <div class="row">
124 <div class="col-md-6"> 124 <div class="col-md-6">
125 <div class="mu-about-left"> 125 <div class="mu-about-left">
126 <img class="imgabout" src="assets/images/OPENWEBBANNER.jpg" alt="Men Speaker" align="middle"> 126 <img class="imgabout" src="assets/images/ABOUT US2.jpg" alt="Men Speaker">
127 </div> 127 </div>
128 </div> 128 </div>
129 <div class="col-md-6"> 129 <div class="col-md-6">
130 <div class="mu-about-right"> 130 <div class="mu-about-right">
131 <h2>About The Event</h2> 131 <h2>About The Event</h2>
132 <p>In our country, we use a lot of open source projects but do not contribute back enough to them. We are experiencing a period where everyone is in a habit of taking from the surroundings and never desire to return in back.</p> 132 <p>Many technology companies and individuals like us use a lot of open source projects in order to save time and energy. The neglected truth is that only a continuous contribution towards the open source projects will result in their continuous and better use in future.</p>
133 <p>OPEN. presented and organised by Viithiisys Technologies aims at bringing a change to the developer community by contributing to the multiple open source projects. It is just like a social cause with a solid and realistic support system for their long journey towards a unicorn. We are looking forward to welcome anyone who is willing to devote their knowledge and time. As the saying goes โ€˜Charity begins at homeโ€™. Hence, we will make an initiative to start from our city itself.</p> 133 <p>Viithiisys Technologies is organising an initiative OPEN. with an aim of bringing in a change to the developer world by building a habit that contributes towards multiple open source projects. We are welcoming everyone, not only people with similar backgrounds and the experienced in open source, but, also the ones who are PASSIONATE about it. And as the saying goes โ€˜Charity begins at homeโ€™. Therefore, we start this drive in the beautiful city of Chandigarh and then slowly move towards other parts of India.</p>
134 134
135 <p>OPEN. intent to encourage a passionate sharing culture among individuals in our city. 135 <p>OPEN. intent to encourage a passionate sharing culture among individuals in our city.
136 </p> 136 </p>
137 <b>Some of the advantages one can get contributing towards open source:</b> 137 <b>Some of the advantages one can get contributing towards open source:</b>
138 <p><dl> 138 <p><dl>
139 <li>Opportunity to discuss & meet with project leads and authors.</li> 139 <li>Opportunity to discuss & meet with project leads and authors.</li>
140 <li>Widening up your vision towards the projects.</li> 140 <li>Widening up your vision towards the projects.</li>
141 <li>Opportunity to speak at various International conferences, sharing your knowledge with the world.</li> 141 <li>Opportunity to speak at various International conferences, sharing your knowledge with the world.</li>
142 <li>Awareness of latest technologies.</li> 142 <li>Awareness of latest technologies.</li>
143 <li>Sense of responsibility and even grooming newcomers in community.</li> 143 <li>Sense of responsibility and even grooming newcomers in community.</li>
144 <li>Building & expanding networks with the community.</li> 144 <li>Building & expanding networks with the community.</li>
145 </dl></dd> 145 </dl></dd>
146 146
147 </div> 147 </div>
148 </div> 148 </div>
149 </div> 149 </div>
150 <!-- End Feature Content --> 150 <!-- End Feature Content -->
151 151
152 </div> 152 </div>
153 </div> 153 </div>
154 </div> 154 </div>
155 </div> 155 </div>
156 </section> 156 </section>
157 <!-- End About --> 157 <!-- End About -->
158 158
159 <!-- Start Schedule --> 159 <!-- Start Schedule -->
160 <section id="mu-schedule"> 160 <section id="mu-schedule">
161 <div class="container"> 161 <div class="container">
162 <div class="row"> 162 <div class="row">
163 <div class="colo-md-12"> 163 <div class="colo-md-12">
164 <div class="mu-schedule-area"> 164 <div class="mu-schedule-area">
165 165
166 <div class="mu-title-area"> 166 <div class="mu-title-area">
167 <h2 class="mu-title">Schedule Detail</h2> 167 <h2 class="mu-title">Schedule Detail</h2>
168 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis unde, ut sapiente et voluptatum facilis consectetur incidunt provident asperiores at necessitatibus nulla sequi voluptas libero quasi explicabo veritatis minima porro.</p> --> 168 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis unde, ut sapiente et voluptatum facilis consectetur incidunt provident asperiores at necessitatibus nulla sequi voluptas libero quasi explicabo veritatis minima porro.</p> -->
169 </div> 169 </div>
170 170
171 <div class="mu-schedule-content-area"> 171 <div class="mu-schedule-content-area">
172 <!-- Nav tabs --> 172 <!-- Nav tabs -->
173 <ul class="nav nav-tabs mu-schedule-menu" role="tablist"> 173 <ul class="nav nav-tabs mu-schedule-menu" role="tablist">
174 <li role="presentation" class="active"><a href="#first-day" aria-controls="first-day" role="tab" data-toggle="tab">1 Day / 17 March</a></li> 174 <li role="presentation" class="active"><a href="#first-day" aria-controls="first-day" role="tab" data-toggle="tab">1 Day / 17 March</a></li>
175 <li role="presentation"><a href="#second-day" aria-controls="second-day" role="tab" data-toggle="tab">2 Day / 18 March</a></li> 175 <li role="presentation"><a href="#second-day" aria-controls="second-day" role="tab" data-toggle="tab">2 Day / 18 March</a></li>
176 <!-- <li role="presentation"><a href="#third-day" aria-controls="third-day" role="tab" data-toggle="tab">3 Day / 21 Feb</a></li> --> 176 <!-- <li role="presentation"><a href="#third-day" aria-controls="third-day" role="tab" data-toggle="tab">3 Day / 21 Feb</a></li> -->
177 177
178 </ul> 178 </ul>
179 179
180 <!-- Tab panes --> 180 <!-- Tab panes -->
181 <div class="tab-content mu-schedule-content"> 181 <div class="tab-content mu-schedule-content">
182 <div role="tabpanel" class="tab-pane fade mu-event-timeline in active" id="first-day"> 182 <div role="tabpanel" class="tab-pane fade mu-event-timeline in active" id="first-day">
183 <ul> 183 <ul>
184 <li> 184 <li>
185 <div class="mu-single-event"> 185 <div class="mu-single-event">
186 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 186 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
187 <p class="mu-event-time">09:00AM-10:00AM</p> 187 <p class="mu-event-time">09:00AM-10:00AM</p>
188 <h3>Registeration and Networking</h3> 188 <h3>Registeration and Networking</h3>
189 </div> 189 </div>
190 </li> 190 </li>
191 <li> 191 <li>
192 <div class="mu-single-event"> 192 <div class="mu-single-event">
193 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 193 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
194 <p class="mu-event-time">10:00AM-11:00AM</p> 194 <p class="mu-event-time">10:00AM-11:00AM</p>
195 <h3>Welcome #OPEN. and Introduction</h3> 195 <h3>Welcome #OPEN. and Introduction</h3>
196 <!-- <span>By Karl Groves</span> --> 196 <!-- <span>By Karl Groves</span> -->
197 </div> 197 </div>
198 </li> 198 </li>
199 <li> 199 <li>
200 <div class="mu-single-event"> 200 <div class="mu-single-event">
201 <!-- <img src="assets/images/speaker-2.jpg" alt="event speaker"> --> 201 <!-- <img src="assets/images/speaker-2.jpg" alt="event speaker"> -->
202 <p class="mu-event-time">11:00AM-12:30PM</p> 202 <p class="mu-event-time">11:00AM-12:30PM</p>
203 <h3>Learning Session #Open Source Community</h3> 203 <h3>Learning Session #Open Source Projects</h3>
204 <!-- <span>By Sarah Dransner</span> --> 204 <!-- <span>By Sarah Dransner</span> -->
205 </div> 205 </div>
206 </li> 206 </li>
207 <li> 207 <li>
208 <div class="mu-single-event"> 208 <div class="mu-single-event">
209 <!-- <img src="assets/images/speaker-3.jpg" alt="event speaker"> --> 209 <!-- <img src="assets/images/speaker-3.jpg" alt="event speaker"> -->
210 <p class="mu-event-time">12.30PM-01:00PM</p> 210 <p class="mu-event-time">12.30PM-01:00PM</p>
211 <h3>Mentor Walkthrough</h3> 211 <h3>Mentor Walkthrough</h3>
212 <!-- <span>By Ned Stark</span> --> 212 <!-- <span>By Ned Stark</span> -->
213 </div> 213 </div>
214 </li> 214 </li>
215 <li> 215 <li>
216 <div class="mu-single-event"> 216 <div class="mu-single-event">
217 <!-- <img src="assets/images/lunch-break.png" alt="event speaker"> --> 217 <!-- <img src="assets/images/lunch-break.png" alt="event speaker"> -->
218 <p class="mu-event-time">01:00PM onwards</p> 218 <p class="mu-event-time">01:00PM onwards</p>
219 <h3>Lunch</h3> 219 <h3>Lunch</h3>
220 </div> 220 </div>
221 </li> 221 </li>
222 <li> 222 <li>
223 <div class="mu-single-event"> 223 <div class="mu-single-event">
224 <!-- <img src="assets/images/brain.jpg" alt="event speaker"> --> 224 <!-- <img src="assets/images/brain.jpg" alt="event speaker"> -->
225 <p class="mu-event-time">02:00PM-02:30PM</p> 225 <p class="mu-event-time">02:00PM-02:30PM</p>
226 <h3>Brainstrom Session</h3> 226 <h3>Brainstrom Session</h3>
227 </div> 227 </div>
228 </li> 228 </li>
229 <li> 229 <li>
230 <div class="mu-single-event"> 230 <div class="mu-single-event">
231 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 231 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
232 <p class="mu-event-time">02:30PM onwards</p> 232 <p class="mu-event-time">02:30PM onwards</p>
233 <h3>Dev Sprint 1</h3> 233 <h3>Dev Sprint 1</h3>
234 </div> 234 </div>
235 </li> 235 </li>
236 <li> 236 <li>
237 <div class="mu-single-event"> 237 <div class="mu-single-event">
238 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 238 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
239 <p class="mu-event-time">03:45PM-04:15PM</p> 239 <p class="mu-event-time">03:45PM-04:15PM</p>
240 <h3>Mentor Walkthrough</h3> 240 <h3>Mentor Walkthrough</h3>
241 </div> 241 </div>
242 </li> 242 </li>
243 <li> 243 <li>
244 <div class="mu-single-event"> 244 <div class="mu-single-event">
245 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 245 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
246 <p class="mu-event-time">5:45PM-6:15PM</p> 246 <p class="mu-event-time">5:45PM-6:15PM</p>
247 <h3>Coffee/Tea Break</h3> 247 <h3>Coffee/Tea Break</h3>
248 </div> 248 </div>
249 </li> 249 </li>
250 <li> 250 <li>
251 <div class="mu-single-event"> 251 <div class="mu-single-event">
252 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 252 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
253 <p class="mu-event-time">07:00PM onwards</p> 253 <p class="mu-event-time">07:00PM onwards</p>
254 <h3>Dev Sprint 2</h3> 254 <h3>Dev Sprint 2</h3>
255 </div> 255 </div>
256 </li> 256 </li>
257 <li> 257 <li>
258 <div class="mu-single-event"> 258 <div class="mu-single-event">
259 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 259 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
260 <p class="mu-event-time">08:00PM-0835PM</p> 260 <p class="mu-event-time">08:00PM-0835PM</p>
261 <h3>Dinner</h3> 261 <h3>Dinner</h3>
262 </div> 262 </div>
263 </li> 263 </li>
264 <li> 264 <li>
265 <div class="mu-single-event"> 265 <div class="mu-single-event">
266 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 266 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
267 <p class="mu-event-time">08:45PM-09:00PM</p> 267 <p class="mu-event-time">08:45PM-09:00PM</p>
268 <h3>Brainstrom Session</h3> 268 <h3>Brainstrom Session</h3>
269 </div> 269 </div>
270 </li> 270 </li>
271 <li> 271 <li>
272 <div class="mu-single-event"> 272 <div class="mu-single-event">
273 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 273 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
274 <p class="mu-event-time">09:00PM onwards</p> 274 <p class="mu-event-time">09:00PM onwards</p>
275 <h3>Dev Sprint 2 continues..</h3> 275 <h3>Dev Sprint 2 continues</h3>
276 </div> 276 </div>
277 </li> 277 </li>
278 </ul> 278 </ul>
279 </div> 279 </div>
280 <div role="tabpanel" class="tab-pane fade mu-event-timeline" id="second-day"> 280 <div role="tabpanel" class="tab-pane fade mu-event-timeline" id="second-day">
281 <ul> 281 <ul>
282 <li> 282 <li>
283 <div class="mu-single-event"> 283 <div class="mu-single-event">
284 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 284 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
285 <p class="mu-event-time">08:30AM-09:30AM</p> 285 <p class="mu-event-time">08:30AM-09:30AM</p>
286 <h3>Breakfast</h3> 286 <h3>Breakfast</h3>
287 </div> 287 </div>
288 </li> 288 </li>
289 <li> 289 <li>
290 <div class="mu-single-event"> 290 <div class="mu-single-event">
291 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 291 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
292 <p class="mu-event-time">09:30AM-10:30AM</p> 292 <p class="mu-event-time">09:30AM-10:30AM</p>
293 <h3>Registeration and Networking</h3> 293 <h3>Registeration and Networking</h3>
294 </div> 294 </div>
295 </li> 295 </li>
296 <li> 296 <li>
297 <div class="mu-single-event"> 297 <div class="mu-single-event">
298 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 298 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
299 <p class="mu-event-time">10:30AM-11:00AM</p> 299 <p class="mu-event-time">10:30AM-11:00AM</p>
300 <h3>Mentor Walkthrough</h3> 300 <h3>Mentor Walkthrough</h3>
301 </div> 301 </div>
302 </li> 302 </li>
303 <li> 303 <li>
304 <div class="mu-single-event"> 304 <div class="mu-single-event">
305 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 305 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
306 <p class="mu-event-time">11:15AM onwards</p> 306 <p class="mu-event-time">11:15AM onwards</p>
307 <h3>Dev Sprint 3</h3> 307 <h3>Dev Sprint 3</h3>
308 </div> 308 </div>
309 </li> 309 </li>
310 <li> 310 <li>
311 <div class="mu-single-event"> 311 <div class="mu-single-event">
312 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 312 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
313 <p class="mu-event-time">02:00PM-02:35PM</p> 313 <p class="mu-event-time">02:00PM-02:35PM</p>
314 <h3>Lunch</h3> 314 <h3>Lunch</h3>
315 </div> 315 </div>
316 </li> 316 </li>
317 <li> 317 <li>
318 <div class="mu-single-event"> 318 <div class="mu-single-event">
319 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 319 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
320 <p class="mu-event-time">04:00PM onwards</p> 320 <p class="mu-event-time">04:00PM onwards</p>
321 <div style="overflow: hidden"> 321 <div style="overflow: hidden">
322 <h3>Wrapup</h3> 322 <h3>Wrapup</h3>
323 <h3>Finalization of the results</h3> 323 <h3>Finalization of the results</h3>
324 <h3>Winner selection and Prize distribution</h3> 324 <h3>Winner selection and Prize distribution</h3>
325 <h3>Thanks giving session</h3> 325 <h3>Thanks giving session</h3>
326 </div> 326 </div>
327 </div> 327 </div>
328 </li> 328 </li>
329 </ul> 329 </ul>
330 </div> 330 </div>
331 <div role="tabpanel" class="tab-pane fade mu-event-timeline" id="third-day"> 331 <div role="tabpanel" class="tab-pane fade mu-event-timeline" id="third-day">
332 <ul> 332 <ul>
333 <li> 333 <li>
334 <div class="mu-single-event"> 334 <div class="mu-single-event">
335 <p class="mu-event-time">9.00 AM</p> 335 <p class="mu-event-time">9.00 AM</p>
336 <h3>Breakfast</h3> 336 <h3>Breakfast</h3>
337 </div> 337 </div>
338 </li> 338 </li>
339 <li> 339 <li>
340 <div class="mu-single-event"> 340 <div class="mu-single-event">
341 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> --> 341 <!-- <img src="assets/images/speaker-1.jpg" alt="event speaker"> -->
342 <p class="mu-event-time">10.00 AM</p> 342 <p class="mu-event-time">10.00 AM</p>
343 <h3>Advanced SVG Animations</h3> 343 <h3>Advanced SVG Animations</h3>
344 <span>By Karl Groves</span> 344 <span>By Karl Groves</span>
345 </div> 345 </div>
346 </li> 346 </li>
347 <li> 347 <li>
348 <div class="mu-single-event"> 348 <div class="mu-single-event">
349 <!-- <img src="assets/images/speaker-2.jpg" alt="event speaker"> --> 349 <!-- <img src="assets/images/speaker-2.jpg" alt="event speaker"> -->
350 <p class="mu-event-time">11.00 AM</p> 350 <p class="mu-event-time">11.00 AM</p>
351 <h3>Presenting Work with Confidence</h3> 351 <h3>Presenting Work with Confidence</h3>
352 <span>By Sarah Dransner</span> 352 <span>By Sarah Dransner</span>
353 </div> 353 </div>
354 </li> 354 </li>
355 <li> 355 <li>
356 <div class="mu-single-event"> 356 <div class="mu-single-event">
357 <!-- <img src="assets/images/speaker-3.jpg" alt="event speaker"> --> 357 <!-- <img src="assets/images/speaker-3.jpg" alt="event speaker"> -->
358 <p class="mu-event-time">12.00 AM</p> 358 <p class="mu-event-time">12.00 AM</p>
359 <h3>Keynote on UX & UI Design</h3> 359 <h3>Keynote on UX & UI Design</h3>
360 <span>By Ned Stark</span> 360 <span>By Ned Stark</span>
361 </div> 361 </div>
362 </li> 362 </li>
363 <li> 363 <li>
364 <div class="mu-single-event"> 364 <div class="mu-single-event">
365 <p class="mu-event-time">1.00 PM</p> 365 <p class="mu-event-time">1.00 PM</p>
366 <h3>The End</h3> 366 <h3>The End</h3>
367 </div> 367 </div>
368 </li> 368 </li>
369 </ul> 369 </ul>
370 </div> 370 </div>
371 371
372 </div> 372 </div>
373 373
374 </div> 374 </div>
375 375
376 </div> 376 </div>
377 </div> 377 </div>
378 </div> 378 </div>
379 </div> 379 </div>
380 </section> 380 </section>
381 <!-- End Schedule --> 381 <!-- End Schedule -->
382 382
383 <!-- Start Speakers --> 383 <!-- Start Speakers -->
384 <!-- <section id="mu-speakers"> 384 <!-- <section id="mu-speakers">
385 <div class="container"> 385 <div class="container">
386 <div class="row"> 386 <div class="row">
387 <div class="col-md-12"> 387 <div class="col-md-12">
388 <div class="mu-speakers-area"> 388 <div class="mu-speakers-area">
389 389
390 <div class="mu-title-area"> 390 <div class="mu-title-area">
391 <h2 class="mu-title">Our Speakers</h2> --> 391 <h2 class="mu-title">Our Speakers</h2> -->
392 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis unde, ut sapiente et voluptatum facilis consectetur incidunt provident asperiores at necessitatibus nulla sequi voluptas libero quasi explicabo veritatis minima porro.</p> --> 392 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis unde, ut sapiente et voluptatum facilis consectetur incidunt provident asperiores at necessitatibus nulla sequi voluptas libero quasi explicabo veritatis minima porro.</p> -->
393 <!-- </div> --> 393 <!-- </div> -->
394 394
395 <!-- Start Speakers Content --> 395 <!-- Start Speakers Content -->
396 <!-- <div class="mu-speakers-content"> 396 <!-- <div class="mu-speakers-content">
397 397
398 <div class="mu-speakers-slider"> 398 <div class="mu-speakers-slider">
399 --> 399 -->
400 <!-- Start single speaker --> 400 <!-- Start single speaker -->
401 <!-- <div class="mu-single-speakers"> 401 <!-- <div class="mu-single-speakers">
402 <img src="assets/images/gaurav_saini.jpg" alt="speaker img"> 402 <img src="assets/images/gaurav_saini.jpg" alt="speaker img">
403 <div class="mu-single-speakers-info"> 403 <div class="mu-single-speakers-info">
404 <h3>Gaurav Saini</h3> 404 <h3>Gaurav Saini</h3>
405 <p>Director Viithiisys</p> 405 <p>Director Viithiisys</p>
406 <ul class="mu-single-speakers-social"> 406 <ul class="mu-single-speakers-social">
407 <li><a href="https://www.facebook.com/gauravsaini03"><i class="fa fa-facebook"></i></a></li> 407 <li><a href="https://www.facebook.com/gauravsaini03"><i class="fa fa-facebook"></i></a></li>
408 <li><a href="https://twitter.com/gauravsaini03?lang=en"><i class="fa fa-twitter"></i></a></li> 408 <li><a href="https://twitter.com/gauravsaini03?lang=en"><i class="fa fa-twitter"></i></a></li>
409 <li><a href="https://in.linkedin.com/in/gauravsaini03"><i class="fa fa-linkedin"></i></a></li> 409 <li><a href="https://in.linkedin.com/in/gauravsaini03"><i class="fa fa-linkedin"></i></a></li>
410 </ul> 410 </ul>
411 </div> 411 </div>
412 </div> --> 412 </div> -->
413 <!-- End single speaker --> 413 <!-- End single speaker -->
414 414
415 <!-- Start single speaker --> 415 <!-- Start single speaker -->
416 <!-- <div class="mu-single-speakers"> 416 <!-- <div class="mu-single-speakers">
417 <img src="assets/images/speaker-2.jpg" alt="speaker img"> 417 <img src="assets/images/speaker-2.jpg" alt="speaker img">
418 <div class="mu-single-speakers-info"> 418 <div class="mu-single-speakers-info">
419 <h3>Sarah Dransner</h3> 419 <h3>Sarah Dransner</h3>
420 <p>Business Consultant</p> 420 <p>Business Consultant</p>
421 <ul class="mu-single-speakers-social"> 421 <ul class="mu-single-speakers-social">
422 <li><a href="#"><i class="fa fa-facebook"></i></a></li> 422 <li><a href="#"><i class="fa fa-facebook"></i></a></li>
423 <li><a href="#"><i class="fa fa-twitter"></i></a></li> 423 <li><a href="#"><i class="fa fa-twitter"></i></a></li>
424 <li><a href="#"><i class="fa fa-linkedin"></i></a></li> 424 <li><a href="#"><i class="fa fa-linkedin"></i></a></li>
425 </ul> 425 </ul>
426 </div> 426 </div>
427 </div> --> 427 </div> -->
428 <!-- End single speaker --> 428 <!-- End single speaker -->
429 429
430 430
431 <!-- Start single speaker --> 431 <!-- Start single speaker -->
432 <!-- <div class="mu-single-speakers"> 432 <!-- <div class="mu-single-speakers">
433 <img src="assets/images/speaker-3.jpg" alt="speaker img"> 433 <img src="assets/images/speaker-3.jpg" alt="speaker img">
434 <div class="mu-single-speakers-info"> 434 <div class="mu-single-speakers-info">
435 <h3>Ned Stark</h3> 435 <h3>Ned Stark</h3>
436 <p>UI/UX Specialist</p> 436 <p>UI/UX Specialist</p>
437 <ul class="mu-single-speakers-social"> 437 <ul class="mu-single-speakers-social">
438 <li><a href="#"><i class="fa fa-facebook"></i></a></li> 438 <li><a href="#"><i class="fa fa-facebook"></i></a></li>
439 <li><a href="#"><i class="fa fa-twitter"></i></a></li> 439 <li><a href="#"><i class="fa fa-twitter"></i></a></li>
440 <li><a href="#"><i class="fa fa-linkedin"></i></a></li> 440 <li><a href="#"><i class="fa fa-linkedin"></i></a></li>
441 </ul> 441 </ul>
442 </div> 442 </div>
443 </div> --> 443 </div> -->
444 <!-- End single speaker --> 444 <!-- End single speaker -->
445 445
446 446
447 <!-- Start single speaker --> 447 <!-- Start single speaker -->
448 <!-- <div class="mu-single-speakers"> 448 <!-- <div class="mu-single-speakers">
449 <img src="assets/images/speaker-4.jpg" alt="speaker img"> 449 <img src="assets/images/speaker-4.jpg" alt="speaker img">
450 <div class="mu-single-speakers-info"> 450 <div class="mu-single-speakers-info">
451 <h3>Michaela Lehr </h3> 451 <h3>Michaela Lehr </h3>
452 <p>Digital Marketer</p> 452 <p>Digital Marketer</p>
453 <ul class="mu-single-speakers-social"> 453 <ul class="mu-single-speakers-social">
454 <li><a href="#"><i class="fa fa-facebook"></i></a></li> 454 <li><a href="#"><i class="fa fa-facebook"></i></a></li>
455 <li><a href="#"><i class="fa fa-twitter"></i></a></li> 455 <li><a href="#"><i class="fa fa-twitter"></i></a></li>
456 <li><a href="#"><i class="fa fa-linkedin"></i></a></li> 456 <li><a href="#"><i class="fa fa-linkedin"></i></a></li>
457 </ul> 457 </ul>
458 </div> 458 </div>
459 </div> --> 459 </div> -->
460 <!-- End single speaker --> 460 <!-- End single speaker -->
461 461
462 <!-- Start single speaker --> 462 <!-- Start single speaker -->
463 <!-- <div class="mu-single-speakers"> 463 <!-- <div class="mu-single-speakers">
464 <img src="assets/images/speaker-1.jpg" alt="speaker img"> 464 <img src="assets/images/speaker-1.jpg" alt="speaker img">
465 <div class="mu-single-speakers-info"> 465 <div class="mu-single-speakers-info">
466 <h3>Karl Groves</h3> 466 <h3>Karl Groves</h3>
467 <p>Digital Artist</p> 467 <p>Digital Artist</p>
468 <ul class="mu-single-speakers-social"> 468 <ul class="mu-single-speakers-social">
469 <li><a href="#"><i class="fa fa-facebook"></i></a></li> 469 <li><a href="#"><i class="fa fa-facebook"></i></a></li>
470 <li><a href="#"><i class="fa fa-twitter"></i></a></li> 470 <li><a href="#"><i class="fa fa-twitter"></i></a></li>
471 <li><a href="#"><i class="fa fa-linkedin"></i></a></li> 471 <li><a href="#"><i class="fa fa-linkedin"></i></a></li>
472 </ul> 472 </ul>
473 </div> 473 </div>
474 </div> --> 474 </div> -->
475 <!-- End single speaker --> 475 <!-- End single speaker -->
476 476
477 <!-- Start single speaker --> 477 <!-- Start single speaker -->
478 <!-- <div class="mu-single-speakers"> 478 <!-- <div class="mu-single-speakers">
479 <img src="assets/images/speaker-2.jpg" alt="speaker img"> 479 <img src="assets/images/speaker-2.jpg" alt="speaker img">
480 <div class="mu-single-speakers-info"> 480 <div class="mu-single-speakers-info">
481 <h3>Sarah Dransner</h3> 481 <h3>Sarah Dransner</h3>
482 <p>Business Consultant</p> 482 <p>Business Consultant</p>
483 <ul class="mu-single-speakers-social"> 483 <ul class="mu-single-speakers-social">
484 <li><a href="#"><i class="fa fa-facebook"></i></a></li> 484 <li><a href="#"><i class="fa fa-facebook"></i></a></li>
485 <li><a href="#"><i class="fa fa-twitter"></i></a></li> 485 <li><a href="#"><i class="fa fa-twitter"></i></a></li>
486 <li><a href="#"><i class="fa fa-linkedin"></i></a></li> 486 <li><a href="#"><i class="fa fa-linkedin"></i></a></li>
487 </ul> 487 </ul>
488 </div> 488 </div>
489 </div> --> 489 </div> -->
490 <!-- End single speaker --> 490 <!-- End single speaker -->
491 491
492 492
493 <!-- Start single speaker --> 493 <!-- Start single speaker -->
494 <!-- <div class="mu-single-speakers"> 494 <!-- <div class="mu-single-speakers">
495 <img src="assets/images/speaker-3.jpg" alt="speaker img"> 495 <img src="assets/images/speaker-3.jpg" alt="speaker img">
496 <div class="mu-single-speakers-info"> 496 <div class="mu-single-speakers-info">
497 <h3>Ned Stark</h3> 497 <h3>Ned Stark</h3>
498 <p>UI/UX Specialist</p> 498 <p>UI/UX Specialist</p>
499 <ul class="mu-single-speakers-social"> 499 <ul class="mu-single-speakers-social">
500 <li><a href="#"><i class="fa fa-facebook"></i></a></li> 500 <li><a href="#"><i class="fa fa-facebook"></i></a></li>
501 <li><a href="#"><i class="fa fa-twitter"></i></a></li> 501 <li><a href="#"><i class="fa fa-twitter"></i></a></li>
502 <li><a href="#"><i class="fa fa-linkedin"></i></a></li> 502 <li><a href="#"><i class="fa fa-linkedin"></i></a></li>
503 </ul> 503 </ul>
504 </div> 504 </div>
505 </div> --> 505 </div> -->
506 <!-- End single speaker --> 506 <!-- End single speaker -->
507 507
508 508
509 <!-- Start single speaker --> 509 <!-- Start single speaker -->
510 <!-- <div class="mu-single-speakers"> 510 <!-- <div class="mu-single-speakers">
511 <img src="assets/images/speaker-4.jpg" alt="speaker img"> 511 <img src="assets/images/speaker-4.jpg" alt="speaker img">
512 <div class="mu-single-speakers-info"> 512 <div class="mu-single-speakers-info">
513 <h3>Michaela Lehr </h3> 513 <h3>Michaela Lehr </h3>
514 <p>Digital Marketer</p> 514 <p>Digital Marketer</p>
515 <ul class="mu-single-speakers-social"> 515 <ul class="mu-single-speakers-social">
516 <li><a href="#"><i class="fa fa-facebook"></i></a></li> 516 <li><a href="#"><i class="fa fa-facebook"></i></a></li>
517 <li><a href="#"><i class="fa fa-twitter"></i></a></li> 517 <li><a href="#"><i class="fa fa-twitter"></i></a></li>
518 <li><a href="#"><i class="fa fa-linkedin"></i></a></li> 518 <li><a href="#"><i class="fa fa-linkedin"></i></a></li>
519 </ul> 519 </ul>
520 </div> 520 </div>
521 </div> --> 521 </div> -->
522 <!-- End single speaker --> 522 <!-- End single speaker -->
523 <!-- </div> 523 <!-- </div>
524 </div> --> 524 </div> -->
525 <!-- End Speakers Content --> 525 <!-- End Speakers Content -->
526 526
527 <!-- </div> 527 <!-- </div>
528 </div> 528 </div>
529 </div> 529 </div>
530 </div> 530 </div>
531 </section> --> 531 </section> -->
532 <!-- End Speakers --> 532 <!-- End Speakers -->
533 533
534 <!-- Start Venue --> 534 <!-- Start Venue -->
535 <section id="mu-venue"> 535 <section id="mu-venue">
536 <div class="mu-venue-area"> 536 <div class="mu-venue-area">
537 <div class="row"> 537 <div class="row">
538 538
539 <div class="col-md-6"> 539 <div class="col-md-6">
540 <iframe width="600" height="450" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=SCO%2050-51%2C%203rd%20Floor%2C%20Sector%2034A%2C%20Sub.%20City%20Center%2C%20Chandigarh%2C%20160022&key=AIzaSyB_WETOVwJC46DAId1CKs64QrEbbZLWUZI" allowfullscreen></iframe> 540 <iframe width="600" height="450" frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=SCO%2050-51%2C%203rd%20Floor%2C%20Sector%2034A%2C%20Sub.%20City%20Center%2C%20Chandigarh%2C%20160022&key=AIzaSyB_WETOVwJC46DAId1CKs64QrEbbZLWUZI" allowfullscreen></iframe>
541 </div> 541 </div>
542 542
543 <div class="col-md-6"> 543 <div class="col-md-6">
544 <div class="mu-venue-address"> 544 <div class="mu-venue-address">
545 <h2>VENUE <i class="fa fa-chevron-right" aria-hidden="true"></i></h2> 545 <h2>VENUE <i class="fa fa-chevron-right" aria-hidden="true"></i></h2>
546 <h3>Spacejam</h3> 546 <h3>Spacejam</h3>
547 <h4>SCO 50-51, 3rd Floor, Sector 34A, Sub. City Center, Chandigarh, 160022</h4> 547 <h4>SCO 50-51, 3rd Floor, Sector 34A, Sub. City Center, Chandigarh, 160022</h4>
548 <p>SpaceJam is the coworking space in Chandigarh you have always wanted. We all have ideas and concepts, but it takes more than sheer will to transform them in to products that the World can enjoy. SpaceJam provides you with a shared office space that allows you to co-work with like-minded creative individuals and transform your ideas in to tangible products! With high-speed business Internet, world-class meeting room, ergonomic seating, optimum work-lighting and the best location in Chandigarh, SpaceJam is the go to coworking space in the Tricity!</p> 548 <p>SpaceJam is the coworking space in Chandigarh you have always wanted. We all have ideas and concepts, but it takes more than sheer will to transform them in to products that the World can enjoy. SpaceJam provides you with a shared office space that allows you to co-work with like-minded creative individuals and transform your ideas in to tangible products! With high-speed business Internet, world-class meeting room, ergonomic seating, optimum work-lighting and the best location in Chandigarh, SpaceJam is the go to coworking space in the Tricity!</p>
549 </div> 549 </div>
550 </div> 550 </div>
551 </div> 551 </div>
552 </div> 552 </div>
553 </section> 553 </section>
554 <!-- End Venue --> 554 <!-- End Venue -->
555 <!-- Start FAQ --> 555 <!-- Start FAQ -->
556 <section id="mu-faq"> 556 <section id="mu-faq">
557 <div class="container"> 557 <div class="container">
558 <div class="row"> 558 <div class="row">
559 <div class="col-md-12"> 559 <div class="col-md-12">
560 <div class="mu-faq-area"> 560 <div class="mu-faq-area">
561 561
562 <div class="mu-title-area"> 562 <div class="mu-title-area">
563 <h2 class="mu-title">FAQ</h2> 563 <h2 class="mu-title">FAQ</h2>
564 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint assumenda ut molestias doloremque ipsam, fugit laborum totam, pariatur est cumque at, repudiandae officia ex dolores quas minus optio, iusto soluta?</p> --> 564 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint assumenda ut molestias doloremque ipsam, fugit laborum totam, pariatur est cumque at, repudiandae officia ex dolores quas minus optio, iusto soluta?</p> -->
565 </div> 565 </div>
566 566
567 <div class="mu-faq-content"> 567 <div class="mu-faq-content">
568 568
569 <div class="panel-group" id="accordion"> 569 <div class="panel-group" id="accordion">
570 <!-- collapseone start --> 570 <!-- collapseone start -->
571 <div class="panel panel-default"> 571 <div class="panel panel-default">
572 <div class="panel-heading"> 572 <div class="panel-heading">
573 <h4 class="panel-title"> 573 <h4 class="panel-title">
574 <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true"> 574 <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true">
575 <span class="fa fa-angle-down"></span> Who all can participate? 575 <span class="fa fa-angle-down"></span> Who all can participate?
576 </a> 576 </a>
577 </h4> 577 </h4>
578 </div> 578 </div>
579 <div id="collapseOne" class="panel-collapse collapse in"> 579 <div id="collapseOne" class="panel-collapse collapse in">
580 <div class="panel-body"> 580 <div class="panel-body">
581 Developers both professionals as well as students, any age. 581 Developers both professionals as well as students, any age.
582 </div> 582 </div>
583 </div> 583 </div>
584 </div> 584 </div>
585 <!-- collapseone end --> 585 <!-- collapseone end -->
586 <!-- collapseTwo start --> 586 <!-- collapseTwo start -->
587 <div class="panel panel-default"> 587 <div class="panel panel-default">
588 <div class="panel-heading"> 588 <div class="panel-heading">
589 <h4 class="panel-title"> 589 <h4 class="panel-title">
590 <a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo"> 590 <a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">
591 <span class="fa fa-angle-up"></span> What is the event about? 591 <span class="fa fa-angle-up"></span> What is the event about?
592 </a> 592 </a>
593 </h4> 593 </h4>
594 </div> 594 </div>
595 <div id="collapseTwo" class="panel-collapse collapse"> 595 <div id="collapseTwo" class="panel-collapse collapse">
596 <div class="panel-body"> 596 <div class="panel-body">
597 The event is all about contributing to the open source community from where most of us use open source projects to save time, money and energy. and building a sharing culture in the society. 597 The event is all about contributing to the open source community from where most of us use open source projects to save time, money and energy. and building a sharing culture in the society.
598 </div> 598 </div>
599 </div> 599 </div>
600 </div> 600 </div>
601 <!-- collapseTwo End --> 601 <!-- collapseTwo End -->
602 <!-- collapseThree start --> 602 <!-- collapseThree start -->
603 <div class="panel panel-default"> 603 <div class="panel panel-default">
604 <div class="panel-heading"> 604 <div class="panel-heading">
605 <h4 class="panel-title"> 605 <h4 class="panel-title">
606 <a data-toggle="collapse" data-parent="#accordion" href="#collapseThree"> 606 <a data-toggle="collapse" data-parent="#accordion" href="#collapseThree">
607 <span class="fa fa-angle-up"></span> How will the developers contribute? 607 <span class="fa fa-angle-up"></span> How will the developers contribute?
608 </a> 608 </a>
609 </h4> 609 </h4>
610 </div> 610 </div>
611 <div id="collapseThree" class="panel-collapse collapse"> 611 <div id="collapseThree" class="panel-collapse collapse">
612 <div class="panel-body"> 612 <div class="panel-body">
613 Developers will have to work on different bugs/tasks spread across multiple open source projects. 613 Developers will have to work on different bugs/tasks spread across multiple open source projects.
614 </div> 614 </div>
615 </div> 615 </div>
616 </div> 616 </div>
617 <!-- collapseThree End --> 617 <!-- collapseThree End -->
618 <!-- collapseFour start --> 618 <!-- collapseFour start -->
619 <div class="panel panel-default"> 619 <div class="panel panel-default">
620 <div class="panel-heading"> 620 <div class="panel-heading">
621 <h4 class="panel-title"> 621 <h4 class="panel-title">
622 <a data-toggle="collapse" data-parent="#accordion" href="#collapseFour"> 622 <a data-toggle="collapse" data-parent="#accordion" href="#collapseFour">
623 <span class="fa fa-angle-up"></span> Is this an overnight event? 623 <span class="fa fa-angle-up"></span> Is this an overnight event?
624 </a> 624 </a>
625 </h4> 625 </h4>
626 </div> 626 </div>
627 <div id="collapseFour" class="panel-collapse collapse"> 627 <div id="collapseFour" class="panel-collapse collapse">
628 <div class="panel-body"> 628 <div class="panel-body">
629 Yes, the event shall takes place for entire night. Developers can work on the bugs overnight. 629 Yes, the event shall takes place for entire night. Developers can work on the bugs overnight.
630 </div> 630 </div>
631 </div> 631 </div>
632 </div> 632 </div>
633 <!-- collapseFour End --> 633 <!-- collapseFour End -->
634 <!-- collapseFive start --> 634 <!-- collapseFive start -->
635 <div class="panel panel-default"> 635 <div class="panel panel-default">
636 <div class="panel-heading"> 636 <div class="panel-heading">
637 <h4 class="panel-title"> 637 <h4 class="panel-title">
638 <a data-toggle="collapse" data-parent="#accordion" href="#collapseFive"> 638 <a data-toggle="collapse" data-parent="#accordion" href="#collapseFive">
639 <span class="fa fa-angle-up"></span> How will the winners be chosen? 639 <span class="fa fa-angle-up"></span> How will the winners be chosen?
640 </a> 640 </a>
641 </h4> 641 </h4>
642 </div> 642 </div>
643 <div id="collapseFive" class="panel-collapse collapse"> 643 <div id="collapseFive" class="panel-collapse collapse">
644 <div class="panel-body"> 644 <div class="panel-body">
645 The team which solves the maximum number of assigned bugs in the given time interval will be chosen as the winner of the event. 645 The team which solves the maximum number of assigned bugs in the given time interval will be chosen as the winner of the event.
646 </div> 646 </div>
647 </div> 647 </div>
648 </div> 648 </div>
649 <!-- collapseFive End --> 649 <!-- collapseFive End -->
650 <!-- collapseSix start --> 650 <!-- collapseSix start -->
651 <div class="panel panel-default"> 651 <div class="panel panel-default">
652 <div class="panel-heading"> 652 <div class="panel-heading">
653 <h4 class="panel-title"> 653 <h4 class="panel-title">
654 <a data-toggle="collapse" data-parent="#accordion" href="#collapseSix"> 654 <a data-toggle="collapse" data-parent="#accordion" href="#collapseSix">
655 <span class="fa fa-angle-up"></span> Can teams/groups apply ? 655 <span class="fa fa-angle-up"></span> Can teams/groups apply ?
656 </a> 656 </a>
657 </h4> 657 </h4>
658 </div> 658 </div>
659 <div id="collapseSix" class="panel-collapse collapse"> 659 <div id="collapseSix" class="panel-collapse collapse">
660 <div class="panel-body"> 660 <div class="panel-body">
661 Yes, teams/group of max. three people, can apply in the event. 661 Yes, teams/group of max. three people, can apply in the event.
662 </div> 662 </div>
663 </div> 663 </div>
664 </div> 664 </div>
665 <!-- collapseSix End --> 665 <!-- collapseSix End -->
666 <!-- collapseSeven start --> 666 <!-- collapseSeven start -->
667 <div class="panel panel-default"> 667 <div class="panel panel-default">
668 <div class="panel-heading"> 668 <div class="panel-heading">
669 <h4 class="panel-title"> 669 <h4 class="panel-title">
670 <a data-toggle="collapse" data-parent="#accordion" href="#collapSeven"> 670 <a data-toggle="collapse" data-parent="#accordion" href="#collapSeven">
671 <span class="fa fa-angle-up"></span> How will I be notified for further process and any updates? 671 <span class="fa fa-angle-up"></span> How will I be notified for further process and any updates?
672 </a> 672 </a>
673 </h4> 673 </h4>
674 </div> 674 </div>
675 <div id="collapSeven" class="panel-collapse collapse"> 675 <div id="collapSeven" class="panel-collapse collapse">
676 <div class="panel-body"> 676 <div class="panel-body">
677 We will send you emails regarding all the updates on your registered mail Ids and you'll be notified on a regular basis. You can also follow our page on facebook. /open for regular notifications and updates. 677 We will send you emails regarding all the updates on your registered mail Ids and you'll be notified on a regular basis. You can also follow our page on facebook. /open for regular notifications and updates.
678 </div> 678 </div>
679 </div> 679 </div>
680 </div> 680 </div>
681 <!-- collapseSeven End --> 681 <!-- collapseSeven End -->
682 <!-- collapseEight start --> 682 <!-- collapseEight start -->
683 <div class="panel panel-default"> 683 <div class="panel panel-default">
684 <div class="panel-heading"> 684 <div class="panel-heading">
685 <h4 class="panel-title"> 685 <h4 class="panel-title">
686 <a data-toggle="collapse" data-parent="#accordion" href="#collapseEight"> 686 <a data-toggle="collapse" data-parent="#accordion" href="#collapseEight">
687 <span class="fa fa-angle-up"></span> What are the key dates ? 687 <span class="fa fa-angle-up"></span> What are the key dates ?
688 </a> 688 </a>
689 </h4> 689 </h4>
690 </div> 690 </div>
691 <div id="collapseEight" class="panel-collapse collapse"> 691 <div id="collapseEight" class="panel-collapse collapse">
692 <div class="panel-body"> 692 <div class="panel-body">
693 Feburary 12 - Online registrations 693 Feburary 19 - Online registrations
694 Feburary 10- Applications closed 694 March 20- Applications closed
695 </div> 695 </div>
696 </div> 696 </div>
697 </div> 697 </div>
698 <!-- collapseEight End --> 698 <!-- collapseEight End -->
699 </div> 699 </div>
700 </div> 700 </div>
701 </div> 701 </div>
702 </div> 702 </div>
703 </div> 703 </div>
704 </section> 704 </section>
705 <!-- End FAQ --> 705 <!-- End FAQ -->
706
707 <!-- Start Register --> 706 <!-- Start Register -->
708 <iframe src="https://docs.google.com/forms/d/e/1FAIpQLScuQ6uEd9DzCzJhmCulr5Z4clp1mzhfItiuVfri3Fo1QA5FKQ/viewform?embedded=true" width="1280" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe> 707 <section id="mu-register">
709 <!-- End Register --> 708
709 <!-- <div class="container">
710 <div class="row">
711 <div class="col-md-12">
712 <div class="mu-register-area">
713
714 <div class="mu-title-area">
715 <h2 class="mu-title">Register Form</h2>
716 <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis unde, ut sapiente et voluptatum facilis consectetur incidunt provident asperiores at necessitatibus nulla sequi voluptas libero quasi explicabo veritatis minima porro.</p>
717 </div>
710 718
711 719 <div class="mu-register-content">
720 <form class="mu-register-form">
721
722 <div class="row">
723 <div class="col-md-6">
724 <div class="form-group">
725 <input type="text" class="form-control" placeholder="Your Full Name" id="name" name="name" required="">
726 </div>
727 </div>
728
729 <div class="col-md-6">
730 <div class="form-group">
731 <input type="email" class="form-control" placeholder="Enter Your Email" id="email" name="email" required="">
732 </div>
733 </div>
734 </div>
735
736 <div class="row">
737 <div class="col-md-6">
738 <div class="form-group">
739 <input type="text" class="form-control" placeholder="Your Phone Number" id="telephone" name="telephone" required="">
740 </div>
741 </div>
742 <div class="col-md-6">
743
744 <div class="form-group">
745 <select class="form-control" name="ticket" id="ticket">
746 <option value="0">Basic ($12)</option>
747 <option value="1">Standard ($22)</option>
748 <option value="2">Premium ($45)</option>
749 </select>
750 </div>
751 </div>
752 </div>
753
754 <button type="submit" class="mu-reg-submit-btn">SUBMIT</button>
755
756 </form>
757 </div>
758
759 </div>
760 </div>
761 </div>
762 </div> -->
763 <iframe src="https://docs.google.com/forms/d/e/1FAIpQLScuQ6uEd9DzCzJhmCulr5Z4clp1mzhfItiuVfri3Fo1QA5FKQ/viewform?embedded=true" width="1280" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
764 </section>
765 <!-- End Register -->
712 766
713 <!-- Start Sponsors --> 767 <!-- Start Sponsors -->
714 <!-- <section id="mu-sponsors"> 768 <!-- <section id="mu-sponsors">
715 <div class="container"> 769 <div class="container">
716 <div class="row"> 770 <div class="row">
717 <div class="col-md-12"> 771 <div class="col-md-12">
718 <div class="mu-sponsors-area"> 772 <div class="mu-sponsors-area">
719 773
720 <div class="mu-title-area"> 774 <div class="mu-title-area">
721 <h2 class="mu-title">Our Sponsors</h2> --> 775 <h2 class="mu-title">Our Sponsors</h2> -->
722 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint assumenda ut molestias doloremque ipsam, fugit laborum totam, pariatur est cumque at, repudiandae officia ex dolores quas minus optio, iusto soluta?</p> --> 776 <!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint assumenda ut molestias doloremque ipsam, fugit laborum totam, pariatur est cumque at, repudiandae officia ex dolores quas minus optio, iusto soluta?</p> -->
723 <!-- </div> --> 777 <!-- </div> -->
724 778
725 <!-- Start spnonsors brand logo --> 779 <!-- Start spnonsors brand logo -->
726 <!-- <div class="mu-sponsors-content"> 780 <!-- <div class="mu-sponsors-content">
727 <div class="row"> 781 <div class="row">
728 782
729 <div class="col-md-2 col-sm-4 col-xs-4"> 783 <div class="col-md-2 col-sm-4 col-xs-4">
730 <div class="mu-sponsors-single"> 784 <div class="mu-sponsors-single">
731 <img src="assets/images/sponsor-logo-1.png" alt="Brand Logo"> 785 <img src="assets/images/sponsor-logo-1.png" alt="Brand Logo">
732 </div> 786 </div>
733 </div> 787 </div>
734 788
735 <div class="col-md-2 col-sm-4 col-xs-4"> 789 <div class="col-md-2 col-sm-4 col-xs-4">
736 <div class="mu-sponsors-single"> 790 <div class="mu-sponsors-single">
737 <img src="assets/images/sponsor-logo-2.jpg" alt="Brand Logo"> 791 <img src="assets/images/sponsor-logo-2.jpg" alt="Brand Logo">
738 </div> 792 </div>
739 </div> 793 </div>
740 794
741 <div class="col-md-2 col-sm-4 col-xs-4"> 795 <div class="col-md-2 col-sm-4 col-xs-4">
742 <div class="mu-sponsors-single"> 796 <div class="mu-sponsors-single">
743 <img src="assets/images/sponsor-logo-3.png" alt="Brand Logo"> 797 <img src="assets/images/sponsor-logo-3.png" alt="Brand Logo">
744 </div> 798 </div>
745 </div> 799 </div>
746 800
747 <div class="col-md-2 col-sm-4 col-xs-4"> 801 <div class="col-md-2 col-sm-4 col-xs-4">
748 <div class="mu-sponsors-single"> 802 <div class="mu-sponsors-single">
749 <img src="assets/images/sponsor-logo-4.png" alt="Brand Logo"> 803 <img src="assets/images/sponsor-logo-4.png" alt="Brand Logo">
750 </div> 804 </div>
751 </div> 805 </div>
752 806
753 <div class="col-md-2 col-sm-4 col-xs-4"> 807 <div class="col-md-2 col-sm-4 col-xs-4">
754 <div class="mu-sponsors-single"> 808 <div class="mu-sponsors-single">
755 <img src="assets/images/sponsor-logo-5.png" alt="Brand Logo"> 809 <img src="assets/images/sponsor-logo-5.png" alt="Brand Logo">
756 </div> 810 </div>
757 </div> 811 </div>
758 812
759 <div class="col-md-2 col-sm-4 col-xs-4"> 813 <div class="col-md-2 col-sm-4 col-xs-4">
760 <div class="mu-sponsors-single"> 814 <div class="mu-sponsors-single">
761 <img src="assets/images/sponsor-logo-6.png" alt="Brand Logo"> 815 <img src="assets/images/sponsor-logo-6.png" alt="Brand Logo">
762 </div> 816 </div>
763 </div> 817 </div>
764 </div> 818 </div>
765 </div> --> 819 </div> -->
766 <!-- End spnonsors brand logo --> 820 <!-- End spnonsors brand logo -->
767 821
768 <!-- </div> 822 <!-- </div>
769 </div> 823 </div>
770 </div> 824 </div>
771 </div> 825 </div>
772 </section> --> 826 </section> -->
773 <!-- End Sponsors --> 827 <!-- End Sponsors -->
774 828
775 829
776 <!-- Start Contact --> 830 <!--Start Contact -->
777 <!-- <section id="mu-contact"> 831 <section id="mu-contact">
778 <div class="container"> 832 <!--<div class="container">
779 <div class="row"> 833 <div class="row">
780 <div class="col-md-12"> 834 <div class="col-md-12">
781 <div class="mu-contact-area"> 835 <div class="mu-contact-area">
782 836
783 <div class="mu-title-area"> 837 <div class="mu-title-area">
784 <h2 class="mu-heading-title">Contact Us</h2> --> 838 <h2 class="mu-heading-title">Contact Us</h2> -->
785 <!-- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever</p> --> 839 <!-- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever</p> -->
786 <!-- </div> --> 840 <!-- </div> -->
787 841
788 <!-- Start Contact Content --> 842 <!-- Start Contact Content -->
789 <!-- <div class="mu-contact-content"> 843 <!-- <div class="mu-contact-content">
790 <div class="row"> 844 <div class="row">
791 845
792 <div class="col-md-12"> 846 <div class="col-md-12">
793 <div class="mu-contact-form-area"> 847 <div class="mu-contact-form-area">
794 <div id="form-messages"></div> 848 <div id="form-messages"></div>
795 <form id="ajax-contact" method="post" action="mailer.php" class="mu-contact-form"> 849 <form id="ajax-contact" method="post" action="mailer.php" class="mu-contact-form">
796 <div class="form-group"> 850 <div class="form-group">
797 <input type="text" class="form-control" placeholder="Name" id="name" name="name" required> 851 <input type="text" class="form-control" placeholder="Name" id="name" name="name" required>
798 </div> 852 </div>
799 <div class="form-group"> 853 <div class="form-group">
800 <input type="email" class="form-control" placeholder="Enter Email" id="email" name="email" required> 854 <input type="email" class="form-control" placeholder="Enter Email" id="email" name="email" required>
801 </div> 855 </div>
802 <div class="form-group"> 856 <div class="form-group">
803 <textarea class="form-control" placeholder="Message" id="message" name="message" required></textarea> 857 <textarea class="form-control" placeholder="Message" id="message" name="message" required></textarea>
804 </div> 858 </div>
805 <button type="submit" class="mu-send-msg-btn"><span>SUBMIT</span></button> 859 <button type="submit" class="mu-send-msg-btn"><span>SUBMIT</span></button>
806 </form> 860 </form>
807 </div> 861 </div>
808 </div> 862 </div>
809 </div> 863 </div>
810 </div> --> 864 </div> -->
811 <!-- End Contact Content --> 865 <!-- End Contact Content -->
812 <!-- </div> 866 <!-- </div>
813 </div> 867 </div>
814 </div> 868 </div>
815 </div> 869 </div>-->
816 </section> --> 870 <!--Start of Tawk.to Script-->
871 <!--Start of Tawk.to Script-->
872 <script type="text/javascript">
873 var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
874 (function(){
875 var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
876 s1.async=true;
877 s1.src='https://embed.tawk.to/5a82c0404b401e45400ce593/default';
878 s1.charset='UTF-8';
879 s1.setAttribute('crossorigin','*');
880 s0.parentNode.insertBefore(s1,s0);
881 })();
882 </script>
883 <!--End of Tawk.to Script-->
884 </section>
817 <!-- End Contact --> 885 <!-- End Contact -->
818 886
819 </main> 887 </main>
820 888
821 <!-- End main content --> 889 <!-- End main content -->
822 890
823 891
824 <!-- Start footer --> 892 <!-- Start footer -->
825 <footer id="mu-footer" role="contentinfo"> 893 <footer id="mu-footer" role="contentinfo">
826 <div class="container"> 894 <div class="container">
827 <div class="mu-footer-area"> 895 <div class="mu-footer-area">
828 <div class="mu-footer-top"> 896 <div class="mu-footer-top">
829 <div class="mu-social-media"> 897 <div class="mu-social-media">
830 <a href="#"><i class="fa fa-facebook"></i></a> 898 <a href="http://www.viithiisys.com/openHQ"><i class="fa fa-facebook"></i></a>
831 <a href="#"><i class="fa fa-twitter"></i></a> 899 <a href="#"><i class="fa fa-twitter"></i></a>
832 <a href="#"><i class="fa fa-google-plus"></i></a> 900 <a href="#"><i class="fa fa-google-plus"></i></a>
833 <a href="#"><i class="fa fa-linkedin"></i></a> 901 <a href="#"><i class="fa fa-linkedin"></i></a>
834 <a href="#"><i class="fa fa-youtube"></i></a> 902 <a href="#"><i class="fa fa-youtube"></i></a>
835 </div> 903 </div>
836 </div> 904 </div>
837 <div class="mu-footer-bottom"> 905 <div class="mu-footer-bottom">
838 <p class="mu-copy-right">&copy; Copyright <a rel="nofollow" href="http://www.viithiisys.com">Viithiisys Technologies</a>. All right reserved.</p> 906 <p class="mu-copy-right">&copy; Copyright <a rel="nofollow" href="http://www.viithiisys.com">Viithiisys Technologies</a>. All right reserved.</p>
839 </div> 907 </div>
840 </div> 908 </div>
841 </div> 909 </div>
842 910
843 </footer> 911 </footer>
844 <!-- End footer --> 912 <!-- End footer -->
845 913
846 914
847 915
848 <!-- jQuery library --> 916 <!-- jQuery library -->
849 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> 917 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
850 <!-- Include all compiled plugins (below), or include individual files as needed --> 918 <!-- Include all compiled plugins (below), or include individual files as needed -->
851 <!-- Bootstrap --> 919 <!-- Bootstrap -->
852 <script src="assets/js/bootstrap.min.js"></script> 920 <script src="assets/js/bootstrap.min.js"></script>
853 <!-- Slick slider --> 921 <!-- Slick slider -->
854 <script type="text/javascript" src="assets/js/slick.min.js"></script> 922 <script type="text/javascript" src="assets/js/slick.min.js"></script>
855 <!-- Event Counter --> 923 <!-- Event Counter -->
856 <script type="text/javascript" src="assets/js/jquery.countdown.min.js"></script> 924 <script type="text/javascript" src="assets/js/jquery.countdown.min.js"></script>
857 <!-- Ajax contact form --> 925 <!-- Ajax contact form -->
858 <script type="text/javascript" src="assets/js/app.js"></script> 926 <script type="text/javascript" src="assets/js/app.js"></script>
859 927
860 928
861 929
862 <!-- Custom js --> 930 <!-- Custom js -->
863 <script type="text/javascript" src="assets/js/custom.js"></script> 931 <script type="text/javascript" src="assets/js/custom.js"></script>
864 932
865 933
866 934
867 935
868 </body> 936 </body>
1 1
2 /* 2 /*
3 Template Name: Eventoz 3 Template Name: Eventoz
4 Author: MarkUps 4 Author: MarkUps
5 Author URI: http://www.markups.io/ 5 Author URI: http://www.markups.io/
6 Version: 1.0 6 Version: 1.0
7 */ 7 */
8 8
9 9
10 /* Table of Content 10 /* Table of Content
11 ================================================== 11 ==================================================
12 #BASIC TYPOGRAPHY 12 #BASIC TYPOGRAPHY
13 #HEADER 13 #HEADER
14 #MENU 14 #MENU
15 #ABOUT US 15 #ABOUT US
16 #VIDEO 16 #VIDEO
17 #SCHEDULE 17 #SCHEDULE
18 #SPEAKERS 18 #SPEAKERS
19 #VENUE 19 #VENUE
20 #PRICING PLANS 20 #PRICING PLANS
21 #REGISTER FORM 21 #REGISTER FORM
22 #FAQ 22 #FAQ
23 #OUR 23 #OUR
24 #CONTACT US 24 #CONTACT US
25 #FOOTER 25 #FOOTER
26 #RESPONSIVE STYLE 26 #RESPONSIVE STYLE
27 */ 27 */
28 28
29 29
30 /*--------------------*/ 30 /*--------------------*/
31 /* BASIC TYPOGRAPHY */ 31 /* BASIC TYPOGRAPHY */
32 /*--------------------*/ 32 /*--------------------*/
33 33
34 body, 34 body,
35 html { 35 html {
36 overflow-x:hidden; 36 overflow-x:hidden;
37 } 37 }
38 38
39 body { 39 body {
40 font-family: 'Open Sans', sans-serif; 40 font-family: 'Open Sans', sans-serif;
41 font-size: 15px; 41 font-size: 15px;
42 letter-spacing: 0.5px; 42 letter-spacing: 0.5px;
43 line-height: 1.5; 43 line-height: 1.5;
44 color: #1c1b1b; 44 color: #1c1b1b;
45 } 45 }
46 46
47 ul { 47 ul {
48 padding: 0; 48 padding: 0;
49 margin: 0; 49 margin: 0;
50 } 50 }
51 51
52 ul li { 52 ul li {
53 list-style: disc; 53 list-style: disc;
54 font-size: 17px; 54 font-size: 17px;
55 line-height: 1.59; 55 line-height: 1.59;
56 } 56 }
57 57
58 a { 58 a {
59 text-decoration: none; 59 text-decoration: none;
60 color: #2f2f2f; 60 color: #2f2f2f;
61 } 61 }
62 62
63 a:hover, 63 a:hover,
64 a:focus { 64 a:focus {
65 outline: none; 65 outline: none;
66 text-decoration: none; 66 text-decoration: none;
67 } 67 }
68 68
69 h1, 69 h1,
70 h2, 70 h2,
71 h3, 71 h3,
72 h4, 72 h4,
73 h5, 73 h5,
74 h6 { 74 h6 {
75 font-family: 'Montserrat', sans-serif; 75 font-family: 'Montserrat', sans-serif;
76 font-weight: 700; 76 font-weight: 700;
77 margin-top: 0; 77 margin-top: 0;
78 } 78 }
79 79
80 80
81 h1 { 81 h1 {
82 font-size: 38px; 82 font-size: 38px;
83 } 83 }
84 84
85 h2 { 85 h2 {
86 font-size: 32px; 86 font-size: 32px;
87 line-height: 1.13; 87 line-height: 1.13;
88 } 88 }
89 89
90 h3 { 90 h3 {
91 font-size: 26px; 91 font-size: 26px;
92 } 92 }
93 93
94 h4 { 94 h4 {
95 font-size: 22px; 95 font-size: 22px;
96 } 96 }
97 97
98 h5 { 98 h5 {
99 font-size: 20px; 99 font-size: 20px;
100 } 100 }
101 101
102 h6 { 102 h6 {
103 font-size: 18px; 103 font-size: 18px;
104 } 104 }
105 105
106 img { 106 img {
107 border: none; 107 border: none;
108 max-width: 100%; 108 max-width: 100%;
109 } 109 }
110 110
111 .imgabout { 111 .imgabout {
112 border: none; 112 border: none;
113 max-width: 100%; 113 max-width: 100%;
114 padding: 169px 0px 55px 9px; 114 padding: 83px 0px 55px 9px;
115 } 115 }
116 116
117 code { 117 code {
118 background-color: #ee6e73; 118 background-color: #ee6e73;
119 border-radius: 2px; 119 border-radius: 2px;
120 color: #fff; 120 color: #fff;
121 padding: 2px 4px; 121 padding: 2px 4px;
122 } 122 }
123 123
124 pre { 124 pre {
125 background-color: #f8f8f8; 125 background-color: #f8f8f8;
126 border: 1px solid #eee; 126 border: 1px solid #eee;
127 border-radius: 4px; 127 border-radius: 4px;
128 padding: 10px; 128 padding: 10px;
129 } 129 }
130 130
131 pre code { 131 pre code {
132 background-color: transparent; 132 background-color: transparent;
133 color: #333; 133 color: #333;
134 } 134 }
135 135
136 del{ 136 del{
137 text-decoration-color: #ee6e73; 137 text-decoration-color: #ee6e73;
138 } 138 }
139 139
140 kbd { 140 kbd {
141 background-color: #ddd; 141 background-color: #ddd;
142 padding: 4px 6px; 142 padding: 4px 6px;
143 border-radius: 2px; 143 border-radius: 2px;
144 color: ; 144 color: ;
145 } 145 }
146 146
147 address { 147 address {
148 line-height: 1.5; 148 line-height: 1.5;
149 padding-left: 10px; 149 padding-left: 10px;
150 } 150 }
151 151
152 dl dt { 152 dl dt {
153 font-weight: 700; 153 font-weight: 700;
154 } 154 }
155 155
156 dl dd { 156 dl dd {
157 margin-left: 0; 157 margin-left: 0;
158 } 158 }
159 159
160 blockquote { 160 blockquote {
161 background-color: #f8f8f8; 161 background-color: #f8f8f8;
162 border-radius: 0 4px 4px 0; 162 border-radius: 0 4px 4px 0;
163 padding: 5px 15px; 163 padding: 5px 15px;
164 164
165 } 165 }
166 166
167 blockquote p { 167 blockquote p {
168 margin-top: 10px; 168 margin-top: 10px;
169 } 169 }
170 170
171 button { 171 button {
172 padding: 5px 15px; 172 padding: 5px 15px;
173 border: none; 173 border: none;
174 } 174 }
175 175
176 button:focus { 176 button:focus {
177 outline: none; 177 outline: none;
178 border: none; 178 border: none;
179 } 179 }
180 180
181 181
182 /* ========= BUTTON =========*/ 182 /* ========= BUTTON =========*/
183 183
184 .mu-primary-btn { 184 .mu-primary-btn {
185 background-color: transparent; 185 background-color: transparent;
186 border-radius: 4px; 186 border-radius: 4px;
187 border: 2px solid #ffffff; 187 border: 2px solid #ffffff;
188 color: #fff; 188 color: #fff;
189 display: inline-block; 189 display: inline-block;
190 font-size: 14px; 190 font-size: 14px;
191 font-weight: 700; 191 font-weight: 700;
192 letter-spacing: 1.5px; 192 letter-spacing: 1.5px;
193 padding: 12px 35px; 193 padding: 12px 35px;
194 -webkit-transition: all 0.5s; 194 -webkit-transition: all 0.5s;
195 transition: all 0.5s; 195 transition: all 0.5s;
196 } 196 }
197 197
198 .mu-primary-btn:hover, 198 .mu-primary-btn:hover,
199 .mu-primary-btn:focus { 199 .mu-primary-btn:focus {
200 background-color: #fff; 200 background-color: #fff;
201 } 201 }
202 202
203 .mu-send-msg-btn { 203 .mu-send-msg-btn {
204 color: #555; 204 color: #555;
205 font-size: 13px; 205 font-size: 13px;
206 font-weight: 600; 206 font-weight: 600;
207 letter-spacing: 1px; 207 letter-spacing: 1px;
208 text-align: center; 208 text-align: center;
209 padding: 14px 24px; 209 padding: 14px 24px;
210 margin-top: 10px; 210 margin-top: 10px;
211 -webkit-transition: all 0.5s; 211 -webkit-transition: all 0.5s;
212 transition: all 0.5s; 212 transition: all 0.5s;
213 width: 250px; 213 width: 250px;
214 color: #fff; 214 color: #fff;
215 border-radius: 5px; 215 border-radius: 5px;
216 } 216 }
217 217
218 .mu-send-msg-btn:hover, 218 .mu-send-msg-btn:hover,
219 .mu-send-msg-btn:focus { 219 .mu-send-msg-btn:focus {
220 background-color: #fff; 220 background-color: #fff;
221 } 221 }
222 222
223 223
224 224
225 /*--------------------*/ 225 /*--------------------*/
226 /* HEADER */ 226 /* HEADER */
227 /*--------------------*/ 227 /*--------------------*/
228 228
229 #mu-hero { 229 #mu-hero {
230 background-image: url("assets/images/head-featured-bg.jpg"); 230 /*background-image: url("assets/images/head-featured-bg.jpg");*/
231 display: inline; 231 display: inline;
232 float: left; 232 float: left;
233 width: 100%; 233 width: 100%;
234 background-position: center center; 234 background-position: center center;
235 background-attachment: fixed; 235 background-attachment: fixed;
236 -webkit-background-size: cover; 236 -webkit-background-size: cover;
237 background-size: cover; 237 background-size: cover;
238 } 238 }
239 239
240 .mu-hero-overlay { 240 .mu-hero-overlay {
241 display: inline; 241 display: inline;
242 float: left; 242 float: left;
243 /*opacity: 0.94;*/ 243 /*opacity: 0.94;*/
244 width: 100%; 244 width: 100%;
245 } 245 }
246 246
247 .mu-logo-area { 247 .mu-logo-area {
248 display: inline; 248 display: inline;
249 float: left; 249 float: left;
250 text-align: center; 250 text-align: center;
251 width: 100%; 251 width: 100%;
252 } 252 }
253 253
254 .mu-logo { 254 .mu-logo {
255 font-size: 35px; 255 font-size: 35px;
256 font-family: 'Montserrat', sans-serif; 256 font-family: 'Montserrat', sans-serif;
257 display: inline-block; 257 display: inline-block;
258 font-weight: 600; 258 font-weight: 600;
259 background: #fff; 259 background: #fff;
260 padding: 5px 20px; 260 padding: 5px 20px;
261 margin-bottom: 30px; 261 margin-bottom: 30px;
262 } 262 }
263 263
264 264
265 .mu-menu-btn { 265 .mu-menu-btn {
266 position: fixed; 266 position: fixed;
267 right: 15%; 267 right: 15%;
268 top: 50px; 268 top: 50px;
269 color: #fff; 269 color: #fff;
270 font-size: 25px; 270 font-size: 25px;
271 border: 2px solid #fff; 271 border: 2px solid #fff;
272 padding: 5px 14px; 272 padding: 5px 14px;
273 z-index: 999; 273 z-index: 999;
274 -webkit-transition: all 0.5s; 274 -webkit-transition: all 0.5s;
275 -o-transition: all 0.5s; 275 -o-transition: all 0.5s;
276 transition: all 0.5s; 276 transition: all 0.5s;
277 } 277 }
278 278
279 .mu-menu-btn:hover, 279 .mu-menu-btn:hover,
280 .mu-menu-btn:focus { 280 .mu-menu-btn:focus {
281 border: 2px solid #fff; 281 border: 2px solid #fff;
282 } 282 }
283 283
284 284
285 285
286 /*=== Featured section ===*/ 286 /*=== Featured section ===*/
287 287
288 .mu-hero-featured-area { 288 .mu-hero-featured-area {
289 display: inline; 289 display: inline;
290 float: left; 290 float: left;
291 padding: 60px 0 150px; 291 padding: 60px 0 150px;
292 width: 100%; 292 width: 100%;
293 } 293 }
294 294
295 .mu-hero-featured-content { 295 .mu-hero-featured-content {
296 display: inline; 296 display: inline;
297 float: right; 297 float: right;
298 margin-top: 50px; 298 margin-top: 50px;
299 text-align: center; 299 text-align: center;
300 width: 100%; 300 width: 100%;
301 } 301 }
302 302
303 .mu-hero-featured-content h1 { 303 .mu-hero-featured-content h1 {
304 font-size: 45px; 304 font-size: 45px;
305 color: #fff; 305 color: #fff;
306 font-weight: 300; 306 font-weight: 300;
307 margin-bottom: 15px; 307 margin-bottom: 15px;
308 } 308 }
309 309
310 310
311 .mu-hero-featured-content h2 { 311 .mu-hero-featured-content h2 {
312 color: #fff; 312 color: #fff;
313 font-size: 25px; 313 font-size: 25px;
314 font-weight: 300; 314 font-weight: 300;
315 } 315 }
316 316
317 .mu-event-date-line { 317 .mu-event-date-line {
318 background-color: #fff; 318 background-color: #fff;
319 color: #333; 319 color: #333;
320 padding: 5px 10px; 320 padding: 5px 10px;
321 display: inline-block; 321 display: inline-block;
322 margin-top: 10px; 322 margin-top: 10px;
323 font-weight: 600; 323 font-weight: 600;
324 } 324 }
325 325
326 .mu-event-counter-area { 326 .mu-event-counter-area {
327 display: inline; 327 display: inline;
328 float: left; 328 float: left;
329 margin-top: 50px; 329 margin-top: 50px;
330 width: 100%; 330 width: 100%;
331 } 331 }
332 332
333 #mu-event-counter{ 333 #mu-event-counter{
334 display: inline; 334 display: inline;
335 float: left; 335 float: left;
336 width: 100%; 336 width: 100%;
337 text-align: center; 337 text-align: center;
338 } 338 }
339 339
340 .mu-event-counter-block { 340 .mu-event-counter-block {
341 border: 2px solid #fff; 341 border: 2px solid #fff;
342 border-radius: 50%; 342 border-radius: 50%;
343 display: inline-block; 343 display: inline-block;
344 height: 180px; 344 height: 180px;
345 width: 180px; 345 width: 180px;
346 text-align: center; 346 text-align: center;
347 font-size: 22px; 347 font-size: 22px;
348 color: #fff; 348 color: #fff;
349 margin: 0 20px; 349 margin: 0 20px;
350 font-weight: 300; 350 font-weight: 300;
351 } 351 }
352 352
353 .mu-event-counter-block span { 353 .mu-event-counter-block span {
354 display: block; 354 display: block;
355 font-size: 40px; 355 font-size: 40px;
356 font-weight: 700; 356 font-weight: 700;
357 padding-top: 56px; 357 padding-top: 56px;
358 line-height: 40px; 358 line-height: 40px;
359 } 359 }
360 360
361 /*--------------------*/ 361 /*--------------------*/
362 /* MENU */ 362 /* MENU */
363 /*--------------------*/ 363 /*--------------------*/
364 364
365 #mu-hero .navbar-default { 365 #mu-hero .navbar-default {
366 background-color: #fff; 366 background-color: #fff;
367 border-color: #e7e7e7; 367 border-color: #e7e7e7;
368 padding: 5px 0; 368 padding: 5px 0;
369 } 369 }
370 370
371 .mu-navbar { 371 .mu-navbar {
372 top: -150px; 372 top: -150px;
373 transition: all 0.5s; 373 transition: all 0.5s;
374 } 374 }
375 375
376 .mu-nav-show { 376 .mu-nav-show {
377 top: 0px; 377 top: 0px;
378 } 378 }
379 379
380 #mu-hero .navbar-default .navbar-brand { 380 #mu-hero .navbar-default .navbar-brand {
381 padding: 15px 15px; 381 padding: 15px 15px;
382 font-size: 28px; 382 font-size: 28px;
383 line-height: 20px; 383 line-height: 20px;
384 } 384 }
385 385
386 .mu-navbar .mu-menu li a { 386 .mu-navbar .mu-menu li a {
387 color: #333; 387 color: #333;
388 -webkit-transition: all 0.5s; 388 -webkit-transition: all 0.5s;
389 -o-transition: all 0.5s; 389 -o-transition: all 0.5s;
390 transition: all 0.5s; 390 transition: all 0.5s;
391 } 391 }
392 392
393 .navbar-default .navbar-nav > .active > a, 393 .navbar-default .navbar-nav > .active > a,
394 .navbar-default .navbar-nav > .active > a:focus, 394 .navbar-default .navbar-nav > .active > a:focus,
395 .navbar-default .navbar-nav > .active > a:hover { 395 .navbar-default .navbar-nav > .active > a:hover {
396 color: #fff; 396 color: #fff;
397 } 397 }
398 398
399 399
400 400
401 /*--------------------*/ 401 /*--------------------*/
402 /* ABOUT US */ 402 /* ABOUT US */
403 /*--------------------*/ 403 /*--------------------*/
404 404
405 405
406 #mu-about { 406 #mu-about {
407 background-color: #fff; 407 background-color: #fff;
408 display: inline; 408 display: inline;
409 float: left; 409 float: left;
410 width: 100%; 410 width: 100%;
411 } 411 }
412 412
413 .mu-about-area { 413 .mu-about-area {
414 display: inline; 414 display: inline;
415 float: left; 415 float: left;
416 padding: 100px 0; 416 padding: 100px 0;
417 width: 100%; 417 width: 100%;
418 } 418 }
419 419
420 .mu-title-area { 420 .mu-title-area {
421 display: inline; 421 display: inline;
422 float: left; 422 float: left;
423 text-align: center; 423 text-align: center;
424 padding: 0 120px; 424 padding: 0 120px;
425 width: 100%; 425 width: 100%;
426 } 426 }
427 427
428 .mu-title { 428 .mu-title {
429 color: #1c1b1b; 429 color: #1c1b1b;
430 margin-bottom: 15px; 430 margin-bottom: 15px;
431 padding: 0; 431 padding: 0;
432 z-index: 10; 432 z-index: 10;
433 text-transform: capitalize; 433 text-transform: capitalize;
434 } 434 }
435 435
436 .mu-about-left { 436 .mu-about-left {
437 display: inline; 437 display: inline;
438 float: left; 438 float: left;
439 width: 100%; 439 width: 100%;
440 } 440 }
441 441
442 .mu-about-right { 442 .mu-about-right {
443 display: inline; 443 display: inline;
444 float: left; 444 float: left;
445 margin-top: 30px; 445 margin-top: 30px;
446 width: 100%; 446 width: 100%;
447 } 447 }
448 448
449 449
450 450
451 /*--------------------*/ 451 /*--------------------*/
452 /* VIDEO */ 452 /* VIDEO */
453 /*--------------------*/ 453 /*--------------------*/
454 454
455 455
456 #mu-video { 456 #mu-video {
457 background-image: url("assets/images/about-video-bg.jpg"); 457 /*background-image: url("assets/images/about-video-bg.jpg");*/
458 background-attachment: fixed; 458 background-attachment: fixed;
459 background-position: center center; 459 background-position: center center;
460 -webkit-background-size: cover; 460 -webkit-background-size: cover;
461 background-size: cover; 461 background-size: cover;
462 display: inline; 462 display: inline;
463 float: left; 463 float: left;
464 width: 100%; 464 width: 100%;
465 } 465 }
466 466
467 .mu-video-overlay { 467 .mu-video-overlay {
468 display: inline; 468 display: inline;
469 float: left; 469 float: left;
470 opacity: 0.85; 470 opacity: 0.85;
471 width: 100%; 471 width: 100%;
472 } 472 }
473 473
474 .mu-video-area { 474 .mu-video-area {
475 display: inline; 475 display: inline;
476 float: left; 476 float: left;
477 padding: 200px 0; 477 padding: 200px 0;
478 text-align: center; 478 text-align: center;
479 width: 100%; 479 width: 100%;
480 } 480 }
481 481
482 .mu-video-area h2 { 482 .mu-video-area h2 {
483 color: #fff; 483 color: #fff;
484 } 484 }
485 485
486 .mu-video-content { 486 .mu-video-content {
487 display: inline; 487 display: inline;
488 float: left; 488 float: left;
489 width: 100%; 489 width: 100%;
490 } 490 }
491 491
492 .mu-video-play-btn, 492 .mu-video-play-btn,
493 .mu-video-close-btn { 493 .mu-video-close-btn {
494 color: #fff; 494 color: #fff;
495 font-size: 22px; 495 font-size: 22px;
496 border: 2px solid #fff; 496 border: 2px solid #fff;
497 border-radius: 50%; 497 border-radius: 50%;
498 width: 60px; 498 width: 60px;
499 display: inline-block; 499 display: inline-block;
500 height: 60px; 500 height: 60px;
501 line-height: 55px; 501 line-height: 55px;
502 text-align: center; 502 text-align: center;
503 margin-top: 100px; 503 margin-top: 100px;
504 -webkit-transition: all 0.5s; 504 -webkit-transition: all 0.5s;
505 -o-transition: all 0.5s; 505 -o-transition: all 0.5s;
506 transition: all 0.5s; 506 transition: all 0.5s;
507 } 507 }
508 508
509 .mu-video-play-btn:hover, 509 .mu-video-play-btn:hover,
510 .mu-video-play-btn:focus { 510 .mu-video-play-btn:focus {
511 color: #fff; 511 color: #fff;
512 -webkit-transform: scale(1.2); 512 -webkit-transform: scale(1.2);
513 transform: scale(1.2); 513 transform: scale(1.2);
514 } 514 }
515 515
516 .mu-video-close-btn { 516 .mu-video-close-btn {
517 border-radius: 50%; 517 border-radius: 50%;
518 color: #fff; 518 color: #fff;
519 font-size: 18px; 519 font-size: 18px;
520 border: 2px solid #fff; 520 border: 2px solid #fff;
521 position: absolute; 521 position: absolute;
522 top: 0; 522 top: 0;
523 right: 15%; 523 right: 15%;
524 display: inline-block; 524 display: inline-block;
525 height: 50px; 525 height: 50px;
526 line-height: 45px; 526 line-height: 45px;
527 text-align: center; 527 text-align: center;
528 margin-top: 100px; 528 margin-top: 100px;
529 -webkit-transition: all 0.5s; 529 -webkit-transition: all 0.5s;
530 -o-transition: all 0.5s; 530 -o-transition: all 0.5s;
531 transition: all 0.5s; 531 transition: all 0.5s;
532 width: 50px; 532 width: 50px;
533 } 533 }
534 534
535 .mu-video-close-btn:hover, 535 .mu-video-close-btn:hover,
536 .mu-video-close-btn:focus { 536 .mu-video-close-btn:focus {
537 color: #fff; 537 color: #fff;
538 -webkit-transform: scale(1.2); 538 -webkit-transform: scale(1.2);
539 transform: scale(1.2); 539 transform: scale(1.2);
540 } 540 }
541 541
542 .mu-video-iframe-area { 542 .mu-video-iframe-area {
543 background-color: rgba(0,0,0,0.84); 543 background-color: rgba(0,0,0,0.84);
544 position: fixed; 544 position: fixed;
545 top: 0; 545 top: 0;
546 left: 0; 546 left: 0;
547 right: 0; 547 right: 0;
548 bottom: 0; 548 bottom: 0;
549 width: 100%; 549 width: 100%;
550 height: 100%; 550 height: 100%;
551 padding: 12% 0; 551 padding: 12% 0;
552 text-align: center; 552 text-align: center;
553 z-index: 9999; 553 z-index: 9999;
554 display: none; 554 display: none;
555 -webkit-transition: all 0.5s; 555 -webkit-transition: all 0.5s;
556 -o-transition: all 0.5s; 556 -o-transition: all 0.5s;
557 transition: all 0.5s; 557 transition: all 0.5s;
558 } 558 }
559 559
560 .mu-video-iframe-display { 560 .mu-video-iframe-display {
561 display: block; 561 display: block;
562 } 562 }
563 563
564 .mu-video-iframe-area iframe { 564 .mu-video-iframe-area iframe {
565 565
566 } 566 }
567 567
568 568
569 /*--------------------*/ 569 /*--------------------*/
570 /* EVENT SCHEDULE */ 570 /* EVENT SCHEDULE */
571 /*--------------------*/ 571 /*--------------------*/
572 572
573 #mu-schedule { 573 #mu-schedule {
574 background-color: #f8f8f8; 574 background-color: #f8f8f8;
575 display: inline; 575 display: inline;
576 float: left; 576 float: left;
577 width: 100%; 577 width: 100%;
578 } 578 }
579 579
580 .mu-schedule-area { 580 .mu-schedule-area {
581 display: inline; 581 display: inline;
582 float: left; 582 float: left;
583 padding: 100px 0; 583 padding: 100px 0;
584 width: 100%; 584 width: 100%;
585 } 585 }
586 586
587 .mu-schedule-content-area { 587 .mu-schedule-content-area {
588 display: inline; 588 display: inline;
589 float: left; 589 float: left;
590 margin-top: 50px; 590 margin-top: 50px;
591 width: 100%; 591 width: 100%;
592 } 592 }
593 593
594 .mu-schedule-menu { 594 .mu-schedule-menu {
595 text-align: center; 595 text-align: center;
596 border: none; 596 border: none;
597 } 597 }
598 598
599 599
600 .mu-schedule-menu li { 600 .mu-schedule-menu li {
601 float: none; 601 float: none;
602 display: inline-block; 602 display: inline-block;
603 } 603 }
604 604
605 .mu-schedule-menu li a { 605 .mu-schedule-menu li a {
606 border-radius: 0; 606 border-radius: 0;
607 margin: 0 10px; 607 margin: 0 10px;
608 -webkit-transition: all 0.5s; 608 -webkit-transition: all 0.5s;
609 -o-transition: all 0.5s; 609 -o-transition: all 0.5s;
610 transition: all 0.5s; 610 transition: all 0.5s;
611 } 611 }
612 612
613 .mu-schedule-menu li a:hover, 613 .mu-schedule-menu li a:hover,
614 .mu-schedule-menu li a:focus, 614 .mu-schedule-menu li a:focus,
615 .mu-schedule-menu li.active a, 615 .mu-schedule-menu li.active a,
616 .mu-schedule-menu li.active a:hover, 616 .mu-schedule-menu li.active a:hover,
617 .mu-schedule-menu li.active a:focus { 617 .mu-schedule-menu li.active a:focus {
618 color: #fff; 618 color: #fff;
619 } 619 }
620 620
621 .mu-schedule-content{ 621 .mu-schedule-content{
622 margin-top: 50px; 622 margin-top: 50px;
623 } 623 }
624 624
625 .mu-event-timeline ul li { 625 .mu-event-timeline ul li {
626 list-style-type: none; 626 list-style-type: none;
627 position: relative; 627 position: relative;
628 width: 2px; 628 width: 2px;
629 margin: 0 auto; 629 margin: 0 auto;
630 padding-top: 50px; 630 padding-top: 50px;
631 background-color: #ddd; 631 background-color: #ddd;
632 -webkit-transition: all 0.5s; 632 -webkit-transition: all 0.5s;
633 -o-transition: all 0.5s; 633 -o-transition: all 0.5s;
634 transition: all 0.5s; 634 transition: all 0.5s;
635 } 635 }
636 636
637 .mu-event-timeline ul li::after { 637 .mu-event-timeline ul li::after {
638 content: ''; 638 content: '';
639 position: absolute; 639 position: absolute;
640 left: 50%; 640 left: 50%;
641 top: 70px; 641 top: 70px;
642 transform: translateX(-50%); 642 transform: translateX(-50%);
643 height: 24px; 643 height: 24px;
644 width: 24px; 644 width: 24px;
645 border-radius: 50%; 645 border-radius: 50%;
646 background: inherit; 646 background: inherit;
647 } 647 }
648 648
649 649
650 .mu-event-timeline ul li .mu-single-event { 650 .mu-event-timeline ul li .mu-single-event {
651 background-color: #fff; 651 background-color: #fff;
652 -webkit-box-shadow: 0 0 16px 0 rgba(32,32,47,0.16); 652 -webkit-box-shadow: 0 0 16px 0 rgba(32,32,47,0.16);
653 -moz-box-shadow: 0 0 16px 0 rgba(32,32,47,0.16); 653 -moz-box-shadow: 0 0 16px 0 rgba(32,32,47,0.16);
654 box-shadow: 0 0 16px 0 rgba(32,32,47,0.16); 654 box-shadow: 0 0 16px 0 rgba(32,32,47,0.16);
655 position: relative; 655 position: relative;
656 top: 0; 656 top: 0;
657 width: 400px; 657 width: 400px;
658 padding: 15px; 658 padding: 15px;
659 text-align: left; 659 text-align: left;
660 } 660 }
661 661
662 .mu-event-timeline ul li:nth-child(2n) .mu-single-event { 662 .mu-event-timeline ul li:nth-child(2n) .mu-single-event {
663 left: 50px; 663 left: 50px;
664 } 664 }
665 665
666 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event { 666 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event {
667 left: -450px; 667 left: -450px;
668 text-align: right; 668 text-align: right;
669 } 669 }
670 670
671 .mu-event-timeline ul li .mu-single-event img { 671 .mu-event-timeline ul li .mu-single-event img {
672 height: 60px; 672 height: 60px;
673 width: 60px; 673 width: 60px;
674 float: left; 674 float: left;
675 border-radius: 50%; 675 border-radius: 50%;
676 margin-right: 15px; 676 margin-right: 15px;
677 } 677 }
678 678
679 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event img { 679 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event img {
680 float: right; 680 float: right;
681 margin-right: 0; 681 margin-right: 0;
682 margin-left: 15px; 682 margin-left: 15px;
683 } 683 }
684 684
685 .mu-event-timeline ul li .mu-single-event::before { 685 .mu-event-timeline ul li .mu-single-event::before {
686 content: ''; 686 content: '';
687 position: absolute; 687 position: absolute;
688 top: 23px; 688 top: 23px;
689 width: 0; 689 width: 0;
690 height: 0; 690 height: 0;
691 border-style: solid; 691 border-style: solid;
692 } 692 }
693 693
694 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event::before { 694 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event::before {
695 right: -15px; 695 right: -15px;
696 border-width: 8px 0 8px 16px; 696 border-width: 8px 0 8px 16px;
697 border-color: transparent transparent transparent #fff; 697 border-color: transparent transparent transparent #fff;
698 } 698 }
699 699
700 .mu-event-timeline ul li:nth-child(2n) .mu-single-event::before { 700 .mu-event-timeline ul li:nth-child(2n) .mu-single-event::before {
701 left: -16px; 701 left: -16px;
702 border-width: 8px 16px 8px 0; 702 border-width: 8px 16px 8px 0;
703 border-color: transparent #fff transparent transparent; 703 border-color: transparent #fff transparent transparent;
704 } 704 }
705 705
706 .mu-event-timeline ul li .mu-single-event h3 { 706 .mu-event-timeline ul li .mu-single-event h3 {
707 margin-bottom: 5px; 707 margin-bottom: 5px;
708 font-size: 14px; 708 font-size: 14px;
709 } 709 }
710 710
711 .mu-event-timeline ul li .mu-single-event p { 711 .mu-event-timeline ul li .mu-single-event p {
712 margin-bottom: 5px; 712 margin-bottom: 5px;
713 } 713 }
714 714
715 .mu-event-timeline ul li .mu-single-event span { 715 .mu-event-timeline ul li .mu-single-event span {
716 font-size: 12px; 716 font-size: 12px;
717 } 717 }
718 718
719 719
720 /*--------------------*/ 720 /*--------------------*/
721 /* SPEAKERS */ 721 /* SPEAKERS */
722 /*--------------------*/ 722 /*--------------------*/
723 723
724 724
725 #mu-speakers { 725 #mu-speakers {
726 background-color: #fff; 726 background-color: #fff;
727 display: inline; 727 display: inline;
728 float: left; 728 float: left;
729 width: 100%; 729 width: 100%;
730 } 730 }
731 731
732 .mu-speakers-area { 732 .mu-speakers-area {
733 display: inline; 733 display: inline;
734 float: left; 734 float: left;
735 padding: 100px 0; 735 padding: 100px 0;
736 width: 100%; 736 width: 100%;
737 } 737 }
738 738
739 .mu-speakers-content{ 739 .mu-speakers-content{
740 display: inline; 740 display: inline;
741 float: left; 741 float: left;
742 margin-top: 50px; 742 margin-top: 50px;
743 width: 100%; 743 width: 100%;
744 } 744 }
745 745
746 .mu-single-speakers { 746 .mu-single-speakers {
747 padding: 0 10px; 747 padding: 0 10px;
748 outline: none; 748 outline: none;
749 text-align: center; 749 text-align: center;
750 -webkit-transition: all 0.3s ease 0s; 750 -webkit-transition: all 0.3s ease 0s;
751 transition: all 0.3s ease 0s; 751 transition: all 0.3s ease 0s;
752 } 752 }
753 753
754 .mu-speakers-slider .slick-next { 754 .mu-speakers-slider .slick-next {
755 right: -60px; 755 right: -60px;
756 } 756 }
757 757
758 .mu-speakers-slider .slick-prev { 758 .mu-speakers-slider .slick-prev {
759 left: -60px; 759 left: -60px;
760 } 760 }
761 761
762 .mu-single-speakers-info { 762 .mu-single-speakers-info {
763 display: inline; 763 display: inline;
764 float: left; 764 float: left;
765 margin-top: 20px; 765 margin-top: 20px;
766 width: 100%; 766 width: 100%;
767 } 767 }
768 768
769 .mu-single-speakers-info h3 { 769 .mu-single-speakers-info h3 {
770 margin-bottom: 4px; 770 margin-bottom: 4px;
771 font-size: 22px; 771 font-size: 22px;
772 } 772 }
773 773
774 .mu-single-speakers-info p { 774 .mu-single-speakers-info p {
775 margin-bottom: 5px; 775 margin-bottom: 5px;
776 } 776 }
777 777
778 .mu-single-speakers-social { 778 .mu-single-speakers-social {
779 779
780 } 780 }
781 781
782 .mu-single-speakers-social li { 782 .mu-single-speakers-social li {
783 display: inline-block; 783 display: inline-block;
784 } 784 }
785 785
786 .mu-single-speakers-social li a { 786 .mu-single-speakers-social li a {
787 display: inline-block; 787 display: inline-block;
788 margin-right: 5px; 788 margin-right: 5px;
789 -webkit-transition: all 0.5s; 789 -webkit-transition: all 0.5s;
790 -o-transition: all 0.5s; 790 -o-transition: all 0.5s;
791 transition: all 0.5s; 791 transition: all 0.5s;
792 } 792 }
793 793
794 794
795 /*--------------------*/ 795 /*--------------------*/
796 /* VENUE */ 796 /* VENUE */
797 /*--------------------*/ 797 /*--------------------*/
798 798
799 #mu-venue { 799 #mu-venue {
800 display: inline; 800 display: inline;
801 float: left; 801 float: left;
802 width: 100%; 802 width: 100%;
803 } 803 }
804 804
805 .mu-venue-area { 805 .mu-venue-area {
806 display: inline; 806 display: inline;
807 float: left; 807 float: left;
808 width: 100%; 808 width: 100%;
809 } 809 }
810 810
811 .mu-venue-map { 811 .mu-venue-map {
812 display: inline; 812 display: inline;
813 float: left; 813 float: left;
814 width: 100%; 814 width: 100%;
815 } 815 }
816 816
817 .mu-venue-map iframe { 817 .mu-venue-map iframe {
818 margin-bottom: -8px; 818 margin-bottom: -8px;
819 } 819 }
820 820
821 .mu-venue-address { 821 .mu-venue-address {
822 display: inline; 822 display: inline;
823 float: left; 823 float: left;
824 width: 100%; 824 width: 100%;
825 padding: 10% 5%; 825 padding: 10% 5%;
826 color: #fff; 826 color: #fff;
827 } 827 }
828 828
829 .mu-venue-address h2 i { 829 .mu-venue-address h2 i {
830 margin-top: -4px; 830 margin-top: -4px;
831 font-size: 22px; 831 font-size: 22px;
832 display: inline-block; 832 display: inline-block;
833 vertical-align: middle; 833 vertical-align: middle;
834 } 834 }
835 835
836 .mu-venue-address h3 { 836 .mu-venue-address h3 {
837 margin-top: 15px; 837 margin-top: 15px;
838 margin-bottom: 0px; 838 margin-bottom: 0px;
839 } 839 }
840 840
841 .mu-venue-address h4 { 841 .mu-venue-address h4 {
842 font-size: 18px; 842 font-size: 18px;
843 font-weight: 300; 843 font-weight: 300;
844 margin-top: 10px; 844 margin-top: 10px;
845 margin-bottom: 25px; 845 margin-bottom: 25px;
846 } 846 }
847 847
848 848
849 /*--------------------*/ 849 /*--------------------*/
850 /* PRICING */ 850 /* PRICING */
851 /*--------------------*/ 851 /*--------------------*/
852 852
853 853
854 /*#mu-pricing { 854 #mu-pricing {
855 background-color: #fff; 855 background-color: #fff;
856 display: inline; 856 display: inline;
857 float: left; 857 float: left;
858 width: 100%; 858 width: 100%;
859 } 859 }
860 860
861 .mu-pricing-area { 861 .mu-pricing-area {
862 display: inline; 862 display: inline;
863 float: left; 863 float: left;
864 padding: 100px 0; 864 padding: 100px 0;
865 width: 100%; 865 width: 100%;
866 } 866 }
867 867
868 .mu-pricing-conten { 868 .mu-pricing-conten {
869 display: inline; 869 display: inline;
870 float: left; 870 float: left;
871 margin-top: 50px; 871 margin-top: 50px;
872 width: 100%; 872 width: 100%;
873 } 873 }
874 874
875 .mu-single-price { 875 .mu-single-price {
876 background-color: #f8f8f8; 876 background-color: #f8f8f8;
877 display: inline; 877 display: inline;
878 float: left; 878 float: left;
879 text-align: center; 879 text-align: center;
880 position: relative; 880 position: relative;
881 width: 100%; 881 width: 100%;
882 padding: 15px; 882 padding: 15px;
883 overflow: hidden; 883 overflow: hidden;
884 } 884 }
885 885
886 .mu-single-price-head { 886 .mu-single-price-head {
887 color: #555; 887 color: #555;
888 display: inline; 888 display: inline;
889 float: left; 889 float: left;
890 width: 100%; 890 width: 100%;
891 margin-bottom: 10px; 891 margin-bottom: 10px;
892 margin-top: 10px; 892 margin-top: 10px;
893 } 893 }
894 894
895 .mu-single-price-head .mu-currency { 895 .mu-single-price-head .mu-currency {
896 font-weight: bold; 896 font-weight: bold;
897 font-size: 30px; 897 font-size: 30px;
898 } 898 }
899 899
900 .mu-single-price-head .mu-rate { 900 .mu-single-price-head .mu-rate {
901 font-size: 60px; 901 font-size: 60px;
902 font-weight: bold; 902 font-weight: bold;
903 line-height: 0.9; 903 line-height: 0.9;
904 letter-spacing: 3px; 904 letter-spacing: 3px;
905 } 905 }
906 906
907 .mu-single-price-head .mu-time { 907 .mu-single-price-head .mu-time {
908 font-size: 16px; 908 font-size: 16px;
909 font-weight: 300; 909 font-weight: 300;
910 line-height: 0; 910 line-height: 0;
911 font-style: italic; 911 font-style: italic;
912 } 912 }
913 913
914 .mu-single-price .mu-price-title { 914 .mu-single-price .mu-price-title {
915 color: #555; 915 color: #555;
916 font-size: 22px; 916 font-size: 22px;
917 padding: 10px 0; 917 padding: 10px 0;
918 } 918 }
919 919
920 .mu-single-price ul { 920 .mu-single-price ul {
921 list-style: none; 921 list-style: none;
922 } 922 }
923 923
924 .mu-single-price ul li{ 924 .mu-single-price ul li{
925 list-style: none; 925 list-style: none;
926 color: #555; 926 color: #555;
927 } 927 }
928 928
929 .mu-register-btn { 929 .mu-register-btn {
930 background-color: #fff; 930 background-color: #fff;
931 border: 1px solid #555; 931 border: 1px solid #555;
932 color: #555; 932 color: #555;
933 margin-top: 20px; 933 margin-top: 20px;
934 padding: 10px 40px; 934 padding: 10px 40px;
935 text-align: center; 935 text-align: center;
936 display: inline-block; 936 display: inline-block;
937 margin-bottom: 20px; 937 margin-bottom: 20px;
938 text-transform: uppercase; 938 text-transform: uppercase;
939 letter-spacing: 1.5px; 939 letter-spacing: 1.5px;
940 -webkit-transition: all 0.5s; 940 -webkit-transition: all 0.5s;
941 -o-transition: all 0.5s; 941 -o-transition: all 0.5s;
942 transition: all 0.5s; 942 transition: all 0.5s;
943 } 943 }
944 944
945 .mu-register-btn:hover, 945 .mu-register-btn:hover,
946 .mu-register-btn:focus, 946 .mu-register-btn:focus,
947 .mu-popular-price .mu-register-btn { 947 .mu-popular-price .mu-register-btn {
948 color: #fff; 948 color: #fff;
949 } 949 }
950 950
951 .mu-popular-price .mu-price-tag { 951 .mu-popular-price .mu-price-tag {
952 color: #fff; 952 color: #fff;
953 display: inline-block; 953 display: inline-block;
954 position: absolute; 954 position: absolute;
955 top: 15px; 955 top: 15px;
956 left: -62px; 956 left: -62px;
957 padding: 10px 60px; 957 padding: 10px 60px;
958 font-size: 15px; 958 font-size: 15px;
959 text-transform: uppercase; 959 text-transform: uppercase;
960 letter-spacing: 1.5px; 960 letter-spacing: 1.5px;
961 font-weight: 700; 961 font-weight: 700;
962 transform: rotate(-45deg); 962 transform: rotate(-45deg);
963 text-align: center; 963 text-align: center;
964 }*/ 964 }
965 965
966 /*--------------------*/ 966 /*--------------------*/
967 /* REGISTER */ 967 /* REGISTER */
968 /*--------------------*/ 968 /*--------------------*/
969 969
970 #mu-register { 970 #mu-register {
971 background-image: url("assets/images/register-bg.jpg"); 971 /*background-image: url("assets/images/register-bg.jpg");*/
972 background-position: center center; 972 background-position: center center;
973 background-size: cover; 973 background-size: cover;
974 background-attachment: fixed; 974 background-attachment: fixed;
975 display: inline; 975 display: inline;
976 float: left; 976 float: left;
977 position: relative; 977 position: relative;
978 width: 100%; 978 width: 100%;
979 } 979 }
980 980
981 #mu-register::before { 981 #mu-register::before {
982 background: rgba(0,0,0,0.9); 982 background: rgba(0,0,0,0.9);
983 bottom: 0; 983 bottom: 0;
984 content: ''; 984 content: '';
985 left: 0; 985 left: 0;
986 top: 0; 986 top: 0;
987 right: 0; 987 right: 0;
988 position: absolute; 988 /*position: absolute;*/
989 opacity: 0.9; 989 opacity: 0.9;
990 } 990 }
991 991
992 .mu-register-area { 992 .mu-register-area {
993 display: inline; 993 display: inline;
994 float: left; 994 float: left;
995 padding: 150px 0; 995 padding: 150px 0;
996 width: 100%; 996 width: 100%;
997 } 997 }
998 998
999 .mu-register-area .mu-title, 999 .mu-register-area .mu-title,
1000 .mu-register-area p { 1000 .mu-register-area p {
1001 color: #fff; 1001 color: #fff;
1002 } 1002 }
1003 1003
1004 .mu-register-content { 1004 .mu-register-content {
1005 display: inline; 1005 display: inline;
1006 float: left; 1006 float: left;
1007 width: 100%; 1007 width: 100%;
1008 text-align: center; 1008 text-align: center;
1009 padding: 0 200px; 1009 padding: 0 200px;
1010 margin-top: 50px; 1010 margin-top: 50px;
1011 } 1011 }
1012 1012
1013 .mu-register-form .form-group { 1013 .mu-register-form .form-group {
1014 margin-bottom: 25px; 1014 margin-bottom: 25px;
1015 } 1015 }
1016 1016
1017 .mu-register-form .form-control { 1017 .mu-register-form .form-control {
1018 height: 50px; 1018 height: 50px;
1019 color: #fff; 1019 color: #fff;
1020 background-color: transparent; 1020 background-color: transparent;
1021 border: 2px solid #fff; 1021 border: 2px solid #fff;
1022 } 1022 }
1023 1023
1024 .mu-register-form select.form-control option{ 1024 .mu-register-form select.form-control option{
1025 color: #333; 1025 color: #333;
1026 } 1026 }
1027 1027
1028 .mu-register-form .form-control::-webkit-input-placeholder { 1028 .mu-register-form .form-control::-webkit-input-placeholder {
1029 color: #fff; 1029 color: #fff;
1030 font-size: 15px; 1030 font-size: 15px;
1031 } 1031 }
1032 1032
1033 .mu-register-form .form-control:-moz-placeholder { /* Firefox 18- */ 1033 .mu-register-form .form-control:-moz-placeholder { /* Firefox 18- */
1034 color: #fff; 1034 color: #fff;
1035 font-size: 15px; 1035 font-size: 15px;
1036 } 1036 }
1037 1037
1038 .mu-register-form .form-control::-moz-placeholder { /* Firefox 19+ */ 1038 .mu-register-form .form-control::-moz-placeholder { /* Firefox 19+ */
1039 color: #fff; 1039 color: #fff;
1040 font-size: 15px; 1040 font-size: 15px;
1041 } 1041 }
1042 1042
1043 .mu-register-form .form-control:-ms-input-placeholder { 1043 .mu-register-form .form-control:-ms-input-placeholder {
1044 color: #fff; 1044 color: #fff;
1045 font-size: 15px; 1045 font-size: 15px;
1046 } 1046 }
1047 1047
1048 .mu-reg-submit-btn { 1048 .mu-reg-submit-btn {
1049 background-color: transparent; 1049 background-color: transparent;
1050 border: 2px solid #fff; 1050 border: 2px solid #fff;
1051 color: #fff; 1051 color: #fff;
1052 padding: 12px 75px; 1052 padding: 12px 75px;
1053 margin-top: 20px; 1053 margin-top: 20px;
1054 letter-spacing: 1px; 1054 letter-spacing: 1px;
1055 -webkit-transition: all 0.5s; 1055 -webkit-transition: all 0.5s;
1056 -o-transition: all 0.5s; 1056 -o-transition: all 0.5s;
1057 transition: all 0.5s; 1057 transition: all 0.5s;
1058 } 1058 }
1059 1059
1060 1060
1061 /*--------------------*/ 1061 /*--------------------*/
1062 /* SPONSORS */ 1062 /* SPONSORS */
1063 /*--------------------*/ 1063 /*--------------------*/
1064 1064
1065 #mu-sponsors { 1065 #mu-sponsors {
1066 background-color: #fff; 1066 background-color: #fff;
1067 display: inline; 1067 display: inline;
1068 float: left; 1068 float: left;
1069 width: 100%; 1069 width: 100%;
1070 } 1070 }
1071 1071
1072 .mu-sponsors-area { 1072 .mu-sponsors-area {
1073 display: inline; 1073 display: inline;
1074 float: left; 1074 float: left;
1075 padding: 100px 0; 1075 padding: 100px 0;
1076 width: 100%; 1076 width: 100%;
1077 } 1077 }
1078 1078
1079 .mu-sponsors-content { 1079 .mu-sponsors-content {
1080 display: inline; 1080 display: inline;
1081 float: left; 1081 float: left;
1082 margin-top: 50px; 1082 margin-top: 50px;
1083 width: 100%; 1083 width: 100%;
1084 } 1084 }
1085 1085
1086 .mu-sponsors-single { 1086 .mu-sponsors-single {
1087 background: #eee; 1087 background: #eee;
1088 display: inline; 1088 display: inline;
1089 float: left; 1089 float: left;
1090 margin-top: 10px; 1090 margin-top: 10px;
1091 margin-bottom: 15px; 1091 margin-bottom: 15px;
1092 width: 100%; 1092 width: 100%;
1093 } 1093 }
1094 1094
1095 1095
1096 /*--------------------*/ 1096 /*--------------------*/
1097 /* FAQ */ 1097 /* FAQ */
1098 /*--------------------*/ 1098 /*--------------------*/
1099 1099
1100 #mu-faq { 1100 #mu-faq {
1101 background-color: #f8f8f8; 1101 background-color: #f8f8f8;
1102 display: inline; 1102 display: inline;
1103 float: left; 1103 float: left;
1104 position: relative; 1104 position: relative;
1105 width: 100%; 1105 width: 100%;
1106 } 1106 }
1107 1107
1108 .mu-faq-area { 1108 .mu-faq-area {
1109 display: inline; 1109 display: inline;
1110 float: left; 1110 float: left;
1111 padding: 150px 0; 1111 padding: 150px 0;
1112 width: 100%; 1112 width: 100%;
1113 } 1113 }
1114 1114
1115 .mu-faq-content { 1115 .mu-faq-content {
1116 display: inline; 1116 display: inline;
1117 float: left; 1117 float: left;
1118 width: 100%; 1118 width: 100%;
1119 text-align: center; 1119 text-align: center;
1120 padding: 0 150px; 1120 padding: 0 150px;
1121 margin-top: 50px; 1121 margin-top: 50px;
1122 } 1122 }
1123 1123
1124 .mu-faq-content .panel-default { 1124 .mu-faq-content .panel-default {
1125 border-radius: 0; 1125 border-radius: 0;
1126 border-color: #fff; 1126 border-color: #fff;
1127 box-shadow: 0 2px 3px 0 rgba(0,0,0,0.06); 1127 box-shadow: 0 2px 3px 0 rgba(0,0,0,0.06);
1128 } 1128 }
1129 1129
1130 .mu-faq-content .panel-default > .panel-heading { 1130 .mu-faq-content .panel-default > .panel-heading {
1131 color: #333; 1131 color: #333;
1132 background-color: #fff; 1132 background-color: #fff;
1133 border-color: #ddd; 1133 border-color: #ddd;
1134 padding: 0; 1134 padding: 0;
1135 1135
1136 } 1136 }
1137 1137
1138 .mu-faq-content .panel-default > .panel-heading + .panel-collapse > .panel-body { 1138 .mu-faq-content .panel-default > .panel-heading + .panel-collapse > .panel-body {
1139 text-align: left; 1139 text-align: left;
1140 } 1140 }
1141 1141
1142 1142
1143 .mu-faq-content .panel-title { 1143 .mu-faq-content .panel-title {
1144 text-align: left; 1144 text-align: left;
1145 font-weight: 300; 1145 font-weight: 300;
1146 } 1146 }
1147 1147
1148 .mu-faq-content .panel-title a { 1148 .mu-faq-content .panel-title a {
1149 display: block; 1149 display: block;
1150 padding: 12px 15px; 1150 padding: 12px 15px;
1151 -webkit-transition: all 0.5s; 1151 -webkit-transition: all 0.5s;
1152 -o-transition: all 0.5s; 1152 -o-transition: all 0.5s;
1153 transition: all 0.5s; 1153 transition: all 0.5s;
1154 } 1154 }
1155 1155
1156 .mu-faq-content .panel-title a>span { 1156 .mu-faq-content .panel-title a>span {
1157 margin-right: 5px; 1157 margin-right: 5px;
1158 } 1158 }
1159 1159
1160 1160
1161 /*--------------------*/ 1161 /*--------------------*/
1162 /* CONTACT US */ 1162 /* CONTACT US */
1163 /*--------------------*/ 1163 /*--------------------*/
1164 1164
1165 #mu-contact { 1165 #mu-contact {
1166 background-color: #f8f8f8; 1166 background-color: #f8f8f8;
1167 display: inline; 1167 display: inline;
1168 float: left; 1168 float: left;
1169 width: 100%; 1169 width: 100%;
1170 } 1170 }
1171 1171
1172 .mu-contact-area { 1172 .mu-contact-area {
1173 display: inline; 1173 display: inline;
1174 float: left; 1174 float: left;
1175 padding: 100px 0 50px; 1175 padding: 100px 0 50px;
1176 width: 100%; 1176 width: 100%;
1177 } 1177 }
1178 1178
1179 .mu-contact-header { 1179 .mu-contact-header {
1180 display: inline; 1180 display: inline;
1181 float: left; 1181 float: left;
1182 text-align: center; 1182 text-align: center;
1183 width: 100%; 1183 width: 100%;
1184 padding: 0 120px; 1184 padding: 0 120px;
1185 } 1185 }
1186 1186
1187 .mu-contact-content{ 1187 .mu-contact-content{
1188 display: inline; 1188 display: inline;
1189 float: left; 1189 float: left;
1190 margin-top: 50px; 1190 margin-top: 50px;
1191 padding: 0 20%; 1191 padding: 0 20%;
1192 width: 100%; 1192 width: 100%;
1193 } 1193 }
1194 1194
1195 1195
1196 .mu-contact-form-area { 1196 .mu-contact-form-area {
1197 display: inline; 1197 display: inline;
1198 float: left; 1198 float: left;
1199 width: 100%; 1199 width: 100%;
1200 } 1200 }
1201 1201
1202 .mu-contact-form { 1202 .mu-contact-form {
1203 text-align: center; 1203 text-align: center;
1204 } 1204 }
1205 1205
1206 .mu-contact-form .form-group input { 1206 .mu-contact-form .form-group input {
1207 background: transparent; 1207 background: transparent;
1208 border-radius: 5px; 1208 border-radius: 5px;
1209 color: #333; 1209 color: #333;
1210 font-size: 15px; 1210 font-size: 15px;
1211 border: 1px solid #888; 1211 border: 1px solid #888;
1212 height: 45px; 1212 height: 45px;
1213 margin-bottom: 24px; 1213 margin-bottom: 24px;
1214 } 1214 }
1215 1215
1216 .mu-contact-form .form-group textarea { 1216 .mu-contact-form .form-group textarea {
1217 background: transparent; 1217 background: transparent;
1218 border: 1px solid #888; 1218 border: 1px solid #888;
1219 border-radius: 5px; 1219 border-radius: 5px;
1220 color: #333; 1220 color: #333;
1221 font-size: 18px; 1221 font-size: 18px;
1222 padding: 10px; 1222 padding: 10px;
1223 height: 190px; 1223 height: 190px;
1224 } 1224 }
1225 1225
1226 .mu-contact-form .form-control:focus { 1226 .mu-contact-form .form-control:focus {
1227 background-color: #fff; 1227 background-color: #fff;
1228 outline: 0; 1228 outline: 0;
1229 box-shadow: none; 1229 box-shadow: none;
1230 } 1230 }
1231 1231
1232 .mu-contact-form .form-control::-webkit-input-placeholder { 1232 .mu-contact-form .form-control::-webkit-input-placeholder {
1233 color: #888; 1233 color: #888;
1234 font-size: 15px; 1234 font-size: 15px;
1235 } 1235 }
1236 1236
1237 .mu-contact-form .form-control:-moz-placeholder { /* Firefox 18- */ 1237 .mu-contact-form .form-control:-moz-placeholder { /* Firefox 18- */
1238 color: #888; 1238 color: #888;
1239 font-size: 15px; 1239 font-size: 15px;
1240 } 1240 }
1241 1241
1242 .mu-contact-form .form-control::-moz-placeholder { /* Firefox 19+ */ 1242 .mu-contact-form .form-control::-moz-placeholder { /* Firefox 19+ */
1243 color: #888; 1243 color: #888;
1244 font-size: 15px; 1244 font-size: 15px;
1245 } 1245 }
1246 1246
1247 .mu-contact-form .form-control:-ms-input-placeholder { 1247 .mu-contact-form .form-control:-ms-input-placeholder {
1248 color: #888; 1248 color: #888;
1249 font-size: 15px; 1249 font-size: 15px;
1250 } 1250 }
1251 1251
1252 .mu-contact-form .button-default::after, 1252 .mu-contact-form .button-default::after,
1253 .mu-contact-form .button-default > span { 1253 .mu-contact-form .button-default > span {
1254 padding: 12px 40px; 1254 padding: 12px 40px;
1255 } 1255 }
1256 1256
1257 #form-messages { 1257 #form-messages {
1258 margin-bottom: 10px; 1258 margin-bottom: 10px;
1259 background-color: #fff; 1259 background-color: #fff;
1260 } 1260 }
1261 1261
1262 .success { 1262 .success {
1263 padding: 1em; 1263 padding: 1em;
1264 margin-bottom: 0.75rem; 1264 margin-bottom: 0.75rem;
1265 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); 1265 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1266 color: #468847; 1266 color: #468847;
1267 background-color: #dff0d8; 1267 background-color: #dff0d8;
1268 border: 1px solid #d6e9c6; 1268 border: 1px solid #d6e9c6;
1269 -webkit-border-radius: 4px; 1269 -webkit-border-radius: 4px;
1270 -moz-border-radius: 4px; 1270 -moz-border-radius: 4px;
1271 border-radius: 4px; 1271 border-radius: 4px;
1272 } 1272 }
1273 1273
1274 .error { 1274 .error {
1275 padding: 1em; 1275 padding: 1em;
1276 margin-bottom: 0.75rem; 1276 margin-bottom: 0.75rem;
1277 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); 1277 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1278 color: #b94a48; 1278 color: #b94a48;
1279 background-color: #f2dede; 1279 background-color: #f2dede;
1280 border: 1px solid rgba(185, 74, 72, 0.3); 1280 border: 1px solid rgba(185, 74, 72, 0.3);
1281 -webkit-border-radius: 4px; 1281 -webkit-border-radius: 4px;
1282 -moz-border-radius: 4px; 1282 -moz-border-radius: 4px;
1283 border-radius: 4px; 1283 border-radius: 4px;
1284 } 1284 }
1285 1285
1286 1286
1287 1287
1288 /*--------------------*/ 1288 /*--------------------*/
1289 /* FOOTER */ 1289 /* FOOTER */
1290 /*--------------------*/ 1290 /*--------------------*/
1291 1291
1292 1292
1293 #mu-footer { 1293 #mu-footer {
1294 background-color: #f8f8f8; 1294 background-color: #f8f8f8;
1295 display: inline; 1295 display: inline;
1296 float: left; 1296 float: left;
1297 width: 100%; 1297 width: 100%;
1298 } 1298 }
1299 1299
1300 .mu-footer-area{ 1300 .mu-footer-area{
1301 display: inline; 1301 display: inline;
1302 float: left; 1302 float: left;
1303 padding: 30px 0; 1303 padding: 30px 0;
1304 text-align: center; 1304 text-align: center;
1305 width: 100%; 1305 width: 100%;
1306 } 1306 }
1307 1307
1308 .mu-footer-top { 1308 .mu-footer-top {
1309 display: inline; 1309 display: inline;
1310 float: left; 1310 float: left;
1311 width: 100%; 1311 width: 100%;
1312 } 1312 }
1313 1313
1314 .mu-social-media { 1314 .mu-social-media {
1315 display: inline; 1315 display: inline;
1316 float: left; 1316 float: left;
1317 padding: 10px 0; 1317 padding: 10px 0;
1318 width: 100%; 1318 width: 100%;
1319 } 1319 }
1320 1320
1321 .mu-social-media a { 1321 .mu-social-media a {
1322 border: 1px solid #19191a; 1322 border: 1px solid #19191a;
1323 border-radius: 50px; 1323 border-radius: 50px;
1324 color: #19191a; 1324 color: #19191a;
1325 display: inline-block; 1325 display: inline-block;
1326 font-size: 12px; 1326 font-size: 12px;
1327 margin-right: 10px; 1327 margin-right: 10px;
1328 text-align: center; 1328 text-align: center;
1329 text-decoration: none; 1329 text-decoration: none;
1330 transition: all 0.2s ease-in-out 0s; 1330 transition: all 0.2s ease-in-out 0s;
1331 width: 35px; 1331 width: 35px;
1332 height: 35px; 1332 height: 35px;
1333 line-height: 35px; 1333 line-height: 35px;
1334 font-size: 15px; 1334 font-size: 15px;
1335 } 1335 }
1336 1336
1337 .mu-footer-bottom { 1337 .mu-footer-bottom {
1338 display: inline; 1338 display: inline;
1339 float: left; 1339 float: left;
1340 width: 100%; 1340 width: 100%;
1341 } 1341 }
1342 1342
1343 .mu-copy-right { 1343 .mu-copy-right {
1344 margin-bottom: 0; 1344 margin-bottom: 0;
1345 } 1345 }
1346 1346
1347 .mu-copy-right a { 1347 .mu-copy-right a {
1348 font-weight: 600; 1348 font-weight: 600;
1349 -webkit-transition: all 0.5s; 1349 -webkit-transition: all 0.5s;
1350 -o-transition: all 0.5s; 1350 -o-transition: all 0.5s;
1351 transition: all 0.5s; 1351 transition: all 0.5s;
1352 } 1352 }
1353 1353
1354 1354
1355 1355
1356 /*--------------------*/ 1356 /*--------------------*/
1357 /* RESPONSIVE STYLE */ 1357 /* RESPONSIVE STYLE */
1358 /*--------------------*/ 1358 /*--------------------*/
1359 1359
1360 @media (max-width: 1199px) { 1360 @media (max-width: 1199px) {
1361 1361
1362 .mu-register-content { 1362 .mu-register-content {
1363 padding: 0 150px; 1363 padding: 0 150px;
1364 } 1364 }
1365 1365
1366 .mu-video-iframe-area { 1366 .mu-video-iframe-area {
1367 padding: 16% 0; 1367 padding: 16% 0;
1368 } 1368 }
1369 1369
1370 .mu-video-close-btn { 1370 .mu-video-close-btn {
1371 top: 5%; 1371 top: 5%;
1372 right: 5%; 1372 right: 5%;
1373 margin-top: 0; 1373 margin-top: 0;
1374 } 1374 }
1375 1375
1376 .mu-apps-screenshot-slider .slick-prev { 1376 .mu-apps-screenshot-slider .slick-prev {
1377 left: -25px; 1377 left: -25px;
1378 } 1378 }
1379 1379
1380 .mu-apps-screenshot-slider .slick-next { 1380 .mu-apps-screenshot-slider .slick-next {
1381 right: -25px; 1381 right: -25px;
1382 } 1382 }
1383 1383
1384 1384
1385 } 1385 }
1386 1386
1387 @media (max-width: 991px) { 1387 @media (max-width: 991px) {
1388 1388
1389 .mu-primary-btn { 1389 .mu-primary-btn {
1390 font-size: 14px; 1390 font-size: 14px;
1391 padding: 12px 22px; 1391 padding: 12px 22px;
1392 } 1392 }
1393 1393
1394 .mu-navbar .mu-menu { 1394 .mu-navbar .mu-menu {
1395 margin-top: 5px; 1395 margin-top: 5px;
1396 } 1396 }
1397 1397
1398 .mu-navbar .mu-menu li a { 1398 .mu-navbar .mu-menu li a {
1399 font-size: 15px; 1399 font-size: 15px;
1400 padding: 10px 6px; 1400 padding: 10px 6px;
1401 } 1401 }
1402 1402
1403 .mu-hero-featured-content h1 { 1403 .mu-hero-featured-content h1 {
1404 font-size: 35px; 1404 font-size: 35px;
1405 } 1405 }
1406 1406
1407 .mu-hero-featured-content h2 { 1407 .mu-hero-featured-content h2 {
1408 font-size: 18px; 1408 font-size: 18px;
1409 } 1409 }
1410 1410
1411 .mu-event-date-line { 1411 .mu-event-date-line {
1412 font-size: 14px; 1412 font-size: 14px;
1413 } 1413 }
1414 1414
1415 .mu-event-counter-block { 1415 .mu-event-counter-block {
1416 height: 130px; 1416 height: 130px;
1417 width: 130px; 1417 width: 130px;
1418 font-size: 16px; 1418 font-size: 16px;
1419 margin: 0 10px; 1419 margin: 0 10px;
1420 } 1420 }
1421 1421
1422 .mu-event-counter-block span { 1422 .mu-event-counter-block span {
1423 font-size: 30px; 1423 font-size: 30px;
1424 padding-top: 32px; 1424 padding-top: 32px;
1425 line-height: 32px; 1425 line-height: 32px;
1426 } 1426 }
1427 1427
1428 .mu-event-timeline ul li { 1428 .mu-event-timeline ul li {
1429 margin-left: 15%; 1429 margin-left: 15%;
1430 } 1430 }
1431 1431
1432 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event { 1432 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event {
1433 left: 50px; 1433 left: 50px;
1434 text-align: left; 1434 text-align: left;
1435 } 1435 }
1436 1436
1437 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event::before { 1437 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event::before {
1438 right: auto; 1438 right: auto;
1439 left: -16px; 1439 left: -16px;
1440 border-width: 8px 16px 8px 0; 1440 border-width: 8px 16px 8px 0;
1441 border-color: transparent #fff transparent transparent; 1441 border-color: transparent #fff transparent transparent;
1442 } 1442 }
1443 1443
1444 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event img { 1444 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event img {
1445 float: left; 1445 float: left;
1446 margin-right: 15px; 1446 margin-right: 15px;
1447 margin-left: 0; 1447 margin-left: 0;
1448 } 1448 }
1449 1449
1450 .mu-video-iframe-area { 1450 .mu-video-iframe-area {
1451 padding: 16% 5%; 1451 padding: 16% 5%;
1452 } 1452 }
1453 1453
1454 .mu-video-iframe-area iframe { 1454 .mu-video-iframe-area iframe {
1455 width: 100%; 1455 width: 100%;
1456 } 1456 }
1457 1457
1458 .mu-title-area { 1458 .mu-title-area {
1459 padding: 0 50px; 1459 padding: 0 50px;
1460 } 1460 }
1461 1461
1462 .mu-faq-content { 1462 .mu-faq-content {
1463 padding: 0; 1463 padding: 0;
1464 } 1464 }
1465 1465
1466 .mu-contact-right { 1466 .mu-contact-right {
1467 margin-top: 50px; 1467 margin-top: 50px;
1468 } 1468 }
1469 1469
1470 .mu-menu-btn { 1470 .mu-menu-btn {
1471 right: 5%; 1471 right: 5%;
1472 } 1472 }
1473 1473
1474 .mu-speakers-slider .slick-next { 1474 .mu-speakers-slider .slick-next {
1475 right: 0; 1475 right: 0;
1476 } 1476 }
1477 1477
1478 .mu-speakers-slider .slick-prev { 1478 .mu-speakers-slider .slick-prev {
1479 left: 0; 1479 left: 0;
1480 } 1480 }
1481 1481
1482 .mu-speakers-slider .slick-next, 1482 .mu-speakers-slider .slick-next,
1483 .mu-speakers-slider .slick-prev { 1483 .mu-speakers-slider .slick-prev {
1484 width: 40px; 1484 width: 40px;
1485 height: 40px; 1485 height: 40px;
1486 } 1486 }
1487 1487
1488 .mu-speakers-slider .slick-prev::before, 1488 .mu-speakers-slider .slick-prev::before,
1489 .mu-speakers-slider .slick-next::before { 1489 .mu-speakers-slider .slick-next::before {
1490 font-size: 18px; 1490 font-size: 18px;
1491 } 1491 }
1492 1492
1493 .mu-single-speakers-info h3 { 1493 .mu-single-speakers-info h3 {
1494 font-size: 18px; 1494 font-size: 18px;
1495 } 1495 }
1496 1496
1497 .mu-pricing-conten { 1497 .mu-pricing-conten {
1498 padding: 0 5%; 1498 padding: 0 5%;
1499 } 1499 }
1500 1500
1501 .mu-single-price { 1501 .mu-single-price {
1502 margin-bottom: 30px; 1502 margin-bottom: 30px;
1503 } 1503 }
1504 1504
1505 1505
1506 1506
1507 } 1507 }
1508 1508
1509 @media (max-width: 767px) { 1509 @media (max-width: 767px) {
1510 1510
1511 .mu-logo img { 1511 .mu-logo img {
1512 width: 150px; 1512 width: 150px;
1513 } 1513 }
1514 1514
1515 1515
1516 .mu-navbar .navbar-toggle .icon-bar { 1516 .mu-navbar .navbar-toggle .icon-bar {
1517 background-color: #fff; 1517 background-color: #fff;
1518 } 1518 }
1519 1519
1520 .mu-navbar .mu-menu { 1520 .mu-navbar .mu-menu {
1521 padding: 0 15px; 1521 padding: 0 15px;
1522 } 1522 }
1523 1523
1524 .mu-video-close-btn { 1524 .mu-video-close-btn {
1525 font-size: 16px; 1525 font-size: 16px;
1526 height: 40px; 1526 height: 40px;
1527 line-height: 35px; 1527 line-height: 35px;
1528 width: 40px; 1528 width: 40px;
1529 } 1529 }
1530 1530
1531 1531
1532 1532
1533 } 1533 }
1534 1534
1535 1535
1536 @media (max-width: 640px){ 1536 @media (max-width: 640px){
1537 1537
1538 .mu-event-counter-block { 1538 .mu-event-counter-block {
1539 height: 100px; 1539 height: 100px;
1540 width: 100px; 1540 width: 100px;
1541 font-size: 15px; 1541 font-size: 15px;
1542 } 1542 }
1543 1543
1544 .mu-event-counter-block span { 1544 .mu-event-counter-block span {
1545 font-size: 22px; 1545 font-size: 22px;
1546 padding-top: 22px; 1546 padding-top: 22px;
1547 line-height: 25px; 1547 line-height: 25px;
1548 } 1548 }
1549 1549
1550 .mu-title-area { 1550 .mu-title-area {
1551 padding: 0; 1551 padding: 0;
1552 } 1552 }
1553 1553
1554 .mu-video-iframe-area { 1554 .mu-video-iframe-area {
1555 padding: 5% 5%; 1555 padding: 5% 5%;
1556 } 1556 }
1557 1557
1558 .mu-video-iframe-area iframe { 1558 .mu-video-iframe-area iframe {
1559 width: 100%; 1559 width: 100%;
1560 height: 100%; 1560 height: 100%;
1561 } 1561 }
1562 1562
1563 .mu-register-content { 1563 .mu-register-content {
1564 padding: 0 100px; 1564 padding: 0 100px;
1565 } 1565 }
1566 1566
1567 .mu-contact-content { 1567 .mu-contact-content {
1568 padding: 0 10%; 1568 padding: 0 10%;
1569 } 1569 }
1570 1570
1571 1571
1572 } 1572 }
1573 1573
1574 1574
1575 @media (max-width: 480px) { 1575 @media (max-width: 480px) {
1576 1576
1577 body { 1577 body {
1578 font-size: 14px; 1578 font-size: 14px;
1579 } 1579 }
1580 1580
1581 .mu-logo { 1581 .mu-logo {
1582 margin-bottom: 10px; 1582 margin-bottom: 10px;
1583 font-size: 30px; 1583 font-size: 30px;
1584 } 1584 }
1585 1585
1586 .mu-hero-featured-area { 1586 .mu-hero-featured-area {
1587 padding: 60px 0 60px; 1587 padding: 60px 0 60px;
1588 } 1588 }
1589 1589
1590 .mu-hero-featured-content { 1590 .mu-hero-featured-content {
1591 margin-top: 20px; 1591 margin-top: 20px;
1592 } 1592 }
1593 1593
1594 .mu-hero-featured-content h1 { 1594 .mu-hero-featured-content h1 {
1595 font-size: 25px; 1595 font-size: 25px;
1596 } 1596 }
1597 1597
1598 .mu-hero-featured-content h2 { 1598 .mu-hero-featured-content h2 {
1599 font-size: 14px; 1599 font-size: 14px;
1600 } 1600 }
1601 1601
1602 .mu-event-date-line { 1602 .mu-event-date-line {
1603 font-size: 12px; 1603 font-size: 12px;
1604 } 1604 }
1605 1605
1606 .mu-event-counter-area { 1606 .mu-event-counter-area {
1607 margin-top: 20px; 1607 margin-top: 20px;
1608 } 1608 }
1609 1609
1610 .mu-event-counter-block span { 1610 .mu-event-counter-block span {
1611 font-size: 18px; 1611 font-size: 18px;
1612 padding-top: 16px; 1612 padding-top: 16px;
1613 line-height: 20px; 1613 line-height: 20px;
1614 } 1614 }
1615 1615
1616 .mu-event-counter-block { 1616 .mu-event-counter-block {
1617 height: 75px; 1617 height: 75px;
1618 width: 75px; 1618 width: 75px;
1619 font-size: 12px; 1619 font-size: 12px;
1620 margin: 0 5px; 1620 margin: 0 5px;
1621 } 1621 }
1622 1622
1623 .mu-video-close-btn { 1623 .mu-video-close-btn {
1624 top: 2%; 1624 top: 2%;
1625 right: 5%; 1625 right: 5%;
1626 height: 40px; 1626 height: 40px;
1627 line-height: 35px; 1627 line-height: 35px;
1628 width: 40px; 1628 width: 40px;
1629 } 1629 }
1630 1630
1631 .mu-menu-close-btn { 1631 .mu-menu-close-btn {
1632 right: 5%; 1632 right: 5%;
1633 top: 30px; 1633 top: 30px;
1634 } 1634 }
1635 1635
1636 .mu-video-area { 1636 .mu-video-area {
1637 padding: 100px 0; 1637 padding: 100px 0;
1638 } 1638 }
1639 1639
1640 .mu-video-iframe-area { 1640 .mu-video-iframe-area {
1641 padding: 10% 5%; 1641 padding: 10% 5%;
1642 } 1642 }
1643 1643
1644 .mu-video-iframe-area iframe { 1644 .mu-video-iframe-area iframe {
1645 height: 250px; 1645 height: 250px;
1646 } 1646 }
1647 1647
1648 h2 { 1648 h2 {
1649 font-size: 28px; 1649 font-size: 28px;
1650 } 1650 }
1651 1651
1652 h3 { 1652 h3 {
1653 font-size: 24px; 1653 font-size: 24px;
1654 } 1654 }
1655 1655
1656 h4 { 1656 h4 {
1657 font-size: 20px; 1657 font-size: 20px;
1658 } 1658 }
1659 1659
1660 .mu-schedule-content { 1660 .mu-schedule-content {
1661 margin-top: 30px; 1661 margin-top: 30px;
1662 } 1662 }
1663 1663
1664 .mu-schedule-menu li { 1664 .mu-schedule-menu li {
1665 margin-bottom: 15px; 1665 margin-bottom: 15px;
1666 } 1666 }
1667 1667
1668 .mu-schedule-menu li a { 1668 .mu-schedule-menu li a {
1669 font-size: 15px; 1669 font-size: 15px;
1670 } 1670 }
1671 1671
1672 .mu-event-timeline ul li { 1672 .mu-event-timeline ul li {
1673 margin-left: 5%; 1673 margin-left: 5%;
1674 } 1674 }
1675 1675
1676 .mu-event-timeline ul li .mu-single-event, 1676 .mu-event-timeline ul li .mu-single-event,
1677 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event, 1677 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event,
1678 .mu-event-timeline ul li:nth-child(2n) .mu-single-event { 1678 .mu-event-timeline ul li:nth-child(2n) .mu-single-event {
1679 left: 30px; 1679 left: 30px;
1680 width: 350px; 1680 width: 350px;
1681 } 1681 }
1682 1682
1683 .mu-event-timeline ul li .mu-single-event h3 { 1683 .mu-event-timeline ul li .mu-single-event h3 {
1684 margin-bottom: 5px; 1684 margin-bottom: 5px;
1685 font-size: 14px; 1685 font-size: 14px;
1686 } 1686 }
1687 1687
1688 .mu-venue-address h4 { 1688 .mu-venue-address h4 {
1689 font-size: 16px; 1689 font-size: 16px;
1690 } 1690 }
1691 1691
1692 .mu-register-content, 1692 .mu-register-content,
1693 .mu-contact-content { 1693 .mu-contact-content {
1694 padding: 0 5%; 1694 padding: 0 5%;
1695 } 1695 }
1696 1696
1697 .mu-faq-content .panel-title { 1697 .mu-faq-content .panel-title {
1698 font-size: 14px; 1698 font-size: 14px;
1699 } 1699 }
1700 1700
1701 1701
1702 } 1702 }
1703 1703
1704 1704
1705 @media (max-width: 360px) { 1705 @media (max-width: 360px) {
1706 1706
1707 .mu-logo img { 1707 .mu-logo img {
1708 width: 120px; 1708 width: 120px;
1709 } 1709 }
1710 1710
1711 .mu-hero-featured-area { 1711 .mu-hero-featured-area {
1712 padding: 30px 0 30px; 1712 padding: 30px 0 30px;
1713 } 1713 }
1714 1714
1715 .mu-event-counter-block { 1715 .mu-event-counter-block {
1716 height: 56px; 1716 height: 56px;
1717 width: 56px; 1717 width: 56px;
1718 font-size: 10px; 1718 font-size: 10px;
1719 } 1719 }
1720 1720
1721 .mu-event-counter-block span { 1721 .mu-event-counter-block span {
1722 font-size: 16px; 1722 font-size: 16px;
1723 padding-top: 10px; 1723 padding-top: 10px;
1724 line-height: 16px; 1724 line-height: 16px;
1725 } 1725 }
1726 1726
1727 .mu-video-area { 1727 .mu-video-area {
1728 padding: 50px 0; 1728 padding: 50px 0;
1729 } 1729 }
1730 1730
1731 .mu-video-iframe-area { 1731 .mu-video-iframe-area {
1732 padding: 15% 5%; 1732 padding: 15% 5%;
1733 } 1733 }
1734 1734
1735 .mu-video-play-btn, .mu-video-close-btn { 1735 .mu-video-play-btn, .mu-video-close-btn {
1736 font-size: 18px; 1736 font-size: 18px;
1737 width: 50px; 1737 width: 50px;
1738 height: 50px; 1738 height: 50px;
1739 line-height: 46px; 1739 line-height: 46px;
1740 margin-top: 50px; 1740 margin-top: 50px;
1741 } 1741 }
1742 1742
1743 h2 { 1743 h2 {
1744 font-size: 25px; 1744 font-size: 25px;
1745 } 1745 }
1746 1746
1747 .mu-event-timeline ul li .mu-single-event, 1747 .mu-event-timeline ul li .mu-single-event,
1748 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event, 1748 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event,
1749 .mu-event-timeline ul li:nth-child(2n) .mu-single-event { 1749 .mu-event-timeline ul li:nth-child(2n) .mu-single-event {
1750 left: 30px; 1750 left: 30px;
1751 width: 280px; 1751 width: 280px;
1752 } 1752 }
1753 } 1753 }
1754 1754
1755 1755
1756 1756
1757 @media (max-width: 320px) { 1757 @media (max-width: 320px) {
1758 1758
1759 .mu-video-iframe-area { 1759 .mu-video-iframe-area {
1760 padding: 30% 5%; 1760 padding: 30% 5%;
1761 } 1761 }
1762 1762
1763 .mu-event-timeline ul li .mu-single-event, 1763 .mu-event-timeline ul li .mu-single-event,
1764 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event, 1764 .mu-event-timeline ul li:nth-child(2n+1) .mu-single-event,
1765 .mu-event-timeline ul li:nth-child(2n) .mu-single-event { 1765 .mu-event-timeline ul li:nth-child(2n) .mu-single-event {
1766 left: 30px; 1766 left: 30px;
1767 width: 250px; 1767 width: 250px;
1768 } 1768 }
1769 1769
1770 h2 { 1770 h2 {
1771 font-size: 22px; 1771 font-size: 22px;
1772 } 1772 }
1773
1774 /*chat css*/
1775 .main-section{
1776 width: 300px;
1777 position: fixed;
1778 right:50px;
1779 bottom:-350px;
1780 }
1781 .first-section:hover{
1782 cursor: pointer;
1783 }
1784 .open-more{
1785 bottom:0px;
1786 transition:2s;
1787 }
1788 .border-chat{
1789 border:1px solid #FD8468;
1790 margin: 0px;
1791 }
1792 .first-section{
1793 background-color:#FD8468;
1794 }
1795 .first-section p{
1796 color:#fff;
1797 margin:0px;
1798 padding: 10px 0px;
1799 }
1800 .first-section p:hover{
1801 color:#fff;
1802 cursor: pointer;
1803 }
1804 .right-first-section{
1805 text-align: right;
1806 }
1807 .right-first-section i{
1808 color:#fff;
1809 font-size: 15px;
1810 padding: 12px 3px;
1811 }
1812 .right-first-section i:hover{
1813 color:#fff;
1814 }
1815 .chat-section ul li{
1816 list-style: none;
1817 margin-top:10px;
1818 position: relative;
1819 }
1820 .chat-section{
1821 overflow-y:scroll;
1822 height:300px;
1823 }
1824 .chat-section ul{
1825 padding: 0px;
1826 }
1827 .left-chat img,.right-chat img{
1828 width:50px;
1829 height:50px;
1830 float:left;
1831 margin:0px 10px;
1832 }
1833 .right-chat img{
1834 float:right;
1835 }
1836 .second-section{
1837 padding: 0px;
1838 margin: 0px;
1839 background-color: #F3F3F3;
1840 height: 300px;
1841 }
1842 .left-chat,.right-chat{
1843 overflow: hidden;
1844 }
1845 .left-chat p,.right-chat p{
1846 background-color:#FD8468;
1847 padding: 10px;
1848 color:#fff;
1849 border-radius: 5px;
1850 float:left;
1851 width:60%;
1852 margin-bottom:20px;
1853 }
1854 .left-chat span,.right-chat span{
1855 position: absolute;
1856 left:70px;
1857 top:60px;
1858 color:#B7BCC5;
1859 }
1860 .right-chat span{
1861 left:45px;
1862 }
1863 .right-chat p{
1864 float:right;
1865 background-color: #FFFFFF;
1866 color:#FD8468;
1867 }
1868 .third-section{
1869 border-top: 1px solid #EEEEEE;
1870 }
1871 .text-bar input{
1872 width:90%;
1873 margin-left:-15px;
1874 padding:10px 10px;
1875 border:1px solid #fff;
1876 }
1877 .text-bar a i{
1878 background-color:#FD8468;
1879 color:#fff;
1880 width:30px;
1881 height:30px;
1882 padding:7px 0px;
1883 border-radius: 50%;
1884 text-align: center;
1885 }
1886 .left-chat:before{
1887 content: " ";
1888 position:absolute;
1889 top:0px;
1890 left:55px;
1891 bottom:150px;
1892 border:15px solid transparent;
1893 border-top-color:#FD8468;
1894 }
1895 .right-chat:before{
1896 content: " ";
1897 position:absolute;
1898 top:0px;
1899 right:55px;
1900 bottom:150px;
1901 border:15px solid transparent;
1902 border-top-color:#fff;
1903 }
1773 1904
1774 } 1905 }
1775 1906
1776 1907