/* ____________________________ STANDART CSS START _______________*/

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

[v-cloak] {
  display: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

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

body {
  --font-regular: "Times New Roman";

  --text-normal: 16px;
  --line-height-normal: 24px;
  /* --letter-spacing-normal: 0em; */

  --color-text: #3d544f;
  --color-text-invert: #fffff8;

  --color-bg: #fffff8;
  --color-bg-invert: #3d544f;

  --color-border: #3d544f;

  --padding-lr: 40px;
}

.main {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  font-family: var(--font-regular);
  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);
  box-sizing: border-box;
}

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

.white-page.hidden{
  opacity: 0;
}

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, video {
  width: 100%;
  box-sizing: border-box;
}


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

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


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

/* ____________________________ IMAGE ROTATOR START _______________*/

.image-rotator{
  position: relative;
  width: 100%;
  height: 100vh;
  font-size: 0px;
  line-height: 0px;
  z-index: 100;
}

.image-rotator-item{
  position: absolute;
  left: 0px;
  top: 0px;
  transition: opacity 0.7s;
  opacity: 0;
  width: 100%;
  height: 100%;
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

/* ____________________________ IMAGE ROTATOR END _______________*/

/* ____________________________ NEWSLETTER START _______________*/

.newsletter{
  text-align: center;
  position: relative;
  width: 350px;
  display: inline-block;
  vertical-align: top;
  height: 72px;
  
  margin-bottom: var(--line-height-normal);
}

.newsletter-thanks, .newsletter form{
  /* position: absolute; */
  z-index: 10;
  width: 100%;
}

.newsletter form {
  display: flex;
}

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

.newsletter form p{
  width: 100%;
}

.newsletter form input:focus::placeholder{
  color: transparent;
}

.newsletter form input{
  font-family: var(--font-italic) !important;
  border-bottom: 1px solid var(--color-text-invert);
  width: 100%;
  padding-bottom: 10px;
  background-color: transparent !important;

  color: inherit !important;
  font-size: var(--text-uppercase) !important;
  line-height: var(--line-height-uppercase) !important;
  text-transform: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:focus,
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
  color: inherit !important;
  background-color: transparent !important;
  background-position: 0 0;
  -webkit-box-shadow: 0 0 0 30px var(--color-bg-invert) inset !important;
  -webkit-text-fill-color: var(--color-text-invert) !important;
  caret-color: var(--color-text-invert) !important;
}

.newsletter form button{
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-text-invert);
  color: inherit !important;
  font-size: var(--text-uppercase) !important;
  line-height: var(--line-height-uppercase) !important;
  letter-spacing: var(--letter-spacing-uppercase) !important;
}

.newsletter-hello:hover, a:hover{
  opacity: 0.6;
  cursor: pointer;
}

/* ____________________________ NEWSLETTER END _______________*/



/* ____________________________ STANDART CSS END _______________*/

header, footer {
  display: flex;
  padding: 30px var(--padding-lr);
}

header .logo {
  display: flex;
  align-items: center;
}

.logo span {
  white-space: nowrap;
}

header .logo img {
  width: 49px;
  margin-right: 20px;
}

.right-side {
  margin-left: auto;
}

header .lang, .menu {
  display: inline-block;
}

.menu a {
  margin-left: 30px;
}

header .lang {
  margin-left: 50px;
}

.lang a:not(.current) {
  display: none;
}

a:hover {
  opacity: 1 !important;
}

a {
  position: relative;
}

a::after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0px;
  width: 0px;
  height: 1px;
  background-color: var(--color-border);
  transition: width 0.5s;
}

a:hover::after {
  width: 100%;
}


.border-link, p a {
  position: relative;
}

.border-link::after, p a::after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  transition: width 0.5s;
}

.border-link:hover::after, p a:hover::after {
  width: 0px;
}

.home, .text-page, .projects, .project-page {
  width: 100%;
  box-sizing: border-box;
  padding: 25px var(--padding-lr) 20px;
  display: flex;
  height: calc(100vh - 200px);
}

.text-page, .projects, .project-page {
  min-height: calc(100vh - 200px);
  height: initial;
}

.project-page {
  display: block;
}

.home .image {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.home .image img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: right;
}

.big-title, .big-title p{
  font-size: 46px;
  line-height: 46px !important;
}

.home .border-link {
  margin-top: 40px;
  display: inline-block;
}

.home .left-side{
  display: flex;
  padding-bottom: 70px;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 40vw;
}

.text-page .left-side {
  max-width: 50%;
  padding-right: 70px;
}

.text-page .image {
  padding-left: 130px;
  /* overflow: hidden; */
}

.text-page .image.ver {
  height: calc(100vh - 250px);
  width: auto;
}

.text-page .image.hor {
  max-width: 800px;
}

.text-page .image img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right;
}

.text-page .big-title {
  margin-bottom: 50px;
}

.text-page .text {
  margin-bottom: 90px;
}

.text-page .download-link {
  margin-bottom: 50px;
}

.image {
  position: relative;
}

.image-text {
  /* position: absolute; */
  /* left: 112px;
  top: 0px; */
  text-align: right;
  /* transform: rotate(90deg); */
  font-size: 12px;
  /* transform-origin: top left; */
  /* white-space: nowrap; */
  /* left: 0px; */
  /* bottom: 0px; */
  width: 100%;
  line-height: 16px;
  padding-top: 16px;
}


.projects {
  display: block;
  margin-bottom: 70px;
}

.projects .big-title {
  display: inline-block;
}

.projects select {
  float: right;
  margin-top: 24px;
}


select {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-border);
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 50px;
  margin-top: 40px;
}

.about-project {
  margin-top: 24px;
}

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

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

::-webkit-scrollbar {
  cursor: pointer !important;
}

.images-gallery {
  white-space: nowrap;
  overflow-x: scroll;
  height: 680px;
  overflow-y: hidden;
  margin-bottom: 70px;
  cursor: grabbing;
}

.images-gallery .image {
  display: inline-block;
  margin-right: 45px;
  width: initial;
  height: 100%;
}

.images-gallery .image img {
  width: auto;
  height: 100%;
}

.images-gallery::-webkit-scrollbar {
  height: 46px !important;
}

.images-gallery::-webkit-scrollbar-track {
  background: #eee;
  /* border-top: 20px solid var(--main-bg-color);
  border-bottom: 20px solid var(--main-bg-color); */
  border-top: 45px solid var(--color-bg);
  border-bottom: 0px solid var(--color-bg);
}

.images-gallery::-webkit-scrollbar-thumb {
  background: #111;
  /* border-top: 20px solid var(--main-bg-color);
  border-bottom: 20px solid var(--main-bg-color); */
  border-top: 45px solid var(--color-bg);
  border-bottom: 0px solid var(--color-bg);
}

.project-page .big-title {
  margin-bottom: 40px;
  max-width: 900px;
}

.project-page .text {
  margin-bottom: 70px;
  max-width: 900px;
}

.menu br {
  display: none;
}

a.image::after{
  display: none !important;
}