@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: large;
  line-height: 1.6;
  background-color: black;
  background-size: cover;
  color: white;
}

main {
  padding-left: 1%;
  padding-right: 1%;
}

article {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 1rem;
  flex-wrap: wrap;
}

h2, h3 {
  margin-bottom: 1rem;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll-watcher {
  to {
    scale: 1 1;
  }
}
@keyframes fade-in {
  from {
    scale: 0.1;
    opacity: 0.1;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
@keyframes move-up {
  from {
    margin-top: 25%;
  }
  to {
    margin-top: -5%;
  }
}
@keyframes go-up {
  0% {
    transform: translateY(30vh);
  }
  100% {
    transform: translateY(-50vh);
  }
}
@keyframes move-left {
  0% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(calc(0% - 100vw));
  }
  100% {
    transform: translateX(calc(0% - 100vw));
  }
}
@keyframes move-right {
  0% {
    transform: translateX(0);
    transform: translateY(0);
  }
  100% {
    transform: translateX(calc(100% + 100vw));
  }
}
@keyframes move-down {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }
  70% {
    transform: translateY(calc(100vh - 20%));
    opacity: 1;
  }
  80%, 100% {
    opacity: 1;
    scale: 2;
  }
}
.initials {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 8vw;
  animation-name: go-up;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}

.splash-wrapper {
  overflow: hidden;
  text-align: center;
  width: 100%;
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 2s;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  padding-bottom: 2rem;
}

.slide-right {
  animation: move-right 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
}

.slide-left {
  animation: move-left 1s linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
}

#tagline {
  text-align: center;
  color: white;
}

.fixed-top-bar {
  height: 50px;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: black;
}

.scroll-watcher {
  height: 1px;
  background-color: rgb(35, 217, 196);
  width: 100%;
  scale: 0 1;
  animation: scroll-watcher linear;
  animation-timeline: scroll();
}

.logo {
  width: 50px;
  height: 50px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expand {
  min-height: 200px;
  margin: auto;
  scale: 0.7;
  opacity: 0.7;
  animation: fade-in linear forwards;
  animation-timeline: view();
  animation-range-start: normal;
  animation-range-end: 50%;
}

.picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E3B97B;
  background-color: #5A5757;
  border-radius: 20px;
  width: 70px;
  height: 70px;
}

.first-name,
.last-name {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  font-size: 10vw;
}

.last-name {
  color: white;
}

.first-name,
.first-initial {
  color: rgb(35, 217, 196);
}

.first-name,
.last-name {
  overflow: hidden;
}

.card {
  box-sizing: border-box;
  padding: 1%;
  border: 1px solid white;
  border-radius: 5px;
  background-color: white;
  padding: 1.5rem;
}

.tag {
  background-color: transparent;
  border-radius: 15px;
  padding: 0.5rem;
  border: 1px solid grey;
  margin: 5px;
}

.flex_col {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 1rem;
  gap: 1rem;
}

.page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  min-height: 75vh;
  margin: auto;
}

.profile {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile img {
  --s: 210px;
  /* the size of the image */
  --b: 8px;
  /* the border thickness*/
  --g: 14px;
  /* the gap */
  --c: rgb(35, 217, 196);
  /* the color */
  width: var(--s);
  aspect-ratio: 1;
  outline: calc(var(--s) / 2) solid rgba(0, 0, 0, 0.6);
  outline-offset: calc(var(--s) / -2);
  cursor: pointer;
  transition: 0.3s;
}
.profile img:hover {
  outline: var(--b) solid var(--c);
  outline-offset: var(--g);
}

.gradient-button {
  background: linear-gradient(to right, white, rgb(27, 27, 27));
  border-radius: 25px;
  width: fit-content;
  padding: 2px;
  text-align: center;
}
.gradient-button button {
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: 25px;
  width: fit-content;
  border: none;
  color: white;
  font-weight: 400;
  background-color: black;
}
.gradient-button:hover {
  background: linear-gradient(to left, white, rgb(27, 27, 27));
}

.flex-column-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.flex-row-layout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}

.big-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.clip-ellipse {
  clip-path: ellipse(calc(100% - 100px) calc(100% - 400px) at center);
}

.banner {
  position: absolute;
  width: 180px;
  height: 80px;
  background-color: #873e23;
  right: 0;
  bottom: 0;
}
.banner__circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
}

#certificates {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  min-width: 320px;
  min-height: 280px;
  margin-top: 5rem;
}

.certification {
  position: relative;
  width: 300px;
  height: 200px;
  background-color: #4a4a4a;
  color: white;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 6px 1px ivory;
  transition: all 0.4s ease-in-out;
  transform-origin: center center;
}
.certification__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: 60%;
  padding: 20px 0 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.certification__title {
  font-size: 0.75rem;
  font-weight: bold;
}
.certification__title a {
  color: white;
  text-decoration: none;
}
.certification__title a:hover {
  text-shadow: 1px 1px 2px black;
  text-decoration: underline;
}
.certification__details {
  font-size: 0.6rem;
  line-height: 1.1;
  margin: 0;
}
.certification__date {
  font-size: 0.7rem;
  margin: 0;
}
.certification__type {
  width: 200px;
  height: 100px;
  color: rgb(35, 217, 196);
  font-size: 2.5rem;
  font-weight: bolder;
  display: flex;
  letter-spacing: -2px;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg) translate(-50%, -50%);
  transform-origin: top left;
  position: relative;
  left: 83%;
  top: 50%;
  line-height: 0.9;
}

.certification.stacked {
  position: absolute;
  top: 0;
  left: 0;
}
.certification.stacked:hover {
  cursor: pointer;
}

.certification.expanded {
  transform: scale(1) translate(0, 0);
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
}

.section-row {
  min-height: 200px;
  width: 90%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: auto;
  margin-top: 3rem;
}
.section-row__title {
  text-align: center;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  font-size: 1.8rem;
  padding-bottom: 2rem;
}

footer {
  text-align: center;
}

.footer {
  padding: 1rem;
  border-top: 1px solid grey;
}
.footer a {
  padding: 5px;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out;
}
.footer a:hover {
  transform: translateY(-3px);
}

.masonry {
  width: 80%;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.masonry__item1, .masonry__item3 {
  grid-row: span 1;
  grid-column: span 1;
}
.masonry__item2 {
  grid-row: span 2;
  grid-column: span 1;
}
.masonry__item4 {
  grid-row: span 1;
  grid-column: span 2;
}
.masonry img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}
.masonry img:hover {
  filter: grayscale(0);
}

.skills {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.skills__skill {
  border: 1px solid white;
  padding: 2rem;
  max-width: 500px;
}

.process__items {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.process__index {
  font-size: 2rem;
  font-weight: 600;
}
.process__item {
  width: 100%;
  max-width: 500px;
  border: 1px solid white;
  padding: 2rem;
}

.wide-block {
  width: 90%;
  padding: 1rem;
  margin: auto;
}

.about__desc {
  border: 1px solid white;
  padding: 2rem;
  max-width: 500px;
}
.about__photo {
  max-width: 500px;
  height: 100%;
  padding: 2rem;
  object-fit: cover;
  border: 1px solid white;
  align-self: stretch;
}
.about__photo img {
  border-radius: 49%;
  width: 200px;
  height: 200px;
}

.long-box {
  box-sizing: border-box;
  padding: 1%;
  border: 1px solid white;
  border-radius: 5px;
  grid-column: span 1;
  grid-row: span 7;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 5%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.cards {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.cards__item {
  color: black;
  box-sizing: border-box;
  padding: 1%;
  border: 1px solid white;
  border-radius: 5px;
  background-color: white;
  width: 250px;
  margin-bottom: 1rem;
}
.cards__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

#menuBar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-variant: small-caps;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

.logo {
  padding-left: 15px;
}

.links {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.topnav {
  overflow: hidden;
  padding-right: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

/* Style the links inside the navigation bar */
.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
}

.topnav a:hover {
  font-weight: 700;
}

.topnav a.active {
  font-weight: 700;
}

/* Hide the link that should open and close the topnav on small screens */
#menuIcon {
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav {
    display: none;
  }
  #menuBar a.icon {
    display: block;
  }
  #menuIcon {
    display: block;
  }
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {
    margin-top: 30px;
    position: relative;
    display: block;
    flex-direction: column;
    background-color: black;
  }
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
.ampifin {
  width: 100%;
  margin: auto;
  color: black;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(115, 204, 231) 45%, rgb(3, 3, 3) 100%);
}
.ampifin a {
  color: white;
}
.ampifin__title {
  font-size: 15vw;
  color: rgb(64, 212, 200);
}
.ampifin__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.ampifin__buttons button {
  padding: 0.7rem;
  border-radius: 20px;
  border: 1px solid grey;
  background-color: transparent;
}
.ampifin__logo-insp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.ampifin__logo-insp h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.ampifin__logo-insp img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 20px;
  padding: 1rem;
}
.ampifin__block {
  box-sizing: border-box;
  padding: 1%;
  border: 1px solid white;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  border: 0px;
  padding-top: 50px;
}
.ampifin__block h3 {
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
  margin-bottom: 1.8rem;
}
.ampifin__block h4 {
  margin-bottom: 1.5rem;
}
.ampifin__box {
  box-sizing: border-box;
  padding: 1%;
  border: 1px solid white;
  border-radius: 5px;
  border-radius: 20px;
  padding: 2rem;
  width: 18vw;
  border: 4px solid #91DFF1;
}
.ampifin__approach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}
.ampifin__card {
  background-color: unset !important;
  border-radius: 25px;
  height: 300px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}
.ampifin__card__title {
  text-align: right;
  font-size: 2.5rem;
  color: grey;
}
.ampifin__card__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.ampifin__card__tags span {
  font-size: 0.6rem;
}
.ampifin__timeline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1.2rem;
}
.ampifin__timeline h4 {
  font-size: 0.9rem;
}
.ampifin__fontsncolors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 3rem;
  justify-content: space-evenly;
}

.colorbox {
  box-sizing: border-box;
  padding: 1%;
  border: 1px solid white;
  border-radius: 5px;
  border: 0px;
  color: white;
  min-height: 120px;
  min-width: 15%;
  border-radius: 10px;
  text-align: center;
}

.colorbox p {
  margin-top: -40px;
}

.font-card {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1rem;
  width: 400px;
  height: 300px;
  border-radius: 20px;
  background-color: white;
  color: black;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

#branding,
#geobook,
#userflow {
  color: white;
}

/*-----------------------------------------------------------------------*/
.haven {
  background-color: white;
  color: black;
}
.haven a {
  color: black;
}
.haven__title {
  font-size: 5vw;
}
.haven__video {
  border: 1px solid grey;
  height: 100%;
  width: 100%;
}
.haven__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.haven__dark {
  background-color: #C09771;
  border-radius: 8px;
  color: white;
}
.haven__card {
  background-color: white;
  border-radius: 15px;
  padding: 1rem;
}
.haven__section {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
  justify-content: center;
}
.haven__block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
  margin-bottom: 1rem;
}
.haven__block img {
  width: 300px;
}
.haven__block p {
  max-width: 500px;
  padding: 1rem;
  line-height: 1.8;
}
.haven__fontsncolors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-evenly;
}
.haven__block-title {
  font-size: 1.8rem;
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.haven__block-title h3 {
  letter-spacing: 1.5px;
}
.haven__block-title span {
  letter-spacing: 1.8px;
}
.haven__block-title span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #A56427;
  /* Box color */
  margin-right: 5px;
  /* Space after the box */
}

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*-----------------------------------------------------------------------*/
.stirred {
  background-color: black;
  color: white;
}
.stirred__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stirred__image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 5px;
  border-radius: 20px;
}
.stirred__image-half {
  width: 100%;
  height: 320px;
  object-fit: cover;
  padding: 5px;
  border-radius: 20px;
}
.stirred__wf {
  height: 500px;
  object-fit: cover;
  padding: 5px;
  border-radius: 20px;
}
.stirred__bubbles {
  display: block;
  position: relative;
  padding: 1rem;
}
.stirred__bubble {
  position: absolute;
  width: 300px;
  height: 100px;
  font-size: 0.6rem;
  padding: 0.4rem 1rem 1rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgb(252, 175, 65) 0%, rgb(68, 65, 65) 100%);
}
.stirred__bubble h5 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 600px) {
  .font-card {
    width: 80%;
    margin: auto;
    margin-bottom: 1rem;
  }
  .haven__card {
    margin: 1rem;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 1.2;
  }
  h2 {
    font-size: 20px;
    line-height: 1;
  }
  h3 {
    font-size: 28px;
    line-height: 1;
  }
}
@media screen and (max-width: 480px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  #tagline {
    text-align: center;
    color: white;
    font-size: 2vh;
  }
  p {
    font-size: 14px;
    line-height: 1.1;
  }
  h2 {
    font-size: 28px;
    line-height: 1;
  }
  h3 {
    font-size: 24px;
    line-height: 1;
  }
  .wide-block {
    width: 100%;
    padding: 0;
  }
  .masonry {
    width: 100%;
    padding: 0;
  }
  .masonry__item4 {
    max-height: 130px;
  }
  .about__photo img {
    border-radius: 49%;
    width: 160px;
    height: 160px;
  }
  .profile img {
    --s: 200px;
    --b: 8px;
    --g: 8px;
    --c: rgb(35, 217, 196);
    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s) / 2) solid rgba(0, 0, 0, 0.6);
    outline-offset: calc(var(--s) / -2);
    cursor: pointer;
    transition: 0.3s;
  }
  .big-icon {
    width: 80px;
    height: 80px;
  }
}

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