@keyframes showTopText {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  40%, 60% {
    transform: translate3d(0, 50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes showTopTextSmall {
  0%, 23% {
    transform: translate3d(0, 100%, 0);
  }
  33%, 53% {
    transform: translate3d(0, 66%, 0);
  }
  66%, 83% {
    transform: translate3d(0, 33%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes disapear {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes showBottomText {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.animated-title {
  color: #222;
  height: 12vmax;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.animated-title > div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.animated-title > div div {
  font-size: 1.7vmax;
  padding: 6px 0;
  position: absolute;
}

.animated-title > div div span {
  display: block;
}

.animated-title > div.text-top {
  border-bottom: 2px solid black;
  top: 0;
}

.animated-title > div.text-top div {
  opacity: 0;
}

.animated-title > div.text-bottom {
  bottom: 0;
}

.animated-title > div.text-bottom div {
  opacity: 0;
}

.apple-container-wide {
  position: relative;
  width: 60%;
  height: 12vmax;
  margin-top: 48px;
  margin-left: 20%;
}

.apple-container {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.apple-container-small {
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 24px;
  width: 400px;
  height: 200px;
  z-index: 330;
  font-size: 2em !important;
}

.apple-container-small .text-top {
  border: none !important;
}

.apple-container-small .animated-title {
  height: 400px;
}

.apple-container-small .animated-title > div div {
  font-size: 32px !important;
}

.apple-container-small {
  opacity: 0;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.border {
  height: 369px;
  width: 290px;
  background: transparent;
  border-radius: 10px;
  transition: border 1s;
  position: relative;
}

.border:hover {
  border: 1px solid white;
}

.card {
  height: 379px;
  width: 300px;
  background: grey;
  border-radius: 10px;
  transition: background 0.8s;
  overflow: hidden;
  background: black;
  box-shadow: 0 35px 30px -30px #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
}

.card0 {
  background: url("https://i.pinimg.com/736x/8f/a0/51/8fa051251f5ac2d0b756027089fbffde--terry-o-neill-al-pacino.jpg") center center no-repeat;
  background-size: 300px;
}

.person0:hover .card0 {
  background: url("https://i.pinimg.com/736x/8f/a0/51/8fa051251f5ac2d0b756027089fbffde--terry-o-neill-al-pacino.jpg") left center no-repeat;
  background-size: 600px;
}

.card0 h2 {
  opacity: 0;
}

.card1 {
  background: url("https://i.pinimg.com/originals/28/d2/e6/28d2e684e7859a0dd17fbd0cea00f8a9.jpg") center center no-repeat;
  background-size: 300px;
}

.person1:hover .card1 {
  background: url("https://i.pinimg.com/originals/28/d2/e6/28d2e684e7859a0dd17fbd0cea00f8a9.jpg") left center no-repeat;
  background-size: 600px;
}

.card1 h2 {
  opacity: 0;
}

.card2 {
  background: url("https://i.pinimg.com/originals/ee/85/08/ee850842e68cfcf6e3943c048f45c6d1.jpg") center center no-repeat;
  background-size: 300px;
}

.person2:hover .card2 {
  background: url("https://i.pinimg.com/originals/ee/85/08/ee850842e68cfcf6e3943c048f45c6d1.jpg") left center no-repeat;
  background-size: 600px;
}

.card2 h2 {
  opacity: 0;
}

.person h2 {
  color: white;
  margin: 20px;
  opacity: 0;
  transition: opacity 1s;
}

.person {
  display: flex;
  flex-direction: column;
}

.person ul {
  margin-top: 32px;
  padding-left: 32px;
  font-size: 16px;
  font-weight: bold;
}

.card-text {
  opacity: 0;
  transition: opacity ease-out 1s;
}

.person:hover > .card-text, .card:hover h2 {
  opacity: 1;
}

.person span:not(.contact-language) {
  font-size: 24px;
  text-align: center;
  margin-bottom: 8px;
}

.contact-language {
  position: absolute;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  border: 2px solid white;
  height: 35px;
  width: 35px;
  padding: 1px;
  font-size: 18px;
  margin: 16px;
  border-radius: 8px;
  font-weight: bold;
}

.big-first-letter::first-letter {
  font-size: 70px;
  float: left;
  line-height: 60px;
  padding-right: 8px;
  margin-top: -3px;
}

.first::first-letter {
  font-weight: 300;
}

.second::first-letter {
  font-weight: 500;
}

.third::first-letter {
  font-weight: 600;
}

big-first-letter {
  word-spacing: 2px;
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  .big-first-letter {
    width: 100%;
    padding: 1rem;
  }
}
body {
  background: linear-gradient(#f5f5f7 var(--global-nav-collective-height), #fff 0%);
  height: 100%;
  position: relative;
  font-family: "Roboto", sans-serif !important;
  opacity: 0;
}

.webpage-content {
  display: flex;
  flex-direction: row;
  margin-top: 0px;
}

.custom-sidebar {
  height: 100%;
  width: 20%;
  font-size: 18px;
  position: sticky;
  top: 0;
}

.main-content {
  height: 100%;
  width: 60%;
  margin-top: 16px;
  opacity: 0;
}

.main-content:not(.index-content) {
  transition: opacity ease-out 1s;
}

.right-sidebar {
  height: 100%;
  width: 20%;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding-right: 48px;
  opacity: 0;
  transition: opacity ease-out 0.5s, transform ease-out 0.5s;
  margin-right: 20%;
}

.sidebar-section a {
  display: inline-block;
  text-decoration: none;
}

.sidebar-section a:hover {
  transform: scale(1.05);
}

.sidebar-section-small {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.sidebar-section-small a {
  display: inline-block;
  text-decoration: none;
}

.sidebar-section-small a:hover {
  transform: scale(1.05);
}

.text-light {
  font-weight: 270;
}

.text-normal {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

.projects-content img {
  max-height: 600px;
  width: 100%;
  margin: 6px;
  transition: all 0.5s ease;
}

footer {
  text-align: center;
  width: 100%;
  margin-top: 64px;
  margin-bottom: 32px;
  font-size: 15px;
}

.slideshow {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 100vw;
  min-height: 100vh;
  background-image: url("./photos/slideshow4.jpg");
  z-index: 11;
}

.about-section {
  padding: 16px;
  margin-top: 72px;
  position: relative;
}

.about-section p {
  margin-top: 0;
  font-size: 1em;
}

.first-about-section {
  font-size: 18px;
  position: relative;
}

.about-language {
  text-align: center;
  position: absolute;
  top: -3px;
  right: 5px;
  border: 1px solid black;
  height: 50px;
  width: 50px;
  padding: 2px;
}

.partners-picture-section {
  width: 50%;
  height: 60vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("./photos/project2.jpg");
}

.partners-text-section {
  width: 50%;
  height: 100%;
  padding: 16px;
  display: flex;
}

.partners-text-section a {
  display: inline-block;
  padding-bottom: 4px;
  text-decoration: none;
  margin-top: 16px;
}

.partners-text-section a:hover {
  transform: scale(1.03);
}

.partners-text-half {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-left: 96px;
  font-size: 1.1em;
}

.main-partner-section {
  display: flex;
}

.google-maps {
  margin-top: 32px;
  width: 100%;
  height: 600px;
  filter: grayscale(100%);
  border: 0;
}

.logo-container {
  display: flex;
  transition: transform ease-out 0.4s;
  font-size: 1.7vmax;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.logo-container:hover {
  cursor: pointer;
}

.logo-container-outer {
  transition: transform ease-out 0.4s;
}

.logo-text {
  margin-right: 3%;
  font-family: "Roboto", sans-serif;
}

.logo-text span {
  opacity: 0;
  transition: opacity ease-out 0.05s;
}

.logo-second-word {
  transform: translateX(-114%);
  transition: transform ease-out 0.18s;
}

.logo-third-word {
  transform: translateX(-86%);
  transition: transform ease-out 0.3s;
}

.logo-first-word::nth-child(3) {
  color: blue;
  font-size: 129px;
}

.logo-container p {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .sidebar-section {
    margin-right: auto;
  }
  .logo-container {
    font-size: 18px !important;
  }
  .projects-content img {
    min-width: unset;
    width: 100%;
    height: 100%;
    max-width: unset;
    object-fit: cover;
    background-position: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 16px;
  }
  .partners-picture-section {
    width: 100%;
    object-fit: cover;
  }
  .partners-picture-section img {
    max-height: 2000px;
  }
  .main-partner-section {
    display: block;
  }
  .partners-text-half {
    margin-left: 0;
    text-align: center;
  }
  .partners-text-section {
    width: 100%;
  }
  .right-sidebar {
    width: 0%;
  }
  .main-content {
    width: 100%;
  }
  .first-about-section {
    font-size: 1.7vmax;
  }
  .animated-title {
    width: 88%;
    margin-left: 6%;
    height: 128px;
    margin-right: 6%;
  }
  .webpage-content {
    margin-top: 0;
    padding: 2vw;
  }
  .apple-container-wide {
    margin-left: 0;
    margin-top: 0;
    height: 128px;
    margin-bottom: 1px;
    margin-top: 72px;
    width: 100%;
  }
  .animated-title > div div {
    font-size: 1.2rem;
  }
  .contact-content > div > div {
    margin-left: 0;
  }
  ul {
    padding-left: 8px;
  }
  .slideshow {
    background-attachment: inherit;
  }
}
@media (max-width: 600px) {
  .about-language {
    right: 2vw;
  }
  .contact-second-text img {
    position: unset !important;
    width: 100% !important;
    height: 100% !important;
  }
  .contact-second-text ul {
    padding-left: 16px;
    font-size: 14px !important;
  }
  .contact-second-text h4 {
    padding-left: 16px;
    font-size: 18px !important;
  }
}
@media (min-width: 1366px) {
  .logo-container {
    font-size: 1.7rem;
  }
  .animated-title > div div {
    font-size: 1.7rem;
  }
}
ul {
  margin: 0;
}

ul {
  list-style-type: none;
}

ul > li {
  text-indent: -5px;
}

ul > li:before {
  content: "-";
  text-indent: -5px;
  margin-right: 12px;
}

.contact-second {
  width: 100%;
  height: 100%;
}

.contact-second-text {
  width: 100%;
  position: relative;
  font-size: 1.15em;
  margin: 64px;
  margin-bottom: 0px;
}

.contact-content h4 {
  font-size: 1.3em;
}

.contact-second-text img {
  position: absolute;
  right: 10%;
  top: -25%;
  height: 130%;
  width: 200px;
  object-fit: cover;
}

#small_nav button, #small_nav a {
  margin-top: 8px;
}

#small_nav {
  z-index: 400;
}

#small_nav a:hover {
  transform: scale(1.05);
}

.projects-half {
  width: 50%;
  display: flex;
}

.project-empty {
  width: 50%;
  height: 1px;
  max-height: 500px;
}

.project-small-img {
  padding: 12px;
  width: 50%;
  max-height: 500px;
  height: 100%;
}

.project-big-img {
  padding: 12px;
  width: 100%;
  max-height: 500px;
  height: 100%;
}

.project-row {
  width: 100%;
  display: flex;
}

h3 {
  font-family: "Roboto", sans-serif !important;
}

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