@import url(../style/normalize.css);
@import url("https://fonts.googleapis.com/css2?family=DM+Sans&family=Inter&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 400 800;
  src: url(../assets/fonts/Roboto-Thin.ttf) format("ttf"), url(../assets/fonts/Roboto-Regular.ttf) format("ttf"), url(../assets/fonts/Roboto-Black.ttf) format("ttf");
}
* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  outline: none !important;
}

@keyframes anim2 {
  0% {
    background-position: 37%;
  }
  40% {
    background-position: 100%;
  }
  85% {
    background-position: 0;
  }
  100% {
    background-position: 37%;
  }
}
@keyframes anim3 {
  0% {
    background-position: 8%;
  }
  60% {
    background-position: 100%;
  }
  90% {
    background-position: 0;
  }
  100% {
    background-position: 8%;
  }
}
@keyframes anim4 {
  0% {
    background-position: 11%;
  }
  56% {
    background-position: 100%;
  }
  90% {
    background-position: 0;
  }
  100% {
    background-position: 11%;
  }
}
@keyframes anim5 {
  0% {
    background-position: 43%;
  }
  33% {
    background-position: 100%;
  }
  66% {
    background-position: 0;
  }
  100% {
    background-position: 43%;
  }
}
@keyframes anim6 {
  0% {
    background-position: 48%;
  }
  25% {
    background-position: 100%;
  }
  75% {
    background-position: 0;
  }
  100% {
    background-position: 48%;
  }
}
@keyframes anim {
  0% {
    background-position: 0;
  }
  50% {
    background-position: 100%;
  }
  100% {
    background-position: 0;
  }
}
.pictures {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.pic--element {
  display: block;
  width: 95px;
  height: 330px;
  background-color: #E8E8E8;
  margin: 10px;
  transition-delay: 0.15s;
}

.pic1:hover {
  translate: 0px -100px;
  animation: anim linear 10s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic2:hover {
  translate: 0px -50px;
  animation: anim2 linear 30s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic3:hover {
  translate: 0px 80px;
  animation: anim3 linear 5s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic4:hover {
  translate: 0px -20px;
  animation: anim4 linear 15s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic5:hover {
  translate: 0px 50px;
  animation: anim5 linear 25s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic6:hover {
  translate: 0px 30px;
  animation: anim6 linear 10s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic7:hover {
  translate: 0px -40px;
  animation: anim linear 5s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic8:hover {
  translate: 0px 100px;
  animation: anim linear 5s infinite;
  width: 180px;
  cursor: crosshair;
}

.pic--element.delay {
  translate: 0px 0px;
  transition-delay: 0.1s;
}

.pic1 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/1.jpg");
  background-size: cover;
}

.pic2 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/2.jpg");
  background-size: cover;
  background-position: 37%;
}

.pic3 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/3.jpg");
  background-size: cover;
  background-position: 8%;
}

.pic4 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/4.jpg");
  background-size: cover;
  background-position: 11%;
}

.pic5 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/5.jpg");
  background-size: cover;
  background-position: 43%;
}

.pic6 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/6.jpg");
  background-size: cover;
  background-position: 48%;
}

.pic7 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/7.jpg");
  background-size: cover;
}

.pic8 {
  transition: translate 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  background-image: url("../assets/landing/8.jpg");
  background-size: cover;
}

.overlay {
  z-index: 999;
}

.slider {
  visibility: hidden;
  display: none;
}

@media screen and (max-width: 1024px) {
  .pic7, .pic8 {
    display: none;
  }
}
@media screen and (max-width: 770px) {
  .pic3, .pic4, .pic5, .pic6, .pic7, .pic8 {
    display: block;
  }
  .pic1 {
    margin-bottom: 77px;
    animation: anim 30s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic1:hover {
    translate: 0 0;
    animation: anim 30s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic1:hover + .pic2 {
    z-index: -1;
  }
  .pic2 {
    margin-top: 77px;
    animation: anim 30s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic2:hover {
    translate: 0 0;
    animation: anim 30s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic2:hover + .pic1 {
    z-index: -1;
  }
  .pic3 {
    margin-top: 77px;
    animation: anim 30s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic3:hover {
    translate: 0 0;
    animation: anim 30s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic3:hover + .pic4 {
    z-index: -1;
  }
  .pic4 {
    margin-bottom: 77px;
    animation: anim 50s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic4:hover {
    translate: 0 0;
    animation: anim 50s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic4:hover + .pic3 {
    z-index: -1;
  }
  .pic5 {
    margin-bottom: 77px;
    animation: anim 80s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic5:hover {
    translate: 0 0;
    animation: anim 80s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic5:hover + .pic6 {
    z-index: -1;
  }
  .pic6 {
    margin-top: 77px;
    animation: anim 50s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic6:hover {
    translate: 0 0;
    animation: anim 50s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic6:hover + .pic5 {
    z-index: -1;
  }
  .pic7 {
    margin-top: 77px;
    animation: anim 30s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic7:hover {
    translate: 0 0;
    animation: anim 30s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic7:hover + .pic8 {
    z-index: -1;
  }
  .pic8 {
    margin-bottom: 77px;
    animation: anim 30s infinite;
    transition: translate 0.3s ease-in-out, height 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pic8:hover {
    translate: 0 0;
    animation: anim 30s infinite;
    width: 210px;
    height: 385px;
    z-index: 1;
  }
  .pic8:hover + .pic7 {
    z-index: -1;
  }
  .media {
    display: none;
  }
  .contact__button {
    display: none;
  }
  .pictures {
    display: none;
    visibility: hidden;
  }
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .slider__container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .slides {
    display: flex;
    overflow-x: scroll;
    position: relative;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: inherit;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    transition: translate 0.5s ease;
  }
  .slider__pack {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 385px;
    position: relative;
  }
  .slider__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    margin-right: 0px;
    box-sizing: border-box;
    transform-origin: center center;
    transform: scale(1);
    scroll-snap-align: center;
  }
  .slide a {
    background: none;
    border: none;
    pointer-events: none;
  }
  a:active {
    background-color: transparent;
  }
  a.slide__prev,
  .slider::before {
    left: 1%;
  }
  a.slide__next,
  .slider::after {
    right: 1%;
  }
  .slider::before,
  .slider::after,
  .slide__prev,
  .slide__next {
    position: absolute;
    width: 20%;
    height: 40vh;
    padding: 3px;
    box-sizing: border-box;
  }
  .slider::before,
  .slider::after {
    content: "";
    z-index: 1;
    background: none;
    pointer-events: none;
  }
}
.nav {
  position: absolute;
  width: 100vw;
  margin: 0;
  display: flex;
  justify-content: center;
}
.nav__menu {
  margin-right: 40px;
  margin-bottom: 40px;
}
.nav__hamburger {
  position: fixed;
  top: 55px;
  right: 55px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 99999;
}
.nav__hamburger--js {
  width: 0px;
}
.nav__elements {
  margin-right: 40px;
  bottom: 32px;
}
.nav__link {
  color: black;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #2F2F2F;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin: 0;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.nav__link:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
  text-shadow: black 0px 0px;
}
.nav__media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.nav__address {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.nav__text {
  text-align: right;
}

.logo {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 1s, left 1s, height 1s;
  z-index: 9999;
}
.hamburger {
  display: none;
  opacity: 0;
}
.hamburger__list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hamburger__list-element {
  list-style-type: none;
  margin: 2px 0;
}
.hamburger-box {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.hamburger-inner {
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  background-color: #000;
  top: 25%;
  display: block;
}
.hamburger-inner::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  background-color: #000;
  top: -10px;
  display: block;
}
.hamburger-inner::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  background-color: #000;
  bottom: -10px;
  display: block;
}
.hamburger-is-active {
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: transform;
  background-color: #000;
  top: 25%;
  display: block;
  transform: rotate(45deg);
}
.hamburger-is-active::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: transform;
  background-color: #000;
  top: 0;
  display: block;
}
.hamburger-is-active::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: transform;
  background-color: #000;
  bottom: 0;
  display: block;
  transform: rotate(273deg);
}
.hamburger--open {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 450px;
  height: 100vh;
  position: fixed;
  background-color: #D9D9D9;
  top: 0;
  right: 0;
  backdrop-filter: blur(10px);
  transition: opacity 1s ease;
  opacity: 0.99;
  z-index: 9999;
}

@media screen and (max-width: 744px) {
  .logo {
    margin-top: 36px;
  }
  .logo__image {
    width: 80%;
    height: 80%;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2023-8-16 23:58:26
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation shake-vertical
 * ----------------------------------------
 */
@-webkit-keyframes shake-vertical {
  0%, 15%, 25%, 100% {
    -webkit-transform: scale(100%);
    transform: scale(100%);
  }
  10% {
    -webkit-transform: scale(115%);
    transform: scale(115%);
  }
  20% {
    -webkit-transform: scale(115%);
    transform: scale(115%);
  }
}
@keyframes shake-vertical {
  0%, 15%, 25%, 100% {
    -webkit-transform: scale(100%);
    transform: scale(100%);
  }
  10% {
    -webkit-transform: scale(115%);
    transform: scale(115%);
  }
  20% {
    -webkit-transform: scale(115%);
    transform: scale(115%);
  }
}
.header {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.footer {
  background-color: #ffffff;
  width: 100vw;
  height: 295px;
  bottom: 0px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.footer__containter {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  padding-top: 40px;
  padding-bottom: 50px;
}
.footer__title {
  color: #979797;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  margin-bottom: 10px;
}
.footer__text {
  margin: 0;
  padding-bottom: 10px;
  color: #2F2F2F;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}
.footer__text--center {
  text-align: center;
}
.footer__media {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__address {
  display: flex;
  flex-direction: column;
}
.footer__link {
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.footer__link:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
  text-shadow: black 0px 0px;
}

.former {
  padding-bottom: 20px;
}

.copyrights {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}
.copyrights__text {
  color: #2F2F2F;
  font-size: 12px;
}

.footer__hidden {
  display: none;
}

.media__list {
  margin: 0;
  padding: 0;
}
.media__list--element {
  list-style-type: none;
  margin: 0;
  color: #2F2F2F;
  padding-bottom: 10px;
  text-align: end;
  font-size: 16px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}
.media__list--element:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
}
.media__list--mobile {
  display: none;
}
.media__link {
  text-decoration: none;
  color: #2F2F2F;
  transition: text-shadow 0.3s ease-in-out;
}
.media__link:hover {
  cursor: pointer;
  text-shadow: black 0px 0px;
}

.contact {
  position: absolute;
  bottom: 50px;
  right: 30px;
  color: black;
  text-align: right;
  transition-timing-function: ease-out;
  transition-duration: 0.5s;
  transition-property: opacity, visibility;
  opacity: 0;
  visibility: hidden;
}

.name {
  margin-bottom: 0;
  color: #F6F6F6;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
}

.visible {
  transition-timing-function: ease-in;
  transition-duration: 0.5s;
  transition-property: opacity, visibility;
  opacity: 1;
  visibility: visible;
}

.mailto {
  color: black;
}

.contact__button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border: none;
  font-weight: 400;
  color: black;
}

.contact__button:hover {
  cursor: pointer;
}

.mobile__button {
  display: none;
}

@media screen and (max-height: 700px) {
  .footer__grid {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 770px) {
  .footer {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer__containter {
    max-width: 300px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
  }
  .footer__title {
    text-align: center;
  }
  .footer__text {
    text-align: center;
  }
  .footer__media {
    align-items: center;
  }
  .media__list--element {
    text-align: center;
  }
}
.team__persons {
  padding-top: 200px;
}

.person {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.person__img {
  margin: 7px 7px;
  transition: opacity 0.3s ease;
  opacity: 1;
  object-fit: cover;
  width: 325px;
  height: 325px;
}
.person__element {
  position: relative;
  transition: opacity 0.3s ease;
  width: 340px;
  height: 340px;
}
.person__container {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.person__container:hover {
  opacity: 1;
}
.person__name {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.08px;
}
.person__title {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
}
.person__email {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.person__email:hover {
  cursor: pointer;
  transform: scale(101%);
  color: black;
  text-shadow: black 0px 0px;
}

.opacity {
  opacity: 0.1;
}

#map {
  height: 600px;
  width: 1360px;
}

.gm-ui-hover-effect {
  display: none !important;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.main__section {
  height: fit-content;
}
.main__article {
  display: flex;
  flex-direction: column;
  width: 550px;
  height: 100%;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
.main__description {
  position: inherit;
  height: 100%;
  margin: 0;
  color: #282828;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  padding-top: 12px;
}

.container__bigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 38px;
  min-height: 100vh;
  max-width: 1360px;
}
.container__smaller {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  max-width: 900px;
}
.container__desc {
  display: grid;
  grid: auto-flow/1fr 1fr;
}
.container__margin {
  margin-bottom: 200px;
}
.container__snap {
  scroll-snap-type: y mandatory;
}
.container__photo {
  scroll-snap-align: start;
}

.desc__text {
  padding: 10px;
  line-height: 150%;
  font-size: 18px;
}
.desc__link {
  color: #000;
}

.claim {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.claim__header {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 62.4px */
}
.claim__description {
  color: #282828;
  margin-top: 80px;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.72px;
}
.claim__link {
  color: #000;
  padding: 0 10px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  text-decoration: none;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.claim__link:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
  text-shadow: black 0px 0px;
}

.office {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.office__header {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 62.4px */
}
.office__description {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.72px;
}
.office__link {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  text-decoration: none;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.office__link:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
  text-shadow: black 0px 0px;
}
.office__pictures {
  width: 1360px;
  display: flex;
  justify-content: space-between;
}

.partner {
  padding: 10px;
}
.partner__container {
  display: grid;
  grid: auto-flow/1fr 1fr 1fr;
}
.partner__header {
  font-size: 24px;
}
.partner__subheader {
  font-weight: normal;
  padding: 0;
  line-height: 150%;
  font-size: 18px;
}
.partner__text {
  padding: 0;
  line-height: 150%;
  font-size: 18px;
}

.about__pictures {
  width: 1360px;
  display: flex;
  justify-content: space-between;
}

.works {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.works__header {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 62.4px */
}
.works__description {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.72px;
}
.works__link {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  text-decoration: none;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.works__link:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
  text-shadow: black 0px 0px;
}
.works__pictures {
  width: 1360px;
  display: flex;
  justify-content: space-between;
}
.works-list {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  width: 1360px;
}

.work__description--data {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.work__description--header {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  margin: 0;
}

.map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.map__header {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 62.4px */
}
.map__description {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.72px;
}
.map__link {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  text-decoration: none;
}
.map__link:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
  text-shadow: black 0px 0px;
}

.clients__name {
  list-style-type: none;
}

.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.team__header {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 62.4px */
}
.team__description {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.72px;
}
.team__link {
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  text-decoration: none;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.team__link:hover {
  cursor: pointer;
  transform: scale(105%);
  color: black;
  text-shadow: black 0px 0px;
}
.team__picture--mobile {
  display: none;
}

.section__header {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.privacy {
  margin-top: 200px;
}

@media screen and (max-width: 770px) {
  .main__article {
    width: 100%;
  }
  .main__description {
    width: 250px;
    font-size: 16px;
  }
  .main__article {
    flex-direction: column;
  }
  .copyrights__text {
    text-align: center;
  }
  .container__desc {
    display: block;
  }
  .office__pictures {
    width: auto !important;
  }
  .about__pictures {
    width: auto !important;
  }
  .office__pictures img:nth-child(3) {
    display: none;
  }
  .about__pictures img:nth-child(1) {
    display: none;
  }
}
@media screen and (max-width: 1380px) {
  .container__bigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 38px;
    min-height: 100vh;
    max-width: 1020px;
  }
  .office__pictures {
    width: 1020px;
  }
  .about__pictures {
    width: 1020px;
  }
  .picture {
    width: 330px;
  }
  .team__picture {
    width: 1020px;
  }
  #map {
    height: 400px;
    width: 1020px;
  }
  .works__pictures {
    width: 1020px;
  }
}
@media screen and (max-width: 1040px) {
  .container__bigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 38px;
    min-height: 100vh;
    max-width: 680px;
  }
  .container__smaller {
    max-width: 680px;
  }
  .office__pictures {
    width: 680px;
  }
  .about__pictures {
    width: 680px;
  }
  .picture {
    width: 330px;
  }
  .office__pictures img:nth-child(1) {
    display: none;
  }
  .about__pictures img:nth-child(2) {
    display: none;
  }
  .team__picture {
    width: 680px;
  }
  #map {
    height: 400px;
    width: 680px;
  }
  .works__pictures {
    width: 680px;
  }
}
@media screen and (max-width: 700px) {
  .container__bigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 38px;
    min-height: 100vh;
    max-width: 340px;
  }
  .container__smaller {
    max-width: 340px;
  }
  #map {
    height: 60vh;
    width: 330px;
  }
  .movie__container {
    width: 330px !important;
  }
  .map__header {
    font-size: 36px;
  }
  .works__header {
    font-size: 36px;
  }
  .office {
    margin: 0 0;
    padding: 100px 0;
  }
  .office__header {
    font-size: 36px;
  }
  .clients {
    width: 330px;
  }
  .clients__header {
    padding-top: 0px !important;
  }
  .team__header {
    font-size: 36px;
  }
  .team__picture {
    display: none;
  }
  .team__picture--mobile {
    display: block;
    width: 330px;
  }
  .works__pictures {
    width: 230px;
  }
  .works-list {
    flex-direction: column;
  }
  .project__img--mobile {
    width: 230px !important;
    height: 230px !important;
  }
  .project__container {
    width: 330px;
  }
  .claim__header {
    font-size: 36px;
  }
  .claim__description {
    font-size: 16px;
  }
  .nav__hamburger {
    top: 30px;
  }
}
.projects {
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.projects__header {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 62.4px */
}

.project {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.project__info {
  padding-right: 10px;
}
.project__img {
  object-fit: cover;
  width: 325px;
  height: 325px;
  margin: 7px 7px;
  transition: opacity 0.3s ease;
  opacity: 1;
  filter: saturate(80%);
}
.project__photo {
  object-fit: cover;
  width: 100%;
  max-height: 90vh;
  margin: 7px 7px;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.project__mainphoto {
  max-width: 100vw;
  max-height: 100vh;
}
.project__element {
  position: relative;
  transition: opacity 0.3s ease;
}
.project__container {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
.project__container:hover {
  opacity: 1;
}
.project__name {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.08px;
}
.project__title {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
}
.project__link {
  color: #282828;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.project__link:hover {
  cursor: pointer;
  transform: scale(101%);
  color: black;
  text-shadow: black 0px 0px;
}
.project__list {
  padding-left: 0;
}
.project__listelement {
  list-style-type: none;
  font-size: 14px;
}
.project__contenttitle {
  font-size: 12px;
  margin: 0;
}
.project__description--text {
  line-height: 150%;
  font-size: 18px;
}
.project__description--div {
  padding-left: 10px;
  display: flex;
  align-items: flex-end;
}

.top-padding {
  padding-top: 200px;
}

.proj__title {
  margin: 0;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 62.4px */
  max-width: 400px;
}

.opacity {
  opacity: 0.1;
}

.clients {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}
.clients__name {
  width: 400px;
  padding: 5px;
}

@media screen and (max-width: 1040px) {
  .clients {
    padding-bottom: 100px;
  }
  .clients__header {
    padding-top: 100px;
  }
}
.cookies__banner {
  background-color: #282828;
  color: white;
  padding: 30px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 400px;
  z-index: 10000;
  display: none;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cookies__header {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 10px;
}
.cookies__desc {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.cookies__link {
  color: #BCBCBC;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  padding: 10px 0;
}
.cookies__link:hover {
  cursor: pointer;
  transform: scale(100%);
  color: #E8E8E8;
  text-shadow: #E8E8E8 0px 0px;
}
.cookies__text {
  margin: 0;
}

.cookies__accept {
  background-color: #E8E8E8;
  color: #2F2F2F;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.cookies__accept:hover {
  background-color: #ffffff;
  text-shadow: #2F2F2F 0px 0px;
}

@media screen and (max-width: 770px) {
  .cookies__banner {
    bottom: 0;
    right: 0;
    width: 100vw;
  }
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background-color: #ffffff;
  scroll-snap-type: y mandatory;
  scroll-snap-align: start;
}

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

#detach-button-host {
  display: none !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

.arrow {
  position: absolute;
  bottom: 0px;
  margin: 0;
  display: flex;
  width: 100vw;
  justify-content: center;
  -webkit-animation: shake-vertical 3s ease-in-out both infinite;
  animation: shake-vertical 3s ease-in-out both infinite;
}
.arrow__button {
  background-color: transparent;
  border: none;
  width: 100px;
  height: 100px;
  padding: 0;
}
.arrow__button:hover {
  cursor: pointer;
}
.arrow__img {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
.arrow__mobile {
  display: none;
}

.movie {
  width: 434px;
  height: 565px;
  position: relative;
}
.movie__clip {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}
.movie__team {
  width: 1357px;
  height: 565px;
  position: absolute;
}
.movie__container {
  width: 1357px;
  height: 565px;
}

.marker__title {
  font-size: 24px;
  margin-top: 0;
}
.marker__desc {
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
}

@media screen and (max-width: 1380px) {
  .movie__container {
    width: 1020px;
  }
}
@media screen and (max-width: 1040px) {
  .movie__container {
    width: 680px;
  }
}
@media screen and (max-width: 770px) {
  .arrow__mobile {
    display: flex;
  }
  .movie__container {
    width: 680px;
  }
}
.pointer-disable {
  pointer-events: none;
}

/*# sourceMappingURL=main.css.map */
