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

/* site general */
* {
	padding:0;
	margin:0;
	}

body {    
    color:#000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    background-color: #fff;
}

a {
    text-decoration:none;
    color:#000;
    font-weight: 700;
}

.light {
    font-weight: 300;
}

/* HEADER */

header {
    padding-top: 70px;
    width: 1600px;
    margin: auto;
}

/* LOGO */
#logo {
    width: 40%;
    float: left;
}

H1 {
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 50px;
}

H1 .light {
    font-size: 36px;
    font-weight: 300;
}

H1 .site {
    font-size: 18px;
    font-family: 'Petit Formal Script', cursive;
    color: #0FD98C;
    text-transform: none;
}

H1 .esperluette {
    font-family: 'Petit Formal Script', cursive;
}

header #logo #vertical {
    font-size: 17px;
    color: #000;
    padding-left: 15px;
    padding-bottom: 20px;
    transition: color 0.5s;
    transition-timing-function: ease;
    transform: rotate(-180deg);
    writing-mode: vertical-lr;
    float: left;
}

header #logo #vertical:hover {
    transition: color 0.5s;
    transition-timing-function: ease;
    color: #0FD98C;
}

/* PRÉSENTATION HEADER */

#presentation {
    margin-top: 355px;
	margin-bottom: 50px;
    width: 57%;
    float: left;
}

H5 {
    font-size: 21px;
    text-transform: uppercase;
    float: left;
    margin-right: 40px;
    margin-bottom: 370px;
}

H5 .site {
    font-family: 'Petit Formal Script', cursive;
    font-size: 26px;
    text-transform: none;
    padding-left: 110px;
}

H5 #interrogation {
    font-weight: 200;
    font-size: 65px;
    line-height: 6px;
    padding-left: 10px;
}

H4 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 45px;
}

#presentation p {
    padding-right: 47px;
}

#presentation .bold {
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}


#presentation a {
    font-size: 16px;
    color: #0FD98C;
    padding-bottom: 10px;
    transition: border 2s;
    border-bottom: 3px solid transparent;
    transition-timing-function: ease;
}

#presentation a:hover {
    transition: border 2s;
    transition-timing-function: ease;
    border-bottom: 3px solid #0FD98C;  
}

.vertical {
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    padding-bottom: 388px;
    height: 335px;
    float: left; 
}

.vertical a {
    color: #0FD98C;
    transition: border 2s;
    border-left: 3px solid transparent;
    transition-timing-function: ease;
    padding-left: 10px;
}

.vertical a:hover {
    transition: border 2s;
    transition-timing-function: ease;
    border-left: 3px solid #0FD98C;  
}

/* CONTENT */
/* projet */

section {
}

H2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px;
    background-color: #fff;
    padding-bottom: 0px;
}

H3 {
	font-size: 14px;
    font-weight: 700;
    width: fit-content;
	width: -moz-max-content;
    padding: 5px;
    background-color: #fff;
    padding-bottom: 1px;
}

.projet .description {
    font-family: 'Petit Formal Script', cursive;
	font-size: 13px;
	width: fit-content;
	background-color: #fff;
	padding: 5px;
	padding-top: 0px;
}


.projet {
	margin-bottom: 100px;
}

.projet a {
	width: 1600px;
	margin: auto;
	display: block;
	padding-left: 20px;
	margin-top: -34px;
	transition: all 0.5s; 
	}

.projet a .description {
	transition: all 0.5s;
	padding-bottom: 15px;
	border-bottom: 4px solid #fff;
    transition-timing-function: ease;
	}

.projet a:hover .description {
	transition: all 0.5s;
	padding-bottom: 15px;
	border-bottom: 4px solid #0FD98C;
    transition-timing-function: ease;
	}

.projet a:hover h2,
.projet a:hover h3,
.projet a:hover .description {
    color: #0FD98C;
    transition: all 0.5s; 
    transition-timing-function: ease;
}

.projet .lien-image {
	border: none;
	padding-left: 0px;
	width: 100%;
}

.projet .lien-image:hover {
	border: none;
}

img {
    width: 100%;
}

/* FOOTER */

footer {
    text-align: center;
    height: 55px;
    margin-top: 30px;
	padding-top: 30px;
	background-color: #000; 
}

footer a {
    font-size: 14px;
    color: #fff;
    padding-bottom: 10px;
    transition: border 0.5s;
    border-bottom: 3px solid transparent;
    transition-timing-function: ease;
}

footer a:hover {
    transition: all 0.5s;
    transition-timing-function: ease;
    border-bottom: 3px solid #0FD98C;
	color: #0FD98C;
}

/* TOP */

#top {
	background-color: #0FD98C;
    padding: 15px;
    border-radius: 30px;
	position: fixed;
    right: 30px;
    bottom: 5%;
}

#top:hover {
	box-shadow: 0px 2px 1px #999;
}

#top a {
    color: #fff;
    font-size: 18px;
    display: block;
    width: 23px;
    text-align: center;
    font-weight: 700;
}


/* RESPONSIVE */
/* ///////////////// 320 à 480 /////////////////////////////// */

@media screen and (min-width: 320px) and (max-width: 479px) {

/* HEADER */  
/* Logo */  
    
header {
	width: 320px;
    padding-top: 25px;
}
	
#logo {
	float: none;
	width: 100%;
}
	
header #logo #vertical {
    font-size: 11px;
	padding-bottom: 14px;
}
	
H1 .light {
    font-size: 19px;
}

H1 .site {
    font-size: 11px;
}
	
H1 {
    font-size: 30px;
    line-height: 33px;
}

/* presentation */
#presentation {
    margin-top: 50px;
	margin-left: 30px;
	width: 79%;
}

H5 {
	font-size: 16px;
	margin-right: 10px;
	margin-bottom: 20px;
	float: none;
}

H5 .site {
	font-size: 16px;
}

H5 #interrogation {
    font-size: 50px;
	padding-left: 4px;
}

H4 {
	font-size: 12px;
	margin-bottom: 20px;
    }
    
#presentation p {
	font-size: 14px;
}
	
.vertical {
	padding-bottom: 321px;
	font-size: 14px;
}   

/* CONTENT */
	
.projet a {
	width: 320px;
	}
	
}

/* ///////////////// 480 à 640 /////////////////////////////// */


@media screen and (min-width: 480px) and (max-width: 639px) {

/* HEADER */  
/* Logo */  
    
header {
	width: 480px;
	padding-top: 30px;
}
	
#logo {
	float: none;
	width: 100%;
}
	
header #logo #vertical {
    font-size: 11px;
	padding-bottom: 14px;
}
	
H1 .light {
    font-size: 19px;
}

H1 .site {
    font-size: 11px;
}
	
H1 {
    font-size: 30px;
    line-height: 33px;
}


/* presentation */
#presentation {
    margin-top: 50px;
	margin-left: 37px;
	width: 84%;
}

H5 {
	font-size: 16px;
	margin-right: 10px;
	margin-bottom: 20px;
	float: none;
}

H5 .site {
	font-size: 16px;
}

H5 #interrogation {
    font-size: 50px;
	padding-left: 4px;
}

H4 {
	font-size: 12px;
	margin-bottom: 20px;
	margin-left: 108px;
    }
    
#presentation p {
	font-size: 14px;
	margin-left: 108px;
}
	
#presentation a {
	margin-left: 108px;
}

.vertical {
	padding-bottom: 203px;
	font-size: 14px;
}
	
/* CONTENT */
	
.projet a {
	width: 480px;
	}
	
}

/* //////////////////////// 640 à 960 //////////////////////// */

@media screen and (min-width: 640px) and (max-width: 959px) {

/* HEADER */  
/* Logo */  
    
header {
	width: 640px;
	padding-top: 50px;
}
	#logo {
		width: 100%;
		float: none;
	}
	
header #logo #vertical {
    font-size: 13px;
	padding-bottom: 15px;
	}
	
H1 .light {
    font-size: 26px;
}
	
H1 .site {
    font-size: 15px;
}
	
H1 {
    font-size: 42px;
    line-height: 38px;
}

/* presentation */
#presentation {
    margin-top: 50px;
	margin-left: 37px;
	width: 88%;
}

H5 {
	font-size: 16px;
	margin-right: 10px;
	margin-bottom: 400px;
}

H5 .site {
	font-size: 16px;
}

H5 #interrogation {
    font-size: 50px;
	padding-left: 4px;
}

H4 {
	font-size: 12px;
	margin-bottom: 20px;
    }
    
#presentation p {
	font-size: 14px;
}

.vertical {
	padding-bottom: 126px;
	font-size: 14px;
}
    	
/* CONTENT */
	
.projet a {
	width: 640px;
	}
 
}

/* ////////////////////////960 à 1280 //////////////////////// */


@media screen and (min-width: 960px) and (max-width: 1279px) {

/* HEADER */  
/* Logo */  
    
header {
	width: 960px;
	padding-top: 50px;
}

#logo {
    width: 36%;
}

H1 {
	font-size: 48px;
	line-height: 45px;
}

H1 .light {
	font-size: 32px;
    }

H1 .site {
	font-size: 15px;
    }

header #logo #vertical {
	font-size: 15px;
}

/* presentation */
#presentation {
    margin-top: 220px;
	width: 60%;
}

H5 {
	font-size: 16px;
	margin-right: 19px;
	margin-bottom: 400px;
}

H5 .site {
	font-size: 16px;
}

H5 #interrogation {
    font-size: 50px;
	padding-left: 4px;
}

H4 {
	font-size: 13px;
    }
    
#presentation p {
	font-size: 14px;
}

.vertical {
	padding-bottom: 320px;
}
	
/* CONTENT */
	
.projet a {
	width: 960px;
	}
	
H2 {
    font-size: 26px;
}

H3 {
	font-size: 16px;
}

.projet .description {
	font-size: 14px;
}
}

/* ////////////////////1280 à 1600 //////////////////////////// */

@media screen and (min-width: 1280px) and (max-width: 1599px) {
    
/* HEADER */  
/* Logo */  
    
header {
	width: 1280px;
} 
/* présentation */
	
.vertical {
    padding-bottom: 465px;
}
	
/* CONTENT */
	
.projet a {
	width: 1280px;
	}
	
H2 {
    font-size: 30px;
}

H3 {
	font-size: 17px;
}

.projet .description {
	font-size: 15px;
}

}

/* ////////////////////plus de 1600 //////////////////////////// */

@media screen and (min-width: 1601px) {
section {
		width: 1600px;
		margin: auto;
	}
	
H2 {
    font-size: 30px;
}

H3 {
	font-size: 17px;
}

.projet .description {
	font-size: 15px;
}
}
    
