* {
	font-family: "Inclusive Sans", sans-serif;
	min-height: 0;
	min-width: 0;
	margin: 0;
	padding: 0;
}
  
h1 {
  font-family: "Bagel Fat One", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #FF6666;
}

h2 {
  font-family: "Bagel Fat One", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #FF6666;
}

h3 {
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #000000;
}

h4 {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  font-weight: bold;
}

p {
    color: #000000;
    font-size: 16px;
  }

.page {
  background-color: #FFFBF4;
  background-image: url(../img/logo/fondlogo.png);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
  
 /* Header  */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 2vh;
  margin-bottom: 2vh;
  padding-left: 3vw;
  padding-right: 3vw;
}

.logo{
  height: 15vh;
}

.logo img{
  height: 100%;
  display: flex;
}

#menu{
  display: flex;
  justify-content: end;
  gap: 30%;
}

#menu a {
  text-decoration: 0;
  min-width: fit-content;
}

#menu a h2 {
  display: inline;
}


.contact{
  position: fixed;
  right: 1vw;
  top: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%); 
  z-index: 1;
  gap: 2vh;
}

.contact a {
  color: #FFB627;
  text-decoration: 0;
}

.rotatetext{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
}

.icon{  
  width: 25px;
  height: 25px;
}

/* Page Projets */

.container {
	width: 92vw;
  padding-left: 2vw;
  padding-right: 6vw;
	margin-top: 2vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
  min-height: 81vh;
}

.module {
    width: 100%;
    background-color: #FFEDCB;
    border-radius: 20px;
    padding: 2vh 2vw;
    margin-bottom: 2vh;
}

.module img{
    border-radius: 20px;
    width: auto;
    max-width: 100%;
    min-height: 20vh;
    max-height: 45vh;
}

#img-long{
  width: 100%;
  height: auto;
  min-height: auto;
  max-height: 100%;
}

.module iframe{
  border-radius: 20px;
  width: 100%;
  height: 45vh;
}

.m_1 {
  display: flex;
  min-height: 40vh; 
    
} 

.m_propos {
  display: flex;
  min-height: 70vh;
}

#img-ij {
  max-height: 90vh;
  width: auto;
}

.column-g {
  display: flex;
  width: 50%;
  padding: 2vh 2vw;
  gap: 2vh;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.column-g h4 {
  margin-bottom: 2vh;
}

.column-d {
  display: flex;
  width: 50%;
  padding: 2vh 2vw;
  gap: 2vh;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.column-d h4 {
  margin-bottom: 2vh;
}

.title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2vh;
}

.tag{
  display: inline-block;
	background-color: #FBDDDD;
	color: #8F0000;
	border: 0;
	border-radius: 100px;
	padding: 8px 16px;
	font-size: 16px;
	text-decoration: none;
}

.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  align-content: space-evenly;
}

p a{
  color: #000000;
}

/* Responsive */

@media only screen and (min-width: 3000px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 28px;
  }
  
  h4 {
    font-size: 28px;
  }

  
  p {
    font-size: 24px;
  }

  i {
    font-size: 24px;
  }
  
  /* Header  */
  header {
    margin-top: 2vh;
    margin-bottom: 2vh;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  
  .logo{
    height: 15vh;
  }
  
  #menu{
    gap: 40%;
  }
  
  .contact{
    right: 2vw;
  }
  
  .rotatetext{
    font-size: 24px;
  }
  
  /* Page Projets */
  
  .container {
    width: 92vw;
    padding-left: 2vw;
    padding-right: 6vw;
    margin-top: 2vh;
    min-height: 81vh;
  }
  
  .m_1 {
    min-height: 60vh;
  }

  .tag{
    padding: 16px 24px;
    font-size: 24px;
  }
  
  .tags{
    gap: 12px;
  }
 
}

@media only screen and (max-width: 3000px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 28px;
  }
  
  h4 {
    font-size: 28px;
  }

  
  p {
    font-size: 24px;
  }

  i {
    font-size: 24px;
  }
  
  /* Header  */
  header {
    margin-top: 2vh;
    margin-bottom: 2vh;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  
  .logo{
    height: 15vh;
  }
  
  #menu{
    gap: 40%;
  }
  
  .contact{
    right: 2vw;
  }
  
  .rotatetext{
    font-size: 24px;
  }
  
  /* Page Projets */
  
  .container {
    width: 92vw;
    padding-left: 2vw;
    padding-right: 6vw;
    margin-top: 2vh;
    min-height: 81vh;
  }
  
  .m_1 {
    min-height: 60vh;
  }

  .tag{
    padding: 16px 24px;
    font-size: 24px;
  }
  
  .tags{
    gap: 12px;
  }
 
}

@media only screen and (max-width: 2000px) {
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  h4 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  i {
    font-size: 16px;
  }
  
  header {
    margin-top: 2vh;
    margin-bottom: 2vh;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  
  .logo{
    height: 15vh;
  }
  
  #menu{
    gap: 30%;
  }
  
  .contact{
    right: 2vw;
  }
  
  .rotatetext{
    font-size: 16px;
  }
  
  .container {
    width: 91vw;
    padding-left: 2vw;
    padding-right: 6vw;
    margin-top: 2vh;
    min-height: 81vh;
  }

   
  .m_1 {
    min-height: 20vh;
  }

  .year{
    padding-top: 20px;
    padding-right: 20px;
  }
 
  .tag{
    padding: 8px 16px;
    font-size: 16px;
  }
  
  .tags{
    gap: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  h4 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  i {
    font-size: 16px;
  }
  
  /* Header  */
  header {
    margin-top: 2vh;
    margin-bottom: 2vh;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  
  .logo{
    height: 15vh;
  }
  
  #menu{
    gap: 30%;
  }
  
  .contact{
    right: 1vw;
  }
  
  .rotatetext{
    font-size: 16px;
  }
  
  /* Page Projets */
  
  .container {
    width: 90vw;
    padding-left: 2vw;
    padding-right: 6vw;
    margin-top: 2vh;
    min-height: 81vh;
  }
 
  .m_1 {
    min-height: 20vh;
  }

  .tag{
    padding: 8px 16px;
    font-size: 16px;
  }
  
  .tags{
    gap: 10px;
  }
}

@media only screen and (max-width: 600px) {
	h1 {
    font-size: 20px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  h3 {
    font-size: 16px;
  }
  
  h4 {
    font-size: 16px;
  }

  p {
    font-size: 12px;
  }

  i {
    font-size: 12px;
  }

  .page{
    background-size: 200% auto;
    min-height: 100vh;
  }
  
  /* Header  */
  header {
    margin-top: 2vh;
    margin-bottom: 2vh;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  
  .logo{
    height: 8vh;
  }
  
  #menu{
    gap: 30%;
  }
  
  .contact{
    right: 2vw;
  }
  
  .rotatetext{
    font-size: 14px;
  }
  
  /* Page */
  
  .container {
    width: 82vw;
    padding-left: 2vw;
    padding-right: 6vw;
    margin-top: 2vh;
    min-height: 68vh;
  }

  .module{
    flex-wrap: wrap;
    padding: 2vh 3vw;
  }

  .m_1 {
    min-height: 20vh;
  }

  .title {
    flex-wrap: wrap;
  }

  .title h3{
    width: 100%;
  }
  
.column-g {
    width: 100%;
    padding: 0vh 0vw;
    padding-bottom: 2vh;
}

.column-g h4 {
    margin-bottom: 1vh;
}

.column-d {
    width: 100%;
    padding: 0vh 0vw;
    
}

.column-d h4 {
    margin-bottom: 1vh;
}
  
/* Elements filtre */
 
  .tag{
    padding: 4px 12px;
    font-size: 12px;
  }
  
  .tags{
    gap: 8px;
  }
}
