Difference between revisions of "Template:Humboldt Berlin"

 
(141 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
<html>
 
<html>
<script>
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
  
$(document).ready(function() {
+
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 +
<!--- THIS IS WHERE THE HTML BEGINS --->
 +
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
  
//remove the HQ_page id
+
<head>  
$("#HQ_page").attr('id','');
+
+
 
+
//highlight current page on the menu
+
highlight_current_page_menu();
+
+
//accessing submenus
+
$(".menu_item").click(function(){
+
$(".submenu_control_icon", this).toggleClass("open");
+
$(this).next(".submenu").fadeToggle(400);
+
});
+
+
//mobile menu access
+
$(".igem_2019_team_mobile_bar").click(function(){
+
$(this).next().toggleClass("displaying_menu");
+
});
+
+
});
+
 
+
 
+
function highlight_current_page_menu() {
+
+
var page_url="https://2019.igem.org/";
+
page_url = page_url + wgPageName;
+
$("a[href$='"+ page_url +"']").children().addClass("current_page");
+
+
//if the page is in a submenu, open the submenu and make the appropiate changes
+
if( $( ".current_page" ).hasClass( "submenu_item" )){
+
+
$(".current_page").parent().parent().fadeToggle(400);
+
$(".current_page").parent().parent().prev().addClass("current_page");
+
$(".menu_item.current_page > .submenu_control_icon").toggleClass("open");
+
+
}
+
}
+
 
+
 
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
+
</script>
+
  
 +
<!-- This tells the browser that your page is responsive -->
 +
<meta name="viewport" content="width=device-width, initial-scale=1">
  
 
<style>
 
<style>
/**************************************************************************************************************************************************************************************************/
+
    #globalWrapper {
 +
        padding: 0 !important;
 +
    }
  
 +
    html #content {
 +
position: static;
 +
width: 100%;
 +
margin: 0;
 +
padding: 0;
 +
    }
  
 
+
    .fixed-image-header {
/**************************************************************************************************************************************************************************************************/
+
        z-index: -1 !important;
/* DEFAULT WIKI SETTINGS */
+
    }
/**************************************************************************************************************************************************************************************************/
+
.padding-container {
 
+
padding: 0 5%;
 
+
#home_logo, #sideMenu { display:none; }
+
#sideMenu, #top_title, .patrollink  {display:none;}
+
#content { margin-left:0px; margin-top:-7px; padding:0px; width:100%;}
+
body {background-color:white; }
+
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
+
#bodyContent a[href ^="https://"], .link-https { padding-right:0px;}
+
+
.judges-will-not-evaluate { border: 4px solid #F42534; padding: 2% !important; width: 92%!important;}
+
 
+
 
+
/**************************************************************************************************************************************************************************************************/
+
/* MENU */
+
/**************************************************************************************************************************************************************************************************/
+
 
+
/*wrapping for the menu*/
+
.igem_2019_team_menu {
+
background-color:#cecece;
+
border-left: 1px solid #635d5d;
+
float:right;
+
height:100vh;
+
max-width: 270px;
+
overflow-y: auto;
+
overflow-x: hidden;
+
padding:0px;
+
position:fixed;
+
right:0%;
+
text-align:left;
+
width: 15%;
+
}
+
 
+
/*controlling menu visibility*/
+
.igem_2019_team_menu.displaying_menu{
+
display:block;
+
}
+
 
+
/*links in the menu*/
+
.igem_2019_team_menu  a {
+
color: #484848;
+
text-decoration:none;
+
}
+
 
+
/*images in the menu*/
+
.igem_2019_team_menu img {
+
width:100%;
+
}
+
 
+
/*level 1 menu items*/
+
.igem_2019_team_menu .menu_item {
+
    background-color: #cecece;
+
    border-bottom: 1px solid #635d5d;
+
    clear: both;
+
color: #484848;
+
    cursor: pointer;
+
float: left;
+
    font-size: 120%;
+
    font-weight: bold;
+
    padding: 15px 0px 15px 5%;
+
  width: 100%;
+
}
+
 
+
/*level 1 menu items without submenus*/
+
.igem_2019_team_menu .menu_item.direct_link {
+
color: #484848;
+
padding-left: 15%;
+
}
+
+
/*level 1 menu items on hover*/
+
.igem_2019_team_menu .menu_item:hover {
+
background-color: #ecb656 !important;
+
}
+
 
+
/*icon for expanding and collapsing level 1 menut items*/
+
.igem_2019_team_menu .menu_item .submenu_control_icon {
+
color: #484848;
+
float: left;
+
width: 10%;
+
}
+
 
+
/* submenu icon  "-"*/
+
.igem_2019_team_menu .menu_item .submenu_control_icon::before {
+
content: "+";
+
}
+
 
+
/* submenu icon  "-"*/
+
.igem_2019_team_menu .menu_item .submenu_control_icon.open::before {
+
content: "-";
+
}
+
 
+
+
/*level 2 menu (submenu) wrapper*/
+
.igem_2019_team_menu .submenu{
+
background-color: #ececec;
+
clear:both;
+
display:none;
+
float: left; 
+
width:100%;
+
}
+
 
+
/*level 2 menu (submenu) item*/
+
.igem_2019_team_menu .submenu .submenu_item {
+
border-bottom: 1px solid #cecece;
+
  color: #635d5d;
+
    height: 30px;
+
  float: left;
+
    font-size: 110%;
+
font-weight: bold;
+
    padding: 12px 0px 0px 15%;
+
    width: 100%;
+
}
+
 
+
/*level 2 menu (submenu) items on hover*/
+
.igem_2019_team_menu .submenu .submenu_item:hover {
+
background-color: #ecb656 !important;
+
}
+
 
+
/*color for highlighting current page on the wiki*/
+
.igem_2019_team_menu .submenu .submenu_item.current_page,
+
.igem_2019_team_menu .menu_item.current_page,
+
.igem_2019_team_menu .menu_item.direct_link.current_page {
+
background-color:#a2d3d0;
+
}
+
 
+
 
+
/*mobile menu bar styling*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
/*mobile bar that controls the menu*/
+
.igem_2019_team_mobile_bar {
+
background-color:#ececec;
+
border-bottom: 1px solid #cecece;
+
cursor:pointer;
+
display:none;
+
float:left;
+
margin-top: 0;
+
padding: 5px 0;
+
position:fixed;
+
width:100%;
+
}
+
+
/*mobile logo*/
+
.igem_logo_mobile {
+
float:left;
+
padding-left: 5%;
+
width: 30%;
+
}
+
 
+
/*image within the mobile logo*/
+
.igem_logo_mobile img {
+
width:70px;
+
}
+
+
/*mobile expand collapse button*/
+
.igem_menu_control_mobile {
+
float:right;
+
padding-right:5%;
+
padding-top:5px;
+
text-align:right;
+
width: 30%;
+
}
+
 
+
/*image for mobile expand collapse button*/
+
.igem_menu_control_mobile img {
+
width:25px;
+
}
+
 
+
 
+
/*add extra padding to the menu to improve mobile scrolling*/
+
.menu_padding{
+
float:left;
+
height:100px;
+
}
+
 
+
 
+
/**************************************************************************************************************************************************************************************************/
+
/* CONTENT OF THE PAGE */
+
/**************************************************************************************************************************************************************************************************/
+
 
+
/* general wrapper for the content */
+
.igem_2019_team_content {
+
background-color:white;
+
display:block;
+
width: 87%;
+
}
+
 
+
/* subwrapper to center content */
+
.igem_2019_team_content .igem_2019_team_column_wrapper {
+
margin:auto;
+
max-width: 1400px;
+
width:90%;
+
}
+
 
+
 
+
 
+
/*general styling*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
/*size for title h tags*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper h1 { font-size: 210%;}
+
.igem_2019_team_content .igem_2019_team_column_wrapper h2 { font-size: 190%;}
+
.igem_2019_team_content .igem_2019_team_column_wrapper h3 { font-size: 170%;}
+
.igem_2019_team_content .igem_2019_team_column_wrapper h4 { font-size: 150%;}
+
.igem_2019_team_content .igem_2019_team_column_wrapper h5 { font-size: 140%;}
+
.igem_2019_team_content .igem_2019_team_column_wrapper h6 { font-size: 130%;}
+
 
+
 
+
/*titles h1, h2*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper h1, .igem_2019_team_content .igem_2019_team_column_wrapper h2 {
+
border-bottom:0px;
+
color: #635d5d;
+
font-family: "Arial Black", Gadget, sans-serif;
+
padding: 10px 0px;
+
}
+
 
+
/*titles h3, h3, h5, h6 */
+
.igem_2019_team_content .igem_2019_team_column_wrapper h3,
+
.igem_2019_team_content .igem_2019_team_column_wrapper h4,
+
.igem_2019_team_content .igem_2019_team_column_wrapper h5,
+
.igem_2019_team_content .igem_2019_team_column_wrapper h6 {
+
border-bottom:0px;
+
color: #635d5d; 
+
font-family: "Arial Black", Gadget, sans-serif;
+
padding: 5px 0px;
+
}
+
 
+
/* text p tag*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper p {
+
font-size: 130%;
+
font-family: Arial, Helvetica, sans-serif;
+
padding: 5px 0px;
+
text-align: left;
+
color: #484848;
+
}
+
 
+
/* Links a tag*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper a {
+
color: #00a19b;
+
font-weight: bold;
+
text-decoration: underline;
+
text-decoration-color:#00a19b;
+
transition: all 0.4s ease;
+
-webkit-transition: all 0.4s ease;
+
-moz-transition: all 0.4s ease;
+
-ms-transition: all 0.4s ease;
+
-o-transition: all 0.4s ease;
+
}
+
 
+
/* hover for the links */
+
.igem_2019_team_content .igem_2019_team_column_wrapper a:hover {
+
color: #085156;
+
text-decoration:none;
+
}
+
 
+
 
+
/* Table tag*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper table {
+
border: 1px solid #635d5d;
+
border-collapse: collapse;
+
font-size: 130%;
+
width: 100%;
+
}
+
 
+
/* table cells */
+
.igem_2019_team_content .igem_2019_team_column_wrapper td {
+
border: 1px solid #cecece;
+
border-collapse: collapse;
+
font-size: 105%;
+
padding: 10px;
+
vertical-align: text-top;
+
}
+
 
+
/* table headers */
+
.igem_2019_team_content .igem_2019_team_column_wrapper th {
+
background-color:#cecece;
+
border: 1px solid #635d5d;
+
border-collapse: collapse;
+
font-size: 110%;
+
padding: 10px;
+
vertical-align: text-top;
+
}
+
 
+
 
+
 
+
/* non numbered lists */
+
.igem_2019_team_content .igem_2019_team_column_wrapper ul, .igem_2019_team_content .igem_2019_team_column_wrapper ol {
+
font-size: 130%;
+
font-family: Arial, Helvetica, sans-serif;
+
padding:0px 20px;
+
}
+
 
+
 
+
/*font sizing within list nesting*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper ul ul li, .igem_2019_team_content .igem_2019_team_column_wrapper ul ul ul li,
+
.igem_2019_team_content .igem_2019_team_column_wrapper ul ol li, .igem_2019_team_content .igem_2019_team_column_wrapper ul ul ol li,
+
.igem_2019_team_content .igem_2019_team_column_wrapper ol ol li, .igem_2019_team_content .igem_2019_team_column_wrapper ul ol ul li,
+
.igem_2019_team_content .igem_2019_team_column_wrapper ol ul li, .igem_2019_team_content .igem_2019_team_column_wrapper ul ol ol li,
+
.igem_2019_team_content .igem_2019_team_column_wrapper ol ul ul li, .igem_2019_team_content .igem_2019_team_column_wrapper ol ol ul li,
+
.igem_2019_team_content .igem_2019_team_column_wrapper ol ol ol li, .igem_2019_team_content .igem_2019_team_column_wrapper ol ul ol li{ font-size: 76%; }
+
 
+
 
+
 
+
/*layout classes*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
/*main layout class */
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column  {
+
float:left;
+
margin: 1% 2%;
+
padding: 0px;
+
}
+
 
+
/* 100% */
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column.full_size { width:96%; }
+
 
+
/* 66% */
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column.two_thirds_size { width: 62.6%; }
+
 
+
/* 33% */
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column.third_size { width: 29.3%; }
+
 
+
 
+
 
+
 
+
/*all images*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column.full_size img,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column.two_thirds_size img,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column.third_size img {
+
margin-bottom: 15px;
+
width: 100%;
+
}
+
 
+
 
+
/* page break */
+
.igem_2019_team_content .igem_2019_team_column_wrapper .clear {
+
clear:both;
+
}
+
/*add extra space to page break with clear class*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper .clear.extra_space {
+
height: 30px;
+
}
+
 
+
/* horizontal line to divide the page*/
+
.igem_2019_team_content .igem_2019_team_column_wrapper .line_divider {
+
    border-top: 1px solid #cecece;
+
  margin: auto;
+
  width: 98%;
+
}
+
 
+
 
+
 
+
+
/*support classes*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
 
+
/*Button  */
+
/************************************************/
+
.igem_2019_team_content .igem_2019_team_column_wrapper .button_link {
+
font-size: 130%;
+
margin: 30px auto;
+
text-align: center;
+
}
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .button_link a  {
+
background-color: #00a19bad !important;
+
color: #000 !important;
+
font-weight: bold;
+
margin: auto;
+
text-decoration: none !important;
+
padding: 10px 15px !important;
+
}
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .button_link a:hover {
+
background-color: #ffb819 !important; 
+
}
+
 
+
+
 
+
/*highlight */
+
/************************************************/
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight {
+
padding: 15px 20px;
+
}
+
 
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight p,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight h1,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight h2,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight h3,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight h4,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight h5,
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight h6 {
+
padding: 5px 15px;
+
}
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight.decoration_background {
+
background-color: #ececec;
+
}
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight.decoration_A_top {
+
    border-top: 4px solid #00a19bad;
+
}
+
 
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight.decoration_A_full {
+
    border: 4px solid #00a19bad;
+
}
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight.decoration_B_top {
+
    border-top: 4px solid #ffb819
+
}
+
 
+
 
+
.igem_2019_team_content .igem_2019_team_column_wrapper .highlight.decoration_B_full {
+
    border: 4px solid #ffb819;
+
}
+
 
+
 
+
 
+
 
+
/*mobile*/
+
/**************************************************************************************************************************************************************************************************/
+
 
+
 
+
/* 1800px  */
+
/************************************************/
+
@media only screen and (max-width: 1800px) {
+
.igem_2019_team_content { width: 85%;}
+
.igem_2019_team_menu {display:block;}
+
 
}
 
}
 +
</style>
  
/* 1400px  */
+
<!-- CUSTOM STYLE -->
/************************************************/
+
<style>
@media only screen and (max-width: 1400px) {
+
@font-face{font-family:'Lato';src:url("https://static.igem.org/mediawiki/2019/7/72/T--Humboldt_Berlin--Lato-Bold.woff") format("woff");font-style:italic;font-weight:bold;text-rendering:optimizeLegibility}@font-face{font-family:'Lato';src:url("https://static.igem.org/mediawiki/2019/e/e2/T--Humboldt_Berlin--Lato-Italic.woff") format("woff");font-style:italic;font-weight:normal;text-rendering:optimizeLegibility}@font-face{font-family:'Lato';src:url("https://static.igem.org/mediawiki/2019/d/d5/T--Humboldt_Berlin--Lato-Regular.woff") format("woff");font-style:normal;font-weight:normal;text-rendering:optimizeLegibility}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:color(bg, 1);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:'Lato', sans-serif;color:#373535}#content html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}#content body{margin:0}#content article,#content aside,#content footer,#content header,#content nav,#content section{display:block}#content h1{font-size:2em;margin:0.67em 0}#content figcaption,#content figure,#content main{display:block}#content figure{margin:1em 40px}#content hr{box-sizing:content-box;height:0;overflow:visible}#content pre{font-family:monospace, monospace;font-size:1em}#content a{background-color:transparent;-webkit-text-decoration-skip:objects}#content abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}#content b,#content strong{font-weight:inherit}#content b,#content strong{font-weight:bolder}#content code,#content kbd,#content samp{font-family:monospace, monospace;font-size:1em}#content dfn{font-style:italic}#content mark{background-color:#ff0;color:#000}#content small{font-size:80%}#content sub,#content sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}#content sub{bottom:-0.25em}#content sup{top:-0.5em}#content audio,#content video{display:inline-block}#content audio:not([controls]){display:none;height:0}#content img{border-style:none}#content svg:not(:root){overflow:hidden}#content button,#content input,#content optgroup,#content select,#content textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}#content button,#content input{overflow:visible}#content button,#content select{text-transform:none}#content button,#content html [type="button"],#content [type="reset"],#content [type="submit"]{-webkit-appearance:button}#content button::-moz-focus-inner,#content [type="button"]::-moz-focus-inner,#content [type="reset"]::-moz-focus-inner,#content [type="submit"]::-moz-focus-inner{border-style:none;padding:0}#content button:-moz-focusring,#content [type="button"]:-moz-focusring,#content [type="reset"]:-moz-focusring,#content [type="submit"]:-moz-focusring{outline:1px dotted ButtonText}#content fieldset{padding:0.35em 0.75em 0.625em}#content legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}#content progress{display:inline-block;vertical-align:baseline}#content textarea{overflow:auto}#content [type="checkbox"],#content [type="radio"]{box-sizing:border-box;padding:0}#content [type="number"]::-webkit-inner-spin-button,#content [type="number"]::-webkit-outer-spin-button{height:auto}#content [type="search"]{-webkit-appearance:textfield;outline-offset:-2px}#content [type="search"]::-webkit-search-cancel-button,#content [type="search"]::-webkit-search-decoration{-webkit-appearance:none}#content ::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}#content details,#content menu{display:block}#content summary{display:list-item}#content canvas{display:inline-block}#content template{display:none}#content [hidden]{display:none}#content h1,#content h2{text-align:center}#content ul,#content ol{margin-top:0;margin-bottom:24px;padding-left:24px}#content ul{list-style:disc}#content ol{list-style:decimal}#content li>ul,#content li>ol{margin-bottom:0}#content img{height:auto;max-width:100%;vertical-align:middle}#content figure{margin:24px 0}#content figcaption{padding:8px 0;font-style:italic}#content img,#content svg{display:block}#content table{border-collapse:collapse;margin-bottom:24px;width:100%}#content tr{border-bottom:1px solid color(bg, 3)}#content th{text-align:left}#content th,#content td{padding:10px 16px}#content th:first-child,#content td:first-child{padding-left:0}#content th:last-child,#content td:last-child{padding-right:0}#content section{padding:50px 0;background-color:#fff}#content #top_title{display:none !important}#content h1,#content h2{overflow:visible}#content .grey-bg{background:#a7c0e5}#content .image-bg img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;z-index:0;-webkit-filter:brightness(50%);filter:brightness(50%)}#content .image-bg-content{position:relative;z-index:1;min-height:550px}#content .full-height{height:100vh;min-height:550px;padding:20px}#content .width-limit{max-width:1440px;margin:0 auto;position:relative;z-index:2}#content .relative-container{position:relative}#content .margin-top{margin-top:80px}#content .hidden{display:none !important}#content .visible{display:block !important}#content .ar16-9{padding:56.25% 0 0}#content .ar100vh{padding:100vh 0 0}#content .block-text{display:block;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;text-align:justify}@media screen and (max-width: 760px){#content .block-text{text-align:left;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}}#content .to-top-link{display:block;text-align:center;font-size:22px;margin:50px 0;color:#373535;text-decoration:none;text-transform:uppercase;font-weight:bold}#content .to-top-link img{display:inline-block;width:20px;margin-top:-2px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}#content .no-bulletpoint{list-style:none}#content .hover-blue a{color:#000}#content .hover-blue a:hover{color:#a2dfba;text-decoration:none}#content .padding-container{padding:0 5%}#content .js .is-revealing{display:block;opacity:0;-webkit-transform:translateY(100px);transform:translateY(100px);transition:0.5s ease-in-out}#content .js .is-revealing-visible{opacity:1;-webkit-transform:none;transform:none}#content #globalWrapper #top_menu_under{height:16px}#content html p{margin:0}#content #container p{margin:.4em 0 .5em 0}#content .mouse{display:block;margin:0 auto;width:23px;height:40px;border-radius:13px;border:2px solid #fff;position:absolute;top:90%;position:absolute;left:50%;margin-left:-14px;z-index:2}#content .mouse span{display:block;margin:6px auto;width:3px;height:7px;border-radius:100%;background:#fff;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:scroll;animation-name:scroll}@-webkit-keyframes scroll{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(12px);transform:translateY(12px)}}@keyframes scroll{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(12px);transform:translateY(12px)}}#content .image-container{margin-bottom:50px}#content .image-tag{position:absolute;border:3px solid rgba(255,255,255,0.25);cursor:pointer}#content .image-tag .tag-caption{display:none;width:100%;top:-10px;-webkit-transform:translateY(-100%);transform:translateY(-100%);text-align:center}#content .image-tag:hover{border:3px solid rgba(255,255,255,0.9)}#content .image-tag:hover .tag-caption{display:block}#content nav{position:absolute;left:0;top:16px;z-index:100;width:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#a2dfba}#content nav .nav-logo{display:inline-block;width:2.5em;height:auto;margin-right:10px}#content nav .nav-content{display:flex;justify-content:space-between;align-items:center;padding:0 20px;height:80px}#content nav a{color:#373535;font-weight:bold;text-decoration:none;font-size:18px}#content nav a.active{color:#ff59ab}#content nav .nav-right{position:relative}#content nav .nav-right input,#content nav .nav-right span,#content nav .nav-right .submenu{display:none}#content nav .nav-right .item{position:relative;display:inline-block}#content nav .nav-right .item:hover .submenu{display:block;position:absolute;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);background-color:#a2dfba;padding:10px}#content nav .nav-right .item:hover .submenu a{white-space:nowrap;margin:10px;display:block}#content nav .nav-right a{margin:0 10px}#content nav .nav-right a:hover{color:#ff59ab}#content nav .nav-right a:last-child{margin:0 0 0 10px}#content nav .nav-right .devider{display:inline}#content nav .nav-right .devider::after{content:'|';color:#373535;margin:0 10px}@media screen and (max-width: 1023px){#content nav .nav-right .item .submenu,#content nav .nav-right .item:hover .submenu{display:block;position:relative;padding:0 0 0 30px;box-shadow:none}#content nav .nav-right .item .submenu a,#content nav .nav-right .item:hover .submenu a{margin:20px 15px}#content nav .nav-right .menu-items{display:none}#content nav .nav-right .devider{border-top:1px solid #373535;margin:0 20px 0 0;height:1px;width:100%}#content nav .nav-right .devider::after{content:''}#content nav .nav-right input,#content nav .nav-right span{display:block}#content nav .nav-right input{width:40px;height:32px;position:absolute;top:-7px;left:-5px;cursor:pointer;opacity:0;z-index:2;-webkit-touch-callout:none}#content nav .nav-right span{width:33px;height:4px;margin-bottom:5px;position:relative;background:#373535;border-radius:3px;z-index:1;-webkit-transform-origin:4px 0px;transform-origin:4px 0px;transition:background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),opacity 0.55s ease,-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);transition:transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),opacity 0.55s ease;transition:transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),opacity 0.55s ease,-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1)}#content nav .nav-right span:first-child{-webkit-transform-origin:0% 0%;transform-origin:0% 0%}#content nav .nav-right span:nth-last-child(2){-webkit-transform-origin:0% 100%;transform-origin:0% 100%}#content nav .nav-right input:checked ~ span{opacity:1;-webkit-transform:rotate(45deg) translate(-2px, -1px);transform:rotate(45deg) translate(-2px, -1px);background:#232323}#content nav .nav-right input:checked ~ span:nth-last-child(3){opacity:0;-webkit-transform:rotate(0deg) scale(0.2, 0.2);transform:rotate(0deg) scale(0.2, 0.2)}#content nav .nav-right input:checked ~ span:nth-last-child(2){-webkit-transform:rotate(-45deg) translate(0, -1px);transform:rotate(-45deg) translate(0, -1px)}#content nav .nav-right input:checked ~ .menu-items{display:flex;flex-direction:column;position:fixed;padding:0 10px;left:0;text-align:left;margin-top:26px;background:#a2dfba;width:100%}#content nav .nav-right input:checked ~ .menu-items a{display:block;margin:20px 15px}}#content .footer-container{background:#a2dfba;padding:75px 0;position:relative;z-index:2}#content .footer-right{display:flex}#content .footer-right ul:first-child{margin-right:20px}@media screen and (max-width: 760px){#content .footer-right ul:first-child{margin-right:0}}#content footer{display:flex;justify-content:space-between;align-items:center;padding:0 20px}@media screen and (max-width: 760px){#content footer{flex-direction:column}}#content footer img{width:200px;height:auto}@media screen and (max-width: 760px){#content footer img{margin-bottom:20px}}#content footer ul li{list-style:none;margin:10px 0}#content footer a{color:#373535;font-weight:bold;text-decoration:none;font-size:18px}#content footer a:hover{color:#ff59ab}#content .animated-background{background:#1F3D24;height:100vh;width:100%;overflow:hidden;position:absolute}#content .animated-background span{width:20vmin;height:20vmin;border-radius:20vmin;-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute;-webkit-animation-name:move;animation-name:move;-webkit-animation-duration:6s;animation-duration:6s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}#content .animated-background span:nth-child(1){color:#85C067;top:69%;left:45%;-webkit-animation-duration:14.3s;animation-duration:14.3s;-webkit-animation-delay:-8.4s;animation-delay:-8.4s;-webkit-transform-origin:0vw 4vh;transform-origin:0vw 4vh;box-shadow:-40vmin 0 5.49094vmin currentColor}#content .animated-background span:nth-child(2){color:#85C067;top:23%;left:30%;-webkit-animation-duration:13.2s;animation-duration:13.2s;-webkit-animation-delay:-9.7s;animation-delay:-9.7s;-webkit-transform-origin:-15vw 20vh;transform-origin:-15vw 20vh;box-shadow:40vmin 0 14.41431vmin currentColor}#content .animated-background span:nth-child(3){color:#85C067;top:63%;left:59%;-webkit-animation-duration:10.3s;animation-duration:10.3s;-webkit-animation-delay:-12.4s;animation-delay:-12.4s;-webkit-transform-origin:-9vw 0vh;transform-origin:-9vw 0vh;box-shadow:40vmin 0 13.6646vmin currentColor}#content .animated-background span:nth-child(4){color:#5C984F;top:92%;left:12%;-webkit-animation-duration:10.1s;animation-duration:10.1s;-webkit-animation-delay:-4s;animation-delay:-4s;-webkit-transform-origin:7vw 16vh;transform-origin:7vw 16vh;box-shadow:-40vmin 0 9.65637vmin currentColor}#content .animated-background span:nth-child(5){color:#5C984F;top:76%;left:10%;-webkit-animation-duration:13s;animation-duration:13s;-webkit-animation-delay:-15.1s;animation-delay:-15.1s;-webkit-transform-origin:7vw -8vh;transform-origin:7vw -8vh;box-shadow:-40vmin 0 5.14665vmin currentColor}#content .animated-background span:nth-child(6){color:#85C067;top:81%;left:86%;-webkit-animation-duration:13.2s;animation-duration:13.2s;-webkit-animation-delay:-3.6s;animation-delay:-3.6s;-webkit-transform-origin:11vw 15vh;transform-origin:11vw 15vh;box-shadow:-40vmin 0 11.0297vmin currentColor}#content .animated-background span:nth-child(7){color:#85C067;top:83%;left:86%;-webkit-animation-duration:16s;animation-duration:16s;-webkit-animation-delay:-14.1s;animation-delay:-14.1s;-webkit-transform-origin:-12vw -17vh;transform-origin:-12vw -17vh;box-shadow:-40vmin 0 5.83064vmin currentColor}#content .animated-background span:nth-child(8){color:#85C067;top:73%;left:7%;-webkit-animation-duration:15.2s;animation-duration:15.2s;-webkit-animation-delay:-3.4s;animation-delay:-3.4s;-webkit-transform-origin:3vw 14vh;transform-origin:3vw 14vh;box-shadow:40vmin 0 9.71786vmin currentColor}#content .animated-background span:nth-child(9){color:#5C984F;top:23%;left:3%;-webkit-animation-duration:11.5s;animation-duration:11.5s;-webkit-animation-delay:-7.4s;animation-delay:-7.4s;-webkit-transform-origin:-5vw -6vh;transform-origin:-5vw -6vh;box-shadow:40vmin 0 5.06752vmin currentColor}#content .animated-background span:nth-child(10){color:#5C984F;top:38%;left:76%;-webkit-animation-duration:14.5s;animation-duration:14.5s;-webkit-animation-delay:-15.7s;animation-delay:-15.7s;-webkit-transform-origin:-1vw -7vh;transform-origin:-1vw -7vh;box-shadow:-40vmin 0 6.88313vmin currentColor}#content .animated-background span:nth-child(11){color:#5C984F;top:11%;left:93%;-webkit-animation-duration:14.3s;animation-duration:14.3s;-webkit-animation-delay:-3s;animation-delay:-3s;-webkit-transform-origin:2vw -10vh;transform-origin:2vw -10vh;box-shadow:-40vmin 0 12.60616vmin currentColor}#content .animated-background span:nth-child(12){color:#85C067;top:90%;left:78%;-webkit-animation-duration:10.9s;animation-duration:10.9s;-webkit-animation-delay:-3.6s;animation-delay:-3.6s;-webkit-transform-origin:-22vw -14vh;transform-origin:-22vw -14vh;box-shadow:-40vmin 0 8.99062vmin currentColor}#content .animated-background span:nth-child(13){color:#5C984F;top:63%;left:37%;-webkit-animation-duration:14.6s;animation-duration:14.6s;-webkit-animation-delay:-14.9s;animation-delay:-14.9s;-webkit-transform-origin:-10vw 1vh;transform-origin:-10vw 1vh;box-shadow:40vmin 0 10.19955vmin currentColor}#content .animated-background span:nth-child(14){color:#5C984F;top:77%;left:67%;-webkit-animation-duration:10.1s;animation-duration:10.1s;-webkit-animation-delay:-14.4s;animation-delay:-14.4s;-webkit-transform-origin:-5vw 19vh;transform-origin:-5vw 19vh;box-shadow:-40vmin 0 8.59628vmin currentColor}#content .animated-background span:nth-child(15){color:#85C067;top:42%;left:18%;-webkit-animation-duration:11.1s;animation-duration:11.1s;-webkit-animation-delay:-5.5s;animation-delay:-5.5s;-webkit-transform-origin:11vw 4vh;transform-origin:11vw 4vh;box-shadow:-40vmin 0 7.97956vmin currentColor}#content .animated-background span:nth-child(16){color:#85C067;top:72%;left:84%;-webkit-animation-duration:14.4s;animation-duration:14.4s;-webkit-animation-delay:-6.2s;animation-delay:-6.2s;-webkit-transform-origin:-9vw 4vh;transform-origin:-9vw 4vh;box-shadow:40vmin 0 8.50576vmin currentColor}#content .animated-background span:nth-child(17){color:#85C067;top:47%;left:23%;-webkit-animation-duration:14.5s;animation-duration:14.5s;-webkit-animation-delay:-7.1s;animation-delay:-7.1s;-webkit-transform-origin:13vw -6vh;transform-origin:13vw -6vh;box-shadow:40vmin 0 9.71486vmin currentColor}#content .animated-background span:nth-child(18){color:#5C984F;top:26%;left:82%;-webkit-animation-duration:13.3s;animation-duration:13.3s;-webkit-animation-delay:-.7s;animation-delay:-.7s;-webkit-transform-origin:9vw -15vh;transform-origin:9vw -15vh;box-shadow:40vmin 0 13.46975vmin currentColor}#content .animated-background span:nth-child(19){color:#5C984F;top:23%;left:53%;-webkit-animation-duration:15.6s;animation-duration:15.6s;-webkit-animation-delay:-9.6s;animation-delay:-9.6s;-webkit-transform-origin:-23vw 12vh;transform-origin:-23vw 12vh;box-shadow:40vmin 0 5.12048vmin currentColor}#content .animated-background span:nth-child(20){color:#5C984F;top:40%;left:45%;-webkit-animation-duration:11.9s;animation-duration:11.9s;-webkit-animation-delay:-3.4s;animation-delay:-3.4s;-webkit-transform-origin:-11vw -2vh;transform-origin:-11vw -2vh;box-shadow:-40vmin 0 5.41452vmin currentColor}#content .animated-background span:nth-child(21){color:#5C984F;top:1%;left:65%;-webkit-animation-duration:15.9s;animation-duration:15.9s;-webkit-animation-delay:-11s;animation-delay:-11s;-webkit-transform-origin:3vw 10vh;transform-origin:3vw 10vh;box-shadow:-40vmin 0 10.27903vmin currentColor}#content .animated-background span:nth-child(22){color:#5C984F;top:100%;left:13%;-webkit-animation-duration:12.8s;animation-duration:12.8s;-webkit-animation-delay:-10.7s;animation-delay:-10.7s;-webkit-transform-origin:20vw 0vh;transform-origin:20vw 0vh;box-shadow:-40vmin 0 13.49562vmin currentColor}#content .animated-background span:nth-child(23){color:#5C984F;top:11%;left:88%;-webkit-animation-duration:13.6s;animation-duration:13.6s;-webkit-animation-delay:-2.2s;animation-delay:-2.2s;-webkit-transform-origin:15vw 21vh;transform-origin:15vw 21vh;box-shadow:-40vmin 0 14.40066vmin currentColor}#content .animated-background span:nth-child(24){color:#85C067;top:51%;left:22%;-webkit-animation-duration:11.6s;animation-duration:11.6s;-webkit-animation-delay:-14.7s;animation-delay:-14.7s;-webkit-transform-origin:1vw 19vh;transform-origin:1vw 19vh;box-shadow:-40vmin 0 13.51245vmin currentColor}#content .animated-background span:nth-child(25){color:#85C067;top:85%;left:86%;-webkit-animation-duration:14.7s;animation-duration:14.7s;-webkit-animation-delay:-14s;animation-delay:-14s;-webkit-transform-origin:-4vw -3vh;transform-origin:-4vw -3vh;box-shadow:-40vmin 0 7.42024vmin currentColor}#content .animated-background span:nth-child(26){color:#5C984F;top:67%;left:64%;-webkit-animation-duration:10.6s;animation-duration:10.6s;-webkit-animation-delay:-8.7s;animation-delay:-8.7s;-webkit-transform-origin:25vw -24vh;transform-origin:25vw -24vh;box-shadow:40vmin 0 11.59417vmin currentColor}#content .animated-background span:nth-child(27){color:#5C984F;top:21%;left:15%;-webkit-animation-duration:13.2s;animation-duration:13.2s;-webkit-animation-delay:-3.5s;animation-delay:-3.5s;-webkit-transform-origin:11vw -13vh;transform-origin:11vw -13vh;box-shadow:-40vmin 0 11.41835vmin currentColor}#content .animated-background span:nth-child(28){color:#85C067;top:78%;left:85%;-webkit-animation-duration:14.8s;animation-duration:14.8s;-webkit-animation-delay:-12.3s;animation-delay:-12.3s;-webkit-transform-origin:-18vw -3vh;transform-origin:-18vw -3vh;box-shadow:-40vmin 0 5.71552vmin currentColor}#content .animated-background span:nth-child(29){color:#5C984F;top:34%;left:26%;-webkit-animation-duration:12.6s;animation-duration:12.6s;-webkit-animation-delay:-4.5s;animation-delay:-4.5s;-webkit-transform-origin:-10vw 18vh;transform-origin:-10vw 18vh;box-shadow:-40vmin 0 11.5756vmin currentColor}#content .animated-background span:nth-child(30){color:#5C984F;top:54%;left:86%;-webkit-animation-duration:10.3s;animation-duration:10.3s;-webkit-animation-delay:-8.1s;animation-delay:-8.1s;-webkit-transform-origin:25vw 10vh;transform-origin:25vw 10vh;box-shadow:-40vmin 0 6.39034vmin currentColor}#content .animated-background span:nth-child(31){color:#85C067;top:13%;left:61%;-webkit-animation-duration:13.3s;animation-duration:13.3s;-webkit-animation-delay:-10.2s;animation-delay:-10.2s;-webkit-transform-origin:15vw -9vh;transform-origin:15vw -9vh;box-shadow:-40vmin 0 5.15985vmin currentColor}#content .animated-background span:nth-child(32){color:#85C067;top:73%;left:29%;-webkit-animation-duration:14.2s;animation-duration:14.2s;-webkit-animation-delay:-4.4s;animation-delay:-4.4s;-webkit-transform-origin:8vw -23vh;transform-origin:8vw -23vh;box-shadow:-40vmin 0 6.10794vmin currentColor}#content .animated-background span:nth-child(33){color:#5C984F;top:67%;left:85%;-webkit-animation-duration:14.4s;animation-duration:14.4s;-webkit-animation-delay:-11s;animation-delay:-11s;-webkit-transform-origin:-21vw -23vh;transform-origin:-21vw -23vh;box-shadow:40vmin 0 8.11159vmin currentColor}#content .animated-background span:nth-child(34){color:#85C067;top:36%;left:56%;-webkit-animation-duration:11.4s;animation-duration:11.4s;-webkit-animation-delay:-15.1s;animation-delay:-15.1s;-webkit-transform-origin:5vw 0vh;transform-origin:5vw 0vh;box-shadow:-40vmin 0 13.83957vmin currentColor}#content .animated-background span:nth-child(35){color:#85C067;top:85%;left:74%;-webkit-animation-duration:15s;animation-duration:15s;-webkit-animation-delay:-6.1s;animation-delay:-6.1s;-webkit-transform-origin:-10vw 6vh;transform-origin:-10vw 6vh;box-shadow:40vmin 0 9.61499vmin currentColor}#content .animated-background span:nth-child(36){color:#85C067;top:98%;left:74%;-webkit-animation-duration:13.6s;animation-duration:13.6s;-webkit-animation-delay:-5.5s;animation-delay:-5.5s;-webkit-transform-origin:-15vw -8vh;transform-origin:-15vw -8vh;box-shadow:-40vmin 0 8.48121vmin currentColor}#content .animated-background span:nth-child(37){color:#85C067;top:34%;left:93%;-webkit-animation-duration:10.9s;animation-duration:10.9s;-webkit-animation-delay:-11.1s;animation-delay:-11.1s;-webkit-transform-origin:-6vw -18vh;transform-origin:-6vw -18vh;box-shadow:40vmin 0 11.91016vmin currentColor}#content .animated-background span:nth-child(38){color:#5C984F;top:46%;left:15%;-webkit-animation-duration:14.5s;animation-duration:14.5s;-webkit-animation-delay:-.2s;animation-delay:-.2s;-webkit-transform-origin:9vw -1vh;transform-origin:9vw -1vh;box-shadow:40vmin 0 8.79218vmin currentColor}#content .animated-background span:nth-child(39){color:#5C984F;top:57%;left:37%;-webkit-animation-duration:12.7s;animation-duration:12.7s;-webkit-animation-delay:-7.8s;animation-delay:-7.8s;-webkit-transform-origin:-15vw -19vh;transform-origin:-15vw -19vh;box-shadow:40vmin 0 6.50587vmin currentColor}#content .animated-background span:nth-child(40){color:#85C067;top:98%;left:95%;-webkit-animation-duration:11.2s;animation-duration:11.2s;-webkit-animation-delay:-9.6s;animation-delay:-9.6s;-webkit-transform-origin:19vw -3vh;transform-origin:19vw -3vh;box-shadow:40vmin 0 11.90919vmin currentColor}@-webkit-keyframes move{100%{-webkit-transform:translate3d(0, 0, 1px) rotate(360deg);transform:translate3d(0, 0, 1px) rotate(360deg)}}@keyframes move{100%{-webkit-transform:translate3d(0, 0, 1px) rotate(360deg);transform:translate3d(0, 0, 1px) rotate(360deg)}}#content .landing-page .site-header{padding:0 50px}#content .landing-page .site-header,#content .landing-page section{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:1}#content .landing-page .header-logo{width:auto;max-height:50vh}#content .landing-page .flex{display:flex;width:100%}#content .landing-page .flex-column{width:100%}#content .landing-page .mol{width:100%;margin-top:25px;cursor:-webkit-grab;cursor:grab}#content .landing-page .big-text h1,#content .landing-page .big-text h2{display:inline;color:#f29799}#content .landing-page .big-text h1,#content .landing-page .big-text h2,#content .landing-page .big-text span{font-size:52px;line-height:1.212}@media screen and (max-width: 1200px){#content .landing-page .big-text h1,#content .landing-page .big-text h2,#content .landing-page .big-text span{font-size:40px}}@media screen and (max-width: 900px){#content .landing-page .big-text h1,#content .landing-page .big-text h2,#content .landing-page .big-text span{font-size:28px}}@media screen and (max-width: 400px){#content .landing-page .big-text h1,#content .landing-page .big-text h2,#content .landing-page .big-text span{font-size:22px}}@media screen and (max-width: 360px){#content .landing-page .big-text h1,#content .landing-page .big-text h2,#content .landing-page .big-text span{font-size:18px}}#content .landing-page .big-text span{color:#373535}#content .landing-page .green-underline .big-headline{border-bottom:10px solid #a2dfba}#content .landing-page .green-underline .image-links a:hover{border-bottom:6px solid #a2dfba}#content .landing-page .red-underline .big-headline{border-bottom:10px solid #f29799}#content .landing-page .red-underline .image-links a:hover{border-bottom:6px solid #f29799}#content .landing-page .blue-underline .big-headline{border-bottom:10px solid #a7c0e5}#content .landing-page .blue-underline .image-links a:hover{border-bottom:6px solid #a7c0e5}#content .landing-page .purple-underline .big-headline{border-bottom:10px solid #322460}#content .landing-page .purple-underline .image-links a:hover{border-bottom:6px solid #322460}#content .landing-page .image-bg-content{position:relative;display:flex;flex-direction:column;width:100%;height:100vh;align-items:flex-start;justify-content:flex-end;color:#fff}#content .landing-page .image-bg-content .big-headline{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;text-transform:uppercase;font-weight:bold}#content .landing-page .image-bg-content .text-navigation p{font-size:32px;margin:0}@media screen and (max-width: 1200px){#content .landing-page .image-bg-content .text-navigation p{font-size:28px}}@media screen and (max-width: 900px){#content .landing-page .image-bg-content .text-navigation p{font-size:22px}}@media screen and (max-width: 400px){#content .landing-page .image-bg-content .text-navigation p{font-size:18px}}@media screen and (max-width: 360px){#content .landing-page .image-bg-content .text-navigation p{font-size:14px}}#content .landing-page .image-bg-content .text-navigation .image-links{margin:40px 0;font-size:28px;font-weight:bold}@media screen and (max-width: 1200px){#content .landing-page .image-bg-content .text-navigation .image-links{font-size:25px}}@media screen and (max-width: 900px){#content .landing-page .image-bg-content .text-navigation .image-links{font-size:20px}}@media screen and (max-width: 400px){#content .landing-page .image-bg-content .text-navigation .image-links{font-size:15px}}@media screen and (max-width: 360px){#content .landing-page .image-bg-content .text-navigation .image-links{font-size:12px}}#content .landing-page .image-bg-content .text-navigation .image-links a{color:#fff;text-decoration:none}#content .landing-page .image-bg-content .text-navigation .image-links a:first-child{margin-right:60px}@media screen and (max-width: 900px){#content .landing-page .image-bg-content .text-navigation .image-links a:first-child{margin-right:30px}}#content .landing-page .sponsored{align-items:flex-start;padding:20px}@media screen and (max-width: 767px){#content .landing-page .sponsored{align-items:center}}#content .landing-page .sponsored h2{color:#373535;text-transform:uppercase}#content .landing-page .sponsor-images{display:flex;justify-content:space-between;width:100%;margin-bottom:50px}@media screen and (max-width: 767px){#content .landing-page .sponsor-images{flex-direction:column;align-items:center}}#content .landing-page .sponsor-images img{width:auto;height:100px}@media screen and (max-width: 1200px){#content .landing-page .sponsor-images img{height:80px}}@media screen and (max-width: 900px){#content .landing-page .sponsor-images img{height:60px}}@media screen and (max-width: 767px){#content .landing-page .sponsor-images img{width:200px;height:auto;margin:20px 0}}#content .team-headline{position:absolute;top:0;left:20px;z-index:1;font-size:52px;text-align:left;text-transform:uppercase;border-bottom:10px solid #a2dfba;font-weight:bold}@media screen and (max-width: 1023px){#content .team-headline{font-size:40px;border-bottom:8px solid #a2dfba}}@media screen and (max-width: 767px){#content .team-headline{font-size:30px;border-bottom:6px solid #a2dfba}}@media screen and (max-width: 500px){#content .team-headline{font-size:24px;border-bottom:4px solid #a2dfba}}@media screen and (max-width: 380px){#content .team-headline{font-size:18px;border-bottom:4px solid #a2dfba}}#content .container .team-image{margin:0 auto;-webkit-filter:none;filter:none}#content .team-member{display:flex;margin-bottom:50px}@media screen and (max-width: 1440px){#content .team-member{padding:0 20px}}@media screen and (max-width: 760px){#content .team-member{flex-direction:column;align-items:center}}#content .team-member img{width:200px;height:200px;border-radius:200px}#content .team-member h2{text-align:left;text-transform:uppercase;font-size:40px;line-height:1;margin:0}@media screen and (max-width: 1200px){#content .team-member h2{font-size:30px}}@media screen and (max-width: 900px){#content .team-member h2{font-size:20px}}#content .team-member h2 i{font-weight:normal}#content .team-member h2 i::before{content:'| '}#content .member-content{width:50%}@media screen and (max-width: 900px){#content .member-content{width:100%}}#content .member-image-left img{margin-right:50px}#content .member-image-right img{margin-left:50px}#content .member-image-right{justify-content:flex-end}@media screen and (max-width: 760px){#content .member-image-right{flex-direction:column-reverse}}@media screen and (max-width: 760px){#content .member-image-left img,#content .member-image-right img{margin:0 0 20px 0}}#content .show-all-members{display:block;text-align:center;font-size:22px;margin:50px 0;color:#373535;text-decoration:none;text-transform:uppercase;font-weight:bold}#content .show-all-members:hover{text-decoration:underline}#content .show-all-members img{display:inline-block;width:20px;margin-top:-2px}#content .fixed-header-container{position:relative}#content .fixed-image-header{position:fixed;z-index:0;top:0;left:0;height:100vh;width:100vw;padding:0}#content .fixed-image-header img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}#content .fixed-header-content{position:relative;z-index:2;margin-top:100vh}#content .page-headline{position:absolute;bottom:5vh;text-transform:uppercase;z-index:2;color:#000;margin:0 auto;width:100%;text-align:center;border-bottom:2vh solid #a7c0e5}#content .page-headline.description{font-size:14vw;line-height:11vw}#content .page-subheadline{text-align:left;font-size:10vw;line-height:10vw;color:#000;margin:0 2vw 20px}#content .headline3{font-size:26px;line-height:28px}#content .no-filter img{-webkit-filter:none;filter:none}#content .two-columns{display:flex;margin:120px 0}#content .two-columns>*{width:100%;padding:0 5%;display:flex;flex-direction:column;justify-content:center}@media screen and (max-width: 760px){#content .two-columns>*{margin-bottom:40px}}#content .two-columns.not-centered>*{justify-content:flex-start}#content .two-columns.no-margin-top{margin-top:0}@media screen and (max-width: 760px){#content .two-columns{flex-direction:column}}#content .two-columns-headline{margin:120px 0 15px;padding:0 5%}#content .medium-sized p,#content p.medium-sized{font-size:18px}#content .small-sized p{font-size:12px}#content .quote{display:flex;max-width:1000px;margin:60px auto 150px;padding:0 50px}#content .quote img{-o-object-fit:contain;object-fit:contain}#content .quote.image-left .quote-image-container{margin-right:40px}#content .quote.image-right .quote-image-container{margin-left:40px}#content .quote .small-image{width:33%}#content .quote img.check-icon{width:50px;height:50px;margin:0;display:inline-block}#content .big-text b{line-height:1.188em}#content .big-text p,#content .big-text b{font-size:32px}@media screen and (max-width: 760px){#content .big-text p,#content .big-text b{font-size:24px}}@media screen and (max-width: 420px){#content .big-text p,#content .big-text b{font-size:18px}}#content .learn-more h3{font-size:32px;text-align:center}#content .learn-more-links{display:flex;justify-content:center}@media screen and (max-width: 760px){#content .learn-more-links{flex-direction:column}}#content .learn-more-links img{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}#content .learn-more-links a{position:relative;display:block;width:50%;padding:300px 0 50px;background:lightgrey;text-decoration:none}@media screen and (max-width: 760px){#content .learn-more-links a{width:calc(100% - 40px);margin:20px}}#content .learn-more-links h4{position:relative;font-size:45px;color:#fff;border-bottom:15px solid #a7c0e5;display:inline-block;margin-bottom:5px;padding:15px 50px}@media screen and (max-width: 760px){#content .learn-more-links h4{font-size:30px;border-bottom:10px solid #a7c0e5;padding:15px 20px}}#content .learn-more-links p{position:relative;color:#fff;padding:10px 50px;font-size:24px;background-color:rgba(0,0,0,0.5)}@media screen and (max-width: 760px){#content .learn-more-links p{padding:10px 20px}}#content .big-underline{border-bottom:30px solid #a7c0e5}#content .greyblue-devider{width:100%;border-bottom:5px solid #a7c0e5;position:relative;z-index:2}#content .notebook{height:100%;padding-top:50px;background:#fff;z-index:3}#content .infobox{position:absolute;top:240px;left:200px;min-width:200px;max-width:1200px;width:calc(100% - 250px);padding:50px;border:5px solid #50bdc4;background:#fff}#content .infobox i{display:inline}#content .infobox .two-columns{margin:0}#content .infobox .two-columns>div{display:block}#content .infobox h2{text-align:left;margin-bottom:5px}#content .infobox.has-image{display:flex}#content .infobox.has-image>*{margin:0 20px}#content .infobox.fixed{position:fixed;z-index:3;top:185px;left:220px;width:calc(100% - 290px)}@media screen and (min-width: 1440px){#content .infobox.fixed{left:calc((100vw / 2) - 720px + 200px)}}#content .infobox::before{content:" ";width:0;height:0;border-style:solid;border-width:25px 50px 25px 0;border-color:transparent #50bdc4 transparent transparent;position:absolute;top:20px;left:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}#content .infobox::after{content:" ";width:0;height:0;border-style:solid;border-width:20px 40px 20px 0;border-color:transparent #fff transparent transparent;position:absolute;top:25px;left:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}#content .infobox-date{margin:0;font-size:30px;line-height: 32px;}#content .infobox-image{width:auto;height:auto;max-height:300px}#content .infobox-image.no-image{display:none}#content .timeline{position:relative;border-left:5px solid #000;margin-left:30px;margin-top:50px;padding-bottom:300px}#content .timeline .tl-first-element{padding:70px 10px}#content .timeline>div{padding:75px 10px;display:none;align-items:center}#content .timeline>div.visible{display:flex}#content .timeline-dot::before{content:" ";width:45px;height:5px;background:#000;display:block;margin-left:-35px}#content .timeline-month::before{content:" ";width:40px;height:40px;border-radius:40px;background:#50bdc4;display:inline-block;margin-left:-35px;margin-right:10px}#content .category-container{display:flex;justify-content:space-evenly}#content .category-container h3{display:inline-flex;align-items:center;width:100%}#content .category{margin:0 50px;width:100%;cursor:pointer}@media only screen and (max-width: 1200px){#content .category{margin:0 30px}}#content .synthesis-color .infobox{border:5px solid #ef8b6b}#content .synthesis-color .infobox::before{border-color:transparent #ef8b6b transparent transparent}#content .synthesis-color .timeline-month::before{background:#ef8b6b}#content .human-practice-color .infobox{border:5px solid #a7c0e5}#content .human-practice-color .infobox::before{border-color:transparent #a7c0e5 transparent transparent}#content .human-practice-color .timeline-month::before{background:#a7c0e5}#content .chlamy-color .infobox{border:5px solid #007e48}#content .chlamy-color .infobox::before{border-color:transparent #007e48 transparent transparent}#content .chlamy-color .timeline-month::before{background:#007e48}#content .bioreaktor-color .infobox{border:5px solid #50bdc4}#content .bioreaktor-color .infobox::before{border-color:transparent #50bdc4 transparent transparent}#content .bioreaktor-color .timeline-month::before{background:#50bdc4}#content .plus::before,#content .minus::before{position:absolute;-webkit-transform:translateX(-100%);transform:translateX(-100%);margin-left:-5px}#content .plus::before{content:"+"}#content .minus::before{content:"-";margin-left:-10px}#content .big-border-left{border-left:80px solid #a7c0e5;margin:0;padding:60px 0}#content .big-border-left .image-column{display:flex;align-items:center}#content .big-border-left img{max-width:250px}#content .page-headline.experiments{font-size:13vw;line-height:14vh}#content .experiments .experiments-container{margin:50px 20px}#content .experiments .protocolls-header{display:flex;justify-content:space-between}#content .experiments .protocolls-buttons{display:flex;flex-direction:column;justify-content:center}#content .experiments .collapse-all,#content .experiments .expand-all{margin:10px 2vw;font-size:30px;cursor:pointer}#content .experiments .collapse-all img,#content .experiments .expand-all img{width:26px;display:inline-block}#content .experiments .collapse-all img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}#content .experiments .experiments-container>.experiments-bar{margin-bottom:50px}#content .experiments .experiments-bar h3{position:relative;color:#000;padding:10px 30px;pointer-events:none}#content .experiments .experiments-bar h3.lightgreen{background-color:#a2dfba}#content .experiments .experiments-bar h3.pink{background-color:#f29799}#content .experiments .experiments-bar h3.lightpurple{background-color:#d299c1}#content .experiments .experiments-bar h3.greyblue{background-color:#a7c0e5}#content .experiments .experiments-bar h3.lightblue{background-color:#50bdc4}#content .experiments .experiments-bar h3::after{content:'<';position:absolute;height:100%;right:10px;top:0;padding:10px;color:#fff;pointer-events:all;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);font-size:28px;cursor:pointer}#content .experiments .experiments-bar .experiments-bar-content{display:none;margin-left:50px}#content .experiments .experiments-bar.open>.experiments-bar-content{display:block}#content .experiments .experiments-bar.open>h3::after{-webkit-transform:rotate(90deg);transform:rotate(90deg)}#content .experiments .experiments-bar .experiments-bar h3{background-color:#b3b3b3}#content .experiments .experiments-bar .experiments-bar .experiments-bar h3{background-color:#e6e6e6}#content .experiments .experiments-bar .experiments-bar .experiments-bar h3::after{color:#000}#content .experiments table{font-family:arial, sans-serif;border-collapse:collapse;width:100%;margin:10px 0;max-width:500px;border:1px solid #000}#content .experiments th{background-color:#dddddd}#content .experiments td,#content .experiments th{border:1px solid #000;text-align:left;padding:8px}#content .expandable .collapse-all,#content .expandable .expand-all{margin:10px 2vw;font-size:30px;cursor:pointer}#content .expandable .collapse-all img,#content .expandable .expand-all img{width:26px;display:inline-block}#content .expandable .collapse-all img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}#content .expandable .protocolls-header{margin-bottom:80px}#content .expandable-container{position:relative;border-left:6px solid #007e48;margin:0 30px;padding:0 0 50px}#content .expandable-container::before{content:'';position:absolute;top:0;left:0;width:100%;display:block;height:2px;background:#E3E7EB;background:linear-gradient(to right, rgba(227,231,235,0.3) 0, rgba(227,231,235,0.9) 50%, rgba(227,231,235,0.3) 100%)}#content .expandable-preview{position:relative;display:flex;align-items:center;padding:30px 0}#content .expandable-preview::before{content:" ";position:absolute;left:-18px;top:-15px;width:30px;height:30px;background:#007e48;border-radius:100%}#content .expandable-preview p,#content .expandable-preview img{width:100%}#content .expandable-preview img{max-width:300px}#content .expandable-preview p{margin:0 50px !important}#content .expandable-readall{margin:10px 2vw 0;font-size:30px;cursor:pointer;text-align:center}#content .expandable-readall img{width:26px;display:inline-block}#content .expandable-container .expandable-more{display:none}#content .expandable-container .readmore{display:inline-block}#content .expandable-container .readless{display:none}#content .open .expandable-more{display:block}#content .open .readmore{display:none}#content .open .readless{display:inline-block}#content .open .expandable-readall img{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.big-border-left2{border-left:80px solid #a7c0e5;  margin:0;padding:60px 0}#content .big-border-left2 .image-column{display:flex;align-items:center}#content .ptable td{padding-left:8px}#content .ptable th{padding-left:8px}#content
.igem_2019_team_menu .menu_item { font-size:100%;}
+
.standardmarginleft{margin-left: 40px}
.igem_2019_team_menu .submenu .submenu_item { font-size:90%;}
+
.igem_2019_team_menu {display:block;}
+
}
+
 
+
 
+
/* 1100px  */
+
/************************************************/
+
@media only screen and (max-width: 1100px) {
+
.igem_2019_team_content {width:100%; margin-left:0px;}
+
+
.igem_2019_team_menu {display:none;float:right;margin-top:47px;max-width:100%;position:fixed;width:25%;}
+
+
.igem_2019_team_mobile_bar {display:block;}
+
+
.igem_2019_team_content .igem_2019_team_column_wrapper .column.full_size, .igem_2019_team_content .igem_2019_team_column_wrapper .column.two_thirds_size,.igem_2019_team_content .igem_2019_team_column_wrapper .column.third_size {width:96%; }
+
 
+
}
+
 
+
/* 850px  */
+
/************************************************/
+
@media only screen and (max-width: 850px) {
+
.igem_2019_team_menu {width:40%;}
+
}
+
 
+
/*500px  */
+
/************************************************/
+
@media only screen and (max-width: 500px) {
+
.igem_2019_team_menu {min-width:100%;width:100%;}
+
}
+
 
+
 
+
/**************************************************************************************************************************************************************************************************/
+
 
+
 
+
  
  
  
 
</style>
 
</style>
 
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!--- THIS IS WHERE THE HTML BEGINS --->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
 
<head>
 
 
<!-- This tells the browser that your page is responsive -->
 
<meta name="viewport" content="width=device-width, initial-scale=1">
 
 
 
</head>
 
</head>
 
  
  
Line 551: Line 48:
  
  
<div class="igem_2019_team_mobile_bar">
 
 
<div class="igem_logo_mobile">
 
<img src="https://static.igem.org/mediawiki/2019/3/3c/Igem_mobile_menu_logo.svg">
 
</div>
 
  
 
<div class="igem_menu_control_mobile">
 
<img id="menu_control_image" src="https://static.igem.org/mediawiki/2019/e/ee/2019_team_menu_icon.svg">
 
</div>
 
 
</div>
 
 
 
 
 
<div class="igem_2019_team_menu">
 
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin">
 
<img src="https://placehold.it/350x150/ececec/cecece">
 
</a>
 
 
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin">
 
<div class="menu_item direct_link">
 
HOME
 
</div>
 
</a>
 
 
<!-- Team -->
 
<div class="menu_item">
 
<div class="submenu_control_icon"> </div>
 
TEAM
 
</div>
 
<div class="submenu">
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Team">
 
<div class="submenu_item">
 
Team Members
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Collaborations">
 
<div class="submenu_item">
 
Collaborations
 
</div>
 
</a>
 
</div>
 
 
 
<!-- Project -->
 
<div class="menu_item">
 
<div class="submenu_control_icon"> </div>
 
PROJECT
 
</div>
 
<div class="submenu">
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Description">
 
<div class="submenu_item">
 
Description
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Design">
 
<div class="submenu_item">
 
Design
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Experiments">
 
<div class="submenu_item">
 
Experiments
 
</div>
 
</a>
 
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Notebook">
 
<div class="submenu_item">
 
Notebook
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Contribution">
 
<div class="submenu_item">
 
Contribution
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Results">
 
<div class="submenu_item">
 
Results
 
</div>
 
</a>
 
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Demonstrate">
 
<div class="submenu_item">
 
Demonstrate
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Improve">
 
<div class="submenu_item">
 
Improve
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Attributions">
 
<div class="submenu_item">
 
Attributions
 
</div>
 
</a>
 
 
</div>
 
 
 
<div class="menu_item">
 
<div class="submenu_control_icon"> </div>
 
PARTS
 
</div>
 
<div class="submenu">
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Parts">
 
<div class="submenu_item">
 
Parts Overview
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Basic_Part">
 
<div class="submenu_item">
 
Basic Parts
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Composite_Part">
 
<div class="submenu_item">
 
Composite Parts
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Part_Collection">
 
<div class="submenu_item">
 
Part Collection
 
</div>
 
</a>
 
</div>
 
 
 
 
 
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Safety">
 
<div class="menu_item direct_link">
 
SAFETY
 
</div>
 
</a>
 
 
 
 
 
 
 
<div class="menu_item">
 
<div class="submenu_control_icon"> </div>
 
HUMAN PRACTICES
 
</div>
 
 
<div class="submenu">
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Human_Practices">
 
<div class="submenu_item">
 
Human Practices
 
</div>
 
</a>
 
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Public_Engagement">
 
<div class="submenu_item">
 
Education & Engagement
 
</div>
 
</a>
 
 
</div>
 
 
 
 
 
 
<div class="menu_item">
 
<div class="submenu_control_icon"> </div>
 
AWARDS
 
</div>
 
 
<div class="submenu">
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Entrepreneurship">
 
<div class="submenu_item">
 
Entrepreneurship
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Hardware">
 
<div class="submenu_item">
 
Hardware
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Measurement">
 
<div class="submenu_item">
 
Measurement
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Model">
 
<div class="submenu_item">
 
Model
 
</div>
 
</a>
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Plant">
 
<div class="submenu_item">
 
Plant
 
</div>
 
</a>
 
 
 
<a href="https://2019.igem.org/Team:Humboldt_Berlin/Software">
 
<div class="submenu_item">
 
Software
 
</div>
 
</a>
 
 
</div>
 
 
 
 
<a href="https://igem.org/2019_Judging_Form?team=Humboldt_Berlin">
 
<div class="menu_item direct_link">
 
JUDGING FORM ⇗
 
</div>
 
</a>
 
 
 
 
<div class="menu_padding"></div>
 
 
 
 
 
 
</div>
 
 
 
 
<!-- CUSTOM STYLE -->
 
<style>
 
@font-face{font-family:'Lato';src:url("../fonts/Lato-Bold.woff") format("woff");font-style:italic;font-weight:bold;text-rendering:optimizeLegibility}@font-face{font-family:'Lato';src:url("../fonts/Lato-Italic.woff") format("woff");font-style:italic;font-weight:normal;text-rendering:optimizeLegibility}@font-face{font-family:'Lato';src:url("../fonts/Lato-Regular.woff") format("woff");font-style:normal;font-weight:normal;text-rendering:optimizeLegibility}html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:color(bg, 1);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:'Lato', sans-serif;color:#373535}h1,h2{text-align:center}ul,ol{margin-top:0;margin-bottom:24px;padding-left:24px}ul{list-style:disc}ol{list-style:decimal}li>ul,li>ol{margin-bottom:0}img{height:auto;max-width:100%;vertical-align:middle}figure{margin:24px 0}figcaption{padding:8px 0}img,svg{display:block}table{border-collapse:collapse;margin-bottom:24px;width:100%}tr{border-bottom:1px solid color(bg, 3)}th{text-align:left}th,td{padding:10px 16px}th:first-child,td:first-child{padding-left:0}th:last-child,td:last-child{padding-right:0}section{padding:50px 0}.grey-bg{background:#a7c0e5}.image-bg img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;z-index:0}.image-bg-content{position:relative;z-index:1}.full-height{min-height:100vh;padding:20px}.width-limit{max-width:1440px;margin:0 auto}.relative-container{position:relative}.margin-top{margin-top:80px}.hidden{display:none !important}.visible{display:block !important}.sr .has-animations .is-revealing{visibility:hidden}.mouse{display:block;margin:0 auto;width:23px;height:40px;border-radius:13px;border:2px solid #fff;position:absolute;top:90%;position:absolute;left:50%;margin-left:-14px;z-index:2}.mouse span{display:block;margin:6px auto;width:3px;height:7px;border-radius:100%;background:#fff;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:scroll;animation-name:scroll}@-webkit-keyframes scroll{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(12px);transform:translateY(12px)}}@keyframes scroll{0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}100%{opacity:0;-webkit-transform:translateY(12px);transform:translateY(12px)}}.image-container{position:relative}.image-tag{position:absolute;border:3px solid rgba(255,255,255,0.25);cursor:pointer}.image-tag .tag-caption{display:none;width:100%;top:-10px;-webkit-transform:translateY(-100%);transform:translateY(-100%);text-align:center}.image-tag:hover{border:3px solid rgba(255,255,255,0.9)}.image-tag:hover .tag-caption{display:block}nav{position:absolute;left:0;top:0;z-index:100;width:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);background:#a2dfba}nav .nav-logo{display:inline-block;width:40px;height:auto;margin-right:10px}nav .nav-content{display:flex;justify-content:space-between;align-items:center;padding:0 20px;height:80px}nav a{color:#373535;font-weight:bold;text-decoration:none;font-size:18px}nav .nav-right{position:relative}nav .nav-right input,nav .nav-right span{display:none}nav .nav-right a{margin:0 10px}nav .nav-right a:hover{color:#ff59ab}nav .nav-right a:last-child{margin:0 0 0 10px}nav .nav-right .devider{display:inline}nav .nav-right .devider::after{content:'|';color:#373535;margin:0 10px}@media screen and (max-width: 760px){nav .nav-right .menu-items{display:none}nav .nav-right .devider{border-top:1px solid #373535;margin:0 20px 0 0;height:1px;width:100%}nav .nav-right .devider::after{content:''}nav .nav-right input,nav .nav-right span{display:block}nav .nav-right input{width:40px;height:32px;position:absolute;top:-7px;left:-5px;cursor:pointer;opacity:0;z-index:2;-webkit-touch-callout:none}nav .nav-right span{width:33px;height:4px;margin-bottom:5px;position:relative;background:#373535;border-radius:3px;z-index:1;-webkit-transform-origin:4px 0px;transform-origin:4px 0px;transition:background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),opacity 0.55s ease,-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);transition:transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),opacity 0.55s ease;transition:transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),opacity 0.55s ease,-webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1)}nav .nav-right span:first-child{-webkit-transform-origin:0% 0%;transform-origin:0% 0%}nav .nav-right span:nth-last-child(2){-webkit-transform-origin:0% 100%;transform-origin:0% 100%}nav .nav-right input:checked ~ span{opacity:1;-webkit-transform:rotate(45deg) translate(-2px, -1px);transform:rotate(45deg) translate(-2px, -1px);background:#232323}nav .nav-right input:checked ~ span:nth-last-child(3){opacity:0;-webkit-transform:rotate(0deg) scale(0.2, 0.2);transform:rotate(0deg) scale(0.2, 0.2)}nav .nav-right input:checked ~ span:nth-last-child(2){-webkit-transform:rotate(-45deg) translate(0, -1px);transform:rotate(-45deg) translate(0, -1px)}nav .nav-right input:checked ~ .menu-items{display:block;position:absolute;padding:0 10px;right:-20px;text-align:right;margin-top:30px;background:#a2dfba}nav .nav-right input:checked ~ .menu-items a{display:block;margin:20px 15px}}.footer-container{background:#a2dfba;padding:75px 0}.footer-right{display:flex}.footer-right ul:first-child{margin-right:20px}@media screen and (max-width: 760px){.footer-right ul:first-child{margin-right:0}}footer{display:flex;justify-content:space-between;align-items:center;padding:0 20px}@media screen and (max-width: 760px){footer{flex-direction:column}}footer img{width:200px;height:auto}@media screen and (max-width: 760px){footer img{margin-bottom:20px}}footer ul li{list-style:none;margin:10px 0}footer a{color:#373535;font-weight:bold;text-decoration:none;font-size:18px}footer a:hover{color:#ff59ab}.landing-page .site-header{padding:0 50px}.landing-page .site-header,.landing-page section{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:1}.landing-page .header-logo{width:auto;max-height:50vh}.landing-page .flex{display:flex;width:100%}.landing-page .flex-column{width:100%}.landing-page .mol{width:100%;margin-top:25px;cursor:-webkit-grab;cursor:grab}.landing-page .big-text h1,.landing-page .big-text h2{display:inline;color:#f29799}.landing-page .big-text h1,.landing-page .big-text h2,.landing-page .big-text span{font-size:52px}@media screen and (max-width: 1200px){.landing-page .big-text h1,.landing-page .big-text h2,.landing-page .big-text span{font-size:40px}}@media screen and (max-width: 900px){.landing-page .big-text h1,.landing-page .big-text h2,.landing-page .big-text span{font-size:28px}}@media screen and (max-width: 400px){.landing-page .big-text h1,.landing-page .big-text h2,.landing-page .big-text span{font-size:22px}}@media screen and (max-width: 360px){.landing-page .big-text h1,.landing-page .big-text h2,.landing-page .big-text span{font-size:18px}}.landing-page .big-text span{color:#373535}.landing-page .image-bg-content .big-headline{text-transform:uppercase;font-weight:bold;color:#fff}.team-headline{font-size:52px;text-align:left;text-transform:uppercase}.team-image{margin:0 auto}.team-member{display:flex;margin-bottom:50px}@media screen and (max-width: 1440px){.team-member{padding:0 20px}}@media screen and (max-width: 760px){.team-member{flex-direction:column;align-items:center}}.team-member img{max-width:200px;max-height:200px;border-radius:200px}.team-member h2{text-align:left;text-transform:uppercase;font-size:46px;margin:0}.team-member h2 i{font-weight:normal}.member-image-left img{margin-right:50px}.member-image-right img{margin-left:50px}@media screen and (max-width: 760px){.member-image-right{flex-direction:column-reverse}}@media screen and (max-width: 760px){.member-image-left img,.member-image-right img{margin:0 0 20px 0}}.show-all-members{display:block;text-align:center;font-size:22px;margin:50px 0}
 
 
/*# sourceMappingURL=data:application/json;base64,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QVksYUFBYSxDQUFDLGFBQWEsWUFBWSxDQUFDLGtCQUFrQixDQUFDLHNDQUFzQyxhQUFhLGNBQWMsQ0FBQyxDQUFDLHFDQUFxQyxhQUFhLHFCQUFxQixDQUFDLGtCQUFrQixDQUFDLENBQUMsaUJBQWlCLGVBQWUsQ0FBQyxnQkFBZ0IsQ0FBQyxtQkFBbUIsQ0FBQyxnQkFBZ0IsZUFBZSxDQUFDLHdCQUF3QixDQUFDLGNBQWMsQ0FBQyxRQUFRLENBQUMsa0JBQWtCLGtCQUFrQixDQUFDLHVCQUF1QixpQkFBaUIsQ0FBQyx3QkFBd0IsZ0JBQWdCLENBQUMscUNBQXFDLG9CQUFvQiw2QkFBNkIsQ0FBQyxDQUFDLHFDQUFxQywrQ0FBK0MsaUJBQWlCLENBQUMsQ0FBQyxrQkFBa0IsYUFBYSxDQUFDLGlCQUFpQixDQUFDLGNBQWMsQ0FBQyxhQUFhIiwiZmlsZSI6InN0eWxlLmNzcyIsInNvdXJjZXNDb250ZW50IjpbIkBmb250LWZhY2V7Zm9udC1mYW1pbHk6J0xhdG8nO3NyYzp1cmwoXCIuLi9mb250cy9MYXRvLUJvbGQud29mZlwiKSBmb3JtYXQoXCJ3b2ZmXCIpO2ZvbnQtc3R5bGU6aXRhbGljO2ZvbnQtd2VpZ2h0OmJvbGQ7dGV4dC1yZW5kZXJpbmc6b3B0aW1pemVMZWdpYmlsaXR5fUBmb250LWZhY2V7Zm9udC1mYW1pbHk6J0xhdG8nO3NyYzp1cmwoXCIuLi9mb250cy9MYXRvLUl0YWxpYy53b2ZmXCIpIGZvcm1hdChcIndvZmZcIik7Zm9udC1zdHlsZTppdGFsaWM7Zm9udC13ZWlnaHQ6bm9ybWFsO3RleHQtcmVuZGVyaW5nOm9wdGltaXplTGVnaWJpbGl0eX1AZm9udC1mYWNle2ZvbnQtZmFtaWx5OidMYXRvJztzcmM6dXJsKFwiLi4vZm9udHMvTGF0by1SZWd1bGFyLndvZmZcIikgZm9ybWF0KFwid29mZlwiKTtmb250LXN0eWxlOm5vcm1hbDtmb250LXdlaWdodDpub3JtYWw7dGV4dC1yZW5kZXJpbmc6b3B0aW1pemVMZWdpYmlsaXR5fWh0bWx7bGluZS1oZWlnaHQ6MS4xNTstbXMtdGV4dC1zaXplLWFkanVzdDoxMDAlOy13ZWJraXQtdGV4dC1zaXplLWFkanVzdDoxMDAlfWJvZHl7bWFyZ2luOjB9YXJ0aWNsZSxhc2lkZSxmb290ZXIsaGVhZGVyLG5hdixzZWN0aW9ue2Rpc3BsYXk6YmxvY2t9aDF7Zm9udC1zaXplOjJlbTttYXJnaW46MC42N2VtIDB9ZmlnY2FwdGlvbixmaWd1cmUsbWFpbntkaXNwbGF5OmJsb2NrfWZpZ3VyZXttYXJnaW46MWVtIDQwcHh9aHJ7Ym94LXNpemluZzpjb250ZW50LWJveDtoZWlnaHQ6MDtvdmVyZmxvdzp2aXNpYmxlfXByZXtmb250LWZhbWlseTptb25vc3BhY2UsIG1vbm9zcGFjZTtmb250LXNpemU6MWVtfWF7YmFja2dyb3VuZC1jb2xvcjp0cmFuc3BhcmVudDstd2Via2l0LXRleHQtZGVjb3JhdGlvbi1za2lwOm9iamVjdHN9YWJiclt0aXRsZV17Ym9yZGVyLWJvdHRvbTpub25lO3RleHQtZGVjb3JhdGlvbjp1bmRlcmxpbmU7dGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZSBkb3R0ZWR9YixzdHJvbmd7Zm9udC13ZWlnaHQ6aW5oZXJpdH1iLHN0cm9uZ3tmb250LXdlaWdodDpib2xkZXJ9Y29kZSxrYmQsc2FtcHtmb250LWZhbWlseTptb25vc3BhY2UsIG1vbm9zcGFjZTtmb250LXNpemU6MWVtfWRmbntmb250LXN0eWxlOml0YWxpY31tYXJre2JhY2tncm91bmQtY29sb3I6I2ZmMDtjb2xvcjojMDAwfXNtYWxse2ZvbnQtc2l6ZTo4MCV9c3ViLHN1cHtmb250LXNpemU6NzUlO2xpbmUtaGVpZ2h0OjA7cG9zaXRpb246cmVsYXRpdmU7dmVydGljYWwtYWxpZ246YmFzZWxpbmV9c3Vie2JvdHRvbTotMC4yNWVtfXN1cHt0b3A6LTAuNWVtfWF1ZGlvLHZpZGVve2Rpc3BsYXk6aW5saW5lLWJsb2NrfWF1ZGlvOm5vdChbY29udHJvbHNdKXtkaXNwbGF5Om5vbmU7aGVpZ2h0OjB9aW1ne2JvcmRlci1zdHlsZTpub25lfXN2Zzpub3QoOnJvb3Qpe292ZXJmbG93OmhpZGRlbn1idXR0b24saW5wdXQsb3B0Z3JvdXAsc2VsZWN0LHRleHRhcmVhe2ZvbnQtZmFtaWx5OnNhbnMtc2VyaWY7Zm9udC1zaXplOjEwMCU7bGluZS1oZWlnaHQ6MS4xNTttYXJnaW46MH1idXR0b24saW5wdXR7b3ZlcmZsb3c6dmlzaWJsZX1idXR0b24sc2VsZWN0e3RleHQtdHJhbnNmb3JtOm5vbmV9YnV0dG9uLGh0bWwgW3R5cGU9XCJidXR0b25cIl0sW3R5cGU9XCJyZXNldFwiXSxbdHlwZT1cInN1Ym1pdFwiXXstd2Via2l0LWFwcGVhcmFuY2U6YnV0dG9ufWJ1dHRvbjo6LW1vei1mb2N1cy1pbm5lcixbdHlwZT1cImJ1dHRvblwiXTo6LW1vei1mb2N1cy1pbm5lcixbdHlwZT1cInJlc2V0XCJdOjotbW96LWZvY3VzLWlubmVyLFt0eXBlPVwic3VibWl0XCJdOjotbW96LWZvY3VzLWlubmVye2JvcmRlci1zdHlsZTpub25lO3BhZGRpbmc6MH1idXR0b246LW1vei1mb2N1c3JpbmcsW3R5cGU9XCJidXR0b25cIl06LW1vei1mb2N1c3JpbmcsW3R5cGU9XCJyZXNldFwiXTotbW96LWZvY3VzcmluZyxbdHlwZT1cInN1Ym1pdFwiXTotbW96LWZvY3VzcmluZ3tvdXRsaW5lOjFweCBkb3R0ZWQgQnV0dG9uVGV4dH1maWVsZHNldHtwYWRkaW5nOjAuMzVlbSAwLjc1ZW0gMC42MjVlbX1sZWdlbmR7Ym94LXNpemluZzpib3JkZXItYm94O2NvbG9yOmluaGVyaXQ7ZGlzcGxheTp0YWJsZTttYXgtd2lkdGg6MTAwJTtwYWRkaW5nOjA7d2hpdGUtc3BhY2U6bm9ybWFsfXByb2dyZXNze2Rpc3BsYXk6aW5saW5lLWJsb2NrO3ZlcnRpY2FsLWFsaWduOmJhc2VsaW5lfXRleHRhcmVhe292ZXJmbG93OmF1dG99W3R5cGU9XCJjaGVja2JveFwiXSxbdHlwZT1cInJhZGlvXCJde2JveC1zaXppbmc6Ym9yZGVyLWJveDtwYWRkaW5nOjB9W3R5cGU9XCJudW1iZXJcIl06Oi13ZWJraXQtaW5uZXItc3Bpbi1idXR0b24sW3R5cGU9XCJudW1iZXJcIl06Oi13ZWJraXQtb3V0ZXItc3Bpbi1idXR0b257aGVpZ2h0OmF1dG99W3R5cGU9XCJzZWFyY2hcIl17LXdlYmtpdC1hcHBlYXJhbmNlOnRleHRmaWVsZDtvdXRsaW5lLW9mZnNldDotMnB4fVt0eXBlPVwic2VhcmNoXCJdOjotd2Via2l0LXNlYXJjaC1jYW5jZWwtYnV0dG9uLFt0eXBlPVwic2VhcmNoXCJdOjotd2Via2l0LXNlYXJjaC1kZWNvcmF0aW9uey13ZWJraXQtYXBwZWFyYW5jZTpub25lfTo6LXdlYmtpdC1maWxlLXVwbG9hZC1idXR0b257LXdlYmtpdC1hcHBlYXJhbmNlOmJ1dHRvbjtmb250OmluaGVyaXR9ZGV0YWlscyxtZW51e2Rpc3BsYXk6YmxvY2t9c3VtbWFyeXtkaXNwbGF5Omxpc3QtaXRlbX1jYW52YXN7ZGlzcGxheTppbmxpbmUtYmxvY2t9dGVtcGxhdGV7ZGlzcGxheTpub25lfVtoaWRkZW5de2Rpc3BsYXk6bm9uZX1odG1se2JveC1zaXppbmc6Ym9yZGVyLWJveH0qLCo6YmVmb3JlLCo6YWZ0ZXJ7Ym94LXNpemluZzppbmhlcml0fWJvZHl7YmFja2dyb3VuZDpjb2xvcihiZywgMSk7LW1vei1vc3gtZm9udC1zbW9vdGhpbmc6Z3JheXNjYWxlOy13ZWJraXQtZm9udC1zbW9vdGhpbmc6YW50aWFsaWFzZWQ7Zm9udC1mYW1pbHk6J0xhdG8nLCBzYW5zLXNlcmlmO2NvbG9yOiMzNzM1MzV9aDEsaDJ7dGV4dC1hbGlnbjpjZW50ZXJ9dWwsb2x7bWFyZ2luLXRvcDowO21hcmdpbi1ib3R0b206MjRweDtwYWRkaW5nLWxlZnQ6MjRweH11bHtsaXN0LXN0eWxlOmRpc2N9b2x7bGlzdC1zdHlsZTpkZWNpbWFsfWxpPnVsLGxpPm9se21hcmdpbi1ib3R0b206MH1pbWd7aGVpZ2h0OmF1dG87bWF4LXdpZHRoOjEwMCU7dmVydGljYWwtYWxpZ246bWlkZGxlfWZpZ3VyZXttYXJnaW46MjRweCAwfWZpZ2NhcHRpb257cGFkZGluZzo4cHggMH1pbWcsc3Zne2Rpc3BsYXk6YmxvY2t9dGFibGV7Ym9yZGVyLWNvbGxhcHNlOmNvbGxhcHNlO21hcmdpbi1ib3R0b206MjRweDt3aWR0aDoxMDAlfXRye2JvcmRlci1ib3R0b206MXB4IHNvbGlkIGNvbG9yKGJnLCAzKX10aHt0ZXh0LWFsaWduOmxlZnR9dGgsdGR7cGFkZGluZzoxMHB4IDE2cHh9dGg6Zmlyc3QtY2hpbGQsdGQ6Zmlyc3QtY2hpbGR7cGFkZGluZy1sZWZ0OjB9dGg6bGFzdC1jaGlsZCx0ZDpsYXN0LWNoaWxke3BhZGRpbmctcmlnaHQ6MH1zZWN0aW9ue3BhZGRpbmc6NTBweCAwfS5ncmV5LWJne2JhY2tncm91bmQ6I2E3YzBlNX0uaW1hZ2UtYmcgaW1ne3Bvc2l0aW9uOmFic29sdXRlO3RvcDowO2xlZnQ6MDt3aWR0aDoxMDAlO2hlaWdodDoxMDAlO29iamVjdC1maXQ6Y292ZXI7ei1pbmRleDowfS5pbWFnZS1iZy1jb250ZW50e3Bvc2l0aW9uOnJlbGF0aXZlO3otaW5kZXg6MX0uZnVsbC1oZWlnaHR7bWluLWhlaWdodDoxMDB2aDtwYWRkaW5nOjIwcHh9LndpZHRoLWxpbWl0e21heC13aWR0aDoxNDQwcHg7bWFyZ2luOjAgYXV0b30ucmVsYXRpdmUtY29udGFpbmVye3Bvc2l0aW9uOnJlbGF0aXZlfS5tYXJnaW4tdG9we21hcmdpbi10b3A6ODBweH0uaGlkZGVue2Rpc3BsYXk6bm9uZSAhaW1wb3J0YW50fS52aXNpYmxle2Rpc3BsYXk6YmxvY2sgIWltcG9ydGFudH0uc3IgLmhhcy1hbmltYXRpb25zIC5pcy1yZXZlYWxpbmd7dmlzaWJpbGl0eTpoaWRkZW59Lm1vdXNle2Rpc3BsYXk6YmxvY2s7bWFyZ2luOjAgYXV0bzt3aWR0aDoyM3B4O2hlaWdodDo0MHB4O2JvcmRlci1yYWRpdXM6MTNweDtib3JkZXI6MnB4IHNvbGlkICNmZmY7cG9zaXRpb246YWJzb2x1dGU7dG9wOjkwJTtwb3NpdGlvbjphYnNvbHV0ZTtsZWZ0OjUwJTttYXJnaW4tbGVmdDotMTRweDt6LWluZGV4OjJ9Lm1vdXNlIHNwYW57ZGlzcGxheTpibG9jazttYXJnaW46NnB4IGF1dG87d2lkdGg6M3B4O2hlaWdodDo3cHg7Ym9yZGVyLXJhZGl1czoxMDAlO2JhY2tncm91bmQ6I2ZmZjstd2Via2l0LWFuaW1hdGlvbi1kdXJhdGlvbjoxczthbmltYXRpb24tZHVyYXRpb246MXM7LXdlYmtpdC1hbmltYXRpb24tZmlsbC1tb2RlOmJvdGg7YW5pbWF0aW9uLWZpbGwtbW9kZTpib3RoOy13ZWJraXQtYW5pbWF0aW9uLWl0ZXJhdGlvbi1jb3VudDppbmZpbml0ZTthbmltYXRpb24taXRlcmF0aW9uLWNvdW50OmluZmluaXRlOy13ZWJraXQtYW5pbWF0aW9uLW5hbWU6c2Nyb2xsO2FuaW1hdGlvbi1uYW1lOnNjcm9sbH1ALXdlYmtpdC1rZXlmcmFtZXMgc2Nyb2xsezAle29wYWNpdHk6MTstd2Via2l0LXRyYW5zZm9ybTp0cmFuc2xhdGVZKDApO3RyYW5zZm9ybTp0cmFuc2xhdGVZKDApfTEwMCV7b3BhY2l0eTowOy13ZWJraXQtdHJhbnNmb3JtOnRyYW5zbGF0ZVkoMTJweCk7dHJhbnNmb3JtOnRyYW5zbGF0ZVkoMTJweCl9fUBrZXlmcmFtZXMgc2Nyb2xsezAle29wYWNpdHk6MTstd2Via2l0LXRyYW5zZm9ybTp0cmFuc2xhdGVZKDApOy1tcy10cmFuc2Zvcm06dHJhbnNsYXRlWSgwKTt0cmFuc2Zvcm06dHJhbnNsYXRlWSgwKX0xMDAle29wYWNpdHk6MDstd2Via2l0LXRyYW5zZm9ybTp0cmFuc2xhdGVZKDEycHgpOy1tcy10cmFuc2Zvcm06dHJhbnNsYXRlWSgxMnB4KTt0cmFuc2Zvcm06dHJhbnNsYXRlWSgxMnB4KX19LmltYWdlLWNvbnRhaW5lcntwb3NpdGlvbjpyZWxhdGl2ZX0uaW1hZ2UtdGFne3Bvc2l0aW9uOmFic29sdXRlO2JvcmRlcjozcHggc29saWQgcmdiYSgyNTUsMjU1LDI1NSwwLjI1KTtjdXJzb3I6cG9pbnRlcn0uaW1hZ2UtdGFnIC50YWctY2FwdGlvbntkaXNwbGF5Om5vbmU7d2lkdGg6MTAwJTt0b3A6LTEwcHg7dHJhbnNmb3JtOnRyYW5zbGF0ZVkoLTEwMCUpO3RleHQtYWxpZ246Y2VudGVyfS5pbWFnZS10YWc6aG92ZXJ7Ym9yZGVyOjNweCBzb2xpZCByZ2JhKDI1NSwyNTUsMjU1LDAuOSl9LmltYWdlLXRhZzpob3ZlciAudGFnLWNhcHRpb257ZGlzcGxheTpibG9ja31uYXZ7cG9zaXRpb246YWJzb2x1dGU7bGVmdDowO3RvcDowO3otaW5kZXg6MTAwO3dpZHRoOjEwMCU7bGVmdDo1MCU7dHJhbnNmb3JtOnRyYW5zbGF0ZVgoLTUwJSk7YmFja2dyb3VuZDojYTJkZmJhfW5hdiAubmF2LWxvZ297ZGlzcGxheTppbmxpbmUtYmxvY2s7d2lkdGg6NDBweDtoZWlnaHQ6YXV0bzttYXJnaW4tcmlnaHQ6MTBweH1uYXYgLm5hdi1jb250ZW50e2Rpc3BsYXk6ZmxleDtqdXN0aWZ5LWNvbnRlbnQ6c3BhY2UtYmV0d2VlbjthbGlnbi1pdGVtczpjZW50ZXI7cGFkZGluZzowIDIwcHg7aGVpZ2h0OjgwcHh9bmF2IGF7Y29sb3I6IzM3MzUzNTtmb250LXdlaWdodDpib2xkO3RleHQtZGVjb3JhdGlvbjpub25lO2ZvbnQtc2l6ZToxOHB4fW5hdiAubmF2LXJpZ2h0e3Bvc2l0aW9uOnJlbGF0aXZlfW5hdiAubmF2LXJpZ2h0IGlucHV0LG5hdiAubmF2LXJpZ2h0IHNwYW57ZGlzcGxheTpub25lfW5hdiAubmF2LXJpZ2h0IGF7bWFyZ2luOjAgMTBweH1uYXYgLm5hdi1yaWdodCBhOmhvdmVye2NvbG9yOiNmZjU5YWJ9bmF2IC5uYXYtcmlnaHQgYTpsYXN0LWNoaWxke21hcmdpbjowIDAgMCAxMHB4fW5hdiAubmF2LXJpZ2h0IC5kZXZpZGVye2Rpc3BsYXk6aW5saW5lfW5hdiAubmF2LXJpZ2h0IC5kZXZpZGVyOjphZnRlcntjb250ZW50Oid8Jztjb2xvcjojMzczNTM1O21hcmdpbjowIDEwcHh9QG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzYwcHgpe25hdiAubmF2LXJpZ2h0IC5tZW51LWl0ZW1ze2Rpc3BsYXk6bm9uZX1uYXYgLm5hdi1yaWdodCAuZGV2aWRlcntib3JkZXItdG9wOjFweCBzb2xpZCAjMzczNTM1O21hcmdpbjowIDIwcHggMCAwO2hlaWdodDoxcHg7d2lkdGg6MTAwJX1uYXYgLm5hdi1yaWdodCAuZGV2aWRlcjo6YWZ0ZXJ7Y29udGVudDonJ31uYXYgLm5hdi1yaWdodCBpbnB1dCxuYXYgLm5hdi1yaWdodCBzcGFue2Rpc3BsYXk6YmxvY2t9bmF2IC5uYXYtcmlnaHQgaW5wdXR7d2lkdGg6NDBweDtoZWlnaHQ6MzJweDtwb3NpdGlvbjphYnNvbHV0ZTt0b3A6LTdweDtsZWZ0Oi01cHg7Y3Vyc29yOnBvaW50ZXI7b3BhY2l0eTowO3otaW5kZXg6Mjstd2Via2l0LXRvdWNoLWNhbGxvdXQ6bm9uZX1uYXYgLm5hdi1yaWdodCBzcGFue3dpZHRoOjMzcHg7aGVpZ2h0OjRweDttYXJnaW4tYm90dG9tOjVweDtwb3NpdGlvbjpyZWxhdGl2ZTtiYWNrZ3JvdW5kOiMzNzM1MzU7Ym9yZGVyLXJhZGl1czozcHg7ei1pbmRleDoxO3RyYW5zZm9ybS1vcmlnaW46NHB4IDBweDt0cmFuc2l0aW9uOnRyYW5zZm9ybSAwLjVzIGN1YmljLWJlemllcigwLjc3LCAwLjIsIDAuMDUsIDEpLGJhY2tncm91bmQgMC41cyBjdWJpYy1iZXppZXIoMC43NywgMC4yLCAwLjA1LCAxKSxvcGFjaXR5IDAuNTVzIGVhc2V9bmF2IC5uYXYtcmlnaHQgc3BhbjpmaXJzdC1jaGlsZHt0cmFuc2Zvcm0tb3JpZ2luOjAlIDAlfW5hdiAubmF2LXJpZ2h0IHNwYW46bnRoLWxhc3QtY2hpbGQoMil7dHJhbnNmb3JtLW9yaWdpbjowJSAxMDAlfW5hdiAubmF2LXJpZ2h0IGlucHV0OmNoZWNrZWQgfiBzcGFue29wYWNpdHk6MTt0cmFuc2Zvcm06cm90YXRlKDQ1ZGVnKSB0cmFuc2xhdGUoLTJweCwgLTFweCk7YmFja2dyb3VuZDojMjMyMzIzfW5hdiAubmF2LXJpZ2h0IGlucHV0OmNoZWNrZWQgfiBzcGFuOm50aC1sYXN0LWNoaWxkKDMpe29wYWNpdHk6MDt0cmFuc2Zvcm06cm90YXRlKDBkZWcpIHNjYWxlKDAuMiwgMC4yKX1uYXYgLm5hdi1yaWdodCBpbnB1dDpjaGVja2VkIH4gc3BhbjpudGgtbGFzdC1jaGlsZCgyKXt0cmFuc2Zvcm06cm90YXRlKC00NWRlZykgdHJhbnNsYXRlKDAsIC0xcHgpfW5hdiAubmF2LXJpZ2h0IGlucHV0OmNoZWNrZWQgfiAubWVudS1pdGVtc3tkaXNwbGF5OmJsb2NrO3Bvc2l0aW9uOmFic29sdXRlO3BhZGRpbmc6MCAxMHB4O3JpZ2h0Oi0yMHB4O3RleHQtYWxpZ246cmlnaHQ7bWFyZ2luLXRvcDozMHB4O2JhY2tncm91bmQ6I2EyZGZiYX1uYXYgLm5hdi1yaWdodCBpbnB1dDpjaGVja2VkIH4gLm1lbnUtaXRlbXMgYXtkaXNwbGF5OmJsb2NrO21hcmdpbjoyMHB4IDE1cHh9fS5mb290ZXItY29udGFpbmVye2JhY2tncm91bmQ6I2EyZGZiYTtwYWRkaW5nOjc1cHggMH0uZm9vdGVyLXJpZ2h0e2Rpc3BsYXk6ZmxleH0uZm9vdGVyLXJpZ2h0IHVsOmZpcnN0LWNoaWxke21hcmdpbi1yaWdodDoyMHB4fUBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDc2MHB4KXsuZm9vdGVyLXJpZ2h0IHVsOmZpcnN0LWNoaWxke21hcmdpbi1yaWdodDowfX1mb290ZXJ7ZGlzcGxheTpmbGV4O2p1c3RpZnktY29udGVudDpzcGFjZS1iZXR3ZWVuO2FsaWduLWl0ZW1zOmNlbnRlcjtwYWRkaW5nOjAgMjBweH1AbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA3NjBweCl7Zm9vdGVye2ZsZXgtZGlyZWN0aW9uOmNvbHVtbn19Zm9vdGVyIGltZ3t3aWR0aDoyMDBweDtoZWlnaHQ6YXV0b31AbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA3NjBweCl7Zm9vdGVyIGltZ3ttYXJnaW4tYm90dG9tOjIwcHh9fWZvb3RlciB1bCBsaXtsaXN0LXN0eWxlOm5vbmU7bWFyZ2luOjEwcHggMH1mb290ZXIgYXtjb2xvcjojMzczNTM1O2ZvbnQtd2VpZ2h0OmJvbGQ7dGV4dC1kZWNvcmF0aW9uOm5vbmU7Zm9udC1zaXplOjE4cHh9Zm9vdGVyIGE6aG92ZXJ7Y29sb3I6I2ZmNTlhYn0ubGFuZGluZy1wYWdlIC5zaXRlLWhlYWRlcntwYWRkaW5nOjAgNTBweH0ubGFuZGluZy1wYWdlIC5zaXRlLWhlYWRlciwubGFuZGluZy1wYWdlIHNlY3Rpb257cG9zaXRpb246cmVsYXRpdmU7ZGlzcGxheTpmbGV4O2ZsZXgtZGlyZWN0aW9uOmNvbHVtbjthbGlnbi1pdGVtczpjZW50ZXI7anVzdGlmeS1jb250ZW50OmNlbnRlcjt6LWluZGV4OjF9LmxhbmRpbmctcGFnZSAuaGVhZGVyLWxvZ297d2lkdGg6YXV0bzttYXgtaGVpZ2h0OjUwdmh9LmxhbmRpbmctcGFnZSAuZmxleHtkaXNwbGF5OmZsZXg7d2lkdGg6MTAwJX0ubGFuZGluZy1wYWdlIC5mbGV4LWNvbHVtbnt3aWR0aDoxMDAlfS5sYW5kaW5nLXBhZ2UgLm1vbHt3aWR0aDoxMDAlO21hcmdpbi10b3A6MjVweDtjdXJzb3I6Z3JhYn0ubGFuZGluZy1wYWdlIC5iaWctdGV4dCBoMSwubGFuZGluZy1wYWdlIC5iaWctdGV4dCBoMntkaXNwbGF5OmlubGluZTtjb2xvcjojZjI5Nzk5fS5sYW5kaW5nLXBhZ2UgLmJpZy10ZXh0IGgxLC5sYW5kaW5nLXBhZ2UgLmJpZy10ZXh0IGgyLC5sYW5kaW5nLXBhZ2UgLmJpZy10ZXh0IHNwYW57Zm9udC1zaXplOjUycHh9QG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogMTIwMHB4KXsubGFuZGluZy1wYWdlIC5iaWctdGV4dCBoMSwubGFuZGluZy1wYWdlIC5iaWctdGV4dCBoMiwubGFuZGluZy1wYWdlIC5iaWctdGV4dCBzcGFue2ZvbnQtc2l6ZTo0MHB4fX1AbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA5MDBweCl7LmxhbmRpbmctcGFnZSAuYmlnLXRleHQgaDEsLmxhbmRpbmctcGFnZSAuYmlnLXRleHQgaDIsLmxhbmRpbmctcGFnZSAuYmlnLXRleHQgc3Bhbntmb250LXNpemU6MjhweH19QG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDAwcHgpey5sYW5kaW5nLXBhZ2UgLmJpZy10ZXh0IGgxLC5sYW5kaW5nLXBhZ2UgLmJpZy10ZXh0IGgyLC5sYW5kaW5nLXBhZ2UgLmJpZy10ZXh0IHNwYW57Zm9udC1zaXplOjIycHh9fUBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDM2MHB4KXsubGFuZGluZy1wYWdlIC5iaWctdGV4dCBoMSwubGFuZGluZy1wYWdlIC5iaWctdGV4dCBoMiwubGFuZGluZy1wYWdlIC5iaWctdGV4dCBzcGFue2ZvbnQtc2l6ZToxOHB4fX0ubGFuZGluZy1wYWdlIC5iaWctdGV4dCBzcGFue2NvbG9yOiMzNzM1MzV9LmxhbmRpbmctcGFnZSAuaW1hZ2UtYmctY29udGVudCAuYmlnLWhlYWRsaW5le3RleHQtdHJhbnNmb3JtOnVwcGVyY2FzZTtmb250LXdlaWdodDpib2xkO2NvbG9yOiNmZmZ9LnRlYW0taGVhZGxpbmV7Zm9udC1zaXplOjUycHg7dGV4dC1hbGlnbjpsZWZ0O3RleHQtdHJhbnNmb3JtOnVwcGVyY2FzZX0udGVhbS1pbWFnZXttYXJnaW46MCBhdXRvfS50ZWFtLW1lbWJlcntkaXNwbGF5OmZsZXg7bWFyZ2luLWJvdHRvbTo1MHB4fUBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDE0NDBweCl7LnRlYW0tbWVtYmVye3BhZGRpbmc6MCAyMHB4fX1AbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA3NjBweCl7LnRlYW0tbWVtYmVye2ZsZXgtZGlyZWN0aW9uOmNvbHVtbjthbGlnbi1pdGVtczpjZW50ZXJ9fS50ZWFtLW1lbWJlciBpbWd7bWF4LXdpZHRoOjIwMHB4O21heC1oZWlnaHQ6MjAwcHg7Ym9yZGVyLXJhZGl1czoyMDBweH0udGVhbS1tZW1iZXIgaDJ7dGV4dC1hbGlnbjpsZWZ0O3RleHQtdHJhbnNmb3JtOnVwcGVyY2FzZTtmb250LXNpemU6NDZweDttYXJnaW46MH0udGVhbS1tZW1iZXIgaDIgaXtmb250LXdlaWdodDpub3JtYWx9Lm1lbWJlci1pbWFnZS1sZWZ0IGltZ3ttYXJnaW4tcmlnaHQ6NTBweH0ubWVtYmVyLWltYWdlLXJpZ2h0IGltZ3ttYXJnaW4tbGVmdDo1MHB4fUBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDc2MHB4KXsubWVtYmVyLWltYWdlLXJpZ2h0e2ZsZXgtZGlyZWN0aW9uOmNvbHVtbi1yZXZlcnNlfX1AbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA3NjBweCl7Lm1lbWJlci1pbWFnZS1sZWZ0IGltZywubWVtYmVyLWltYWdlLXJpZ2h0IGltZ3ttYXJnaW46MCAwIDIwcHggMH19LnNob3ctYWxsLW1lbWJlcnN7ZGlzcGxheTpibG9jazt0ZXh0LWFsaWduOmNlbnRlcjtmb250LXNpemU6MjJweDttYXJnaW46NTBweCAwfVxuIl19 */
 
</style>
 
  
  
Line 819: Line 54:
 
<!--- Content of the page  --->
 
<!--- Content of the page  --->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
 
<div class="igem_2019_team_content">
 
<div class="igem_2019_team_column_wrapper">
 
<div class="clear extra_space"></div>
 
<div class="clear extra_space"></div>
 

Latest revision as of 03:22, 21 October 2019