@import url(../style/normalize.css);
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  min-height: 100vh; }
  .hero__sentence {
    color: #E9E560;
    font-family: "Baloo 2", cursive;
    font-weight: 300;
    font-size: 2em;
    margin: 0 auto;
    padding: 60px 0; }

.go-to {
  text-decoration: none;
  color: #E9E560;
  font-family: "Baloo 2", cursive;
  opacity: 0.5;
  font-weight: bolder;
  margin: 0 auto;
  height: 90vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  text-shadow: 0px 0px 10px #000000;
  transition: opacity 0.3s ease-in; }
  .go-to__button {
    font-size: 30px;
    transform: rotate(90deg); }
  .go-to__text {
    font-size: 30px; }

.go-to:hover {
  opacity: 1; }

.carousel {
  text-decoration: none;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .carousel__arrow {
    font-size: 50px;
    font-family: "Baloo 2", cursive;
    padding: 50px;
    text-decoration: none;
    transition: color 0.3s; }
  .carousel__button {
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    cursor: pointer; }
  .carousel__button:hover {
    color: #ffffff; }
  .carousel__gallery {
    position: absolute;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden; }
  .carousel__list {
    position: relative;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    height: 100%;
    transition: transform 0.5s ease-in-out; }
  .carousel__img {
    object-fit: cover;
    min-width: 100%;
    height: 100%; }
  .carousel__video {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1; }
  .carousel__videoHelper {
    position: relative;
    width: 100%;
    height: 100vh; }
  .carousel__videoHelper video {
    object-fit: cover;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    position: absolute; }
  .carousel__slide {
    position: absolute;
    top: 0;
    bottom: 0;
    min-width: 100%; }

.active {
  visibility: visible; }

@media only screen and (max-width: 620px) {
  .carousel__arrow {
    padding: 10px; } }

.header {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  z-index: 1; }
  .header__logo {
    margin: 20px 20px;
    padding: 0; }
  .header__title {
    color: #E9E560;
    font-family: "Baloo 2", cursive;
    font-weight: 900;
    font-size: 10em;
    margin: 0 auto;
    display: none; }

.carousel__navigator {
  margin: 0 20px; }

.carousel__indicator {
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: rgba(250, 250, 250, 0.3);
  margin: 0 4px;
  cursor: pointer; }

.carousel__indicator.currentSlide--js {
  background: #E9E560; }

#blycek {
  animation: levitate 2s ease-in-out infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
  box-shadow: 8px 8px 24px 0px #42445a; }

@keyframes levitate {
  70% {
    transform: translate(0, 0px); }
  90% {
    transform: translate(-535px, 0px) scale(0.85, 0.85); }
  100% {
    transform: translate(-535px, -147px) scale(0.85, 0.85); } }

.footer {
  background-color: #E9E560;
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-behavior: smooth; }
  .footer__up {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    margin: 50px; }

.contact {
  font-family: "Baloo 2", cursive;
  font-style: normal;
  font-weight: normal;
  font-size: 21px;
  line-height: 25px;
  text-align: right;
  color: #000000;
  padding: 0; }
  .contact__mail {
    color: #000000;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    font-size: 1.5em;
    font-family: "Baloo 2", cursive;
    text-decoration: none;
    transition: color 0.3s; }
  .contact__mail::after {
    content: "";
    width: 0;
    height: 3px;
    background-color: #000000;
    position: absolute;
    margin-top: -8px;
    top: 100%;
    left: 0;
    transition: width 0.3s; }
  .contact__mail:hover::after {
    width: 100%; }
  .contact__address {
    padding: 10px 0;
    margin: 0; }

.socials {
  display: inline-flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center; }
  .socials__item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px; }
  .socials__link {
    color: #a99bff;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s; }

.socials__link:hover {
  opacity: 0.8; }

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Baloo 2", cursive; }

.credits {
  font-family: "Baloo 2", cursive;
  display: flex;
  justify-content: space-between; }

@media only screen and (max-width: 900px) {
  footer svg {
    width: 300px; } }

@media only screen and (max-width: 620px) {
  .footer__up {
    flex-direction: column;
    margin: 50px 20px; }
  footer svg {
    width: 250px; } }

@media only screen and (max-height: 700px) {
  footer svg {
    width: 300px;
    height: 150px; } }

.about {
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #101010;
  font-family: "Baloo 2", cursive;
  color: #ffffff; }
  .about__title {
    color: #E9E560;
    font-size: 4em;
    margin: 0; }
  .about__text {
    font-size: 2em; }

.team {
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  background-color: white;
  font-family: "Baloo 2", cursive;
  color: black; }
  .team__title {
    font-size: 4em;
    color: black;
    position: relative;
    z-index: 1;
    width: fit-content;
    font-weight: bold; }
  .team__title::after {
    content: " ";
    display: block;
    background-color: #E9E560;
    width: 104%;
    height: 25px;
    position: absolute;
    box-sizing: inherit;
    z-index: -1;
    bottom: 5px;
    left: -2%; }

.person {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 50px; }
  .person__left {
    max-width: 600px; }
  .person__description {
    font-size: 1.5em; }
  .person__name {
    font-size: 2em;
    font-weight: 400; }
  .person__mail {
    font-size: 24px;
    color: black; }
  .person__mail:hover {
    font-weight: bold; }
  .person__image {
    max-width: 322px;
    height: 100%; }

@media (max-width: 800px) {
  .about__title {
    font-size: 4em; }
  .about__text {
    font-size: 2em; }
  .person {
    flex-direction: column; } }

.gallery {
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000000;
  font-family: "Baloo 2", cursive;
  color: #ffffff; }
  .gallery__title {
    color: #E9E560;
    font-size: 6em;
    margin: 0; }
  .gallery__text {
    font-size: 3em; }
  .gallery__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0; }
  .gallery__element {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    list-style-type: none;
    margin: 10px;
    width: 400px;
    height: 400px;
    filter: saturate(5%);
    transition: filter .5s; }
  .gallery__element:hover {
    cursor: pointer;
    filter: saturate(100%);
    -webkit-animation: shadow-drop-2-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: shadow-drop-2-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
  .gallery__image {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%; }
  .gallery__navigation {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 10px; }
  .gallery__button {
    background-color: black;
    color: #E9E560;
    font-family: "Baloo 2", cursive;
    border-color: #E9E560;
    border-style: solid;
    border-radius: 5px;
    padding: 10px 10px;
    margin: 0 5px;
    cursor: pointer;
    transition: opacity 0.3s ease-in; }
    .gallery__button__all {
      font-weight: 700; }
  .gallery__button:hover {
    background-color: #E9E560;
    color: black; }
  .gallery__button--open {
    background-color: #E9E560;
    color: black; }
  .gallery__button--unactive {
    border-color: gray;
    color: gray;
    background-color: black;
    font-family: "Baloo 2", cursive;
    border-style: solid;
    border-radius: 5px;
    padding: 10px 10px;
    margin: 0 5px;
    transition: opacity 0.3s ease-in; }

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9); }
  .modal__gallery {
    max-width: 100%;
    max-height: 100%;
    padding: 10px; }
  .modal__image {
    max-width: 100%;
    max-height: 92%; }
  .modal__title {
    font-weight: 400; }

@media (max-width: 500px) {
  .gallery {
    padding: 40px 0; }
    .gallery__element {
      width: 250px;
      height: 250px; } }

@keyframes levitate {
  70% {
    transform: translate(0, 0px); }
  90% {
    transform: translate(0, -10px); }
  100% {
    transform: translate(0, 0px); } }

.menu-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  height: 100px;
  padding-top: 40px;
  margin: 0 auto;
  z-index: 2; }
  .menu-bar__logo {
    height: 150px;
    margin-left: 50px; }
  .menu-bar__media {
    margin-right: 50px;
    display: flex;
    justify-content: center;
    align-items: center; }

.nav {
  position: fixed;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(4px);
  z-index: 2; }

.menu {
  display: inline-flex;
  list-style-type: none;
  padding-right: 40px; }
  .menu__item {
    font-family: "Baloo 2", cursive;
    text-decoration: none;
    font-size: 1em;
    color: #ffffff;
    padding-left: 20px;
    cursor: pointer;
    font-weight: 400;
    transition: opacity 0.3s ease-in; }
  .menu__link {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease-in; }
  .menu__special {
    text-decoration: none;
    color: black;
    background-color: #E9E560;
    padding: 5px 20px;
    border-radius: 25px; }
  .menu .menu__item:hover {
    opacity: 0.7; }
  .menu .menu__link:hover {
    color: #E9E560; }

.menu__button {
  cursor: pointer; }

@media (max-width: 800px) {
  .menu__button {
    display: block;
    visibility: visible; } }

@media (max-width: 600px) {
  .menu {
    display: none; } }

.clients {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  font-family: "Baloo 2", cursive;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center; }
  .clients__title {
    color: #000000;
    font-size: 6em;
    margin: 0;
    font-size: 4em;
    position: relative;
    z-index: 1;
    width: fit-content;
    font-weight: bold; }
  .clients__title::after {
    content: " ";
    display: block;
    background-color: #E9E560;
    width: 104%;
    height: 25px;
    position: absolute;
    box-sizing: inherit;
    z-index: -1;
    bottom: 5px;
    left: -2%; }
  .clients__logo {
    width: 200px; }
  .clients__list {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    flex-wrap: wrap; }
  .clients__item {
    list-style: none;
    padding: 10px; }

html {
  box-sizing: border-box;
  scroll-behavior: smooth; }

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

body {
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: color;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth; }

#map {
  height: 350px;
  width: 100%; }

.content-size {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%; }

.BecomeMemberBtn:visited,
.MobSampleBtn:visited {
  color: black; }

button {
  color: black; }
