@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/*
font-family: 'Ubuntu', sans-serif;
font-family: 'Ubuntu Condensed', sans-serif;
font-family: 'Ubuntu Mono', monospace;
*/
* {
	outline: none!important;	
	transition: all ease-in-out .3s;	
}
body {
	background: #fff;


	font-family: 'Ubuntu', sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5em;
	color: #5f5e5e;
}
footer{
	background-color: #040404;
	z-index: 0 !important;
	width: calc(100% - 270px);
	color: #afaeae;
	margin-left: 270px;
	padding: 30px 0;
}
section {
	padding: 50px 0;
}
h1, h2, h3, h4, h5, h6 {
  clear: both;
  line-height: 1.3em;  
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 15px;
  font-family: 'Ubuntu Condensed', sans-serif;
	margin: 30px 0;
}

a {
  color: inherit;
}
a:hover, 
a:focus, 
a:active {
	text-decoration: none;
	color: #80bfdb;
}
a:focus {
  outline: none;
}
ul, ol {
	padding: 0;
	margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}
::-moz-selection {
    text-shadow: none;
    background: #5f5e5e;
	color:#eee;	
}
::selection {
    text-shadow: none;
    background: #5f5e5e;
	color:#eee;	
}
@media only screen and (min-width: 1200px) and (max-width: 1920px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 575px) {
  .container {
    max-width: 450px;
  }
}
/*SCROLL UP*/
.scrollup {
	position: fixed;
	right: 20px;
	bottom: 50px;
	width: 60px;
	height: 60px;
	background: #80bfdb;
	border-radius: 100%;	
	text-align: center;	
	color: #fff;
	font-size: 1.125em;
	line-height: 3;
	z-index: 999;
}
.scrollup:hover {
  color: #fff !important;
  opacity: 0.9;
}
.scrollup:focus {
  color: #fff !important;
}
.scrollup.btn-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.scrollup.btn-hide {
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}

/* SITE CONTENT*/
.site-content {
  position: relative;
}
.site-content:before,
.site-content:after {
  content: "";
  display: table;
}

.site-content .site-content-header {
  width: 270px;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #212121;
}
.site-content .site-content-body {
  width: calc(100% - 270px);
  margin-left: 270px;
  position: relative;
  z-index: 2;
  background-color: #fff;	
}
@media only screen and (max-width: 1199px) {
  .site-content .site-content-header {
    left: -270px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    height: 100vh;
    position: fixed;
    z-index: 99;
  }
  .site-content .site-content-body {
    margin-left: 0;
    width: 100%;
  }
  .site-content .site-footer {
    margin-left: 0;
    width: 100%;
  }
  .site-content .site-content-body:before {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    height: 100%;
    background: #000;
    top: 0;
    z-index: -1;
    opacity: 0;
  }
  .site-content.mobile-menu-active .site-content-header {
    left: 0;
  }
  .site-content.mobile-menu-active .site-content-body:before {
    z-index: 5;
    opacity: 0.5;
  }
}

/*Clearings*/
.clear:before,
.clear:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}
.clear:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .never ending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Mobile Toggle
--------------------------------------------------------------*/
.mobile-nav-toggle {
	cursor: pointer;
	position: fixed;
	left: 0px;
	top: 0px;
	height: 55px;
	width: 55px;	
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;  
	-ms-flex-pack: center;
	justify-content: center;
	background: #212121;
	margin: 15px 20px;
	border-radius: 100%;
	padding-top: 6px;
}
@media screen and (max-width: 1199px) {
	.mobile-nav-toggle {
		opacity: 1;
		visibility: visible;
	}
}
@media screen and (max-width: 480px) {
	.mobile-nav-toggle {
		margin: 15px;
	}
}
.mobile-nav-toggle > span {
	position: relative;
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
	width: 20px;
	height: 1px;
	color: #fff;
	text-transform: uppercase;
	text-indent: -55px;
	background: #fff;
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
	top: -2px;
}
.mobile-nav-toggle > span:before, .mobile-nav-toggle > span:after {
	content: '';
	width: 20px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.mobile-nav-toggle > span:before {
	top: -7px;
}
.mobile-nav-toggle > span:after {
	bottom: -7px;
}
.mobile-nav-toggle:hover > span:before {
	top: -10px;
}
.mobile-nav-toggle:hover > span:after {
	bottom: -10px;
}
.mobile-nav-toggle.active {
	left: 220px;
}
@media only screen and (max-width: 480px) {
	.mobile-nav-toggle.active {
		left: 225px;
	}
}
.mobile-nav-toggle.active > span {
	background-color: transparent;
}
.mobile-nav-toggle.active > span:before, .mobile-nav-toggle.active > span:after {
	background: #fff;
}
.mobile-nav-toggle.active > span:before {
	top: 0;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
.mobile-nav-toggle.active > span:after {
	bottom: 0;
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}

/*HEADER*/
.site-header .navigation-area {
	display: block;
	padding: 0;
}
@media only screen and (max-width: 1199px) {
	.site-header .site-navigation {
		display: block;
	}
}
.site-header .navigation-area .header-logo {
	text-align: center;
	padding: 35px 15px;
}
.site-header .navigation-area .mainmenu-area {
	height: calc(100vh - 250px);
	padding: 0 15px;
}
.site-header .navigation-area .mainmenu-area .ss-scroll {
	background: #fff;
	right: -246px !important;
	width: 5px;
	opacity: 0.2;
}
.site-header .header-footer {
	min-height: 100px;
	text-align: center;
	padding: 30px 15px 0;
}
.site-header .header-footer .footer-social {
	list-style: none;
	padding: 0;
	margin: 0 -2px -5px;
}
.site-header .header-footer .footer-social li {
	display: inline-block;
	margin: 0 2px 5px;
}
.site-header .header-footer .footer-social li a {
	border: 1px solid #2f2f2f;
	font-size: 14px;
	display: block;
	color: #ddd;
	border-radius: 3px;
	height: 35px;
	line-height: 33px;
	text-align: center;
	width: 35px;
	background-color: #000;
}
.site-header .header-footer .footer-social li a:hover {
	background-color: #80bfdb;
	color: #fff;
	border-color: #80bfdb;
}
.site-header .header-footer h5 a {
	color: #fff;
}

/*MENU*/
.menu ul {
  padding-left: 0px;
  margin-bottom: 0px;
  list-style: none;
}
.menu ul li {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.menu ul li a {
	font-size: 1em;
	font-weight: normal;
	display: block;
	position: relative;
}
.menu > ul > li:hover > a,
.menu ul li > a.active,
.menu ul li.current > a {
	color: #80bfdb !important;
}
.menu > ul > li:hover > a:before,
.menu ul li > a.active:before,
.menu ul li.current > a:before {
	width: 100%;
	left: 0;
	right: auto;
}
.menu > ul > li > a {
	padding: 15px 0px;
	font-weight: normal;
	position: relative;
	color: #eae8e8;
	text-transform: capitalize;
	letter-spacing: 0.075em;
	font-size: 16px;
	border-bottom: 1px solid #2f2f2f;
}

/* Mobile Menu */
.mobile-menu-area {
	display: none;
}
@media only screen and (max-width: 1199px) {
	.mobile-menu-area {
		display: block;
	}
}
@media only screen and (max-width: 991px) {
	.mobile-menu-area .container-main {
		max-width: 100%;
	}
}

/* Page Title */
.page-title {
	background: #8fa4b5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
	padding: 20px;
	color: #fff;	
}
.page-title .page-caption {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .page-title .page-caption {
    padding-top: 5px;
  }
}

/*--------------------------------------------------------------
	CONTENT
--------------------------------------------------------------*/

/* About Page */
.about-course {
  position: relative;
}
.about-course .about-content {
  position: relative;
  padding: 80px 0;
}
@media only screen and (max-width: 991px) {
  .about-course .about-content {
    padding: 0;
  }
}
.about-course .about-content:before {
  position: absolute;
  content: "";
  width: calc(50% + 340px);
  height: 100%;
  background-color:rgba(211,227,241,0.5);
  border-radius: 10px;
  right: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
}
@media only screen and (min-width: 992px) and (max-width: 1366px) {
  .about-course .about-content:before {
    width: calc(50% + 265px);
  }
}
@media only screen and (max-width: 991px) {
  .about-course .about-content:before {
display: none;
  }
	.about-course .about-content {
  background-color:rgba(211,227,241,0.5);
	}	
}
/*
@media only screen and (max-width: 991px) {
  .about-course .about-content:before {
    display: none;
  }
}
*/
.about-course .about-content .list-text {
  padding-left: 0;
  margin-bottom: 15px;
  list-style: none;
}
.about-course .about-content .list-text li {
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}
.about-course .about-content .list-text li:last-child {
  margin-bottom: 0;
}
.about-course .about-content .list-text li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #80bfdb;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}	
.about-course .about-content .list-text li ul li {
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
	list-style: none;
}
.about-course .about-content .list-text li ul li:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #80bfdb;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}
.about-course .about-text-content {
  padding-right: 30px;
  padding-left: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1366px) {
  .about-course .about-text-content {
    padding-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about-course .about-text-content {
    padding-right: 20px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .about-course .about-text-content {
    padding-right: 0px;
    padding-left: 0px;
  }
}
.about-course .about-img {
  position: relative;
  border-radius: 10px;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .about-course .about-img {
   /* background-color: white;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);*/
    padding: 10px;
	  margin: 20px auto 50px;
  }
}
.about-course .about-img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}	
.about-course a {
	text-decoration: underline;
}
/*LAB LIST*/
.lab-list {
	text-align: center;
}	
.lab-list li {
	display: inline-block;
	list-style: none;
	width: 300px;
	margin: 10px;
}
.lab-list figure {
  position: relative;
  text-align: center;
  border: 1px solid #f0f0f0;
  padding: 40px;
  background-color: white;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  border-radius: 40px 7px 40px 7px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1366px) {
  .lab-list figure {
    padding: 35px 15px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .lab-list figure {
    padding: 35px 20px 30px;
  }
}
.lab-list figure:before, 
.lab-list figure:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #80bfdb;
  opacity: 0.075;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lab-list figure:before {
  right: 0;
  top: 0;
  -webkit-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
}
.lab-list figure:after {
  left: 0;
  bottom: 0;
  -webkit-transform: translateX(-50%) translateY(50%);
  transform: translateX(-50%) translateY(50%);
}
.lab-list figure:hover {
  border-color: #80bfdb;
  background-color: #80bfdb;
  color: white;
}
.lab-list figure:hover:before, 
.lab-list figure:hover:after {
  background-color: #fff;
  opacity: 0.1;
}
.lab-list figure:hover:before {
  -webkit-transform: translateX(35%) translateY(-35%);
  transform: translateX(35%) translateY(-35%);
}
.lab-list figure:hover:after {
  -webkit-transform: translateX(-35%) translateY(35%);
  transform: translateX(-35%) translateY(35%);
}

.lab-list figure b {
  font-size: 48px;
  margin-bottom: 25px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: inline-block;
  text-align: center;
  position: relative;
  min-height: 50px;
  line-height: 1em;
  color: #80bfdb;
}
.lab-list figure:hover b {
  color: #fff;
}	
.lab-list figcaption {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 80px;
}

/*DISTRIBUTE*/
.distribute {
	position: relative;
	background: url(../images/laboratory.jpg) no-repeat center center fixed;
	background-size: cover;
}
.distribute:before {
	content: "";
	position: absolute;
	background: rgba(55,55,55,0.5);
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}	
.distribute .distribute-box {
	position: relative;
	background:#fff;
	border-radius: 10px;
	padding: 75px 70px;
	margin-left: -50px;
	z-index: 2;
	text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1366px) {
  .distribute .distribute-box {
    padding: 65px 35px;
    margin-left: -100px;
  }
}
@media only screen and (max-width: 991px) {
  .distribute .distribute-box {
    margin-left: 0px;
    padding: 35px;
  }
}
.distribute-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.distribute-list li{
	text-align: left;
	list-style: none;
	margin: 10px;
}

/*FAQs*/
.faqs-block {
	position: relative;
}
.faqs-block .section-title {
	margin-bottom: 50px;
}
.faqs-block .filter-faqs-tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 25px;
}
.faqs-block .filter-faqs-tab .nav-tabs {
	background-color: transparent;
	border: 0px solid;
	border-radius: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.faqs-block .filter-faqs-tab .nav-tabs > li {
	display: block;
	margin: 0 5px 10px;
}
.faqs-block .filter-faqs-tab .nav-tabs > li > a {
	padding: 12px 25px 11px;
	border: 1px solid #dddddd;
	border-radius: 8px;
	background-color: white;
	box-shadow: 0 0 16px rgba(0,0,0,0.15);
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: 500;
	margin-right: 0;
	text-transform: capitalize;
	-webkit-transition: all 0.25s ease 0s;
	transition: all 0.25s ease 0s;
	text-align: center;
	color: #212121;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.faqs-block .filter-faqs-tab .nav-tabs > li > a {
		font-size: 1.1em;
	}
}
@media only screen and (max-width: 480px) {
	.faqs-block .filter-faqs-tab .nav-tabs > li > a {
		font-size: 1em;
	}
}
.faqs-block .filter-faqs-tab .nav-tabs > li > a:hover {
	color: #80bfdb;
}
.faqs-block .filter-faqs-tab .nav-tabs > li > a:active {
	box-shadow: 0 0 0px transparent;
}
.faqs-block .filter-faqs-tab .nav-tabs > li > a.active {
	color: #80bfdb;
}
.faqs-block .filter-faqs-tab .nav-tabs > li > a.active:before {
	width: 100%;
}
.faq-item {
	width: calc(100% - 80px);
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
	border: 1px solid #d3e3f1;
	background-color: #fff;
	border-radius: 5px;
	margin-left: 80px;
}
@media only screen and (max-width: 480px) {
	.faq-item {
		width: calc(100% - 65px);
		margin-left: 65px;
	}
}
.faq-item:last-child {
	margin-bottom: 0;
}
.faq-item .faq-title {
	cursor: pointer;
	position: relative;
	padding: 16px 20px 15px;
	margin-bottom: 0px;
}
.faq-item .faq-title:before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	left: -8px;
	top: 20px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: white;
	border-bottom: 1px solid #d3e3f1;
	border-left: 1px solid #d3e3f1;
	border-radius: 2px;
}
.faq-item .faq-title:after {
	position: absolute;
	content: "+";
	width: 55px;
	height: 55px;
	left: -80px;
	top: 0;
	background-color: #fff;
	border: 1px solid #d3e3f1;
	border-radius: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 20px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
@media only screen and (max-width: 480px) {
	.faq-item .faq-title:after {
		width: 45px;
		height: 45px;
		left: -65px;
	}
}
.faq-item .faq-title .title {
	font-size: 1.125em;
	margin: 0;
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
	font-weight: 600;
}
.faq-item .faq-title:hover .title {
	color: #80bfdb;
}
.faq-item .faq-content {
	display: none;
	padding: 15px 20px 20px;
}
.faq-item .faq-content ul {
	list-style: none;
	padding-left: 0;
}
.faq-item .faq-content ul:last-child {
	margin-bottom: 0px;
}
.faq-item .faq-content ul li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
.faq-item .faq-content ul li:before {
	position: absolute;
	content: "";
	width: 9px;
	height: 9px;
	border-radius: 50%;
	left: 0;
	top: 8px;
	background: #80bfdb;
}
.faq-item .faq-content ul li:last-child {
	margin-bottom: 0;
}
.faq-item.open .faq-title {
	border-bottom: 1px solid #e5e4f9;
}
.faq-item.open .faq-title:after {
	content: "-";
	color: #8b85fa;
}
.faq-item.open .faq-title .title {
	color: #80bfdb;
}
.faq-item.active .faq-content {
	display: block;
}
.summaru-list {
	margin: 20px 0;
}
.summaru-list dd {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin:0;
	border-bottom: 1px dashed rgba(0,0,0,0.15);
	padding: 8px;
}
.summaru-list dd:first-child {
	border-top: 1px dashed rgba(0,0,0,0.15);
}
.summaru-list dd span{
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
    -ms-flex-pack: center;
    justify-content: center;	
	background:#eee;
	width:40px;
	height:40px;
	margin-right:10px;
	border-radius:100%;
	font-size: 1.3em;
}
.summaru-list dd:hover span{
	margin-right:15px;
}

/* PAGES */

article h2 {
	font-size: 2.4em;
	font-weight: 400;
	color: #80bfdb;
	text-align: center;
}
article h6 {
	font-size: 1.2em;
	font-weight: 300;
	text-align: center;
}
article li {
	margin: 10px 30px;
}
aside {
	margin-top: 60px;
	padding: 20px 0 50px;
	border-top: 2px dotted rgba(0,0,0,0.1);
}
article a,
aside a{
	text-decoration: underline;
}
aside ol,
aside ul{
	margin: 10px;
}
aside li{
	margin: 10px;
}
.image-list {
	padding: 0px;
	max-width: 1300px;
	margin: 20px auto;
	list-style: none;
	text-align: center;
}
.image-list li {
	width:300px;
	display: inline-block;
	margin: 10px;
	padding: 0px;
	vertical-align:top;
}
.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:280px;
	max-height:280px;
}
.image-list figcaption {
	padding: 10px;
	font-family: 'Ubuntu Condensed', sans-serif;
	font-size: 1.2em;
} 
.box-code {
	background:rgba(90,95,98,0.2);
	padding:10px 20px;
	margin:20px 0;
}
.box-code:hover{
-webkit-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);		
	
		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{
	padding:0;
	margin:10px 0 20px;
		
 -webkit-columns: 3; 
	-moz-columns: 3; 
		 columns: 3;
		 
-webkit-column-gap: 2em;
   -moz-column-gap: 2em;
		column-gap: 2em;	 
}
ul.column3 li{
	list-style:none;
	margin:5px 0;
}
@media (max-width: 767px) {
	ul.column3{
	 -webkit-columns: 2; 
		-moz-columns: 2; 
			 columns: 2;
			 
	-webkit-column-gap: 2em;
	   -moz-column-gap: 2em;
			column-gap: 2em;	 
	}
}
@media (max-width: 600px) {
	ul.column3{
	 -webkit-columns: 1; 
		-moz-columns: 1; 
			 columns: 1;	 
	}
}
/*VIDEO*/

.video-block{
	width:90%;
	margin:10px auto;
}
@media (max-width: 600px) {
	.video-block{
		width:100%;
	}
}
.video-box {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}
.video-box iframe,
.video-box object,
.video-box embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}