:root {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease-out;
  flex-direction: column;
}

#loading-percentage {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #514b82;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #514b82;
  animation:
    l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
  }

  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
  }

  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
  }

  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
  }

  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
  }
}

@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg)
  }

  49.99% {
    transform: scaleY(1) rotate(135deg)
  }

  50% {
    transform: scaleY(-1) rotate(0deg)
  }

  100% {
    transform: scaleY(-1) rotate(-135deg)
  }
}

button {
  cursor: pointer;
}

.circle1,
.circle2 {
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(196, 196, 196, 0.5)), to(rgba(196, 196, 196, 0.3)));
  background: linear-gradient(to right bottom, rgba(196, 196, 196, 0.5), rgba(196, 196, 196, 0.3));
  height: 25rem;
  width: 25rem;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.circle1 {
  bottom: 3%;
  right: 22%;
}

.circle2 {
  top: 3%;
  left: 22%;
}

@media (max-width: 1024px) {
  .circle1 {
    bottom: 3%;
    right: 15%;
  }

  .circle2 {
    top: 3%;
    left: 15%;
  }
}

@media (max-width: 900px) {
  .circle1 {
    bottom: 3%;
    right: 10%;
  }

  .circle2 {
    top: 3%;
    left: 10%;
  }
}

@media (max-width: 750px) {
  .circle1 {
    bottom: 3%;
    right: 5%;
  }

  .circle2 {
    top: 3%;
    left: 5%;
  }
}

@media (max-width: 600px) {
  .circle1 {
    bottom: 3%;
    right: -5%;
  }

  .circle2 {
    top: 3%;
    left: -5%;
  }
}

.content {
  min-height: 100vh;
  background-image: url('../assets/horizon.webp');
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (orientation: portrait) {
  .content {
    background-image: url('../assets/vertical.jpg');
    background-size: cover;
    background-position: center;
    /* position: relative !important; */
  }

  .content .glass {
    /* position: absolute !important; */
    transform: translateY(0%) !important;
  }
}

.content .glass {
  min-height: 55rem;
  width: 37rem;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(30, 30, 57, 0.7)), to(rgba(30, 30, 57, 0.3)));
  background: linear-gradient(to right bottom, rgba(30, 30, 57, 0.7), rgba(30, 30, 57, 0.3));
  z-index: 3;
  border-radius: 2rem;
  -webkit-backdrop-filter: blur(0.1rem);
  backdrop-filter: blur(0.1rem);
}

/* Responsive adjustments for small screens like iPhone 8 Plus */
@media (max-width: 414px) {

  .content {
    position: relative !important;
  }

  .content .glass {
    position: absolute !important;
    top: 3.5rem !important;
    max-height: 36rem !important;
    width: 34rem !important;
    border-radius: 1.5rem !important;
  }

  .content .glass main .homebl header .avatar {
    width: 10rem !important;
    height: 10rem !important;
  }

  .content .glass main .homebl header h1 {
    font-size: 2.3rem !important;
  }

  .content .glass main .homebl header p {
    font-size: 1.2rem !important;
  }
  
  .content .glass main .homebl header #info {
    font-size: 1.2rem !important;
    padding: 0.25rem 0 !important;
  }

  .content .glass main .homebl p {
    font-size: 1.4rem !important;
    padding: 1.5rem 2rem 1.5rem 2rem !important;
  }

  .content .glass main .homebl .socialmedia a {
    padding: 0.3rem 1.4rem !important;
    font-size: 1.4rem !important;
  }

  .content .glass main .homebl .verticalitem a {
    width: 32rem !important;
    padding: 0.3rem 0.5rem !important;
    font-size: 1.4rem !important;
  }
}

.content .glass .switchbutton {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background-color: #14a7cf;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.content .glass .switchbutton img {
  width: 2rem;
  filter: drop-shadow(white 0 0);
}

.content .glass main .homebl header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content .glass main .homebl header .avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  border: 2px #14a7cf solid;
  margin: 1.5rem 0 1rem 0;
  padding: 0.8rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.content .glass main .homebl header h1 {
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
}

.content .glass main .homebl header p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
}

/* MBTI info line adjustments */
.content .glass main .homebl header #info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.content .glass main .homebl header #info #mbti-icon {
  display: inline-block;
  margin-left: 0.5rem;
  cursor: pointer;
}

.content .glass main .homebl p {
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
  padding: 1.8rem 5rem 2rem 5rem;
}

.content .glass main .homebl .socialmedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.content .glass main .homebl .socialmedia a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #fff;
  background-color: #14a7cf;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 300;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: 0.5rem;
  position: relative;
  /* for tooltip positioning */
}

/* floating tooltip element */
#tooltip {
  position: absolute;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 1000;
}


.content .glass main .homebl .socialmedia a img {
  width: 2.8rem;
  filter: drop-shadow(white 0 0);
}

.content .glass main .homebl .socialmedia a:hover {
  background-color: #75445d;
}

.content .glass main .homebl .socialmedia #linkedin {
  margin-right: 2.2rem;
}

.content .glass main .homebl .verticalitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content .glass main .homebl .verticalitem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #fff;
  background-color: #14a7cf;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 300;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: 0.5rem;
  text-align: center;
}

.content .glass main .homebl .verticalitem a img {
  width: 2.8rem;
  filter: drop-shadow(white 0 0);
}

.content .glass main .homebl .verticalitem a:hover {
  background-color: #75445d;
}

.content .glass main .homebl .verticalitem #linkedin {
  margin-right: 2.2rem;
}

.content .glass main .saysbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: transparent;
  color: #fff;
  border-radius: 2rem 2rem 0 0;
}

.content .glass footer {
  color: #fff;
  background: transparent;
  padding: 1rem 2.5rem;
}

.content .glass footer h3 {
  font-size: 1rem;
  font-weight: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.4rem 1rem 0;
  border: rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.content .glass footer h5 {
  font-size: 1.2rem;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.4rem;
  padding: 0.7rem;
  margin-bottom: 1rem;
}

.content .glass footer .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

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