body {
  font-family: "Manrope", sans-serif !important;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  height: 100vh;
}

/* Featured Section */
.featured-project-title {
  padding: 5%;
}

@media only screen and (max-width: 400px) {
  .featured-project-title {
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

/* Navbar */
.navbar-fixed-top.scrolled {
  background-color: #fff !important;
  transition: background-color 200ms linear;
}

.bg-navbar {
  background-color: transparent !important;
}

@media all and (max-width: 1000px) {
  .bg-navbar {
    background-color: #212529 !important;
  }
}

/* Misc */
.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Cards */
.project-card {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* border-radius: 0; */
  box-shadow: none;
  transition: all 0.25s ease-out;
  width: 100%;
  height: 100%;
}

.project-card:hover {
  text-decoration: underline;
  background-color: rgba(255, 255, 255, 0.26);
}

.project-card-hs {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.25s ease-out;
  padding: 1%;
  width: 40%;
}

.project-date-text {
  color: #767676;
}

/* Text & Links */
.text-white {
  color: #fff !important;
}

.text-left {
  text-align: left;
}

.text-transform-capitalize {
  text-transform: capitalize;
}

.light-text {
  color: #767676 !important;
}

a.light-text {
  color: #767676 !important;
}

.text-white a {
  color: #fff !important;
}

.fs-80 {
  font-size: 80px;
}

.fs-70 {
  font-size: 70px;
}

.fs-60 {
  font-size: 60px;
}

.fs-50 {
  font-size: 50px;
}

.fs-40 {
  font-size: 40px;
}

.fs-35 {
  font-size: 35px;
}

.fs-30 {
  font-size: 30px;
}

.fs-25 {
  font-size: 25px;
}

.fs-20 {
  font-size: 20px;
}

.fs-dynamic {
  font-size: 40px;
}

@media all and (max-width: 1000px) {
  .fs-dynamic {
    font-size: 20px;
  }
}

@font-face {
  font-family: ingrain-font;
  src: url(../fonts/Hybrid_b.ttf);
}

.font-ingrain-font {
  font-family: "ingrain-font";
}

/* Video Background */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Animation */
.underline-animation {
  position: relative;
  color: #fff;
  text-decoration: none;
}

.underline-animation:hover {
  color: #fff;
}

/* Animate the line from the left */
.underline-animation::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}

.underline-animation:hover::before {
  transform: scaleX(1);
}

/* Button */
button.learn-more {
  /* width: 25%; */
  padding: 10px;
  border: 1px solid #fff;
  text-decoration: none;
  background: linear-gradient(to left, transparent 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  cursor: pointer;
  transition: all ease 0.5s;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  font-family: Arial, sans-serif;

  &:hover {
    background-position: left bottom;
    color: #000;
  }
}

.txt-submit {
  padding: 5px;
  margin: 8px;
  text-decoration: none;
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  width: 100%;
}

.txt-input {
  padding: 15px;
  text-decoration: none;
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  width: 100%;
}

.btn-submit {
  padding: 10px;
  margin: 8px;
  /* border: 1px solid #fff; */
  text-decoration: none;
  border-radius: 100px;
  width: 100%;
}

.btn-social {
  padding: 15px;
  margin: 8px;
  /* border: 1px solid #fff; */
  outline: none;
  border: none;
  text-decoration: none;
  background-color: transparent;
  color: #ffffff;
  transition: 200ms;
}

.btn-social:hover {
  background-color: #ffffff70;
  color: #000;
  transition: 200ms;
}

.btn-search {
  background-color: transparent;
  border: none;
  outline: none;
}

.btn-nav {
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  text-decoration: none;
}

/* Mouse Pointer */
.cursor-pointer {
  cursor: pointer;
}

/* Scroll */
.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;

  .card {
    display: inline-block;
  }
}

.scrolling-wrapper {
  -webkit-overflow-scrolling: touch;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* .scrolling-wrapper {
  &::-webkit-scrollbar {
    display: none;
  }
} */