* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

@font-face {
  font-family: MarckScript;
  src: url(../add/fonts/MarckScript-Regular.ttf);
}
.header-1 {
  background-color: black;
}
.header-1 .header-1-line {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
}
.header-1 .header-1-line img:nth-child(1) {
  display: block;
  background-color: aquamarine;
  padding: 10px 20px;
}
@media (max-width: 1280px) {
  .header-1 .header-1-line img:nth-child(1) {
    margin-right: auto;
  }
}
.header-1 .header-1-line .first-ul:nth-child(2) {
  margin-right: auto;
}
@media (max-width: 1280px) {
  .header-1 .header-1-line .first-ul:nth-child(2) {
    display: none;
  }
}
.header-1 .header-1-line .first-ul:nth-child(2) li {
  display: inline-block;
  font-size: 25px;
  color: white;
  padding: 16px 30px;
  cursor: pointer;
}
.header-1 .header-1-line a:nth-child(3) img {
  display: block;
  padding: 16px 20px;
  width: 70px;
  height: 100%;
  background-color: black;
}
.header-1 .header-1-line label:last-child {
  display: none;
  font-size: 25px;
  text-decoration: none;
  color: white;
  padding: 16px 30px 16px 50px;
  background-image: url(../add/pictures/main-menu.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: 5% 50%;
}
@media (max-width: 1280px) {
  .header-1 .header-1-line label:last-child {
    display: block;
  }
}
.header-1 input {
  display: none;
}
.header-1 input:checked + .header-1-line label {
  background-image: url(../add/pictures/close.png);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: 5% 50%;
}
.header-1 input:checked ~ .header-1-menu a {
  display: block;
  text-decoration: none;
  font-size: 25px;
  color: white;
  padding: 20px 10px;
}
@media (min-width: 1281px) {
  .header-1 input:checked ~ .header-1-menu a {
    display: none;
  }
}

.header-2 {
  height: 300px;
  background-color: #272727;
  padding-top: 75px;
}
.header-2 h1 {
  font-size: 50px;
  color: white;
  letter-spacing: 5px;
  text-align: center;
}

.header-2-2 {
  display: flex;
  padding-top: 50px;
}
.header-2-2 .header-2-2-body {
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  flex: 0 0 auto;
}
.header-2-2 .header-2-2-first, .header-2-2 .header-2-2-last {
  flex: 1 1 auto;
  border-bottom: 1px solid white;
  margin: 0 20px 13px 20px;
}

.search-2 {
  display: none;
  width: 600px;
  height: 62px;
  border: 1px dotted gray;
  background-color: white;
}
.search-2 .button {
  width: 60px;
  height: 60px;
  background-image: url(../add/pictures/search.png);
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.search-2 input {
  font-size: 25px;
  height: 60px;
  width: 90%;
  border: none;
  outline: none;
  padding-left: 20px;
}

.opacity {
  display: none;
}

#search-2:target ~ .search-2 {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  margin: -31px auto 0 auto;
  z-index: 2;
}

#search-2:target ~ .opacity {
  display: block;
  width: 100%;
  min-height: 100vh;
  background-color: darkgreen;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.templates-wrapper {
  display: flex;
  flex-flow: row nowrap;
  margin: 7.5% auto 0 auto;
  padding: 20px;
  width: 1280px;
  max-width: 100%;
}
@media (max-width: 960px) {
  .templates-wrapper {
    flex-flow: column nowrap;
  }
}
.templates-wrapper .read {
  flex: 0 1 33%;
  padding-right: 10px;
}
.templates-wrapper .read .text h6 {
  font-size: 25px;
  padding: 10px 0;
}
.templates-wrapper .read .text p {
  font-size: 20px;
  padding: 40px 0;
}
.templates-wrapper .read .text-2 {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 1280px) {
  .templates-wrapper .read .text-2 {
    flex-flow: column nowrap;
  }
}
.templates-wrapper .read .text-2 p {
  flex: 1 1 50%;
  font-size: 20px;
  padding: 3px 0 3px 20px;
}
.templates-wrapper .read .text-2 p img {
  height: 20px;
  width: auto;
}
.templates-wrapper .read .my-button {
  width: 200px;
  height: 50px;
  border-radius: 5px;
  background-color: black;
  color: white;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  cursor: pointer;
}
.templates-wrapper .templates {
  flex: 1 1 67%;
  padding-top: 10px;
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  grid-template-rows: 175px 175px;
  gap: 20px;
}
.templates-wrapper .templates div {
  border-radius: 5px;
}
.templates-wrapper .templates img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
