@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

@font-face {
  font-family: serifSemibold;
  src: url(ANTQUAB.TTF);
}

@font-face {
  font-family: serifRegular;
  src: url(BKANT.TTF);
}

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

* {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: .75px;
  line-height: 1.2;
  scroll-behavior: smooth;
}

*:not(p) {
  letter-spacing: 1.5px;
}

:root {
  --wp--preset--color--black: #000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;  
  --wp--preset--color--navy-bluish-gray: #3c4d6d;
  --wp--preset--color--white: #fff;
  --wp--preset--color-light-white: #f5f8fd;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--color--luminous-black: #12121d;
  --wp--preset--color--light-black: #0b0b09;
  --wp--preset--color--vivid-dark: #1a1a17;
  --wp--preset--color--luminous-dark: #11110e;
  --wp--preset--color--light-dark: #35342f;
  --wp--preset--color--vivid-gray: #2f2f42;
  --wp--preset--color--luminous-gray: #444;
  --wp--preset--color--light-gray: #e7e9ed;  
  --wp--preset--color--vivid-navy: #04173c;
  --wp--preset--color--vivid-gold: #939185;
  --wp--preset--color--light-smoke: #e8e6e2;
  --button-width: 30px;
  --button-height: calc(var(--button-width) * .8);
  --rectangle-height: calc(var(--button-width) * .08);
  --translate: calc(var(--button-width) * .17);
  --transition-short: .35s;
  --transition-long: .65s;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: var(--wp--preset--color--vivid-dark);
}

a {
  text-decoration: none;
  outline: none;
}

button, input, textarea, select {
  outline: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

p {
  line-height: 1.5;
}

.showcase {
  position: relative;
  width: 100%;
  height: 95vh;
  background-image: url(showcase_img.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header_overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: var(--wp--preset--color--black);
  opacity: 0.8;
}

header {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

.header_top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 10%;
  border-bottom: 1px solid var(--wp--preset--color--cyan-bluish-gray);
  transition: var(--transition-short);
  z-index: 2;
}

.header_top:hover,
.header_top.sticky {
  background-color: var(--wp--preset--color--vivid-dark);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 2.5em;
}

nav ul li a {
  font-family: 'Open Sans', sans-serif;
  position: relative;
  padding-block: 1em;
  color: var(--wp--preset--color--light-gray);
  transition: var(--transition-short);
}

nav ul li a:hover {
  color: var(--wp--preset--color--white);
}

.header_language ul {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--wp--preset--color--cyan-bluish-gray);
}

.header_language ul li a {
  color: var(--wp--preset--color--cyan-bluish-gray);
  transition: var(--transition-short);
}

.header_language ul li.actual_lang a,
.header_language ul li a:hover {
  color: var(--wp--preset--color--light-gray);
}

.toggle-button {
  display: none;
  position: absolute;
  cursor: pointer;
  flex-direction: column;
  text-align: center;
  width: var(--button-width);
  min-width: 30px;
  height: var(--button-height);
  border-radius: 30px;
  appearance: none;
  background: none;
  outline: none;
  border: none;
  z-index: 4;
}

.bar { 
  display: block;
  position: absolute;
  border-radius: 2px;
  background-color: var(--wp--preset--color--light-smoke);
  height: var(--rectangle-height);
  transition: transform var(--transition-long);
}

.bar--small {
  width: var(--button-width);
}

.toggle-button:hover .bar--small {
  width: calc(var(--button-width) / 2);
  transition: var(--transition-short);
}

.bar--top {
  top: 0;
  left: 0;
  transform-origin: top left;
}

.bar--top.open {
  transform: translateX(var(--translate)) rotate(45deg);
}

.bar--middle {
  top: 50%;
  left: 0;
  width: var(--button-width);
  transform: translatey(-50%);
}

.bar--middle.open {
  transform: translatey(-50%) rotate(-45deg);
}

.bar--bottom {
  bottom: 0;
  right: 0;
  width: var(--button-width);
  transform-origin: bottom right;
}

.bar--bottom.open {
  transform: translateX(calc(-1 * var(--translate))) rotate(45deg);
}

.toggle-button .bar.is-active {
  opacity: 0;
}

.mobile-navigation {
  display: none; 
  position: absolute;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 5em 10% 1.5em 10%;
  top: -65%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: var(--wp--preset--color--vivid-dark);
  transition: var(--transition-long);
  z-index: 1; 
}

.mobile-navigation.is-active {
  opacity: 1;
  visibility: visible;
  top: 5%;
}

.mobile-navbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mobile-navbar a {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25em;
  font-weight: normal;
  text-align: center;
  margin: 0.5em;
  padding: 20px 35px;
  color: var(--wp--preset--color--light-smoke);
  background: transparent;
  border: 2px solid var(--wp--preset--color--vivid-gold);
}

.mobile-navbar a:hover {
  background: var(--wp--preset--color--vivid-gold);
  transition: all .35s ease;
}

.hero_sec {
  position: absolute;
  top: 40%;
  left: 10%;
}

.hero_sec h1 {
  font-family: serifSemibold;
  font-size: 2.8rem;
  letter-spacing: 3px;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--wp--preset--color--white);
}

.hero_sec p {
  max-width: 500px;
  color: var(--wp--preset--color--light-gray);
}

.hero_btn {
  width: fit-content;
  margin-top: 1.15cm;
}

.primar_btn.hero_btn a {
  font-size: .9rem;
  padding: 1em 1.5em;
}

.hero_btn a span {
  font-size: 1.25em;
  margin-left: 5px;
}

.week_work_sec {
  position: absolute;
  top: 25%;
  right: 10%;
}

.week_work_sec h2 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--wp--preset--color--light-gray);
}

.week_work_sec h3 {
  font-size: 1rem;
  font-weight: normal;
  max-width: 300px;
  margin-bottom: .8rem;
  color: var(--wp--preset--color--light-gray);
}

.week_work_sec img {
  width: 300px;
  height: auto;
}

.scroll-down {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1em;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 0;
}

.scroll-down #scrollBtn {
  display: inline-block;
  position: relative;
  width: 1px;
  height: 60px;
  background-color: var(--wp--preset--color--vivid-gold);
}

.scroll-down #scrollBtn:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 10px;
  left: -0.4em;
  border-radius: 50%;
  background-color: var(--wp--preset--color--vivid-gold);
  animation: move-down 2.5s alternate infinite;
}

@keyframes move-down {
  0% {
    transform: translateY(0);
  }
  100% {
      transform: translateY(35px);
  }
}

.scroll-down p {
  color: var(--wp--preset--color--cyan-bluish-gray);
}

.primar_btn a {
  font-size: .85rem;
  padding: 0.625rem 1.25rem;
  color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--vivid-gold);
  transition: var(--transition-short);
}

.primar_btn a:hover {
  background-color: var(--wp--preset--color--vivid-gold);
}

section {
  display: flex;
  padding: 4em 10%;
}

section.col {
  flex-direction: column;
}

section.p-0 {
  padding: 0;
}

section.wrap {
  flex-wrap: wrap;
}

article {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 10px;
  padding: 20px;
}

.section_head h1 {
  position: relative;
  font-size: 2.1em;
  color: var(--wp--preset--color--white);
}

.authors_wrap_sec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
}

.author_art {
  flex: 0;
  padding: 0;
}

.author_art.hidden {
  visibility: hidden;
}

.author_art, .author_art * {
  width: 250px;
}

.author_art p {
  text-align: center;
  margin-top: 5px;
  color: var(--wp--preset--color--light-gray);
}

.author_art .work_title {
  color: var(--wp--preset--color--navy-bluish-gray);
}

section#about {
  background-color: var(--wp--preset--color--light-black);
}

.about_info_art {
  gap: 10px;
}

.about_info_art .section_head {
  margin-bottom: 2.5em;
}

.about_info_art p {
  color: var(--wp--preset--color--cyan-bluish-gray);
}

.about_info_art .primar_btn {
  margin-top: 2em;
}

.about_img .img_container {
  position: relative;
}

.about_img .img_container img {
  position: relative;
  z-index: 1;
}

.about_img .img_container:after {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  right: -2em;
  bottom: -1em;
  border-radius: 10px;
  background-color: var(--wp--preset--color--vivid-gold);
}

section#contact {
  position: relative;
  justify-content: center;
  padding: 2em 5%;
  background-color: var(--wp--preset--color--light-smoke);
}

section.contact_group {
  flex: 1;
}

.contact_option {
  position: relative;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.contact_option i {
  font-size: 3em;
  color: var(--wp--preset--color--vivid-gold);
}

.contact_option p {
  color: var(--wp--preset--color--vivid-gold);
}

.contact_option h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1em;
  line-height: 1.4;
  color: var(--wp--preset--color--luminous-gray);
}

.contact_option h2 a {
  font-family: 'Open Sans', sans-serif;
  color: var(--wp--preset--color--luminous-gray);
}

.contact_option h2 a:hover {
  text-decoration: underline;
}

footer {
  background-color: var(--wp--preset--color--luminous-dark);
}

section.footer_head {
  padding: 2em 10%;
}

.footer_art {
  gap: 20px;
}

.footer_art p {
  color: var(--wp--preset--color--light-gray);
}

footer form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer form input {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  width: 100%;
  height: 50px;
  padding-inline: 1em;
  color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--vivid-gold);
  background-color: var(--wp--preset--color--light-black);
}

footer form input[type="submit"] {
  cursor: pointer;
  background-color: var(--wp--preset--color--vivid-dark);
  transition: var(--transition-short);
}

footer form input[type="submit"]:hover {
  background-color: var(--wp--preset--color--light-dark);
}

.footer_art h2 {
  position: relative;
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--wp--preset--color--light-gray);
}

.footer_art ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.footer_art ul li {
  color: var(--wp--preset--color--light-gray);
}

.footer_art ul li i {
  line-height: 1.8;
  margin-right: 10px;
  color: var(--wp--preset--color--vivid-gold);
}

.footer_art ul li a {
  color: var(--wp--preset--color--light-gray);
}

.footer_art ul li .footer_map {
  text-decoration: underline;
}

.footer_art ul li .footer_map:hover {
  text-decoration: none;
}

.footer_art ul li a:hover {
  text-decoration: underline;
}

section.footer_copy {
  justify-content: center;
  padding: 1em 2.5%;
  background-color: var(--wp--preset--color--light-black);
}

.footer_copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer_copy > a {
  font-weight: bold;
  color: #79776c;
}

.footer_copy p {
  color: var(--wp--preset--color--light-gray);
}

.other_page_case,
.other_overlay,
.other_page_case header {
  height: 30vh;
}

.other_page_def {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75em;
  bottom: 20%;
  left: 10%;
}

.other_page_def a {
  font-family: 'Open Sans', sans-serif;
  display: flex;
  color: var(--wp--preset--color--cyan-bluish-gray);
}

.other_page_def a span {
  font-family: 'Open Sans', sans-serif;
  margin-left: 0.5em;
}

.other_page_def p {
  color: var(--wp--preset--color--light-smoke);
}

section.light_layout {
  background-color: var(--wp--preset--color--light-smoke);
}

article.author_info {
  gap: 15px;
}

article.author_info h1 {
  font-family: serifSemibold;
  font-size: 1.75rem;
  letter-spacing: 1px;
  color: var(--wp--preset--color--vivid-dark);
}

article.author_info h3 {
  font-size: 1rem;
  color: var(--wp--preset--color--light-dark);
}

.author_birth {
  font-size: .9rem;
}

.author_img img {
  width: 250px;
}

.author_img .work_name {
  text-align: center;
  margin-top: 5px;
}

article.work_img img {
  max-width: 500px;
}

article.author_img_info {
  align-items: center;
}

article.author_img_info h2 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 5px;
}

article.author_img_info h2.work_name {
  margin-bottom: 15px;
}

article.author_img_info p {
  font-size: .9rem;
}

article.author_img_info p.work_details {
  text-align: center;
  margin-bottom: 5px;
}

article.author_img_info p.work_date {
  margin-bottom: 15px;
}

article.author_img_info p.work_story {
  text-align: start;
  max-width: 500px;
  margin-bottom: 20px;
}

article.author_img_info p.work_price {
  text-align: center;
  margin-bottom: 2.5em;
}

section.author_def_sec .primar_btn a {
  color: var(--wp--preset--color--luminous-gray);
}

section.author_def_sec .primar_btn a:hover {
  color: var(--wp--preset--color--white);
}

section.work_def_sec {
  align-items: center;
  text-align: center;
}

article.author_bottom_nav {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  margin-top: 5em;
}

article.author_bottom_nav a.page_header_link {
  font-size: 1.1em;
  text-align: center;
  width: 42.5px;
  height: 42.5px;
  line-height: 45px;
  color: var(--wp--preset--color--vivid-gold);
  border-radius: 5px;
  background-color: var(--wp--preset--color--light-dark);
  transition: var(--transition-short);
}

article.author_bottom_nav a.page_header_link:hover {
  background-color: var(--wp--preset--color--vivid-dark);
}

article.author_bottom_nav .primar_btn a {
  color: var(--wp--preset--color--light-dark);
}

article.author_bottom_nav .primar_btn a:hover {
  color: var(--wp--preset--color--light-gray);
}

.terms_content,
.form_art_parent {
  padding: 5%;
  background-color: var(--wp--preset--color--white);
}

.terms_content h2 {
  font-size: 1.75em;
  text-align: center;
  margin-bottom: 1.5em;
}

.terms_content p {
  margin-bottom: 15px;
}

.terms_content p.order {
  font-weight: 700;
  margin-top: 20px;
  color: var(--wp--preset--color--light-black);
}

.terms_content p.gdpr {
  margin-top: 30px;
}

.order_details {
  padding-bottom: 0;
  margin-bottom: 0;
}

.order_details h2 {
  margin-bottom: 5px;
}

.order_details h3 {
  margin-bottom: 10px;
  color: var(--wp--preset--color--light-dark);
}

.order_details p a {
  font-family: 'Heebo', sans-serif;
  color: var(--wp--preset--color--light-black);
}

.order_details p a:hover {
  text-decoration: underline;
}

.order_form {
  display: flex;
  width: 100%;
  gap: 2.5em;
}

.order_form .form_col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.order_form input {
  font-family: 'Heebo', sans-serif;
  width: 100%;
  height: 50px;
  padding-inline: 15px;
  border: 1px solid var(--wp--preset--color--light-dark);
  transition: var(--transition-short);
}

.order_form textarea {
  font-family: 'Heebo', sans-serif;
  font-size: 0.85em;
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--wp--preset--color--light-dark);
  transition: var(--transition-short);
}

.order_form input[type="submit"] {
  cursor: pointer;
  background-color: var(--wp--preset--color--light-smoke);
}

.order_form input:hover,
.order_form textarea:hover {
  border: 1px solid var(--wp--preset--color--vivid-gold);
}

.about_link_img_sec {
  gap: 2em;
}

.about_link_img_sec article {
  margin-inline: 0;
  padding-inline: 0;
}

.about_link_img_sec img {
  height: 180px;
  margin-bottom: 5px;
}

.about_link_img_sec p {
  text-align: center;
}

.text-indent-list {
  text-indent: -14px;
  margin-left: 28px;
}

.sales_head {
  margin-bottom: 1cm;
}

@media (max-width: 1267px) {
  .header_top {
    padding: 20px 2.5%;
  }
  nav ul {
    gap: 1em;
  }
  .week_work_sec {
    display: none;
  }
  section {
    padding: 4em 2.5%;
  }
  section#contact {
    flex-direction: column;
  }
  section.footer_head {
    padding: 2em 2.5%;
  }
  section.author_def_sec {
    padding: 4em 10%;
  }
}

@media (max-width: 1080px) {
  .authors_wrap_sec {
    grid-template-columns: repeat(3, 1fr);
  }
  .author_art, .author_art * {
    width: 200px;
  }
  .author_art *:not(.author_art p) {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .header_top {
    padding: 20px 5%;
    background-color: var(--wp--preset--color--vivid-dark);
  }
  .logo img {
    width: 200px;
  }
  nav {
    display: none;
  }
  .header_language {
    display: none;
  }
  .toggle-button {
    display: flex;
    top: 31px;
    right: 31px;
  }
  .mobile-navigation {
    display: flex;
  }
  .hero_sec {
    top: 25%;
    left: 5%;
  }
  .hero_sec h1 {
    font-size: 2.5em;
  }
  section {
    flex-direction: column;
    padding: 4em 2.5%;
  }
  .other_page_case,
  .other_overlay,
  .other_page_case header {
    height: 40vh;
  }
  .other_page_def {
    flex-direction: column;
    align-items: flex-start;
    bottom: 15%;
  }
  section.author_def_sec {
    padding: 4em 2.5%;
  }
  article.author_bottom_nav {
    flex-direction: column;
  }
  .terms_content {
    padding: 10% 2.5% 10% 2.5%;
  }
  .terms_content h2 {
    font-size: 1.5em;
    line-height: 1.4;
  }
  .authors_wrap_sec {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 0;
  }
  .author_art, .author_art * {
    width: 175px;
  }
  .author_art *:not(.author_art p) {
    height: 175px;
  }
  .order_form {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .author_art, .author_art * {
    width: 150px;
  }
  .author_art *:not(.author_art p) {
    height: 150px;
  }
}

