@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Roboto');

/*===========================================
Base CSS
============================================*/

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {

}
html {
    height: 100%;
}
body {
    height: 100%;
    font-family: 'Quicksand', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    overflow: hidden;
    background: #fafafa;
}
label {
    padding: 0;
    margin: 0;
}
ul, li, ol {
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
a, img {
    border: 0;
    outline: none;
    text-decoration: none;
}
input::-moz-focus-inner {
    border: 0;
}
bo {
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
input, select, textarea, button{
    font-family: 'Muli', sans-serif;
}
input:focus, select:focus, textarea:focus, button:focus{
    outline: 0;
}

a {
    color: inherit;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }

p {
    margin-bottom: 1.5em; }

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    margin: 0 0 30px 0; }


i.material-icons {
    font-size: inherit;
    line-height: inherit;
}
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #777;
}

/*===========================================
Text Styles CSS
============================================*/

.t-title-size{
    font-size: 18px;
}
.t-bold{
    font-weight: 600;
}
.t-normal{
    font-weight: normal;
}
.t-center{
    text-align: center;
}
.t-right{
    text-align: right;
}

/*===========================================
Display
============================================*/

.flex-row-top{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-row-center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-col-center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-row-left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}

.flex-col-left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}

.flex-row-right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.flex-col-right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.flex-row-between{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-col-between{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/*===========================================
Padding & Margins CSS
============================================*/
.p-5{
    padding: 5px;
}
.p-10{
    padding: 10px;
}
.p-15{
    padding: 15px;
}
.p-20{
    padding: 20px;
}
.p-25{
    padding: 25px;
}
.p-30{
    padding: 30px;
}
.p-35{
    padding: 35px;
}
.p-40{
    padding: 40px;
}
.p-45{
    padding: 45px;
}
.p-50{
    padding: 50px;
}

.p-right5{
    padding-right: 5px;
}
.p-right10{
    padding-right: 10px;
}
.p-right15{
    padding-right: 15px;
}
.p-right20{
    padding-right: 20px;
}
.p-right25{
    padding-right: 25px;
}
.p-right30{
    padding-right: 30px;
}

.p-left5{
    padding-left: 5px;
}
.p-left10{
    padding-left: 10px;
}
.p-left15{
    padding-left: 15px;
}
.p-left20{
    padding-left: 20px;
}
.p-left25{
    padding-left: 25px;
}
.p-left30{
    padding-left: 30px;
}

.m-5{
    margin: 5px;
}
.m-10{
    margin: 10px;
}
.m-15{
    margin: 15px;
}
.m-20{
    margin: 20px;
}
.m-25{
    margin: 25px;
}
.m-30{
    margin: 30px;
}
.m-35{
    margin: 35px;
}
.m-40{
    margin: 40px;
}
.m-45{
    margin: 45px;
}
.m-50{
    margin: 50px;
}

/*===========================================
Display Styles
============================================*/

.d-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.d-flex-align-center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.d-flex-align-center-column{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.flex-1{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.flex-2{
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}


/*===========================================
Page Styles
============================================*/

.wraper {
    width: 100%;
    height: 100%;
}
.container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.menu-operator{
    position: absolute;
    top: 30px;
    left: 20px;
    width: 42px;
    height: 42px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1000;
}
.toggled-operator{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -10px;
}
.menu-operator:hover{
    cursor: pointer;
}
.menu-operator-circle, .menu-operator-lever{
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.upper-lever{
    -webkit-transform: translateX(2px) rotate(-34deg);
    -ms-transform: translateX(2px) rotate(-34deg);
    transform: translateX(2px) rotate(-34deg);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.middle-lever{
    opacity: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.lower-lever{
    -webkit-transform: translateX(2px) rotate(34deg);
    -ms-transform: translateX(2px) rotate(34deg);
    transform: translateX(2px) rotate(34deg);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.left-content {
    width: 300px;
    overflow-y: auto;
    height: 100%;
    background: #fff;
    border-right: 1px solid rgba(221, 221, 221, 0.38);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.hidden-pane{
    width: 0;
    padding: 0;
}

.main-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    overflow-y: auto;
    margin-left: 10px;
    background: #fff;
    border-left: 1px solid rgba(221, 221, 221, 0.38);
}
.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.logo a {
    color: #fff;
    text-align: right;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 30px;
    font-weight: 500;
}

.nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /* display: flex; */
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 30px 0px;
}

.nav ul li, .nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.nav ul li a {
    padding: 8px 0px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
}

.nav ul li a:hover {
    color: #000;
}
.nav ul li a:after {
    content: "";
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav ul li a:hover:after {
    width: 100%;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.left-footer {
    color: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.foot-contact, .social-icons ul, .copy-rights {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.social-icons ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.foot-contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.foot-contact ul li {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 2px 0px;
}

.social-icons ul li a {
    padding: 5px 8px;
    font-size: 16px;
}

.social-icons ul li a:hover {
    color: #000;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.user-profile {
    padding-left: 50px;
}

.sm-text {
    letter-spacing: 2.1px;
    font-weight: normal;
    color: #222222;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
}

.name {
    font-size: 40px;
    text-transform: uppercase;
    margin: 15px 0px;
    color: #222222;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.role {
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #222222;
}

.text {
    font-size: 15px;
    margin-bottom: 10px;
}

.pr-list {
    margin: 30px 0px 20px 0px;

}

.pr-list ul li {
    margin-bottom: 8px;
}

.pr-list ul li i {
    width: 18px;
}
.social-icons-head ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.social-icons-head ul li a {
    padding: 5px 10px;
    font-size: 22px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.social-icons-head {}

.social-icons-head ul li:nth-child(1) a {
    padding-left: 0;
}

.social-icons-head ul li a:hover {
    color: #000;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.sec-title {
    margin-bottom: 50px;
}

.pg-title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.8;
    color: #000;
}

.pg-sub-title {
    margin-bottom: 10px;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #999999;
    font-weight: 500;
    letter-spacing: 5px;
}

/*******************************************
/*************     Icons      **************
*******************************************/

.suisse-round, .france-round{
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px;
    border-radius: 50%;
}
.suisse-round{
    background-image: url('../img/suisse.png');
}
.france-round{
    background-image: url('../img/france.png');
}


/*******************************************
/*************     Images      *************
*******************************************/

#me{
    width: 300px;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/me.jpg');
}

/*******************************************
/***********     Language      *************
*******************************************/

.language-statement{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

#language-select{
    margin-left: 10px;
    padding: 7px;
    background-color: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid grey;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
}


/*******************************************
/***********    Image slider   *************
*******************************************/

#life{
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sec-title-life{
    position: relative;
    z-index: 100;
}
.pg-sub-title-life, .pg-title-life{
    color: white;
}
.gallery{
    z-index: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.ulink{
    text-decoration: none;
}
.slide{
    z-index: 10;
    opacity: 1;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}
.slide-m1{
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.slide-m2{
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
}
.slide-p0{
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 20;
}
.slide-p1{
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.slide-p2{
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
}
.slide-image{
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sld-img1{
    background-image: url("../../public/img/waseda.jpg");
}
.sld-img2{
    background-image: url("../../public/img/nike.jpg");
}
.sld-img3{
    background-image: url("../../public/img/coupole.jpg");
}
.sld-img4{
    background-image: url("../../public/img/light.jpg");
}
.sld-img5{
    background-image: url("../../public/img/australia.jpg");
}
.slide-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.slide-content-overlay{
    z-index: 50;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 1)));
    background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}
.slide-title, .slide-text{
    z-index: 100;
    position: relative;
    color: white;
    padding: 0 30px;
}
.slide-title{
    font-weight: bold;
    letter-spacing: 1px;
}
.slide-text div{
    margin-bottom: 10px;
}
.prev, .next{
    z-index: 30;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 3em;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 0 3px 3px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.next{
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev{
    left: 0;
}
.prev:hover, .next:hover{
    background-color: white;
    opacity: .8;
    color: black;
}
.slide-pagination{
    z-index: 30;
    position: absolute;
    top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.bullet{
    margin: 0 10px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: white;
    -webkit-transition: -webkit-transform .3s linear;
    transition: -webkit-transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear;
    transition: transform .3s linear, -webkit-transform .3s linear;
}
.bullet-selected{
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}
.bullet:not(.bullet-selected):hover{
    cursor: pointer;
}

.more-container{
    position: relative;
}
.more{
    font-weight: bold;
}
.more:after{
    content: "";
    width: 0;
    height: 1px;
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.more:hover:after {
    width: 100%;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/*******************************************
/***********    Slide details   ************
*******************************************/

.detail{
    z-index: 0;
    background-color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    overflow-y: scroll;
}
[class^=detail-]{
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.detail li{
    list-style-type: circle;
    margin-left: 20px;
}
.detail-displayed{
    z-index: 200;
    opacity: 1;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.detail-close{
    width: 100%;
    min-height: 30px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../../public/img/close.svg");
    margin-bottom: 20px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}
.detail-close:hover{
    cursor: pointer;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.detail-title{
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.detail-period{
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.detail-column{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.detail-bloc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 30px;
}
.detail-icon{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    min-width: 60px;
    min-height: 60px;
    margin-right: 30px;
}
.detail-content{
    min-width: 300px;
    max-width: 95%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1.3em;
}
.detail-name{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.detail-time::before, .detail-location::before, .detail-team::before, .detail-money::before{
    content: "";
    min-width: 20px;
    min-height: 20px;
    margin-right: 10px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
[class^=inline-]{
    display: inline-block;
    min-width: 20px;
    min-height: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
}
.inline-code{
    background-image: url("../../public/img/code.svg");
}
.inline-day{
    background-image: url("../../public/img/day.svg");
}
.inline-location{
    background-image: url("../../public/img/location.svg");
}
.detail-time::before{
    background-image: url("../../public/img/day.svg");
}
.detail-location::before{
    background-image: url("../../public/img/location.svg");
}
.detail-team::before{
    background-image: url("../../public/img/team.svg");
}
.detail-money::before{
    background-image: url("../../public/img/dollar.svg");
}
.detail-time, .detail-location, .detail-team, .detail-money{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3px;
    font-style: italic;
}

/*******************************************
/**************    SKILLS   ****************
*******************************************/

.dna{
    z-index: 100;
    position: absolute;
    width: 100%;
    height: 500px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.tree, .top-tree, .leaf{
    position: absolute;
    bottom: 50px;
    width: 350px;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
.tree, .top-tree{
    -webkit-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
}
.top-tree{
    -webkit-transition: opacity .2s ease-out, -webkit-transform .4s ease-in;
    transition: opacity .2s ease-out, -webkit-transform .4s ease-in;
    -o-transition: opacity .2s ease-out, transform .4s ease-in;
    transition: opacity .2s ease-out, transform .4s ease-in;
    transition: opacity .2s ease-out, transform .4s ease-in, -webkit-transform .4s ease-in;
}
.tree, .leaf{
    z-index: -10;
}
g image{
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
g image:hover{
    cursor: pointer;
}
.stem-text, .leaf-text{
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.stem-text:hover, .leaf-text:hover{
    cursor: pointer;
    font-weight: bold;
}
.inner{
    font-family: 'Quicksand', sans-serif;
    z-index: -10;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    height: 400px;
    width: 350px;
    bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}
.inner-controls{
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    z-index: 40;
    display: none;
}
.inner-control{
    width: 40px;
    height: 40px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../../public/img/circled-arrow.svg');
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.inner-scroller-bottom{
    margin-left: 270px;
    -webkit-transform: rotate(90deg) scale(1);
    -ms-transform: rotate(90deg) scale(1);
    transform: rotate(90deg) scale(1);
}
.inner-scroller-top{
    -webkit-transform: rotate(-90deg) scale(1);
    -ms-transform: rotate(-90deg) scale(1);
    transform: rotate(-90deg) scale(1);
}
.inner-scroller-bottom:hover, .inner-scroller-top:hover{
    cursor: pointer;
}
.inner-scroller-bottom:hover{
    -webkit-transform: rotate(90deg) scale(1.2);
    -ms-transform: rotate(90deg) scale(1.2);
    transform: rotate(90deg) scale(1.2);
}
.inner-scroller-top:hover{
    -webkit-transform: rotate(-90deg) scale(1.2);
    -ms-transform: rotate(-90deg) scale(1.2);
    transform: rotate(-90deg) scale(1.2);
}
.inner-title{
    z-index: 30;
    position: fixed;
    width: 350px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}
.inner-column{
    position: relative;
    z-index: 25;
    width: 350px;
    height: 340px;
    top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.inner-column::-webkit-scrollbar {
    display: none;
}
.inner-bloc{
    margin-top: 20px;
    width: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.inner-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.inner-name{
    margin-bottom: 15px;
    font-size: 18px;
    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;
}
.inner-name::before, .inner-name::after{
    content: "";
    height: 0;
    width: 70px;
    border-bottom: 1px solid black;
}
.inner-name::before{
    margin-right: 20px;
}
.inner-name::after{
    margin-left: 20px;
}
.inner-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    width: 110px;
    height: 110px;
}
.inner-icon{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    min-width: 70px;
    min-height: 70px;
}
.inner-summary{
    height: 40px;
    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;
    text-align: center;
}
.svg-controls, .skill-controls{
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.skill-control{
    z-index: -10;
}
.control, .skill-control{
    margin: 0 15px;
    height: 40px;
    width: 40px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.control:hover, .skill-control:hover{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    cursor: pointer;
}
.control-house{
    background-image: url('../../public/img/house.svg');
}
.control-up, .skill-previous, .control-down, .skill-next{
    background-image: url('../../public/img/circled-arrow.svg');
}
.control-up{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.control-up:hover{
    -webkit-transform: scale(1.2) rotate(-90deg);
    -ms-transform: scale(1.2) rotate(-90deg);
    transform: scale(1.2) rotate(-90deg);
}
.skill-previous{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.skill-previous:hover{
    -webkit-transform: scale(1.2) rotate(-180deg);
    -ms-transform: scale(1.2) rotate(-180deg);
    transform: scale(1.2) rotate(-180deg);
}
.control-down{
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.control-down:hover{
    -webkit-transform: scale(1.2) rotate(90deg);
    -ms-transform: scale(1.2) rotate(90deg);
    transform: scale(1.2) rotate(90deg);
}
.skill-next:hover{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.skill-close{
    background-image: url('../../public/img/close.svg');
}
.vanish{
    opacity: 0;
    -webkit-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
}
.diminish{
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.tarnished{
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.veiled{
    /*opacity: .2;*/
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

/*******************************************
/***************    ICONS   ****************
*******************************************/

.icon-uva{
    background-image: url("../../public/img/logo-uva.png");
}
.icon-waseda{
    background-image: url("../../public/img/logo-waseda.png");
}
.icon-inalco{
    background-image: url("../../public/img/logo-inalco.jpg");
}
.icon-printemps{
    background-image: url("../../public/img/logo-printemps.png");
}
.icon-nike{
    background-image: url("../../public/img/logo-nike.jpg");
}
.icon-decathlon{
    background-image: url("../../public/img/logo-decathlon.png");
}
.icon-computer{
    background-image: url("../../public/img/logo-code.png");
}
.icon-building{
    background-image: url("../../public/img/logo-building.jpg");
}
.icon-tatsumaru{
    background-image: url("../../public/img/logo-tatsumaru.png");
}
.icon-cnam{
    background-image: url("../../public/img/logo-cnam.png");
}
.icon-oc{
    background-image: url("../../public/img/logo-openclassrooms.jpg");
}
.icon-scrum{
    background-image: url('../../public/img/logo-scrum.png');
}
.icon-pmp{
    background-image: url('../../public/img/logo-pmp.png');
}
.icon-customer{
    background-image: url('../../public/img/customer.svg');
}
.icon-ia{
    background-image: url('../../public/img/ia.svg');
}
.icon-gantt{
    background-image: url('../../public/img/logo-gantt.png');
}
.icon-trello{
    background-image: url('../../public/img/logo-trello.png');
}
.icon-slack{
    background-image: url('../../public/img/logo-slack.png');
}
.icon-excel{
    background-image: url('../../public/img/logo-excel.png');
}
.icon-workspace{
    background-image: url('../../public/img/logo-workspace.png');
}
.icon-office{
    background-image: url('../../public/img/logo-office.png');
}
.icon-roadmap{
    background-image: url('../../public/img/roadmap.svg');
}
.icon-training{
    background-image: url('../../public/img/training.svg');
}
.icon-presentation{
    background-image: url('../../public/img/office.svg');
}
.icon-code{
    background-image: url('../../public/img/code.svg');
}
.icon-speech{
    background-image: url('../../public/img/speech.svg');
}
.icon-location{
    background-image: url('../../public/img/location.svg');
}
.icon-online{
    background-image: url('../../public/img/online.svg');
}
.icon-hierarchy{
    background-image: url('../../public/img/hierarchy.svg');
}
.icon-tie{
    background-image: url('../../public/img/tie.svg');
}
.icon-network{
    background-image: url('../../public/img/management.svg');
}
.icon-team{
    background-image: url('../../public/img/team.svg');
}
.icon-project{
    background-image: url('../../public/img/project.svg');
}
.icon-dollar{
    background-image: url('../../public/img/dollar.svg');
}
.icon-box{
    background-image: url('../../public/img/box.svg');
}
.icon-joker{
    background-image: url('../../public/img/joker.svg');
}
.icon-feather{
    background-image: url('../../public/img/feather.svg');
}
.icon-software{
    background-image: url('../../public/img/software.svg');
}
.icon-floor{
    background-image: url('../../public/img/floor.svg');
}
.icon-store{
    background-image: url('../../public/img/store.svg');
}
.icon-python{
    background-image: url('../../public/img/logo-python.png');
}
.icon-mysql{
    background-image: url('../../public/img/logo-mysql.png');
}
.icon-jupyter{
    background-image: url('../../public/img/logo-jupyter.png');
}
.icon-workbench{
    background-image: url('../../public/img/logo-workbench.png');
}
.icon-talend{
    background-image: url('../../public/img/logo-talend.png');
}
.icon-powerbi{
    background-image: url('../../public/img/logo-powerbi.png');
}
.icon-analysis{
    background-image: url('../../public/img/analysis.svg');
}
.icon-forecasting{
    background-image: url('../../public/img/forecasting.svg');
}
.icon-venn{
    background-image: url('../../public/img/venn.svg');
}
.icon-picture{
    background-image: url('../../public/img/picture.svg');
}
.icon-pycharm{
    background-image: url('../../public/img/logo-pycharm.png');
}
.icon-vscode{
    background-image: url('../../public/img/logo-vscode.png');
}
.icon-scikitlearn{
    background-image: url('../../public/img/logo-scikitlearn.png');
}
.icon-tensorflow{
    background-image: url('../../public/img/logo-tensorflow.png');
}
.icon-keras{
    background-image: url('../../public/img/logo-keras.png');
}
.icon-pytorch{
    background-image: url('../../public/img/logo-pytorch.png');
}
.icon-gcp{
    background-image: url('../../public/img/logo-gcp.png');
}
.icon-azure{
    background-image: url('../../public/img/logo-azure.png');
}
.icon-streamlit{
    background-image: url('../../public/img/logo-streamlit.png');
}
.icon-flask{
    background-image: url('../../public/img/logo-flask.png');
}
.icon-fastapi{
    background-image: url('../../public/img/logo-fastapi.png');
}
.icon-vba{
    background-image: url('../../public/img/logo-vba.png');
}
.icon-libreoffice{
    background-image: url('../../public/img/logo-libreoffice.png');
}
.icon-typescript{
    background-image: url('../../public/img/logo-typescript.png');
}
.icon-postgresql{
    background-image: url('../../public/img/logo-postgresql.png');
}
.icon-modelio{
    background-image: url('../../public/img/logo-modelio.png');
}
.icon-jmerise{
    background-image: url('../../public/img/logo-jmerise.png');
}
.icon-lucidchart{
    background-image: url('../../public/img/logo-lucidchart.png');
}
.icon-access{
    background-image: url('../../public/img/logo-access.png');
}
.icon-bash{
    background-image: url('../../public/img/logo-bash.png');
}
.icon-sqlite{
    background-image: url('../../public/img/logo-sqlite.png');
}
.icon-dotnet{
    background-image: url('../../public/img/logo-dotnet.png');
}
.icon-electron{
    background-image: url('../../public/img/logo-electron.png');
}
.icon-java{
    background-image: url('../../public/img/logo-java.png');
}
.icon-express{
    background-image: url('../../public/img/logo-express.png');
}
.icon-php{
    background-image: url('../../public/img/logo-php.png');
}
.icon-nodejs{
    background-image: url('../../public/img/logo-nodejs.png');
}
.icon-symfony{
    background-image: url('../../public/img/logo-symfony.png');
}
.icon-bootstrap{
    background-image: url('../../public/img/logo-bootstrap.png');
}
.icon-tailwind{
    background-image: url('../../public/img/logo-tailwind.png');
}
.icon-angular{
    background-image: url('../../public/img/logo-angular.png');
}
.icon-jquery{
    background-image: url('../../public/img/logo-jquery.png');
}
.icon-sass{
    background-image: url('../../public/img/logo-sass.png');
}
.icon-html{
    background-image: url('../../public/img/logo-html.png');
}
.icon-css{
    background-image: url('../../public/img/logo-css.png');
}
.icon-javascript{
    background-image: url('../../public/img/logo-javascript.png');
}
.icon-1star{
    background-image: url('../../public/img/1star.svg');
}
.icon-2stars{
    background-image: url('../../public/img/2stars.svg');
}
.icon-3stars{
    background-image: url('../../public/img/3stars.svg');
}
.icon-movie{
    background-image: url('../../public/img/movie.svg');
}
.icon-plane{
    background-image: url('../../public/img/plane.svg');
}
.icon-school{
    background-image: url('../../public/img/school.svg');
}
.icon-work{
    background-image: url('../../public/img/work.svg');
}
.icon-book{
    background-image: url('../../public/img/book.svg');
}
.icon-itil{
    background-image: url('../../public/img/logo-itil.png');
}
.icon-cambridge{
    background-image: url('../../public/img/logo-cambridge.png');
}
.icon-day{
    background-image: url('../../public/img/day.svg');
}
.icon-powerpoint{
    background-image: url('../../public/img/logo-powerpoint.png');
}
.icon-prezi{
    background-image: url('../../public/img/logo-prezi.png');
}
.icon-openshot{
    background-image: url('../../public/img/logo-openshot.png');
}
.icon-photoshop{
    background-image: url('../../public/img/logo-photoshop.png');
}
.icon-gimp{
    background-image: url('../../public/img/logo-gimp.png');
}
.icon-camtasia{
    background-image: url('../../public/img/logo-camtasia.png');
}

/*******************************************
/*************    Download   ***************
*******************************************/

.download-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.download-bloc{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: 20px;
    margin-top: 20px;
    width: 400px;
}
.download-bloc h3{
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}
.download-title{
    margin-top: 20px;
    font-weight: bold;
}

/*******************************************
/*************    Portfolio   **************
*******************************************/

.patchwork{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.tile{
    position: relative;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.tile-tree{
    background-image: url("../../public/img/tile-tree.png");
}
.tile-chatbot{
    background-image: url("../../public/img/tile-chatbot.png");
}
.tile-anomaly{
    background-image: url("../../public/img/tile-anomaly.png");
}
.tile-corinna{
    background-image: url("../../public/img/tile-corinna.png");
}
.tile-clustering{
    background-image: url("../../public/img/tile-clustering.png");
}
.tile-nutrition{
    background-image: url("../../public/img/tile-nutrition.png");
}
.tile-recommendation{
    background-image: url("../../public/img/tile-recommendation.png");
}
.tile-segmentation{
    background-image: url("../../public/img/tile-segmentation.png");
}
.tile-sentiment{
    background-image: url("../../public/img/tile-sentiment.png");
}
.tile-topic{
    background-image: url("../../public/img/tile-topic.png");
}

.tile-overlay{
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    opacity: .9;
    position: absolute;
    -webkit-transform: translate(150px, 300px) rotate(-45deg);
    -ms-transform: translate(150px, 300px) rotate(-45deg);
    transform: translate(150px, 300px) rotate(-45deg);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    padding: 40px 20px;
}
.tile-overlay::before{
    content: "";
    position: absolute;
    top: 5px;
    right: 25px;
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../../public/img/plus.svg");
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tile-overlay:hover{
    -webkit-transform: translate(0, 0) rotate(0);
    -ms-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
    background-color: white;
}
.tile-overlay-data{
    background-color: palegreen;
}
.tile-overlay-ml{
    background-color: lightskyblue;
}
.tile-overlay-web{
    background-color: lightgoldenrodyellow;
}

.tile-topic{
    margin-bottom: 20px;
}
.tile-button{
    width: 200px;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: black;
    color: white;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.tile-button:hover{
    -webkit-box-shadow: 4px 4px 4px grey;
    box-shadow: 4px 4px 4px grey;
}
.tile-button img{
    margin-right: 15px;
}