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

[v-cloak] {
  display: none;
}

html,
body {
  width: 100%;
}

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

body {
  --font-regular: "Roboto-Regular";
  --font-light: "Roboto-Light";
  --font-lightitalic: "Roboto-LightItalic";
  --font-thin: "Roboto-Thin";

  --text-normal: 12px;
  --line-height-normal: 24px;
  --letter-spacing-normal: 0.08em;

  --color-text: #111;
  --color-text-invert: #fff;

  --color-bg: #fafafa;
  --color-bg-white: #fff;

  --padding-lr: 40px;
}

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

  font-family: var(--font-light);
  color: var(--color-text);

  font-size: var(--text-normal);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);

  background-color: var(--color-bg);
}

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

main {
  width: 100%;
}

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

strong {
  font-weight: normal;
}

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

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

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

.mobile-only,
.mobile-menu,
.hidden-gallery,
.hidden-line {
  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;
  border-radius: 0px !important;
}

input {
  cursor: initial;
}

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;
}

img {
  width: 100%;
  box-sizing: border-box;
}


strong{
  font-family: var(--font-regular);
  font-weight: normal;
}


header{
  position: sticky;
  top: 0px;
  width: 100%;
  box-sizing: border-box;
  padding: 0px var(--padding-lr);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 101;
  text-transform: uppercase;
  background-color: var(--color-bg-white);
}

header .menu, .groups-menu{
  word-spacing: 35px;
}

header .menu a{
  word-spacing: initial;
  padding-top: 30px;
  display: inline-block;
}
.groups-menu a{
  word-spacing: initial;
  display: inline-block;
}

header .menu a::before{
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  left: 1px;
  top: 0px;
  height: 1px;
  background-color: var(--color-text);
  display: none;
}

.groups-menu a::after{
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  left: 1px;
  bottom: 3px;
  height: 1px;
  background-color: var(--color-text);
  display: none;
}

header .menu a.current::before, header .menu a:hover::before,
.groups-menu a.current::after, .groups-menu a:hover::after{
  display: inline-block;
}


footer{
  margin-top: auto;

  width: 100%;
  box-sizing: border-box;
  padding: 30px var(--padding-lr);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  text-transform: uppercase;
  background-color: var(--color-bg-white);
}

.logo {
  display: inline-block;
  font-size: 26px;
  text-transform: uppercase;
  font-family: var(--font-light);
  padding-top: 30px;
  padding-bottom: 30px;
}
.logo span{
  font-family: var(--font-thin);
}


.home-bg{
  display: inline-block;
  width: 100%;
  object-fit: cover;
}

.current, .menu a:hover, footer a:hover, .lang a:hover{
  font-family: var(--font-regular);
}

.header-right-side{
  display: flex;
  align-items: flex-end;
  line-height: normal;

  justify-content: space-between;

  width: 540px;
}

.lang{
  margin-left: 60px;
}

.image-rotator{
  position: relative;
  /* height: 100vh; */
  font-size: 0px;
  line-height: 0px;
}

.image-rotator-item{
  position: absolute;
  left: 0px;
  top: 0px;
  transition: opacity 0.7s;
  opacity: 0;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.image-rotator-item.current{
  position: static;
  padding: 0px;
  opacity: 1;
}

button.disabled{
  opacity: 0.7;
  pointer-events: none;
}

.project-title{
  text-transform: uppercase;
  padding: 26px 0px 0px 0px;
  font-family: var(--font-regular);
  font-size: var(--text-normal);
  line-height: var(--line-height-normal);
}
.home-title{
  padding: 26px var(--padding-lr) 0px var(--padding-lr);
}

.project-title span{
  text-transform: initial;
  display: block;
  font-family: var(--font-light);
}

main{  
  padding-bottom: 100px;
}

main>section{
  padding: 0px var(--padding-lr);
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: var(--padding-lr);
  grid-row-gap: 50px;
}

.project-image{
  font-size: 0px;
  line-height: 0px;
  height: 38vw;
}

.project-image img {
  object-fit: cover;
  height: 100%;
}

.project:hover{
  cursor: pointer;
}

.projects-title{
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  padding-top: 50px;
  padding-bottom: 50px;
}

.projects-title h2{
  font-family: var(--font-regular);
}

main.inner-page{
  padding-top: 20px;
}

select{
  font-family: var(--font-regular);
  width: 182px;
  margin-left: 20px;

  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-text);
  background-image: url('../img/arrow.png');
  background-position: right top 3px;
  background-repeat: no-repeat;
  background-size: 7px;
}

.project-about{
  position: relative;
  width: 540px;
  padding: 50px var(--padding-lr) 0px calc(100% - 580px);
}

.project-about .project-title{
  padding-top: 0px;
}

.back-link{
  position: absolute;
  left: var(--padding-lr);
  top: 50px;
  transform: translate(-20px, -20px);
  width: 20px;
  height: 24px;
  background-image: url('../img/back.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding: 20px;
}

.project-text{
  margin-top: var(--line-height-normal);
}

.project-photos {
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0px;
  line-height: 0px;
  letter-spacing: 0px;
  padding-right: 0px;

  margin-top: 70px;
}

.project-photo {
  width: calc(50% - var(--padding-lr));
  margin-right: var(--padding-lr);
  margin-bottom: 30px;
  height: 62vw;
  object-fit: cover;
  overflow: hidden;
}

.horizontal-image{
  width: calc(100% - var(--padding-lr));
}

.gallery-item:hover{
  cursor: pointer;
}

.text-page .project-text{
  margin-top: 0px;
}

.text-title{
  text-transform: uppercase;
  font-family: var(--font-regular);

  position: absolute;
  left: var(--padding-lr);
  top: 50px;  
}

.dark-bg{
  display: none;
}