@import url(https://fonts.googleapis.com/css2?family=Archivo+Black&family=PT+Mono&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap);
/**
 * ----------------------------------------
 * animation rotate-scale-up
 * ----------------------------------------
 */
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
/**
 * ----------------------------------------
 * animation slide-fwd-center
 * ----------------------------------------
 */
@keyframes slide-fwd-center {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translateZ(160px);
  }
}
/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/**
 * ----------------------------------------
 * animation flip-in-hor-bottom
 * ----------------------------------------
 */
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background-color: #373a3e;
  overflow: hidden;
  height: 100vh;
}
@supports (height: 100dvh) {
  html, body {
    height: 100dvh;
  }
}

main {
  width: 100%;
  height: 100%;
  padding: 0;
}
@media (min-width: 992px) {
  main {
    padding: 25px;
  }
}
main .overlay {
  width: 100%;
  height: 100%;
  background-color: #1c1c1c;
}
main .overlay .body {
  flex: 1;
  width: 100%;
  background-image: url("/public/v3/images/bg3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  position: relative;
  border: 2px solid rgba(176, 176, 176, 0.5);
}
main .overlay .body .body-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.2);
  display: flex;
  flex-direction: column;
}
main .overlay .body .body-overlay .row-main {
  height: 100%;
}
main .overlay .body .simple-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: black;
  padding: 10px;
}

.window-animation .modal-dialog {
  animation: jello-horizontal 0.9s both;
}

main .folders {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, 1fr);
  gap: 5px;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 25px;
}
@media (min-width: 992px) {
  main .folders {
    grid-template-rows: repeat(7, 1fr);
  }
}
main .folders a:hover {
  text-decoration: none;
}
main .folders .folder {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 7px;
}
main .folders .folder.link svg {
  color: #e0e0e0;
}
main .folders .folder:hover svg {
  color: #e0e0e0;
}
main .folders .folder svg {
  width: 50px;
  color: #0a97b0;
  display: inline-block;
}
main .folders .folder span {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #b0b0b0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
}

main .row-main .right {
  background-color: #1c1c1c;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
main .row-main .right .terminal {
  display: flex;
  flex-direction: row;
}
main .row-main .right .terminal .cmd {
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #0a97b0;
}
main .row-main .right .terminal .blinking-cursor {
  font-size: 15px;
  font-weight: 800;
  color: #0a97b0;
  animation: blink 1s step-start infinite;
}
main .row-main .right .cover {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .row-main .right .cover .content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
main .row-main .right .cover .content .label {
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #0a97b0;
}
main .row-main .right .cover .content .name {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #e0e0e0;
}
main .row-main .right .cover .content .tagline {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1c1c1c;
}
main .row-main .right .cover .content .description {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #1c1c1c;
}

main .body .body-overlay .footer {
  width: 100%;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  main .body .body-overlay .footer {
    width: 50%;
  }
}
main .body .body-overlay .footer .wrapper {
  background: #CCD6F6;
  background: linear-gradient(179deg, rgba(204, 214, 246, 0.3) 0%, rgba(136, 146, 176, 0.3) 100%);
  padding: 10px;
  border-radius: 20px;
}
main .body .body-overlay .footer .wrapper .left {
  display: flex;
  gap: 10px;
}
main .body .body-overlay .footer .wrapper .left button {
  border: 0;
  padding: 5px;
  border-radius: 13px;
}
main .body .body-overlay .footer .wrapper .left button.main {
  background-color: transparent;
}
main .body .body-overlay .footer .wrapper .left button.main svg {
  color: #e0e0e0;
  filter: drop-shadow(0px 2px 7px rgb(28, 28, 28));
}
main .body .body-overlay .footer .wrapper .left button.plain {
  background-color: transparent;
}
main .body .body-overlay .footer .wrapper .left button.plain svg {
  filter: drop-shadow(0px 2px 7px rgb(28, 28, 28));
}
main .body .body-overlay .footer .wrapper .left button svg {
  width: 45px;
}

.prompt {
  background-color: #373a3e;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 500px;
  height: 100%;
  padding: 5px;
}
.prompt .command {
  word-wrap: break-word;
}
.prompt .command .cmd {
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #0a97b0;
}
.prompt .command .text {
  color: #b0b0b0;
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  background-color: transparent;
  letter-spacing: 0.5px;
}
.prompt .command .blinking-cursor {
  font-size: 15px;
  font-weight: 800;
  color: #0a97b0;
  animation: blink 1s step-start infinite;
}
.prompt .cover {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.prompt .cover .content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.prompt .cover .content .label {
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #0a97b0;
}
.prompt .cover .content .name {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #e0e0e0;
}
.prompt .cover .content .tagline {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #b0b0b0;
}
.prompt .cover .content .description {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #b0b0b0;
}

.window-position {
  transform: translate(20px, 30px);
}
@media (min-width: 768px) and (max-width: calc(992px - 0.02px)) {
  .window-position {
    transform: translate(40px, 50px);
  }
}
@media (min-width: 992px) {
  .window-position {
    transform: translate(100px, 100px);
  }
}

.window {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 90%;
  height: 80vh;
}
@media (min-width: 768px) and (max-width: calc(992px - 0.02px)) {
  .window {
    width: 80%;
    height: 600px;
    transform: translate(40px 50px);
  }
}
@media (min-width: 992px) {
  .window {
    width: 50%;
    height: 600px;
    transform: translate(100px 100px);
  }
}
.window .window-content {
  animation: flip-in-hor-bottom 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  border-radius: 0px;
  border: 3px solid rgb(55, 58, 62);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.window .window-content .task-bar {
  height: 35px;
  width: 100%;
  background-color: #373a3e;
  display: flex;
  flex-direction: row;
  gap: 5px;
  position: relative;
  align-items: center;
  justify-content: end;
}
.window .window-content .task-bar .controls {
  display: flex;
  gap: 5px;
  flex-direction: row;
  align-items: center;
  padding: 0px 10px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.window .window-content .task-bar .controls span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.window .window-content .task-bar .controls span svg {
  width: 15px;
}
.window .window-content .task-bar .controls span.hide {
  background-color: #d9534f;
}
.window .window-content .task-bar .controls span.hide svg {
  color: white;
}
.window .window-content .task-bar .controls span.fullscreen {
  background-color: #5cb85c;
}
.window .window-content .task-bar .controls span.fullscreen svg {
  color: white;
}
.window .window-content .task-bar .controls span.minimize {
  background-color: #f0ad4e;
}
.window .window-content .task-bar .controls span.minimize svg {
  color: black;
}
.window .window-content .task-bar .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.window .window-content .task-bar .title span {
  color: #b0b0b0;
  font-size: 15px;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.window .window-content .window-body {
  flex: 1;
  overflow-y: auto;
}
.window .window-content .window-body .inside-content {
  min-height: 100%;
}

.terminal {
  background-color: #1c1c1c;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 500px;
  height: 100%;
  padding: 5px;
}
.terminal .command {
  align-items: center;
  gap: 7px;
  word-wrap: break-word;
}
.terminal .command .cmd {
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #0a97b0;
}
.terminal .command .blinking-cursor {
  font-size: 15px;
  font-weight: 800;
  color: #0a97b0;
  animation: blink 1s step-start infinite;
}
.terminal .command .text {
  color: #e0e0e0;
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  background-color: transparent;
  letter-spacing: 0.5px;
  flex: 1;
}
.terminal .command .terminal-input {
  border: 0;
  color: #e0e0e0;
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  background-color: transparent;
  letter-spacing: 0.5px;
  flex: 1;
}
.terminal .command .terminal-input:focus {
  border: 0;
  outline: none;
}

.directory-listing span {
  margin: 5px;
  font-size: 15px;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.5px;
}
.directory-listing span.folder {
  color: #0a97b0;
}
.directory-listing span.link {
  color: #e0e0e0;
}

.command-not-found {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.command-not-found span {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
}
.command-not-found span.error {
  color: #d9534f;
}
.command-not-found span.message {
  color: #f0ad4e;
}
.command-not-found span.command {
  color: #0a97b0;
}

.terminal-help .command-info {
  display: flex;
  gap: 3px;
}
.terminal-help .command-info span {
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
}
.terminal-help .command-info span.command {
  color: #0a97b0;
}
.terminal-help .command-info span.description {
  margin-left: 10px;
  color: #f0ad4e;
}

.about-body {
  background-color: #1c1c1c;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-body .profile-div {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.about-body .profile-div .profile-pic {
  max-width: 150px;
  height: 150px;
  transition: 0.5s;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.about-body .profile-div .profile-pic:hover {
  box-shadow: none !important;
}
.about-body .content {
  margin-top: 20px;
}
.about-body .content .about-title {
  font-size: 20px;
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  color: #e0e0e0;
  letter-spacing: 0.5px;
  text-shadow: 2px 3px 3px rgba(224, 224, 224, 0.4);
  margin-bottom: 10px;
}
.about-body .content p {
  font-size: 14px;
  line-height: 25px;
  color: #b0b0b0;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (min-width: 768px) {
  .about-body .content p {
    font-size: 18px;
  }
}

.skills-body {
  background-color: #1c1c1c;
  padding: 15px;
  border-bottom: 0px;
}
.skills-body .menulist {
  margin: 0;
}
.skills-body .menulist .nav-link {
  border: 0;
  background-color: transparent;
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #b0b0b0;
  transition: 0.3s;
  border-bottom: 1px solid #b0b0b0;
}
.skills-body .menulist .nav-link.active {
  background-color: transparent;
  color: #0a97b0;
  border-bottom: 1px solid #0a97b0;
}
.skills-body .skill-content .tab-pane {
  padding: 10px 0px;
}
@media (min-width: 992px) {
  .skills-body .skill-content .tab-pane {
    padding: 0.5rem 1rem;
  }
}
.skills-body .skill-content .tab-pane .mskill {
  display: flex;
  gap: 5px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 150px;
  margin: 5px;
  background-image: linear-gradient(to right top, #000000, #141113, #1d1d21, #24292f, #2a363b);
  will-change: transform;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
}
@media (min-width: 992px) {
  .skills-body .skill-content .tab-pane .mskill {
    width: 150px;
  }
}
.skills-body .skill-content .tab-pane .mskill .title {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 600;
  color: #0a97b0;
}
.skills-body .skill-content .tab-pane .mskill .rating {
  display: flex;
  gap: 1px;
}
.skills-body .skill-content .tab-pane .mskill .rating svg {
  color: #0a97b0;
  width: 15px;
}

.experience-body {
  background-color: #1c1c1c;
  padding: 15px;
  border-bottom: 0px;
}
.experience-body .menulist {
  margin: 0;
}
.experience-body .menulist .nav-link {
  border: 0;
  background-color: transparent;
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #b0b0b0;
  transition: 0.3s;
  border-bottom: 1px solid #b0b0b0;
}
.experience-body .menulist .nav-link.active {
  background-color: transparent;
  color: #0a97b0;
  border-bottom: 1px solid #0a97b0;
}
.experience-body .experience-content .tab-pane {
  padding: 1.5rem 1rem;
}
.experience-body .experience-content .tab-pane .exp-head {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0px;
}
.experience-body .experience-content .tab-pane .exp-head span {
  color: #0a97b0;
}
.experience-body .experience-content .tab-pane .exp-period {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
  color: #b0b0b0;
  margin: 0px;
}
.experience-body .experience-content .tab-pane .exp-desc {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
  color: #b0b0b0;
  margin-top: 15px;
  margin-left: 25px;
}
.experience-body .experience-content .tab-pane .exp-desc li::marker {
  color: #0a97b0;
}
.experience-body .experience-content .tab-pane .projects .p-head {
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  color: #0a97b0;
}
.experience-body .experience-content .tab-pane .projects .project-div {
  background-color: #1c1c1c;
  border: 1px solid #0a97b0;
  margin: 15px 0px;
}
.experience-body .experience-content .tab-pane .projects .project-div .p-header {
  padding: 10px;
  border-bottom: 1px solid #0a97b0;
}
.experience-body .experience-content .tab-pane .projects .project-div .p-header .p-title {
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  color: #0a97b0;
  margin: 0;
}
.experience-body .experience-content .tab-pane .projects .project-div .p-header .p-type {
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 15px;
  color: #b0b0b0;
}
.experience-body .experience-content .tab-pane .projects .project-div .p-body {
  padding: 10px;
}
.experience-body .experience-content .tab-pane .projects .project-div .p-body .description {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #e0e0e0;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.experience-body .experience-content .tab-pane .projects .project-div .p-body .responsibilities {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #b0b0b0;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.experience-body .experience-content .tab-pane .projects .project-div .p-body .responsibilities ul {
  margin-left: 20px;
}

.projects-body {
  background-color: #1c1c1c;
  padding: 15px;
  border-bottom: 0px;
  min-height: 100%;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.projects-body .row {
  align-items: stretch;
}
.projects-body .row .column {
  padding: 10px;
}
.projects-body .row .column .project-card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  height: -moz-fit-content;
  height: fit-content;
}
.projects-body .row .column .project-card .banner {
  width: 100%;
  height: 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px 0px;
}
.projects-body .row .column .project-card .banner .banner-overlay {
  width: 100%;
  height: 100%;
  background: #a30000;
  background: linear-gradient(90deg, rgba(163, 0, 0, 0.5) 0%, rgba(207, 70, 71, 0.5) 50%);
}
.projects-body .row .column .project-card .info {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.projects-body .row .column .project-card .info .name {
  margin: 0;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #e0e0e0;
}
.projects-body .row .column .project-card .info .description {
  font-size: 15px;
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.5px;
  color: #b0b0b0;
}
.projects-body .row .column .project-card .info .tech {
  padding: 10px 0px;
}
.projects-body .row .column .project-card .info .tech .badge {
  margin: 5px;
  background-image: linear-gradient(to right top, #000000, #141113, #1d1d21, #24292f, #2a363b);
  color: #0a97b0;
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3px;
}
.projects-body .row .column.os-project .oscard {
  border: 1px solid #0a97b0;
  border-radius: 10px;
}
.projects-body .row .column.os-project .oscard .osheader {
  border-bottom: 1px solid #0a97b0;
  padding: 10px;
}
.projects-body .row .column.os-project .oscard .osheader .osname {
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  color: #0a97b0;
  margin: 0;
}
.projects-body .row .column.os-project .oscard .osbody {
  padding: 10px;
}
.projects-body .row .column.os-project .oscard .osbody .oslinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px 0px;
}
.projects-body .row .column.os-project .oscard .osbody .oslinks svg {
  width: 50px;
  color: #0a97b0;
}
.projects-body .row .column.os-project .oscard .osbody .osdescription {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: #b0b0b0;
  margin: 0;
}
.projects-body .row .column.os-project .oscard .osfooter {
  padding: 10px;
}
.projects-body .row .column.os-project .oscard .osfooter .ostech {
  padding: 10px 0px;
}
.projects-body .row .column.os-project .oscard .osfooter .ostech .badge {
  margin: 5px;
  border: 0.5px solid #0a97b0;
  color: #0a97b0;
  font-family: "PT Mono", monospace;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3px;
  padding: 4px 8px;
}

.contact-body {
  background-color: #1c1c1c;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contact-body .info {
  text-align: center;
}
@media (min-width: 992px) {
  .contact-body .info {
    width: 80%;
  }
}
.contact-body .info .title {
  font-family: "Archivo Black", sans-serif;
  font-style: normal;
  color: #0a97b0;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 4px 3px 3px rgba(10, 151, 176, 0.3);
}
@media (min-width: 992px) {
  .contact-body .info .title {
    font-size: 42px;
  }
}
.contact-body .info .text {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #b0b0b0;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-align: center;
}
.contact-body .info .contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  justify-content: start;
}
@media (min-width: 992px) {
  .contact-body .info .contact {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.contact-body .info .contact .contact-card {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.contact-body .info .contact .contact-card .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0a97b0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .contact-body .info .contact .contact-card .icon {
    width: 40px;
    height: 40px;
  }
}
.contact-body .info .contact .contact-card .icon svg {
  color: #1c1c1c;
  width: 15px;
}
.contact-body .info .contact .contact-card .label {
  color: #b0b0b0;
  font-size: 15px;
  font-family: "PT Mono", monospace;
  font-style: normal;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.contact-body .social {
  position: absolute;
  bottom: 15px;
  height: 40px;
  border-radius: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 25px 25px;
}
.contact-body .social .wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 100%;
  align-items: center;
}
.contact-body .social .wrapper a button {
  border: 0;
  width: 30px;
  height: 30px;
  background-color: #0a97b0;
  border-radius: 50%;
  box-shadow: 4px 3px 3px rgba(10, 151, 176, 0.3);
  transition: 0.3s;
}
.contact-body .social .wrapper a button svg {
  width: 15px;
  color: #1c1c1c;
  transition: 0.3s;
  fill: #1c1c1c;
}
.contact-body .social .wrapper a:hover button {
  box-shadow: none;
  background-color: #373a3e;
}
.contact-body .social .wrapper a:hover button svg {
  color: #e0e0e0;
  fill: #e0e0e0;
}

.navbar {
  background-color: transparent;
  height: 25px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
  position: relative;
}
.navbar .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.navbar .left.show .menu {
  background-color: #373a3e;
}
.navbar .left .menu {
  background-color: transparent;
  border: 0;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  padding: 0px 10px;
}
.navbar .left .menu svg {
  width: 15px;
  color: #e0e0e0;
}
.navbar .left .menu span {
  font-size: 15px;
  color: #e0e0e0;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.5px;
}
.navbar .left .dropdown-menu {
  background-color: #373a3e;
}
.navbar .left .dropdown-menu .dropdown-item {
  color: #b0b0b0;
}
.navbar .left .dropdown-menu .dropdown-item:hover {
  background-color: #0a97b0;
  color: #1c1c1c;
}
.navbar .left .icon {
  border: 0;
  background-color: transparent;
}
.navbar .left .icon svg {
  width: 20px;
  color: #0a97b0;
}
.navbar .date-time {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar .date-time span {
  color: #b0b0b0;
  font-size: 13px;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.navbar .right .utils {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0px 10px;
}
.navbar .right .utils .battery {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.navbar .right .utils .battery span svg {
  width: 15px;
  color: #e0e0e0;
}
.navbar .right .utils .battery span.charging svg {
  color: #5cb85c;
}
.navbar .right .utils .battery .level {
  color: #b0b0b0;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.navbar .right .utils .profile {
  border: 0;
  background-color: transparent;
}
.navbar .right .utils .profile svg {
  fill: #0a97b0;
  width: 15px;
}
