* {
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #31363F;
  box-shadow: 0 1px 10px black;
}
.navbar .navbar-toggler {
  border-color: #EEEEEE !important;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(238 238 238)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-brand {
  color: #EEEEEE !important;
}
.navbar .nav-link.active {
  opacity: 1 !important;
}
.navbar .nav-link {
  color: #EEEEEE !important;
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
.navbar .nav-link:hover {
  opacity: 0.9;
}
.navbar .navbar-brand {
  font-size: 30px;
}
.navbar .navbar-nav {
  font-size: 20px;
}

.socials {
  position: fixed;
  top: 120px;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin: 0 30px;
}
.socials a {
  width: 30px;
  margin: 10px 0;
  transition: opacity 0.15s ease-in-out;
}
.socials a:hover {
  opacity: 0.5;
}
.socials a svg {
  width: 100%;
  height: auto;
  stroke: #EEEEEE;
  fill: #31363F;
}
.socials a .email {
  fill: #EEEEEE;
}

.nav-item.resume {
  display: flex;
  align-items: center;
}

.nav-link.resume-button {
  opacity: 1 !important;
  color: #EEEEEE !important;
  background-color: #2099ea;
  box-shadow: 3px 5px 3px black !important;
  border-radius: 8px !important;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 120px !important;
  padding: 3px 7px !important;
}
.nav-link.resume-button:hover {
  color: #2099ea !important;
  border-radius: 3px !important;
  background-color: #EEEEEE !important;
  transform: scale(1.05) !important;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .resume-button {
    margin-top: 8px !important;
  }
  .socials {
    margin: 15px;
    top: 110px;
  }
  .socials a {
    width: 25px;
    margin: 5px 0;
  }
}
@media screen and (max-width: 550px) {
  .navbar-brand.ms-5 {
    font-weight: 900 !important;
    margin-left: 0 !important;
  }
  .navbar-toggler.me-5 {
    margin-right: 0 !important;
  }
}
* {
  max-height: 100vh;
  max-width: 100vw;
}

.about-page {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  background-color: #31363F;
  color: #EEEEEE;
}
.about-page .about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  padding: 30px;
  margin: 0;
}
.about-page .about-container .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.about-page .about-container .top .text-area {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 66%;
  height: 100%;
  margin-right: 10px;
}
.about-page .about-container .top .text-area h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.about-page .about-container .top .text-area p {
  font-size: 1.2rem;
}
.about-page .about-container .top .img-area {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-page .about-container .top .img-area .img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-left: 10px;
  border-radius: 15px;
}
@keyframes autoRun {
  from {
    left: 102vw;
  }
  to {
    left: -100%;
  }
}
.about-page .about-container .slider {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
}
.about-page .about-container .slider .icons {
  width: 100%;
  min-width: calc(90px * var(--quantity));
  display: flex;
  align-items: center;
  padding: 50px 0;
  position: relative;
}
.about-page .about-container .slider .icons .item {
  width: 90px;
  height: 85px;
  margin: 0 50px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  left: 100%;
  animation: autoRun 25s linear infinite;
  animation-delay: calc(25s / var(--quantity) * (var(--position) - 1));
}
.about-page .about-container .slider .icons .item .icon-tooltip {
  font-weight: bold;
  color: #EEEEEE;
  opacity: 0;
  transition: all 0.12s ease-in-out;
}
.about-page .about-container .slider .icons .item:hover .icon-tooltip {
  opacity: 1;
}
.about-page .about-container .slider .icons .item path {
  stroke: #31363F;
  fill: #EEEEEE;
}
.about-page .about-container .slider .icons .item svg {
  width: 60px;
  height: 60px;
}
.about-page .about-container .slider .icons .item i {
  font-size: 60px;
  color: #EEEEEE;
}

@media screen and (max-width: 991px) {
  * {
    max-height: none;
  }
  .about-page {
    height: auto;
  }
  .about-page .about-container {
    padding: 20px;
    width: 100%;
  }
  .about-page .about-container .top {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .about-page .about-container .top .text-area {
    width: 100%;
    margin-right: 0;
  }
  .about-page .about-container .top .text-area h1 {
    font-size: 1.7rem;
  }
  .about-page .about-container .top .text-area p {
    font-size: 0.9rem;
  }
  .about-page .about-container .top .img-area {
    padding: 0;
    order: -1;
    width: calc(100% - 50px);
    justify-content: start;
    align-self: start;
    margin-bottom: 15px;
  }
  .about-page .about-container .top .img-area .img {
    max-width: 450px;
  }
  .about-page .about-container .slider {
    display: none;
  }
}

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