@charset "utf-8";

/*--------------------------------------------------------------------------------------------------
CSS Styles 
version:   1.0
--------------------------------------------------------------------------------------------------*/

/* =Typography
--------------------------------------------------------------------------------------------------*/

/* Setting up the fonts */

@font-face {
  font-family: "Neumann";
  src: url("../fonts/neumann.woff2") format("woff2"), url("../fonts/neumann.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Neumann", sans-serif;
  color: #292823;
  font-size: 1.0625rem;
  line-height: 1.4;
}

h1 {
  font-family: "Neumann", sans-serif;
}

h2 {
  font-family: "Neumann", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

h3 {
  font-family: "Neumann", sans-serif;
  font-size: 1.6875rem;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0;
}

input,
textarea,
select,
button {
  font-family: "Neumann", sans-serif;
}

/* End Typography
--------------------------------------------------------------------------------------------------*/

/* =General
--------------------------------------------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  scroll-behavior: unset !important;
  padding: 0;
  margin: 0;
}
.page-wrapper {
  width: 100%;
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1192px;
  padding: 0 16px;
}
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}
button {
  cursor: pointer;
}
figure {
  margin: 0;
}

/* End General
--------------------------------------------------------------------------------------------------*/

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  transition: all 0.3s;
  background: none;
  border: 1px solid #292823;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #292823;
  text-transform: uppercase;
}
.btn svg {
  margin-left: 10px;
}
.btn svg path {
  transition: all 0.3s;
}
.btn:hover {
  color: #fff;
  background-color: #292823;
}
.btn:hover svg path {
  fill: #fff;
}

/* =Swiper controls
--------------------------------------------------------------------------------------------------*/
.swiper-pagination {
  display: flex;
  justify-content: center;
  padding: 17px 0 0;
  position: static;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin: 0 4px;
  transition: all 0.2s;
  opacity: 1;
}

/* =Animations
--------------------------------------------------------------------------------------------------*/
.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.block-01 .logo {
  opacity: 0;
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s linear;
}
.block-01 .headline,
.block-02 .swiper,
.block-03 .col a,
.block-04 .col-left,
.block-04 h2,
.block-04 .swiper,
.block-05 h2,
.block-05 .card,
.block-06 h2,
.block-06 p,
.block-06 .field,
.block-06 .submit,
.block-07 .col {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s linear;
}
.block-03 .col:nth-child(2) a,
.block-05 .col:nth-child(2) .card {
  transition-delay: 0.1s;
}
.block-03 .col:nth-child(3) a,
.block-05 .col:nth-child(3) .card {
  transition-delay: 0.2s;
}

/* sections */
.section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section:nth-child(2n + 1) {
  background-color: #f9f9f5;
}
.section:first-child,
.section:last-child {
  background-color: #000;
}

/* =Block 01
--------------------------------------------------------------------------------------------------*/
.block-01 {
  position: relative;
  z-index: 100;
}
.block-01 .container {
  max-width: 1270px;
}
.block-01 .logo {
  text-align: center;
  padding: 0 0 0 80px;
  margin: 0 0 -46px;
}
.block-01 .logo img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.block-01 .headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block-01 .headline h1 {
  font-size: 0;
  line-height: 0;
  order: 1;
}
.block-01 .headline-left {
  order: -1;
}
.block-01 .headline-right {
  order: 2;
}
.block-01 .headline img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =Block 02
--------------------------------------------------------------------------------------------------*/
.block-02 .container {
  max-width: 1032px;
}
.block-02 .swiper-slide {
  padding: 20px 0;
}
.block-02 blockquote {
  text-align: center;
  font-size: 40px;
  line-height: 1;
  margin: 0;
}
.block-02 blockquote span {
  font-size: 2em;
  color: #999999;
  line-height: 0;
  display: inline-block;
  transform: translateY(0.4em);
  margin: 0 0 0 -0.4em;
}
.block-02 blockquote span:last-child {
  transform: translateY(0.8em);
  margin: 0 -0.5em 0 10px;
}
.block-02 .swiper-pagination-bullet {
  background-color: #999999;
}
.block-02 .swiper-pagination-bullet:hover,
.block-02 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #292823;
}

/* =Block 03
--------------------------------------------------------------------------------------------------*/
.block-03 .row {
  margin: 0 -20px;
  display: flex;
}
.block-03 .col {
  width: 100%;
  padding: 0 20px;
}
.block-03 .col a {
  display: block;
  height: 100%;
  background-color: #fff;
  padding: 42px 40px 40px;
  text-align: center;
  text-decoration: none;
  color: #292823;
}
.block-03 .col a h3 {
  margin: 0 0 72px;
  text-transform: uppercase;
}
.block-03 .col a figure {
  margin: 0;
  height: 160px;
}
.block-03 .col a figure img {
  display: block;
  width: auto;
  max-height: 100%;
  margin: auto;
}

/* =Block 04
--------------------------------------------------------------------------------------------------*/
.block-04 .row {
  display: flex;
}
.block-04 .col-left {
  width: 30.78%;
}
.block-04 .col-left figure {
  text-align: center;
}
.block-04 .col-left img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.block-04 .col-right {
  width: 69.22%;
  padding: 0;
  text-align: center;
}
.block-04 h2 {
  margin: 0 0 21px;
}
.block-04 h3 {
  text-transform: none;
  font-size: 21px;
  margin: 0 0 37px;
}
.block-04 h3 span:before {
  content: "";
  width: 40px;
  height: 1px;
  display: inline-block;
  vertical-align: 0.5em;
  margin: 0 6px 0 2px;
  background-color: #000;
}
.block-04 .btn {
  width: 100%;
  max-width: 560px;
  height: 64px;
}
.block-04 .swiper-pagination {
  padding: 40px 0 0;
}
.block-04 .swiper-pagination-bullet {
  background-color: #292823;
  width: 6px;
  height: 6px;
  margin: 0 3px;
}
.block-04 .swiper-pagination-bullet:hover,
.block-04 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #999;
}

/* =Block 05
--------------------------------------------------------------------------------------------------*/
.block-05 h2 {
  text-align: center;
  margin: 0 0 115px;
}
.block-05 .row {
  margin: 0 -20px;
  display: flex;
}
.block-05 .col {
  width: 100%;
  padding: 0 20px;
}
.block-05 .col .card {
  display: block;
  height: 100%;
  min-height: 280px;
  border: 1px solid #999999;
  padding: 25px 25px 23px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.block-05 .col .card h3 {
  margin: 0 0 72px;
  text-transform: uppercase;
}
.block-05 .col .card .btn {
  margin-top: auto;
  height: 44px;
  align-self: center;
  padding: 3px 10px 0 24px;
}
.block-05 .col .card .btn svg {
  margin-top: -1px;
}

/* =Block 06
--------------------------------------------------------------------------------------------------*/
.block-06 .block-header {
  text-align: center;
  margin: 0 0 118px;
}
.block-06 .block-header h2 {
  margin: 0 0 47px;
}
.block-06 .block-header p {
  max-width: 28em;
  margin: auto;
  color: #000;
}
.block-06 form {
  max-width: 800px;
  margin: auto;
}
.block-06 form .row {
  display: flex;
  justify-content: space-between;
}
.block-06 form .field {
  width: 50%;
  max-width: 320px;
}
.block-06 form input {
  display: block;
  width: 100%;
  padding: 6px 10px 2px;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  color: #292823;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #8e8e93;
  border-width: 0 0 1px;
  border-radius: 0;
  transition: none;
  text-align: center;
}
.block-06 form input::-webkit-input-placeholder {
  color: #8e8e93;
  opacity: 1;
}
.block-06 form input:-moz-placeholder {
  color: #8e8e93;
  opacity: 1;
}
.block-06 form input::-moz-placeholder {
  color: #8e8e93;
  opacity: 1;
}
.block-06 form input:-ms-input-placeholder {
  color: #8e8e93;
  opacity: 1;
}
.block-06 form .submit {
  text-align: center;
  margin: 120px 0 0;
}
.block-06 form .btn {
  width: 360px;
  height: 63px;
  font-size: 15px;
}

/* =Block 07
--------------------------------------------------------------------------------------------------*/
.block-07 {
  align-items: flex-start;
  color: #f0e5db;
  position: relative;
  background-color: #000;
}
.block-07 .container {
  max-width: none;
  padding: 30px;
  position: relative;
  z-index: 2;
}
.block-07 a {
  color: #f0e5db;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.block-07 a:hover {
  color: #fff;
}
.block-07 .row {
  display: flex;
  margin: 0 0 18px;
}
.block-07 .col {
  margin: 0 5.55vw 0 0;
}
.block-07 .col:last-child {
  margin: 0;
}
.block-07 .title {
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0.04em;
  margin: 0 0 13px;
  color: rgba(240, 229, 219, 0.6);
  white-space: nowrap;
}
.block-07 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.04em;
}
.block-07 ul li {
  margin: 0 0 12px;
}
.block-07 .socials {
  display: flex;
  margin: 39px 0 0;
}
.block-07 .socials a {
  margin: 0 16px 0 0;
  transition: all 0.2s;
}
.block-07 .socials a:hover {
  opacity: 0.6;
}
.block-07 .logo {
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
}
.block-07 .logo img {
  display: block;
  width: 100%;
  height: auto;
  object-position: 0 0;
}

/* =Navigation
--------------------------------------------------------------------------------------------------*/
.navigation {
  position: fixed;
  right: 0;
  top: 0;
  /* visibility: hidden; */
  z-index: 99;
}
.navigation .block-07 {
  transform: scale(0);
  transform-origin: right top;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 98;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.navigation .block-07 .container {
  opacity: 0;
  transition: all 0.3s;
  position: static;
}
.navigation.active .block-07 {
  transform: scale(1);
}
.navigation.active .block-07 .container {
  opacity: 1;
  transition-delay: 0.3s;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
  margin: 26px 40px 0 0;
}
.navbar-toggler .navbar-toggler-icon {
  display: block;
  padding: 0;
  width: 42px;
  height: 0;
  position: relative;
}
.navbar-toggler .navbar-toggler-icon:after,
.navbar-toggler .navbar-toggler-icon:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.2s linear;
}
.navbar-toggler .navbar-toggler-icon:before {
  top: -7px;
}
.navbar-toggler .navbar-toggler-icon:after {
  bottom: -7px;
}
.navigation.active .navbar-toggler .navbar-toggler-icon:before {
  transform: translateY(6px) rotate(45deg);
  background: #fff;
}
.navigation.active .navbar-toggler .navbar-toggler-icon:after {
  transform: translateY(-6px) rotate(-45deg);
  background: #fff;
}
