* {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-family: "SF_Pro_Display_Regular", sans-serif;
  font-size: 16px;
  color: #1d1d1f;
}

.body {
  /* min-height: 100%; */
  margin: 0;
}

.menu-wr {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 1200px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
}

.menu {
  font-family: "SF_Pro_Display_Semibold", sans-serif;
  font-size: 21px;
  margin-left: 40px;
  cursor: pointer;
}

header {
  height: 100vh;
  /* background: url('../img/banner-m.jpg') no-repeat top center;  
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;   */
}

.bg-wr {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  /* height: 100vh; */
  z-index: -100;
  justify-content: center;
}

.bg-wr img {
  position: absolute;
  height: 100vh;
  object-fit: cover;
}

.main-img-partial-bw {
  z-index: -100;
  opacity: 0;
}

.main-img-partial-col {
  z-index: -90;
  opacity: 0;
}

.main-img-full {
  z-index: -80;
  opacity: 0;
}

main {
  position: relative;
  margin: 0;
  /* top: 100vh; */
  padding-top: 5vh;
  padding-bottom: 5vh;
  background-color: #fff;
}

.footer{
  padding: 32px 0;
  text-align: center 
}

.color-trans-white {
  color: #fff !important;
  transition: color 0.7s ease;
}

.color-trans-white {
  color: #fff !important;
  transition: color 0.7s ease-in;
}

.bw-opacity-trans {
  opacity: 1;
  transition: opacity 1.5s ease-in;
}

.col-opacity-trans {
  opacity: 1;
  transition: opacity 0.7s ease-out;
}

.full-opacity-trans {
  opacity: 1;
  transition: opacity 1.5s ease-in;
}

.link-details-wr {
  display: flex;
  justify-content: center;
  margin-top: -58px;
  margin-left: 60%;
  opacity: 0;
}

.link-details {
  width: 150px;
  line-height: 100px;
  font-family: "SF_Pro_Display_Regular", sans-serif;
  color: #fff;
  /* background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, transparent 60%); */
  font-size: 21px;
  cursor: pointer;
}

.link-button {
  background-color: transparent;
}


/* Tablet, <900px */
@media only screen and (max-width: 900px) {
  
}  

/* Mobile, <540px */
@media only screen and (max-width: 540px) {
  .menu {
    font-size: 16px;
    margin-left: 24px;
    cursor: pointer;
  }

  .link-details-wr {
    justify-content: center;
    margin-top: 32px;
    margin-left: 0;
  }
  
  

}  