#main-header {
  background-color: black;
}
#main-header .logo-area {
  -webkit-clip-path: polygon(0 0, 100% 0, 86% 100%, 14% 100%);
          clip-path: polygon(0 0, 100% 0, 86% 100%, 14% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% + 10px);
}

.btn-clip-path {
  -webkit-clip-path: polygon(90% 0, 100% 34%, 100% 100%, 10% 100%, 0 66%, 0 0);
          clip-path: polygon(90% 0, 100% 34%, 100% 100%, 10% 100%, 0 66%, 0 0);
}

.modal-hex-clip {
  -webkit-clip-path: polygon(15% 0, 85% 0, 100% 53%, 85% 100%, 15% 100%, 0% 50%);
          clip-path: polygon(15% 0, 85% 0, 100% 53%, 85% 100%, 15% 100%, 0% 50%);
}

.cross-hex-clip {
  -webkit-clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
          clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.trapezoid-clip {
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.parallel-clip {
  -webkit-clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}

.pfa-border {
  -webkit-clip-path: polygon(82% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(82% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
}

.bg-pfa-border {
  position: relative;
}
.bg-pfa-border::after, .bg-pfa-border::before {
  content: "";
  background-image: url("/images/pfa/bg-border.png");
  position: absolute;
  left: 0;
  width: 100%;
  height: 12px;
}
.bg-pfa-border::after {
  bottom: -11px;
  transform: rotate(180deg);
}
.bg-pfa-border::before {
  top: -11px;
}

.dogtag {
  background: radial-gradient(circle, transparent 14px, #bbb 14px, #ddd);
  background-position: -155px;
  width: 360px;
  height: 190px;
  border-radius: 70px/110px;
  border: 5px solid #bbb;
  position: relative;
  box-shadow: inset 1px 1px 5px #111, 3px 5px 4px black;
}
.dogtag:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 80px;
  z-index: 2;
  background: white;
  border: 2px solid #777;
}
.dogtag:before {
  content: "";
  z-index: 1;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 74px;
  background: transparent;
  border-style: solid;
  border-width: 5px;
  border-left-color: #555;
  border-top-color: #fff;
  border-right-color: #555;
  border-bottom-color: #555;
  filter: blur(3px);
  transform: rotate(15deg);
  overflow: hidden;
}
.dogtag .dogtag-content {
  height: 100%;
  padding: 0 10px 0 30px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
}
