@charset "UTF-8";
@font-face {
  font-family: "Adrianna";
  src: url("../../assets/fonts/Adrianna Extended demibold/adriannaextended-demibold.ttf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "Baskervville";
  src: url("../../assets/fonts/Baskervville Italic/Baskervville-Italic.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-Black.ttf") format("opentype");
  font-weight: 900;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-ExtraBold.ttf") format("opentype");
  font-weight: 800;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-ExtraLight.ttf") format("opentype");
  font-weight: 200;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-Light.ttf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-Medium.ttf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-Regular.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-SemiBold.ttf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "Geologica";
  src: url("../../assets/fonts/Geologica/Geologica-Thin.ttf") format("opentype");
  font-weight: 100;
}
:root {
  --main-font: "Geologica";
  --second-font: "Adrianna";
  --third-font: "Baskervville";
  --main-color: #383637;
  --second-color: #D9C5AA;
}

.container__works {
  width: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

ol,
ul {
  padding-left: 20px;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: black;
}
a:hover {
  text-decoration: none;
}

body {
  font-family: var(--main-font);
}

.header__main {
  position: relative;
  width: 100%;
  align-items: center;
  padding: 0px 30px;
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
}
.header__main .title {
  flex: 1;
}
@media (max-width: 768px) {
  .header__main {
    display: flex;
    justify-content: space-between;
    padding: 2px 15px;
  }
}
.header__main.home {
  border-bottom: none;
}
.header__main.absolute {
  position: absolute;
  z-index: 99999;
  right: 5%;
  top: 5%;
}
.header__main.absolute .burger__menu {
  position: absolute;
  right: 0%;
}
.header__main h1 {
  font-family: var(--second-font);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
}
@media (max-width: 1350px) {
  .header__main h1 {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .header__main h1 {
    font-size: 20px;
    padding: 10px 0px;
  }
}
@media (max-width: 580px) {
  .header__main h1 {
    font-size: 12px;
  }
}
.header__main .mobile {
  display: none;
}
@media (max-width: 992px) {
  .header__main .mobile {
    display: block;
  }
  .header__main .mobile .burger__menu {
    width: 25px;
    height: 12px;
  }
}
.header__main .title:hover {
  color: black;
}

.border {
  border-bottom: 1px solid black;
  background-color: white;
}

.active__link {
  font-weight: 500;
}

.category__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
@media (max-width: 1200px) {
  .category__link {
    flex: 1.5;
  }
}
@media (max-width: 992px) {
  .category__link {
    display: none;
  }
}
.category__link .active__link {
  font-weight: 600;
}
.category__link a {
  position: relative;
  font-family: var(--main-font);
  font-weight: 300;
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 12px;
  padding: 0px 8px;
  letter-spacing: 0.5px;
  transition: 0.3s all;
}
@media (max-width: 1350px) {
  .category__link a {
    font-size: 10px;
  }
}
.category__link a:hover {
  color: var(--second-color);
  transition: 0.3s all;
}
.category__link a:after {
  content: "・";
  position: absolute;
  top: 50%;
  font-size: 20px;
  transform: translateY(-45%);
}
.category__link a:last-child::after {
  content: none;
}

.social__link {
  top: 0;
  right: 0;
  padding: 15px 35px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
@media (max-width: 992px) {
  .social__link {
    display: none;
  }
}
.social__link ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 7px;
  color: var(--main-color);
  font-family: var(--main-font);
  text-decoration: none;
  font-size: 15px;
  font-weight: 200;
}
.social__link ul a {
  transition: 0.3s all;
}
.social__link ul a:hover {
  transition: 0.3s all;
}
.social__link li {
  display: inline-block;
  margin-right: 7px;
}
.social__link a {
  padding-bottom: 4px;
}
.social__link a svg {
  height: 20px;
  width: 20px;
}
.social__link a:hover {
  color: var(--second-color);
  fill: var(--second-color);
}

.menu__content {
  position: fixed;
  left: -100%;
  top: 0%;
  width: 25%;
  height: auto;
  background: transparent;
  transition: 0.3s all;
  z-index: 999999;
  padding: 30px;
}
.menu__content.active {
  left: 0%;
  transition: 0.3s all;
}
.menu__content.blur {
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(10px);
  width: 60%;
}
@media (max-width: 992px) {
  .menu__content.blur {
    height: 100%;
    width: 80%;
    background-color: white;
  }
}
.menu__content.blur a {
  color: var(--main-color);
}
.menu__content ul {
  list-style: none;
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 30px;
}
@media (max-width: 580px) {
  .menu__content ul {
    font-size: 20px;
  }
}
.menu__content ul a {
  color: white;
}
.menu__content ul li .sub-menu {
  margin: 15px 0px;
}
.menu__content ul li .sub-menu li {
  font-size: 15px;
  font-weight: 100;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .menu__content ul li .sub-menu li {
    font-size: 13px;
  }
}

.overlay {
  display: none;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2;
}

.burger__menu {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .burger__menu {
    display: block;
    width: 25px;
    height: 12px;
  }
}
.burger__menu.active span {
  opacity: 0;
  transition: 0.3s opacity 1;
}
.burger__menu.active span:first-of-type {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  opacity: 1;
  transition: 0.3s all;
}
.burger__menu.active span:last-of-type {
  top: 50%;
  bottom: unset;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 1;
  transition: 0.3s all;
}
.burger__menu span {
  display: block;
  position: absolute;
  width: 100%;
  left: 0%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  opacity: 1;
  transition: 0.3s all;
  background: black;
}
.burger__menu span.black {
  background: black;
}
.burger__menu span.white {
  background: white;
}
.burger__menu span:first-of-type {
  left: 0%;
  top: 0%;
  transform: none;
}
.burger__menu span:last-of-type {
  bottom: 0%;
  transform: none;
  top: 100%;
}

.wysiwyg p {
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 15px;
}
@media (max-width: 580px) {
  .wysiwyg p {
    font-size: 15px;
    padding-bottom: 10px;
  }
}
.wysiwyg a {
  border-bottom: 1px solid black;
  transition: 0.3s all;
}
.wysiwyg a:hover {
  color: var(--second-color);
  transition: 0.3s all;
}

.title__page {
  margin: 20px 0px;
}
.title__page h1 {
  font-size: 25px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.video__wrapper {
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 1;
}
.video__wrapper video {
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0;
  right: 0;
  min-height: 100vh;
  min-width: 177.77vh;
  width: 100vw;
  height: 56.25vw;
  pointer-events: none;
  z-index: 1;
}
.video__wrapper img {
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__wrapper .content {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9999;
  width: 40%;
}
@media (max-width: 768px) {
  .video__wrapper .content {
    width: 90%;
  }
}
.video__wrapper .content .black {
  color: black;
}
.video__wrapper .content .white {
  color: white;
}
.video__wrapper .content h1 {
  font-family: var(--second-font);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-size: 25px;
}
.video__wrapper .content h2 {
  font-family: var(--third-font);
  font-size: 25px;
  margin: 0px auto;
  line-height: 40px;
}
@media (max-width: 768px) {
  .video__wrapper .content h2 {
    padding-top: 12px;
    font-size: 20px;
  }
}
.video__wrapper .overlay {
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2;
}

.work__content {
  margin: 75px 0px;
}
@media (max-width: 580px) {
  .work__content {
    margin: 35px 0px;
  }
}
.work__content .wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .work__content .wrapper {
    flex-direction: column-reverse;
  }
}
.work__content .wrapper .left__part {
  width: 50%;
}
@media (max-width: 580px) {
  .work__content .wrapper .left__part {
    width: 100%;
  }
}
.work__content .wrapper .left__part .thumbnail img {
  width: 100%;
  padding-bottom: 8px;
}
.work__content .wrapper .left__part .gallery ul {
  list-style: none;
  padding-left: 0px;
}
.work__content .wrapper .left__part .gallery img {
  width: 100%;
  padding-bottom: 8px;
}
.work__content .wrapper .video {
  width: 100%;
}
.work__content .wrapper .video video {
  width: 100%;
  object-fit: contain;
}
.work__content .wrapper .right__part {
  width: 45%;
  position: sticky;
  height: 100%;
  top: 18%;
  font-family: var(--main-font);
  padding-top: 10px;
}
@media (max-width: 580px) {
  .work__content .wrapper .right__part {
    width: 100%;
    position: static;
  }
}
.work__content .wrapper .right__part h1 {
  font-size: 25px;
  margin-bottom: 15px;
}
@media (max-width: 580px) {
  .work__content .wrapper .right__part h1 {
    font-size: 19px;
  }
}
.work__content .wrapper .right__part h2 {
  font-size: 22px;
  font-weight: 200;
  padding-bottom: 8px;
  font-family: var(--third-font);
}
@media (max-width: 580px) {
  .work__content .wrapper .right__part h2 {
    font-size: 16px;
  }
}
.work__content .wrapper .right__part .wysiwyg p {
  font-size: 15px;
  font-weight: 200;
}

.page__category {
  margin: 0px 0px 10px 0px;
}
.page__category h1 {
  margin-bottom: 20px;
}
.page__category .works__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .page__category .works__wrapper {
    height: 100%;
    display: block;
  }
}
.page__category .works__wrapper .column {
  width: 100%;
  height: calc(100vh - 70px);
  overflow: scroll;
  padding: 0px;
}
@media (max-width: 580px) {
  .page__category .works__wrapper .column {
    height: 100%;
  }
}
.page__category .works__wrapper .column::-webkit-scrollbar {
  display: none;
}
.page__category .works__wrapper .works__card {
  display: block;
  width: 100%;
  position: relative;
}
.page__category .works__wrapper .works__card .thumbnail {
  overflow: hidden;
  width: 100%;
  height: 1000px;
  font-size: 0px;
}
@media (max-width: 1500px) {
  .page__category .works__wrapper .works__card .thumbnail {
    height: 600px;
  }
}
@media (max-width: 992px) {
  .page__category .works__wrapper .works__card .thumbnail {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .page__category .works__wrapper .works__card .thumbnail {
    height: 320px;
  }
}
@media (max-width: 580px) {
  .page__category .works__wrapper .works__card .thumbnail {
    height: 720px;
  }
}
.page__category .works__wrapper .works__card .thumbnail:hover img {
  transform: scale(1.05);
  transition: 0.3s all;
}
.page__category .works__wrapper .works__card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s all;
}
.page__category .works__wrapper .works__card h2 {
  font-size: 12px;
  font-family: var(--main-font);
  font-weight: 800;
  margin-top: 5px;
  color: white;
  position: absolute;
  bottom: 0px;
  padding: 3px;
}
@media (max-width: 580px) {
  .page__category .works__wrapper .works__card h2 {
    font-size: 15px;
  }
}
.page__category .works__wrapper .works__card p {
  font-family: var(--third-font);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 5px;
}
@media (max-width: 580px) {
  .page__category .works__wrapper .works__card p {
    font-size: 13px;
  }
}
.page__category .works__wrapper .works__card a:hover {
  color: var(--main-color);
}

.wrapper_contact {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .wrapper_contact {
    flex-direction: column;
  }
}

.image {
  width: 50%;
}
@media (max-width: 767px) {
  .image {
    position: relative;
    width: 100%;
  }
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .about_wrapper {
    display: block;
  }
}

.image_about {
  width: 45%;
}
@media (max-width: 767px) {
  .image_about {
    width: 100%;
    padding-bottom: 20px;
  }
}
.image_about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  padding: 8%;
  width: 55%;
}
@media (max-width: 767px) {
  .text {
    width: 100%;
    padding: 0% 4%;
  }
}