*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'sans-serif';
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #080808;
  color: #fff;
}

a {
  color: #fff;
}

#header {
  width: 100%;
  height: 100vh;
}

#header::before {    
      content: "";
      /* background-image: url(images/background5.jpg); */
      background-image: url(images/isoCity_.jpg);
      background-size: cover;
      /* background-position: center; */
      position: absolute;
      top: 0px;
      right: 0px;
      bottom: 0px;
      left: 0px;
      opacity: 0.25;
}

.container {
  position: relative;
  padding: 10px 10%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  width: 144px;
}

.navbar i {
  padding: 15px;
}

nav ul li{
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}

nav ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  transition-duration: 0.5s;
}

nav ul li a:hover{
  color: #ff64cb;
}

nav ul li a::after{
  content: '';
  width: 0;
  height: 3px;
  background: #db4fac;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition-duration: 0.5s;
}

nav ul li a:hover::after{
  width: 100%;
}

.overlay {
  display: none;
}

.hamburger-menu {
  width: 2rem;
  height: 2rem;
  /* background-color: red; */
  display: flex;
  align-items: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.bar::after,
.bar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 3px;
  transition: 0.3s;
}
.bar::before {
  transform: translateY(-8px);
}
.bar::after {
  transform: translateY(8px);
}
/* Hamburger menu transition */
/* transition from hamburger to cross */
#header.active .hamburger-menu .bar {
  background-color: transparent;
}
#header.active .hamburger-menu .bar::before {
  transform: translateY(0) rotate(-45deg);
}
#header.active .hamburger-menu .bar::after {
  transform: translateY(0) rotate(45deg);
}

/* Main Showcase */
.header-text{
  margin-top: 20%;
  font-size: 30px;
}

.header-text h1{
  font-size: 60px;
  margin-top: 20px;
}

.header-text h1 span{
  color: #db4fac;
}

.header-text h2{
  font-size: 30px;
}

.header-text p{
  font-size: 20px;
}


/* ---------------- About ---------------- */
#about {
  padding: 80px 0;
  color: #ababab;
}

.row {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-col-1 {
  flex-basis: 35%;
}

.about-col-1 img {
  border-radius: 15px;
  width: 100%;
}

.about-col-2 {
  flex-basis: 60%;
}

.sub-title {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
}

.tab-titles {
  display: flex;
  margin: 20px 0 40px;
}

.tab-links {
  margin-right: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.tab-links::after {
  content: '';
  width: 0;
  height: 3px;
  background-color: #db4fac;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}

.tab-links.active-link::after {
  width: 50%;
}


.outside-ul li {
  list-style: none;
  margin: 10px 0;
}

.outside-ul li span{
  color: #ff64cb;
  font-size: 14px;
  font-weight: bold;
}

.tab-contents {
  display: none;
}

.tab-contents.active-tab {
  display: block;
}

.inside-ul li {
  list-style-type: "- ";
  margin: 4px 15px;
}

/* ---------------- Featured Projects---------------- */
.featured-projects {
  margin: 40px 0;
  padding: 10px 0;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
  margin-top: 20px;
}

.project {
  flex-basis: 32%;
  padding: 15px;
  border-radius: 15px;
  background-color: #333333;
  transition: 0.5s;
}

.project:hover {
  background-color: #464646;
  transition: 0.5s;
}

.project a {
  color: #fff;
}

.project-img {
  transition: 0.5s;
  position : relative;
}

.img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
  transition: 0.5s;
}

.project-img i {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  z-index: 1;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 60px;
  opacity: 0;
  transition: 0.5s;
  color: #fff;
}

.project-img i:hover {
  opacity: 1;
  transition: 0.5s;
}

.project-img i:hover + .img {
  opacity: 0.5;
  transition: 0.5s;
  transform: scale(1.025);
}

.project h3 {
  font-size: 20px;
  margin: 10px 0;
}

.project ul {
  list-style-type: '- ';
}
.project ul li {
  margin: 10px 10px;
}

.btn {
  /* display: block; */
  display: inline-block;
  margin: 50px auto;
  width: fit-content;
  border: 3px solid #db4fac;
  padding: 14px 50px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
  text-align: center;
}

.btn:hover {
  background-color: #db4fac;
  transition: 0.5s;
}
.btn p {
  font-size: 25px;
}

/* ---------------- Contact ---------------- */
.footer {
  background-color: #333333;
  padding: 50px 0;
  text-align: center;
  /* min-width: 100vw; */
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-left: 30%;
  padding-right: 30%;
  gap: 2rem;
}

.footer-links a {
  color: #fff;
}

.footer-links li {
  list-style: none;
}

.footer-links i {
  font-size: 5rem;
}

/* ---------------- Media Queries ---------------- */
@media screen and (max-width: 870px) {
  .hamburger-menu {
    display: flex;
    z-index: 100;
  }

  .navbar i {
    transform: scale(1.4);
  }

  .links {
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    height: 100%;
    background-color: #464646;
    width: 100%;
    transform: translateX(100%);
    transition: 0.5s
  }

  nav ul li {
    display: flex;
    flex-direction: column;
  }

  nav ul li a {
    font-size: 30px;
    margin: 5px 0;
    /* background-color: red; */
    padding: 10px 40px;
    border: 3px;
    border-radius: 20px;
    border-color: #fff;
    border-style: solid;
    text-align: center;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.5s;
    z-index: 30;
    opacity: 0;
    pointer-events: none;
  }

  #header.active .links {
    transform: translateX(0);
    transition: 0.5s;
  }

  #header.active .overlay {
    opacity: 1;
    pointer-events: all;
  }

  .footer-links i {
    font-size: 4rem;
  }

}

/* FIX THIS */
/* @media screen and (max-width: 401px) {
  #header {
    width: 100%;
    height: 100vh;
  }

  #header::before {
    width: 100%;
  }
} */