@charset "UTF-8";

*
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family:"Roboto", sans-serif;
    line-height: 1.7;
    color: #000;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
header h1{
    font-family:"Nunito+Sans",sans-serif;
    font-size: 22px;
    font-weight: 100;
    letter-spacing: .03em;
}
header h1 a{ 
  color: #000;
}
.main-nav {
    display: flex;
    font-size: 14px;
    text-transform: uppercase;
    list-style: none;
}
.main-nav li {
    margin-left: 40px;
}
.main-nav a {
    color: #000;;
}
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 45px 90px 120px 110px;
}


/*footer
---------------------*/
.footerFixed {
  min-height: 100vh;
  position: relative;
  padding-bottom: 200px;
  box-sizing: border-box;
}
footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #fff;
}
footer p {
  color: #1f1f1f;
  font-size: 11px;
  letter-spacing: .05em;
  line-height: 4.0;
  justify-content: center;
}
.wrapper {
  display:flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
.sns-btn li {
  list-style: none;
  width: 21px; 
  height: 21px;
}

/*grid
----------------------*/
.works {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
 row-gap: 120px;
 column-gap: 40px;
 margin: 0 30px;
}
.Behindhand {
  margin: 0 12%;
}
.Evening {
  margin: 0 12%;
}
.Livery {
  margin: 0 12%;
}

h2 {
  font-family: "Roboto",sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .05em;
  margin-top: 20px;
  margin-bottom: 10px;
}
.material {
  font-family: 'Roboto',sans-serif;
  font-size: 15px;
  text-align: center;
  line-height: 1.3;
}
.year { 
  display: flex;
  justify-content: center;
  font-family: 'Roboto',sans-serif;
  font-size: 14px;
  line-height: 1.3;
}
.size { 
  display: flex;
  justify-content: center;
  font-family: 'Roboto',sans-serif;
  font-size: 14px;
  line-height: 1.3;
}
/* Statement
-----------------------*/
.statementSec .statement {
  font-size: 16px;
  margin: 9% 43% 0 10%;
  line-height: 1.65;
}

.exhibitions {
  font-size: 13px;
  margin: 4% 43% 0 10%;
}
.exhibitions a{
  text-decoration: none;
  color: #222;
}
.exhibitions a:hover{
  color: #777;
}


/* Contactform
-----------------------*/

.iframe-wrapper iframe {
  width: 80%; 
}


/* Media queries
-----------------------*/

@media screen and (max-width: 480px) {
  
header h1{
  font-size: 15px;
  line-height: 15px;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  list-style: none;
}
.main-nav li {
  margin-left: 22px;
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 18px 100px;
}
.page-header
.works
.wrapper{
 max-width: 100%;
 margin: 0;
}
.works {
  row-gap: 80px;
  column-gap: 0;
  margin: 0;
 }
 img {
  width: 100%;
 }
 
.statementSec .statement {
  margin: 30px 30px 0 50px;
}

.statementSec .exhibitions {
  font-size: 13px;
  margin: 50px 30px 0 50px;
}
.sns-btn li {
  list-style: none;
  width: 18px; 
  height: 18px;
}

}
.tooltip {
  position: relative;
  cursor: pointer;
  color: #000;
}

.description_bottom {
  width: 125px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  padding: 8px;
  border-radius: 8px;
  background-color: #9d887d;
  font-size: 0.9em;
  color: #fff;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: 0.5s all;
}

.tooltip:hover .description_bottom {
  top: 100%; 
  visibility: visible; 
  opacity: 1; 
}

