* {
  margin: 0px;
  padding: 0px;
}

html,
body {
  width: 100%;

  --main-font-color: #111;
  --main-bg-color: #f7f7f7;
  --font-regular: "AndaleMono", "Arial";
  --font-size-small: 11px;
  --font-size-normal: 11px;
  --line-height-small: 18px;
  --line-height-normal: 24px;
  --letter-spacing-normal: 0.06em;

  --logo-font: "MyriadPro-Bold";
  --logo-font-size: 14px;
  --logo-line-height: 14px;
  --logo-letter-spacing: 0.04em;

  --popup-bg: rgba(247,247,247,0.2);

  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0px;
}

body {
  font-family: var(--font-regular);
  font-size: var(--font-size-normal);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--main-font-color);
  background-color: var(--main-bg-color);
}

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

a {
  color: inherit;
  text-decoration: inherit;
  transition: opacity 0.2s;
  cursor: pointer !important;
  position: relative;
}

p {
  line-height: var(--line-height-normal);
  margin-bottom: var(--line-height-normal);
}

p:last-of-type{
  margin-bottom: 0px;
}

video {
  outline: none;
}

ul,li{
  list-style: none;
  display: inline-block;
}

.mobile-only, .mobile-menu{
  display: none;
}

button, select, input{
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  box-sizing: border-box;
  transition: all 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::placeholder{
  color: inherit;
}

button:active, select:active, input:active, button:focus, select:focus, input:focus { outline: none; }

h1, h2, h3, h4{
  font-weight: inherit;
  font-size: inherit;
}

header{
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0px 60px;
  box-sizing: border-box;
  top: 40px;
  left: 0px;
  background-color: rgba(0,0,0,0);
  z-index: 100;
  mix-blend-mode: difference;
}

.logo{
  background-image: url('../img/FEL_LOGO.svg?6');
  width: 95px;
  height: 12px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.open-menu{
  width: 16px;
  display: grid;
  grid-template-rows: 1px 1px 1px;
  grid-row-gap: 3px;
  position: relative;

  --main-font-color: #aaaaaa;
}

.open-menu>span{
  background-color: var(--main-font-color);
  transition: background-color 0.4s;
}

.main.openMenu .open-menu>span:first-child{
  background-color: var(--main-bg-color);
}

.main .open-menu>span:nth-child(2){
  opacity: 0;
}

.main.openMenu .open-menu>span:nth-child(2){
  opacity: 1;
  background-color: var(--main-font-color);
}

.main.openMenu .open-menu>span:last-child{
  background-color: var(--main-bg-color);
}

.open-menu::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  left: -20px;
  top: -20px;
}

.open-menu:hover{
  opacity: 0.3;
}

.home-screen{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home-screen article{
  /* height: max(30%, 320px); */
  width: 100%;
  height: 100%;
}

article{
  display: inline-block;
  vertical-align: top;
  
  font-size: 0;
  line-height: 0;
}

article .image{  
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

article .about-block{
  position: absolute;
  text-align: center;
  margin-top: var(--line-height-normal);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  left: 50%;
  transform: translateX(-50%);

  font-size: var(--font-size-normal);
  line-height: var(--line-height-small);
}

article .about-block p{
  line-height: var(--line-height-small);
}

.tigid-gallery__description p{
  line-height: var(--line-height-small);
}

article .image:hover{
  cursor: pointer;
}

article .image:hover .about-block{
  opacity: 1;
}

.home-screen article .about-block{
  opacity: 1;

  position: absolute;
  bottom: 30px;
  color: #aaaaaa;
  mix-blend-mode: difference;
}

article .image, article .image img, article .image video{
  height: auto;
  width: 100%;
  object-fit: cover;
}

.home-screen article .image, .home-screen article .image img, .home-screen article .image video{
  height: 100%;
  /* width: auto; */
}

.arrow-bottom{
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 40px 60px;
  width: 5px;
  height: 9px;
  /* background-image: url('../img/ARROW_DOWN.svg?1');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5px; */
  display: block;
  mix-blend-mode: difference;
}
.arrow-bottom img {
  width: 100%;
}

.arrow-bottom:hover{
  opacity: 0.3;
}

.home-gallery{
  width: 100%;
  box-sizing: border-box;
  padding: 100px 0px 0px 0px;
}

footer{
  padding: 270px 60px 40px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin-top: auto;

  font-size: var(--font-size-small) !important;
}

.social{
  text-align: right;
}

.menu{
  position: fixed;
  z-index: 99;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: var(--main-bg-color);
  display: none;

  flex-direction: column;
}

.menu p{
  line-height: var(--line-height-small) !important;
  margin-bottom: var(--line-height-small) !important;
}

.menu p:last-child{
  margin-bottom: 0px !important;
}

.menu>div:not(.footer-menu){
  display: flex;
  width: 100%;
  height: calc(100% - 120px);
  box-sizing: border-box;
  padding: 87px 0px 0px 60px;
  justify-content: space-between;
  align-items: flex-end;
}

.menu .menu-grid{
  width: max(calc(50% - 100px), 620px);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

.menu .menu-grid>div{
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.footer-menu{
  height: 120px;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 0px 0px 40px 60px;
  justify-content: space-between;
  align-items: flex-end;

  margin-top: auto;
}

.menu a{
  position: relative;
}

.menu a:hover::after{
  content: '';
  position: absolute;
  bottom: -4px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-font-color);
}

.menu section .see-all{
  position: relative;
}

.menu section .see-all::after{
  content: '';
  position: absolute;
  bottom: -4px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-font-color);
}

.menu section .see-all:hover::after, .language-block .current:hover::after{
  display: none;
}

.language-block .current::after{
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-font-color);
}

section:not(.language-block) .current::before{
  content: url('../img/FEL_DOT.svg');
  width: 3px;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: -5px;
}

.archive-page{
  position: fixed;
  z-index: 101;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: var(--main-font-color);
  color: var(--main-bg-color);

  display: none;
}

.archive-page p{
  line-height: var(--line-height-small) !important;
}

.header-archive{
  position: fixed;
  width: 100%;
  padding: 0px 60px;
  box-sizing: border-box;
  top: 40px;
  left: 0px;
}

.header-archive .logo{
  content: url('../img/FEL_LOGO_W.svg');
}

.archive-menu{
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  height: calc(100vh - 120px);
  box-sizing: border-box;
  padding: 90px 0px 0px 60px;
}

.footer-archive{
  height: 120px;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 0px 60px 40px 60px;
  justify-content: space-between;
  align-items: flex-end;
}


.archive-menu a{
  position: relative;
}

.archive-menu a:hover::after{
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-bg-color);
}

.inner-menu a, .inner-text-block a{
  position: relative;
}

.inner-menu a:hover::after, .inner-menu .current::after, .inner-text-block a:hover::after{
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-font-color);
}

.ex-link:hover::after{
  display: none !important;
}
.ex-link:hover span {
  position: relative;
}
.ex-link:hover span::after{
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-font-color);
}

.inner{
  padding: 36px 0px 0px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.inner-menu, .inner-text-block{
  width: max(calc(50% - 100px), 620px);
}

.inner-text-block{
  margin-top: 48px;
  padding-right: 100px;
  box-sizing: border-box;
}

.inner-gallery{
  width: 100%;
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 80px;

  padding-right: 60px;
  box-sizing: border-box;
}

.inner-gallery-image{
  transition: opacity 0.2s;
}

.inner-gallery-image img{
  width: 100%;
}

.inner-gallery-image span{
  margin-top: 14px;
  display: block;
}

.inner-gallery-image:hover{
  opacity: 0.8;
  cursor: pointer;
}

.inquire{
  display: none;
  position: fixed;
  z-index: 201;
  width: 100%;
  height: 100vh;
  background-color: var(--popup-bg);
  top: 0px;
  left: 0px;
}

.inquire-form{
  position: absolute;
  left: 40px;
  bottom: 140px;
  padding: 14px 20px;
  /* border: 1px solid var(--main-font-color); */
  background-color: #fff;
}

.inquire-form span{
  width: 60px;
  display: inline-block;
}

.inquire-form input{
  border-bottom: 1px solid var(--main-font-color);
  width: 160px;
  padding-bottom: 8px;
}

.inquire-form input[type="text"]{
  margin-bottom: 12px;
}

.button-line{
  text-align: right;
}

.button-line button{
  position: relative;
}

.button-line button:after{
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: calc(100% - 2px);
  height: 1px;
  background-color: var(--main-font-color);
}

.button-line button:hover:after{
  display: none;
}


.inquire-thanks{
  position: absolute;
  left: 40px;
  bottom: 140px;
  padding: 14px 20px;
  /* border: 1px solid var(--main-font-color); */
  background-color: #fff;
  display: none;
}

.inquire-thanks p:nth-child(2){
  width: 220px;
  height: 65px;
}

.about-menu{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

.about-menu>div:last-child .current::before{
  content: url('../img/FEL_DOT.svg');
  width: 3px;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: -8px;
}

.about-menu>div:last-child .current::after{
  display: none;
}

.about-menu>div:last-child .current:hover::after{
  display: block;
}



.inner-objects{
  width: calc(100% + 60px);
  margin-top: 100px;
  margin-left: -60px;
}

.inner-object{
  display: inline-block;
  vertical-align: top;
  
  font-size: 0;
  line-height: 0;
}

.inner-object .image{  
  position: relative;
  transition: opacity 0.2s;
  display: inline-block;

}

.inner-object .image:hover{
  cursor: pointer;
  opacity: 0.8;
}
.inner-object .image.active{
  cursor: pointer;
  opacity: 0.8;
  transition: none;
}

.inner-object .image img{
  width: 100%;
}

.inner-object .about-block{
  margin-top: var(--line-height-normal);
  white-space: nowrap;

  font-size: var(--font-size-normal);
  line-height: var(--line-height-small);
}

.inner-object .object-gallery-item:not(.image){
  width: 0px;
  height: 0px;
  position: absolute;
  left: 0px;
  top: 0px;
}

.artist-photo{
  position: absolute;
}

.artist-photo img, .artist-photo video{
  width: 100%;
}

.inner-photos{
  font-size: 0px;
  letter-spacing: 0px;
  line-height: 0px;
  padding-right: 60px;
  margin-top: 100px;

  width: 100%;
  box-sizing: border-box;
}
.inner-photo img, .inner-photo video{
  width: 100%;
  transition: opacity 0.2s;
}
.inner-photo img:hover, .inner-photo video:hover{
  cursor: pointer;
  opacity: 0.8;
}

.inner-photo.active img, .inner-photo.active video{
  cursor: pointer;
  opacity: 0.8;
  transition: none;
}

.inner-photo{
  width: calc(50% - 180px);
  display: inline-block;
  vertical-align: top;
}
.inner-photo:nth-child(2n){
  margin-left: 360px;
  margin-top: 28vw !important;
}
.inner-photo:nth-child(2){
  margin-left: 360px;
  margin-top: 31vw !important;
}

.inner-photo:not(:first-child){
  margin-top: -140px;
}


.lazy-load {
  opacity: 0;  
  transform: translate(0px, 70px);
}
.lazy-load_done {
  opacity: 1;
  transform: translate(0px, 0px);
  transition: transform 0.7s, opacity 0.7s !important;
}

.disable{
  opacity: 0.3;
  pointer-events: none;
}
.tigid-gallery__arrow.disable{
  opacity: 0;
}

.white-page{
  background-color: var(--main-bg-color);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
  z-index: 99;
}

.second-col{
  margin-bottom: calc(3 * var(--line-height-small));
}
.language-block{
  margin-bottom: calc(6 * var(--line-height-small));
}

.newsletter{
  position: relative;
  z-index: 100;
}

.newsletter input{
  display: inline-block;
  font-family: var(--font-regular);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--main-font-color);
  width: 100%;
}

.newsletter input::placeholder{
  font-family: var(--font-regular);
  font-size: var(--font-size-small);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  color: var(--main-font-color);
}

.newsletter::before{
  position: absolute;
  content: '';
  height: 1px;
  width: calc(100% - 20px);
  bottom: -2px;
  left: 0px;
  background-color: var(--main-font-color);
}

.newsletter button{
  display: inline-block;
  position: absolute;
  right: 0px;
  bottom: 6px;
}

.newsletter input:focus::placeholder{
  opacity: 0;
}

.newsletter-checkbox form{
  display: none;
  position: relative;
  width: 175px;
}

.newsletter-checkbox-text{
  width: 175px;
}

.newsletter-checkbox-text:hover{
  cursor: pointer;
}

.newsletter-checkbox {
  width: 175px;
}

.newsletter-checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 0px;
}

.newsletter-checkbox>input:checked + .newsletter-checkbox-text {
  display: none;
}

.newsletter-white-page{
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background-color: var(--popup-bg);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.2s;
}

.newsletter-checkbox>input:checked ~ form {
  display: inline-block;
}

.newsletter-checkbox>input:checked ~ .newsletter-white-page {
  transform: translateY(0px);
  opacity: 1;
}

.newsletter-thanks{
  display: none;
  text-align: right;
  width: 175px;
}

.right-side-footer-menu{
  width: max(calc(50% - 100px), 620px);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 20px;
  align-items: flex-end;
}

.right-side-footer-menu .created{
  padding-right: 60px;
}

.right-side-footer-menu .white-page{
  z-index: 100;
}

.right-side-footer-menu .newsletter-thanks{
  text-align: left;
}