body {
  font-family: "EB Garamond", serif;
  color: #111;
  /* background: #FFFEF2; */
  background: #151515;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a:focus, a:active, button, button:focus, button:active,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner,
input:focus,
select:focus,
textarea:focus,
button:focus,
input[type="submit"]:focus  {
    outline: none !important;
}
/*Remove btn outlines*/
*.btn:active, .btn:focus, .btn:active:focus, .btn.active:focus {
    outline: none !important; box-shadow: none!important;
}
a, a:link, a:hover, a:active, a:visited {
    text-decoration:none !important;
}

::selection {background: #000; color:#FFF;}
::-moz-selection {background: #000; color:#FFF;}

section {
  padding: 10vw;
  height: 100%;
  min-height: 500vh;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: visible;
}

h1 {
  font-family: "EB Garamond", serif;
  margin: 2rem auto;
  font-size: clamp(3vw, 1.8rem, 3.5rem);
  text-align: left;
  z-index: 999;
  font-weight:400;
  /*mix-blend-mode: difference;*/
  color: white;
  position: fixed;
  top: 0;
  left: 2rem;
}

h1 a{
  color:#FFF !important;
  text-decoration: none;
  border-bottom:1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease-out;
}

h1 a:hover{
  border-color:#FFF;
}

@media only screen and (max-width: 576px) {
  h1 {
    left: 1rem;
    line-height:1.2;
  }
}

.gallery {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
}

/* @media only screen and (max-width: 992px) {
  .gallery {
    width: 160%;
  }
} */

.col {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  align-self: flex-start;
  justify-self: flex-start;
  gap:40px;
}

.col:nth-child(2) {
  align-self: flex-end;
  justify-self: flex-end;
}

.image {
  width: 100%;
  /* filter: saturate(0); */
  padding: 3rem;
}
@media only screen and (min-width: 577px) and (max-width: 992px) {
  .image {
      padding: 2rem;
  }
}

@media only screen and (max-width: 576px) {
  .gallery {
    width: 160%;
    transform: translateX(-5%);
    left: 5%;
  }
  .col{
    gap:10px;
  }
  .image {
      padding: 0.9rem;
  }
}

.image:hover {
  z-index: 99999999999 !important;
  filter: saturate(1);
}

img {
  transition: 0.3s ease-out;
  overflow: hidden;
  width: 100%;
}

.info{
  position:fixed;
  left:0;
  bottom:50px;
  z-index:10;
  /* width:60vw; 
  max-width:600px; */
  background-color:#FFFEF2;
  padding:1.2rem 2rem 2rem 1.8rem;
  min-height:120px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.info .logos{
  position:relative;
  height:30px;
}

.info .inner{
  position:relative;
  top:15px;
  font-size:15px;
  line-height:1.4;
  font-family: "EB Garamond", serif;
}

.info .inner a{text-decoration:none; color:#000; transition: color 0.3s ease-out;}

.info .inner a:hover{color:#777;}

.info .inner .telEmail{
  display:flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.info .inner .telEmail .tel{
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 576px) {
  .info{
    min-height:0;
    bottom:30px;
  }
  .info .logos{
    height:20px;
  }
  .info{
      /*width:95vw;*/
      padding:1rem 1.5rem 1.5rem 1.2rem;
  }
  .info > .inner {
    top:10px;
    font-size:13px;
  }
}

.logoCoDesign{
  position:absolute;
  width: 160px;
  height:30px;
}

.logoCoLab{
  position:absolute;
  right:-10px;
  width:70px;
  height:30px;
}

@media only screen and (max-width: 576px) {
  .logoCoDesign{
    width:120px;
    height:20px;
  }
  .logoCoLab {
    width:60px;
    height:15px;
  }
}

.mobileHidden{display:block;}

@media only screen and (max-width: 576px) {
  .mobileHidden{display:none;}
}
