html {
  background: #fff;
  outline: none;
  height: 100%;
  height: 100vh;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: unset;
  -moz-osx-font-smoothing: grayscale;
  color:#5A5A5A;
}

html,
body {
  min-height: 100%;
  min-height: 100vh;
  overflow: auto;
}

a {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  transition: all 0.7s ease;
}

#scrollTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 20px 9px;
  border-radius: 100px;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  color: #2a2a28;
  font-weight: 600;
}


[data-link] {
  cursor: pointer;
}

.btn-primary{
  background:#000;
  border-color:#000;
}

/*---------- Header Section ----------*/

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:hover,
.navbar-toggler:active {
  box-shadow: none;
  border: 0;
  width: 44px;
  height: 44px;
}

.navbar-toggler.collapsed .close-icon {
  display: none;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  display: inline;
}

.trigger-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 20px 30px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.4s;
  border-bottom: 1px solid #ebebeb;
}

.scroll-down .trigger-menu-wrapper {
  transform: translate3d(0, -100%, 0);
}

.scroll-up .trigger-menu-wrapper {
  transform: none;
}

.scroll-up:not(.menu-open) .trigger-menu-wrapper {
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

header {
  justify-content: space-between;
  align-items: center;
}

header .nav-link {
  font-weight: 500;
  transition: 0.5s ease;
  font-size: 14px;
  position: relative;
  color: #858585;
  font-style: normal;
  line-height: 127%; /* 17.78px */
  letter-spacing: 0.028px;
  margin:0 12px 0 12px;
}

header .nav-link:hover {
  color: #000;
}

header .nav-link::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

header .nav-link:hover::before {
  transform: scaleX(1);
}

header .nav-link.selected {
  color: #000;
}

/*---------- Landing Page Section ----------*/

main {
  min-height: 100vh;
}

.intro {
  border-radius: 16px;
  padding:8%;
  background: url(../images/hero-bg.svg) no-repeat center top;
  background-size: cover;
  background-blend-mode: luminosity, normal;
}

.intro-text h1 {
  font-optical-sizing: auto;
  color:#000;
  font-weight: 500;
  font-style: normal;
  font-family: Inter;
  font-size: 2.5rem;
  line-height: 125%; /* 50px */
  letter-spacing: -0.4px;
}

.intro p {
  color: #5A5A5A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.016px;
}

.intro-img img {
  border-radius: 50%;
}

.projects-title {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 104.667%; /* 41.867px */
  letter-spacing: -0.57px;
}

.project-container {
  display: flex;
  transition: all 0.3s ease;
  border-radius: 16px;
  background: #EFEFEF;
  padding:30px;
  min-height:420px;
}

.project-container .project-info {
  display: flex;  
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.project-container .project-info > * {
  margin-bottom:20px;
}

.project-info h2 {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 28.32px */
  letter-spacing: -0.4px;
}

.project-info p {
  color: #5A5A5A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.042px;
}

.category {
  border-radius: 30px;
  border: 1px solid #000;
  background: #FFF;
  padding: 6px 14px;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 15px */
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.project-info .project-link {
  border-radius: 8px;
  background: #000;
  color: #fff;
  transition: all 0.3s ease;
  transform: scale(1);
  padding:10px 20px;
  display:inline-block;

}

.project-container .project-link:hover {
  transform: scale(1.10);
  color: #fff;
}

.project-container img {
  transform: scale(1);
}

.project-container img:hover {
  transform: scale(0.85);
}

.project-container img,
.project-container:hover img {
  transition: all 0.7s ease;
}


/*---------- Footer Section ----------*/

footer {
  font-size: 14px;
  color: #5A5A5A;
  font-style: normal;
  font-weight: 400;
  line-height: 128.333%; /* 17.967px */
  letter-spacing: -0.016px;
  display: flex;
  height: 90px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}


/*---------- Detail Page ----------*/
hr {
  border-color:#E4E4E4;
  margin:40px 0 !important;
  opacity:1;
}

.project-detail h3 {
  color: #B18604;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 124%; /* 24.8px */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.project-detail p{
  color: #5A5A5A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.detail-page {
  padding: 60px 0 0 0;
}


.detail-page h2 {
  font-size: 36px;
  color: #333;
}

.detail-page.foodruck {
  background: url(../images/foodruck/background-style.png) top center no-repeat
    #fff;
}

.detail-page.diyers {
  background: url(../images/diyers/background-style.png) top center no-repeat
    #fff;
}

.detail-page.parentbuddy {
  background: url(../images/parentbuddy/background-style.png) top center
    no-repeat #fff;
}

.section-mini-header {
  font-size: 16px;
  line-height: 32px;
  color: #5c5c5c;
}

.grey-bg-style {
  background: #f5f5f5;
}

.stage {
  border-bottom: 1px solid #ebebeb;
}

.flexslider {
  background: none;
  border: none;
}

.flexslider img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}

.flexslider .flex-control-paging li a {
  background: white;
  box-shadow: none !important;
}

.flexslider .flex-control-nav {
  bottom: -60px;
}

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/ball-triangle.svg) center no-repeat #222222;
}

.js .animate-box {
  opacity: 0;
}

.number {
  font-size: 28px;
  color: #777;
  font-weight: 600;
}

iframe > .header {
  display: none;
}



.social-media {
  list-style: none;
  display: flex;
  padding:0;
  margin:0;
}

.social-media li {
  border-radius: 50%;
  flex-direction: row;
  margin: 0 2% 0 0;
}

.social-media li a {
  color: #000;
  padding: 9px 13px 9px 13px;
  display: block;
  transition: 0.5s;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
}

.social-media li a:hover {
  background: #000;
}

.social-media li:hover a {
  color: #fff;
}

.social-media li a.primary-button {
  background:#000;
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 18.2px */
  letter-spacing: 0.07px;
  padding:12px 20px;
  border-radius:30px;
}

.carousel-indicators [data-bs-target] {
  background-color:#000;
}

.feature-icon {
  height: 3.5rem;
}

.hidden-contact {
  background: #fff;
  width: 100%;
  height: 70px;
  z-index: 9999;
  position: relative;
  top: -7%;
  margin-bottom: -5%;
}

.link {
  cursor: pointer;
}

.skill-section {
  border-top:1px solid #E4E4E4;
  border-bottom:1px solid #E4E4E4;
  padding:40px 8px;
  margin:40px 0;
}

.skill-section ul {
  list-style: none;
  padding:0;
  margin:0;
}
.skill-section ul li {
  margin-bottom:10px;
}

/* ----- Responsive -----*/

@media screen and (max-width: 767px) {
  .project-info h2 {
    font-size:24px;
  }
  footer {
    padding: 15px 0;
  }

  .menu-section {
    text-align: center;
  }

  .footer-name,
  footer .navbar-nav {
    width: 100%;
    display: block;
    margin: 15px auto;
  }

  footer .social-media {
    margin: 20px auto;
    padding: 0;
    float: none;
  }

  header .nav-link {
    font-size: 16px;
    font-weight: 400;
    padding: 20px 0 !important;
  }

  footer .navbar-nav .nav-link {
    font-size: 16px;
    padding: 15px 0;
  }

  .other-projects .d-flex {
    display: block !important;
  }
}

@media screen and (max-width: 1199px) {
  .intro-text h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .project-container {
    height: auto;
  }

  .projects-title {
    font-size: 28px;
    padding: 25px 0;
  }

}

@media screen and (max-width: 1023px) {
  .navbar .nav-link {
    text-align: center;
  }
}
