@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

/*
font-family: 'Nunito', sans-serif;

*/

/*=========================================================================
[01] COMMON STYLE
[02] COLORS
[03] BUTTON
[04] ScrollUp
[05] OVERLAY
[06] OFFCANVAS
[07] MOBILE MENU
[08] HEADER
[09] MAIN MENU
[10] INDEX
	[10.1] Hero Block 
	[10.2] About Block
	[10.3] Target Block
	[10.4] Labs Block
	[10.5] Distribute Block
	[10.6] FAQ Block
=========================================================================*/

/*=======================================================================
[01] COMMON STYLE
=========================================================================*/

* {
	outline: none!important;	
	transition: all ease-in-out .3s;	
}
html {
	position: relative;
	min-height: 100%;
}
body {
	-webkit-tap-highlight-color: transparent;	
	   -webkit-text-size-adjust: 100%;
}
body {
	width: 100%;
	margin-bottom: 80px;	
	background:#fff;
	font-family: 'Nunito', sans-serif;
	font-size:1em;
  	color: #1e1d2d;	
	line-height:1.5;
}
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80px;
	background: #1e1d2d;
	text-align: center;
	padding-top: 30px;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 1.5;
}
h1 {
	text-align: center;
	margin: 30px 0;
}
h6 {
	text-align: center;
}
section {
	padding: 30px 0;
}
ul,ol,li{
	padding: 0;
	margin: 0;
	list-style: none;
}
a, 
a:hover, 
a:active,
a:focus{
	color: #f282b1;
	text-decoration: none;
}
a {
	color: #009eee;
}
img {
	max-width: 100%;
}
::-moz-selection {
	background: #00a6fb;
	color: #fff;
	text-shadow: none
}

::selection {
	background: #00a6fb;
	color: #fff;
	text-shadow: none
}
/*=======================================================================
[02] COLORS
=========================================================================*/
.rose {background: #ff89ba;}
.rose-light {background: #ff9bc4;}
.rose-dark {background:#f282b1;}
.blue {background:#00a6fb;}
.blue-light {background:#26b3fc;}
.blue-dark {background:#009eee;}
.cyan {background:#00cee0;}
.cyan-light {background:#26d5e5;}
.cyan-dark {background:#00c3d5;}
.green {background:#00a678;}
.green-light {background:#26b38c;}
.green-dark {background:#009e72;}
.yellow {background:#ffd000;}
.yellow-light {background:#ffd726;}
.yellow-dark {background:#f2c500;}

.t-rose {color: #ff89ba;}
.t-rose-light {color: #ff9bc4;}
.t-rose-dark {color:#f282b1;}
.t-blue {color:#00a6fb;}
.t-blue-light {color:#26b3fc;}
.t-blue-dark {color:#009eee;}
.t-cyan {color:#00cee0;}
.t-cyan-light {color:#26d5e5;}
.t-cyan-dark {color:#00c3d5;}
.t-green {color:#00a678;}
.t-green-light {color:#26b38c;}
.t-green-dark {color:#009e72;}
.t-yellow {color:#ffd000;}
.t-yellow-light {color:#ffd726;}
.t-yellow-dark {color:#f2c500;}

/*=======================================================================
[03] BUTTON
=========================================================================*/

.btn {
	font-family: Raleway;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	border-radius: 0
}

.btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}
/*=======================================================================
[04] ScrollUp
=========================================================================*/
#scrollUp {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;	
	background: #ffd726;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	text-align: center;
	bottom: 20px;
	right: 20px;
	color: #000;
	font-size: 1.5em;	
}
#scrollUp:hover {
	background: #f2c500;
	color: #000;
	-webkit-animation: 0.75s linear infinite spinner-border;
	animation: 0.75s linear infinite spinner-border;	
}

/*=======================================================================
[05] OVERLAY
=========================================================================*/
body.open {
	overflow-y: scroll;
}
.overlay {
	bottom: 0;
	height: 100vh;
	left: 0;
	margin: 0;
	opacity: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: all .3s cubic-bezier(.4, 0, 1, 1) 0s;
	transition: all .3s cubic-bezier(.4, 0, 1, 1) 0s;
	visibility: hidden;
	width: 100%;
	z-index: 9999999;
	background: rgba(22, 22, 27, .97);
	cursor: pointer;
}
.open .overlay {
	opacity: 1;
	visibility: visible;
}
.scale {
	cursor: pointer;
	height: 100%;
	position: absolute;
	width: 100%;
}
.overlay form.search-box {
	bottom: 0;
	height: 60px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	max-width: 80%;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	opacity: 0;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.open .overlay form.search-box {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.overlay .search-box input {
	line-height: 60px;
	width: 100%;
	font-size: 14px;
	background: transparent;
	border: 1px solid #ebebeb;
	padding: 10px 50px 10px 10px;
	height: 60px;
	color: #fff;
	text-transform: capitalize;
}
.overlay .search-box input::-webkit-input-placeholder {
	color: #fff!important;
}
.overlay .search-box input::-moz-placeholder {
	color: #fff!important;
}
.overlay .search-box input:-ms-input-placeholder {
	color: #fff!important;
}
.overlay .search-box input::-ms-input-placeholder {
	color: #fff!important;
}
.overlay .search-box input::placeholder {
	color: #fff!important;
}
.overlay .search-box button {
	background-color: transparent;
	border: 0;
	color: #fff;
	font-size: 25px;
	position: absolute;
	right: 20px;
	top: 10px;
	padding: 0;
}
button.close {
	position: absolute;
	font-size: 30px;
	color: #fff;
	top: 40px;
	right: 40px;
	z-index: 33;
	opacity: 1;
}
button.close:hover {
	color: #fff!important;
	opacity: 1!important;
}
/*=======================================================================
[06] OFFCANVAS
=========================================================================*/
body.offcanvas-open {
	overflow-y: hidden;
	padding-right: 17px;
}
@media screen and (max-width:991px) {
	body.offcanvas-open {
		padding-right: 0;
	}
}
.offcanvas-overlay {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	background-color: rgba(0,0,0,.5);
}
.offcanvas {
	font-size: 1em;
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: auto;
	display: block;
	overflow: hidden;
	width: 400px;
	height: 100vh;
	transform: translateX(100%);
	background-color: #fff;	
	box-shadow: none;
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	/*!!!!*/overflow-y: scroll;
}
.offcanvas.offcanvas-open {
	transform: translateX(0);
}
.offcanvas.offcanvas-mobile-menu {
	right: auto;
	left: 0;
	transform: translateX(-100%);
}
.offcanvas.offcanvas-mobile-menu.offcanvas-open {
	transform: translateX(0);
}
@media screen and (max-width:480px) {
	.offcanvas {
		width: 300px;
	}
}
.offcanvas .inner {
	padding: 20px;
}
@media screen and (max-width:991px) {
	.offcanvas .inner {
		overflow-y: scroll;
		/*!!!!!!min-height: 660px;*/
	}
}
@media screen and (max-width:767px) {
	.offcanvas .inner {
		height: calc(100% - 30px)
	}
}
@media screen and (max-width:480px) {
	.offcanvas .inner {
		padding: 10px;
	}
}
.offcanvas .inner .head {
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
.offcanvas .inner .head .offcanvas-close {
	position: relative;
	width: 20px;
	height: 20px;
	text-indent: -9999px;
	border: 0;
	background-color: transparent;
}
.offcanvas .title {
	color: #111;
	font-weight: 500;
}
.offcanvas .offcanvas-close {
	position: relative;
	width: 20px;
	height: 20px;
	text-indent: -9999px;
	border: 0;
	background-color: transparent;
}
.offcanvas .offcanvas-close:after {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 20px;
	height: 2px;
	content: "";
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	transform: rotate(-45deg);
	background-color: #111;
}
.offcanvas .offcanvas-close:hover:after {
	transform: rotate(0deg);
}
.offcanvas .offcanvas-close:before {
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	width: 20px;
	height: 2px;
	content: "";
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	transform: rotate(45deg);
	background-color: #111;
}
.offcanvas .offcanvas-close:hover:before {
	transform: rotate(180deg);
}
.offcanvas .offcanvas-menu ul li {
	position: relative;
	display: block;
	line-height: 28px;
}
.offcanvas .offcanvas-menu ul li a {
	display: block;
	position: relative;
	padding: 10px;
	text-transform: capitalize;
	border-bottom: 1px solid #eee;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 30px;
	color: #1e1d2d;
}
.offcanvas .offcanvas-menu ul li a:hover {
	color: #00a6fb;
	padding-left: 15px;
}
.offcanvas .offcanvas-menu ul li .menu-expand {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 24px;
	height: 44px;
	cursor: pointer;
	background-color: transparent
}
.offcanvas .offcanvas-menu ul li .menu-expand:after,
.offcanvas .offcanvas-menu ul li .menu-expand:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 14px;
	height: 2px;
	content: "";
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	background-color: #111
}
.offcanvas .offcanvas-menu ul li .menu-expand:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}
.offcanvas .offcanvas-menu ul li.active>.menu-expand:after {
	-webkit-transform: rotate(0) scale(.75);
	transform: rotate(0) scale(.75)
}
.offcanvas .offcanvas-menu ul li .offcanvas-submenu {
	position: static;
	top: auto;
	display: none;
	visibility: visible;
	width: 100%;
	min-width: auto;
	-webkit-transition: none;
	transition: none;
	opacity: 1;
	box-shadow: none;
}
.offcanvas .offcanvas-menu ul li .offcanvas-submenu li {
	line-height: inherit;
	position: relative;
}
.offcanvas .offcanvas-menu ul li .offcanvas-submenu li a {
	font-size: 1em;
	font-weight: 400;
	padding-left: 30px;
	display: flex;
}
.offcanvas .offcanvas-menu ul li .offcanvas-submenu li a span{
	font-weight: 700;
	margin-right: 10px;
}
.offcanvas .offcanvas-menu ul li .offcanvas-submenu li a:hover {
	padding-left: 35px;
}
.offcanvas .offcanvas-social {
	margin: 30px 0;
	text-align: center;
}	
.offcanvas .offcanvas-social li {
	display: inline-block;
	margin: 0 10px 10px 0;	
}
.offcanvas .offcanvas-social li a {
	display: flex;
	align-items: center;
	justify-content: center;	
	width: 60px;
	height: 60px;
	border-radius: 100%;
	color: #000;
	font-size: 2em;
}	
.offcanvas .offcanvas-social li a:hover {
	border-radius: 6px;
	color: #fff;
}

.offcanvas .summaru-list {
	margin: 20px 0;
}
.offcanvas .summaru-list li {
	list-style:none;
	display: flex;
	align-items: center;
	margin:0;
	border-bottom: 1px dashed rgba(0,0,0,0.15);
	padding: 8px;
}
.offcanvas .summaru-list li:first-child {
	border-top: 1px dashed rgba(0,0,0,0.15);
}
.offcanvas .summaru-list li span{
	display: inline-flex;
	align-items: center;
    justify-content: center;	
	background:#f27e9d;
	width:30px;
	height:30px;
	margin-right:10px;
	border-radius:100%;
	font-size: 1.3em;
}

.fullscreen {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
}
.fullscreen .video{
	width: 90%;
	height: 80%;
}

/*=======================================================================
[07] MOBILE MENU
=========================================================================*/
.mobile-menu-toggle svg {
	width: 50px;
	position: relative;
}
@media screen and (min-width:576px) {
	.mobile-menu-toggle svg {
		top: -8px;
	}
}
.mobile-menu-toggle svg path {
	-webkit-transition: stroke-dashoffset .5s cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray .5s cubic-bezier(.25, -.25, .75, 1.25);
	transition: stroke-dashoffset .5s cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray .5s cubic-bezier(.25, -.25, .75, 1.25);
	fill: none;
	stroke-dashoffset: 0;
	stroke-linecap: round;
	stroke-width: 30px;
}
.mobile-menu-toggle svg path#bottom,
.mobile-menu-toggle svg path#top {
	stroke-dasharray: 240px 950px;
}
.mobile-menu-toggle svg path#middle {
	stroke-dasharray: 240px 240px;
}
.mobile-menu-toggle .close svg path#bottom,
.mobile-menu-toggle .close svg path#top {
	stroke-dasharray: -650px;
	stroke-dashoffset: -650px;
}
.mobile-menu-toggle .close svg path#middle {
	stroke-dasharray: 1px 220px;
	stroke-dashoffset: -115px;
}
.mobile-menu-toggle svg path {
	stroke: #111
}
/*=======================================================================
[08] HEADER
=========================================================================*/
.header-top {
	background: #1e1d2d;
	padding: 10px 0;
}
@media (max-width: 767px) {
	.header-top {
		display: none;
	}	
}	
.header-top-box {
	display: flex;
	align-items: center;
	justify-content: space-between;		
}	
.header-top-box li {
	display: inline-block;
	margin-right: 10px;
}
.header-top-box .social-list li {
	text-align: center;
	margin-right: 0;
	margin-left: 20px;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	font-size: 1.2em;
	line-height: 1.7;
}
.header-top-box .social-list li a{
	color: #fff;
}
.header-top-box .social-list li:hover{
	-webkit-animation: 0.75s linear infinite spinner-border;
	animation: 0.75s linear infinite spinner-border;
}	
.header-top-box .social-list li:hover a{
	color: #fff;
}
.header-middle {
	padding: 10px 0;
}
.right-icon {
	display: flex;
	align-items: center!important;
	justify-content: flex-end;
}	
.right-icon-list li {
	display: inline-block;
	margin-left: 10px;
}
.right-icon-list img {
	width: 40px;
	height: 40px;
	border-radius: 100%;
}
.right-icon-list img:hover {
	border-radius: 6px;
}
.right-icon-list i {
	font-size: 2em;
}
/*=======================================================================
[09] MAIN MENU
=========================================================================*/
.main-menu {
	display: flex;
	justify-content: center !important;
}
.main-menu li {
	margin: 0 1px;
	position: relative;
}
.main-menu li a {
	font-weight: 600;
	display: block;
	padding: 20px;
	text-align: center;
	line-height: 30px;
	font-size: 1.2em;
}
@media screen and (min-width:992px) and (max-width:1199px) {
	.main-menu li a {
		padding: 15px;
		font-size: 13px;
	}
}
.main-menu li.active {
	margin-left: 0;
}
.main-menu li a i {
	font-size: 15px;
	position: relative;
	top: 1px;
}
.sub-menu {
	position: absolute;
	padding: 0;
	min-width: 300px;
	z-index: 4;
	box-shadow: 0 0 3.76px .24px rgba(0, 0, 0, .15);
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transform-origin: 0 0;
	transform-style: preserve-3d;
	transform: rotateX(-75deg);
}
.main-menu li:hover>.sub-menu {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity .3s, -webkit-transform .3s;
	transition: opacity .3s, -webkit-transform .3s;
	transition: transform .3s, opacity .3s;
	transition: transform .3s, opacity .3s, -webkit-transform .3s;
	transform: rotateX(0deg);
}
.sub-menu li {
	padding: 10px 20px;
	border-bottom: 1px solid #eee;
	margin: 0;
}
.sub-menu li a {
	font-weight: 400;
	text-align: left;
	padding: 0;
	color: #565656;
	font-size: 1em;
	line-height: 1.2;
	display: flex;
}
.sub-menu li:hover a {
	padding-left: 5px;
}
.sub-menu li:hover {
	background: rgba(0,0,0,0.03);
}
.sub-menu li a span{
	font-weight: 700;
	margin-right: 10px;
}
#sticky.is-isticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-animation: fadeInDown .5s ease-in-out;
	animation: fadeInDown .5s ease-in-out;
	box-shadow: 0 0 40px 20px rgba(0,0,0,.2);	
}
#sticky.is-isticky,
#sticky.is-isticky:hover {
	background: #fff;
}
#sticky.custom-sticky.is-isticky {
	padding-top: 4px;
	padding-bottom: 4px;
}
@media screen and (max-width:991px) {
	#sticky.custom-sticky.is-isticky {
		position: static!important;
		padding: 10px 0;
	}
}

/*=======================================================================
[10] INDEX
=========================================================================*/
/* Hero Block */
.hero-banner {
	background: #1e1d2d url(../images/bg-intro.png) no-repeat top left fixed;
	background-size: cover;
	position: relative;
	min-height: 50vh;
	text-align: center;
	color: #fff;
	padding: 100px 0;
}
.shape-hero {
	position: absolute;
	width: 100%;
	top: inherit;
	bottom: -1px;
	left: 0;
	right: 0; 
}
.hero-banner h1 {
	font-weight: 900;
	text-transform: uppercase;
}

/* 10.1 About Block */

.about-list li {
	display: flex;		
}
.about-icon {
	width: 50px;
	margin-right: 20px;
}
.about-icon i{
	font-size: 3em;
}
.about-text h5 {
	font-weight: 600;
	margin: 0;
}
@media screen and (max-width:991px) {
	.about-list {
		margin-top: 50px;
	}
}

/* 10.2 Target Block */
.target-block{}
.target-box {
	display: flex;
	align-items: stretch !important;
	justify-content: flex-start;
	width: 100%;
}
.right .target-box {
	justify-content: flex-end;
}
.right .target-box .text-item{
	order: 0;
	text-align: right;
	padding-right: 10px;
}	
.right .target-box .icon-item{
	order: 1;
}	
@media (max-width: 767px) {
	.right .target-box {
	justify-content: flex-start;
}
	.right .target-box .text-item{
		order: 1;
		text-align: left;
		padding-right: 0;
		padding-left: 10px;
	}	
	.right .target-box .icon-item{
		order: 0;
	}		
}	
.target-box .icon-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	background-image: linear-gradient(#cccccc 3px, transparent 2px);
	background-size: 1px 5px;
	background-repeat: repeat-y;
	background-position: 50% 0;
	flex-shrink: 0;
}
.target-box .icon-item span {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}
.target-box .text-item {
	padding-bottom: 20px;
}
.target-box .text-item h4 {
	margin-bottom: 0;
}


/* 10.3 Labs Block */
.labs-block [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}	 
.labs-box {
	position: relative; 
	z-index: 1;
	transition: all 600ms; 
	text-align: center;
}
.labs-box .labs-box-inner {
	padding: 50px 20px; 
	position: relative; 
	overflow: hidden; 
	color: #000; 
	transition: all 600ms;
}
.labs-box .labs-hidden-content {
	overflow: hidden; 
	height: 0; 
	transition: all 600ms;
}
.labs-box  .labs-read-more {
	position: absolute; 
	width: 100%; 
	left: 0; 
	right: 0; 
	bottom: -100%; 
	background-color: rgba(0,0,0,.1); 
	color: #fff; 
	display: block; 
	padding: 18px 15px; 
	text-transform: uppercase; 
	font-weight: 700;
	transition: all 600ms; 
}
.labs-box:hover .labs-box-inner {
	margin-top: -100px; 
}
.labs-box:hover .labs-hidden-content {
	height: 100px; 
	
	font-size: 1.2em;
}
.labs-box:hover .labs-read-more {
	bottom: 0; 
}

/* 10.4 Distribute Block */
.distribute-block .nav-pills .nav-item {
	margin: 10px;
	padding: 10px;
	font-size: 1.1em;
	font-weight: 600;		
}		
.distribute-block .nav-pills .nav-link {
	border-radius: 0;
}
.distribute-block .nav-pills .nav-link.active,
.distribute-block .nav-pills .show > .nav-link {
	color: #fff;
	background:#26b3fc;
}
.balls-list {
	text-align: center;
}
.balls-list li{
	display: inline-block;
	width: 350px;
}
@media (max-width: 575px) {
	.balls-list li{
		width: 90%;
	}
}
.balls-list .card {
	margin: 10px!important;
}

/* 10.5 FAQ Block */
.faq .accordion-button {
  font-size: 1.1rem;
	font-weight: 600;
  color: #212529;
}
.faq .accordion-button:not(.collapsed) {
  color: #fff;
  background:#00cee0;
}
.faq .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}
.faq .accordion-button:focus {
  z-index: 3;
  border-color: #00c3d5;
  outline: 0;
  box-shadow: none;
}
.faq-img {
	width: 333px;
	margin: 20px auto;
	position: relative;
}
@media (max-width:767px) {
	.faq-img {
		display: none;
	}
}
.faq-img span{
	position: absolute;
	right: 50px;
	top: 126px;
}
.play-btn {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  line-height: 10px;
  text-align: center;
  background-color: #ffd000;
  border-radius: 50%;
  animation: pulse 2000ms infinite;
}	
.play-btn:before {
  content: "";
  height: 20px;
  width: 20px;
  border: 2px solid rgba(0,0,0,0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  animation: pulse 2000ms infinite;
}
.play-btn:after {
  content: "";
  height: 30px;
  width: 30px;
  border: 2px solid rgba(0,0,0,0);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  animation: pulse 2000ms infinite;
}
.play-btn i:before {
  font-size: 30px;
  color: #ffffff;
  margin-left: 10px;
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #ff89ba;
  }
  40% {
    box-shadow: 0 0 0 20px rgba(255,137,186,0);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(255,137,186,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,137,186,0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #ff89ba;
  }
  40% {
    box-shadow: 0 0 0 20px rgba(255,137,186,0);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(255,137,186,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,137,186,0);
  }
}

/* PAGES */
main {
	margin-top: 40px;
	padding-bottom: 50px;
}
@media (max-width:991px) {
	aside {
		order: 1;
		padding-top: 50px;
	}
	article {
		order: 0;
	}
}
main li {
	margin: 7px 0 7px 20px;
}
article li {
	list-style: circle;
	margin: 10px 20px;
}
article ol li {
	list-style: decimal;	
	margin: 10px 20px;
}
article ol li ul li {
	list-style: circle;
	margin: 10px 20px;
}
.hero-banner-lecture {
	background: rgba(255,137,186,0.2) url(../images/bg-intro-lecture.png) no-repeat fixed;
	padding: 30px 0;
}
.hero-banner-lab {
	background: rgba(5,166,230,0.2) url(../images/bg-intro-lab.png) no-repeat fixed;
	padding: 30px 0;
}
.hero-banner-lab h4 {
	text-align: center;
}
.hero-banner-selfwork {
	background: rgba(0,166,120,0.2) url(../images/bg-intro.png) no-repeat top left fixed;
	padding: 30px 0;
}
.hero-banner-coursework {
	background: rgba(255,208,0,0.2) url(../images/bg-intro-lecture.png) no-repeat fixed;
	padding: 30px 0;
}

.left-list li{
	margin: 0;
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.5);
	font-size: 1.1em;
}
.left-list li:last-child{
	border-bottom: none;
}
.left-list a {
	color: #000;
}
.left-list li:hover{
	padding-left: 15px;
}

.image-list {
	padding: 0px;
	max-width: 1300px;
	margin: 20px auto;
	list-style: none;
	text-align: center;
}
.image-list li {
	width:250px;
	display: inline-block;
	margin: 10px;
	padding: 0px;
	vertical-align:top;
	list-style-type: none;
}
.image-list figure{
	position: relative;
    overflow: hidden;
    margin: 0;
	padding:10px;
}
.image-list figure:hover{
	box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 
				0 3px 20px 0px rgba(0, 0, 0, 0.12), 
				0 8px 10px -5px rgba(0, 0, 0, 0.2);	
}
.image-list figure img{
	max-width:230px;
	max-height:230px;
}
.image-list figcaption {
	padding: 10px;
	font-family: 'Ubuntu Condensed', sans-serif;
	font-size: 1.2em;
} 
.image-list-sm li {
	width: auto;
	display: inline-block;
	margin: 10px;
	padding: 0px;
	vertical-align:top;
	list-style-type: none;
}
.box-code {
	background:rgba(90,95,98,0.1);
	padding:10px 20px;
	margin:20px 0;
}
.box-code:hover{
		box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 
					0 3px 20px 0px rgba(0, 0, 0, 0.12), 
					0 8px 10px -5px rgba(0, 0, 0, 0.2);	
}
ul.column3{
 -webkit-columns: 3; 
	-moz-columns: 3; 
		 columns: 3;
		 
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	 
}
ul.column2{
 -webkit-columns: 2; 
	-moz-columns: 2; 
		 columns: 2;
		 
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	 
}
ul.column3,
ul.column2 {
	margin:10px 0 20px;
}
@media (max-width:991px) {
	ul.column3,
	ul.column2 {
	 -webkit-columns: 1; 
		-moz-columns: 1; 
			 columns: 1;
	}
}
.masonry {
	-webkit-column-count: 2;
	-moz-column-count:2;
	column-count: 2;
	-webkit-column-gap: 1.5em;
	-moz-column-gap: 1.5em;
	column-gap: 1.5em;
	margin: 0;
	padding: 0;
	font-size: .85em;
}
.masonry .item {
	display: inline-block;
	background: #fff;
	padding: 10px 10px 0;
	margin: 0 0 1.5em;
	width: 100%;
	transition:1s ease all;
	box-sizing: border-box;
	border: 1px dotted rgba(0,0,0,0.4);
	border-radius: 10px;
}
.masonry .item p{
	font-size: 1.1em;
	line-height: 1.5;
}

.masonry .item .box-code {
	font-size: 0.75;
	line-height: 1.2;
}
@media only screen and (max-width: 767px) {
	.masonry {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}
.summaru-list {
	margin: 20px 0;
}
.summaru-list li {
	list-style:none;
	display: flex;
	align-items: center;
	margin:0;
	border-bottom: 1px dashed rgba(0,0,0,0.15);
	padding: 8px;
}
.summaru-list li:first-child {
	border-top: 1px dashed rgba(0,0,0,0.15);
}
.summaru-list li span{
	display: inline-flex;
	align-items: center;
    justify-content: center;	
	background:#f27e9d;
	width:30px;
	height:30px;
	margin-right:10px;
	border-radius:100%;
	font-size: 1.3em;
	color: #fff;
}