body {
  margin: 0;
  padding: 0;
  /* height: 100vh; */
  width: calc(100vw - (100vw - 100%));
  background: black;
  font-family: test;
  overflow-x: hidden;
  color: white;
}
input {
  outline: none;
  border: none;
  border: solid rgb(0, 0, 0) 2px;
  height: 35px;
  padding-left: 10px;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
@font-face {
  font-family: test;
  src: url(./assets/fonts/static/Cabin-Bold.ttf);
}
.spacer {
  width: 50px;
  height: 50px;
}
.space-between {
  justify-content: space-between;
}
.space-evenly {
  justify-content: space-evenly;
}
.text-align {
  text-align: center;
}
.row {
  flex-direction: row;
}
.row-center {
  flex-direction: row;
  justify-content: center;
}
.row-align {
  flex-direction: column;
  align-items: center;
}
.col {
  flex-direction: column;
}
.col-align {
  flex-direction: column;
  align-items: center;
}
.col-center {
  flex-direction: column;
  justify-content: center;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.align {
  align-items: center;
}
.flex {
  display: flex;
}
.flex-end {
  display: flex;
  justify-content: end;
}

.app-bar {
  justify-content: space-between;
  width: 100%;
  background: white;
  position: relative;
  height: 200px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.app-bar:hover {
  .app-bar-logo-container {
    transform: translateX(calc(100% - 300px));
  }
  .app-bar-description {
    opacity: 0;
  }
}
.app-bar-logo {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  max-height: 300px;
}
.app-bar-logo-container {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  align-items: center;
  background: white;
  position: absolute;
  width: 100%;
  transition: transform 1s ease;
}

.routes {
  position: absolute;
  justify-content: space-evenly;
  width: 500px;
}
.route {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  padding: 5px;
  color: black;
  transition: transform 0.3s;
  cursor: pointer;
  font-weight: bold;
  font-size: larger;
}
.route:hover {
  transform: translateY(-2px);
}

.app-bar-description {
  transition: opacity 0.5s;
  position: absolute;
  right: 0;
  font-size: 30px;
  padding-right: 20px;
  color: black;
}
.main {
  width: 100%;
  flex: 50% 50%;
  padding-block: 100px;
  justify-content: space-between;
}
.main-image {
  opacity: 0;
  animation: fade-in 1s ease;
  animation-fill-mode: forwards;
  flex-grow: 1;
  margin-bottom: 50px;
}
.card-container {
  animation: slide-from-right 1s ease-in-out;
  flex-grow: 1;
}
.details {
  font-size: large;
  margin-bottom: 10px;
}

#icon {
  margin-right: 5px;
}

.who-are-we {
  color: black;
  background: white;
  width: 100%;
}

.footer {
  background: linear-gradient(black, rgba(255, 255, 255, 0.034));
  width: 100%;
  height: 300px;
}

.email {
  text-decoration-line: underline;
  text-decoration-color: white;
}

#arrow {
  color: black;
  animation: breathe 1s ease-out infinite normal;
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-from-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0px);
  }
}
