@font-face {
  font-family: Kobe;
  src: url("../font/kobe11-regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #e3dcc7;
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  font-family: "Kobe";
  font-weight: 400;
  text-transform: uppercase;
  line-height: 100px;
  color: #6d6458;
}

.site-menu {
  display: flex;
}

.menu-item {
  margin-left: 60px;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
}

.block {
  position: absolute;
  width: 100%;
  height: 100%;
}

.b-1 {
  background: url("../img/img-1.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.b-2 {
  background: url("../img/img-6.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.b-3 {
  background: url("../img/img-3.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.b-4 {
  background: url("../img/img-4.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.b-5 {
  background: url("../img/img-5.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.b-6 {
  background: url("../img/img-6.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.b-7 {
  background: url("../img/img-2.jpg") 50% 50% no-repeat;
  background-size: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 50vh;
  bottom: -10rem;
  background: #e3dcc7;
}

.title {
  margin-top: 20rem;
  text-align: center;
  font-family: "Kobe";
  font-size: 10em;
  color: #393833;
  overflow: hidden;
}

.title .letter {
  display: inline-block;
  line-height: 1em;
}

.fix {
  display: none;
}

@media (max-width: 1100px) {
  .fix {
    display: block;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Kobe";
    background: #e3dcc7;
  }
  .fix h1 {
    font-size: 1.5rem;
  }
  .des {
    display: none;
  }
}