@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
body {
  color: #5bc0be !important;
  background-color: #0b132b !important;
}

/* Navbar */
.nav-link {
  margin-left: 5px;
  color: #5bc0be !important;
}

.nav-link:hover {
  color: #6fffe9 !important;
  transition: 0.5s;
  transform: translateY(-2px);
}

.navbar {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(11, 19, 43, 0.8);
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  font-weight: 500;
}

/* --------- */
/* Font Styles */
p {
  line-height: 150%;
}

.text-font {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.text-font-sm {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* Side Menus */
.vl-left {
  border-left: 1px solid #5bc0be;
  height: 100px;
  position: relative;
  left: 46%;
  bottom: 0;
}

.vl-right {
  border-right: 1px solid #5bc0be;
  height: 100px;
  position: relative;
  right: 56%;
  bottom: 0;
}

.side-link i:hover {
  color: #5bc0be;
}

.side-link {
  text-decoration: none;
  color: #5bc0be;
}

#rightMenu a {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  margin-bottom: 15px;
}

#rightMenu a:hover {
  color: #5bc0be;
  transition: 0.5s;
  transform: translateY(-4px);
}

/* ------------ */
hr {
  border-radius: 5px;
  border: 2px solid #6fffe9 !important;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background-color: #1c2541;
  border: 3px solid #0b132b;
  border-radius: 8px;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0b132b;
}

/* --------------- */
::-moz-selection {
  background-color: rgba(37, 56, 90, 0.9);
}
::selection {
  background-color: rgba(37, 56, 90, 0.9);
}

/* Mobile view */
@media only screen and (min-device-width: 0px) and (max-device-width: 720px) {
  #rightMenu,
#leftMenu {
    visibility: hidden;
  }
}
/* Desktop view */
@media only screen and (min-device-width: 992px) {
  .mobile-view {
    visibility: hidden;
  }
}
.project-box {
  padding: 20px;
  background-color: #1c2541;
  border: 2px solid #1c2541;
}

.project-box:hover {
  border: 2px solid #6fffe9;
  transition: all 1s;
}

.form-control {
  box-shadow: none !important;
  border: none !important;
  background-color: #1c2541 !important;
  color: #5bc0be !important;
}

.fade-in-section {
  opacity: 0;
  margin-top: 20vh;
}

a {
  display: inline-block !important;
  color: inherit !important;
  text-decoration: none !important;
}

.form-button {
  border-radius: 10px;
  padding: 10px;
  border: 2px solid #1c2541;
  background-color: #1c2541;
  color: #5bc0be;
  width: 50%;
}

.form-button:hover {
  transition: all 0.2s;
  transform: scale(1.02);
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */