@font-face {
    font-family: 'Couturier-RegularIt';
    src: url('../fonts/Couturier-RegularIt.woff2') format('woff2'),
        url('../fonts/Couturier-RegularIt.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

html {
  background: #fff;
}

body {
	color: #000;
  font-family: 'Couturier-RegularIt', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.js .site-wrapper {
	opacity: 0;
	transition: opacity 0.3s;
}

.js .site-wrapper.render {
	opacity: 1;
}

.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #fff;
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 4px;
	margin: -2px 0 0 -20px;
	pointer-events: none;
	opacity: 0.4;
	background: #000;
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,1,1);
	}
}

a {
	text-decoration: underline;
	color: #fff;
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.slide-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.slide-wrapper:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease-out;
}

.slide-item:not(.active) {
  opacity: 0;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.slide-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-nav-left {
  left: 0;
}

.slide-nav-right {
  right: 0;
  transform: rotate(180deg);
}

.slide-nav svg {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 auto;
  fill: currentColor;
}

.logo {
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.logo svg {
	width: 420px;
	height: 220px;
	display: block;
	margin: 0 auto;
	fill: currentColor;
}

.info-wrapper {
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  color: #fff;
}

.info-block h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1.2;
}

.info-block p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.info-block p span {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .logo {
  	top: 60px;
  	left: 50%;
  	transform: translate(-50%, 0);
  }

	.logo svg {
    width: 160px;
    height: auto;
	}

  .info-wrapper {
    flex-direction: column;
    padding: 30px;
  }

  .info-block h1 {
    font-size: 22px;
    margin: 0;
    line-height: 1.2;
  }

  .info-block p {
    margin-top: 15px;
  }

}

@media screen and (max-width: 1023px) {

  .info-wrapper {
    padding: 30px;
  }

  .info-block h1 {
    font-size: 22px;
    margin: 0;
    line-height: 1.2;
  }

}
