.main-header {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.main-header .header-logo {
  position: absolute;
  z-index: 2;
  width: 50%;
  max-width: 700px;
  min-width: 350px;
  left: 32%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-header .header-image {
  position: absolute;
  z-index: 1;
  width: 67%;
  height: 115%;
  right: -5%;
  top: 0;
  object-fit: cover;
  object-position: top left;
}


.midashi {
  position: relative;
  padding: 1.5rem 1rem;
  display: inline-block;
  color: #fff;
}

.midashi:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #ffffff, #ffffff 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #ffffff, #ffffff 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.midashi_black {
  position: relative;
  padding: 1.5rem 1rem;
  display: inline-block;

}

.midashi_black:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}




@media (max-width: 991px) {
  .main-header .header-image {
    width: 100%;
    height: auto;
    right: 0%;
    top: 10%;
  }

  .main-header .header-logo {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-header {
    max-height: 600px;
  }
}