:root{
  --cool-gray: #9F9EAD;
  --dim-gray: #6F676B;
  --rose-quartz: #AFA4A5;
  --eerie-black: #1C1C1C;
  --white: #F3F3F3;
}

body {
  justify-content: center;
}

body,
html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f3f3f3;
  padding: 0;
  margin: 0;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}

body.loaded {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.menu_maker {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.tabs {
  display: flex;
  margin-right: 15px;
  align-items: center;
  justify-content: space-evenly;
}

.tab-active {
  color: var(--dim-gray);
  border-bottom: 2px solid var(--dim-gray);
  width: auto;
}

.featured_projects .dropdown-content p {
  color: var(--dim-gray);
  text-align: center;
}

.subtab.tab-active {
  color: var(--dim-gray);
  border-bottom: none;
}

.dropdown-content p {
  border-bottom: none;
  font-size: 1.1em;
  padding: 15px;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: #f3f3f3;
  max-width: 350px;
  z-index: 1;
  padding: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 900px) {
  .dropdown-content {
    display: block;
    position: relative;
    background-color: #f3f3f3;
    min-width: 200px;
    margin-top: 0;
  }

  .featured_projects .dropdown-content p {
    padding: 10px;
  }

  .tab {
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .menu_maker {
    display: block;
  }

  .tabs {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .tab {
    margin-bottom: 10px;
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  border-radius: 2px;
  overflow: hidden;
  text-align: center;
  cursor:pointer;
}

.project-card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.image-container {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.356);
}

.project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  width: 100%;
  position: relative;
}

.info-content {
  flex: 1;
  text-align: left;
}

.info-divider {
  width: 2px;
  height: 100%;
  background-color: var(--rose-quartz);
  margin-right: 15px;
}

.project-info h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
  color: #000;
  font-weight: 500;
}

.project-info p {
  font-size: 0.9em;
  color: var(--dim-gray);
}

.featured_projects .text-blk {
  padding: 10px;
  line-height: 25px;
  margin-top: 40px;
}

.featured_projects * {
  font-family: Nunito, sans-serif;
}

.featured_projects .responsive-container-block {
  min-height: 200px;
  height: fit-content;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.featured_projects .container-block {
  min-height: 300px;
  height: auto;
  width: 100%;
  padding: 10px;
  display: block;
}

.featured_projects .responsive-container-block.bg {
  max-width: 1500px;
  min-height: 500px;
  margin: 0;
  height: auto;
}

.featured_projects .container-block.bg {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#portfolio-container {
  min-height: 60vh;
}

.featured_projects .responsive-container-block.content {
  justify-content: center;
}

.featured_projects .responsive-container-block.img {
  width: 100%;
  position: relative;
  height: 100%;
  padding: 2px;
  margin: 0;
}

.featured_projects .responsive-container-block.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  min-height: 300px;
  margin: 10px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured_projects .responsive-container-block.desc {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 10px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #6F676B;
  text-align: center;
}

.featured_projects .responsive-container-block.opt-cont {
  width: 100%;
  align-items: center;
  margin: 20px 0 5px;
}

.featured_projects .text-blk.tab {
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #999999;
  font-weight: 500;
  margin-bottom: 2vh;
  cursor: pointer;
  text-align: center;
}

.tab-active {
  color: var(--dim-gray);
  border-bottom: 2px solid var(--dim-gray);
  width: auto;
}

.subtab .tab-active {
  color: var(--dim-gray);
  border-bottom: 0px solid var(--dim-gray);
  width: auto;
}

.featured_projects .text-blk.title {
  font-size: 23px;
  font-weight: 600;
  padding: 10px;
}

.featured_projects .text-blk.info {
  font-size: 20px;
  padding: 10px;
}

@media(max-width:1300px){
  .featured_projects .text-blk.tab {
    font-size: 14px;
  }

  .dropdown-content p {
    font-size: 14px;
    padding: 12px;
  }
}

.featured_projects .text-blk.heading {
  font-size: 25px;
  line-height: 34.1px;
  color: var(--dim-gray);
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-width: 5px;
  border-bottom-style: solid;
  border-bottom-color: var(--dim-gray);
}

.featured_projects .tab:hover {
  cursor: pointer;
}

.featured_projects .bg {
  padding: 0 0 0 0;
  margin: 0 auto;
}

.featured_projects .content {
  padding: 0 0 0 0;
}

.featured_projects .opt-cont {
  min-height: auto;
  padding: 0 0 0 0;
}

@media (max-width: 1024px) {
  .featured_projects .text-blk.info {
    margin-top: 0px;
  }
}

@media (max-width: 1300px) {
  .featured_projects .container-block.bg {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .featured_projects .responsive-container-block.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 10px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .featured_projects .responsive-container-block.desc {
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-color: #6f676ba1;
    padding: 10px;
  }

  .featured_projects .responsive-container-block.img.hide {
    display: contents;
  }

  .featured_projects .responsive-container-block.img.hide.hidden {
    display: none;
  }
}

@media (max-width: 768px) {
  .featured_projects .responsive-container-block.img.hide {
    display: none;
  }

  .featured_projects .responsive-container-block.img.hide.hidden {
    display: none;
  }

  .featured_projects .responsive-container-block.opt-cont {
    flex-direction: column;
  }

  .featured_projects .responsive-container-block.opt-cont {
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .featured_projects .text-blk .tab {
    font-size: 0.5rem;
  }
}

@media (max-width: 500px) {
  .featured_projects .responsive-container-block.opt-cont {
    flex-direction: column;
    justify-content: space-between;
  }

  .featured_projects .responsive-container-block.img.hidden {
    display: none;
  }

  .featured_projects .text-blk.info {
    font-size: 15px;
    line-height: 22px;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .featured_projects .text-blk.title {
    font-size: 17px;
    line-height: 22px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
  }
}

.project-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1600px) {
  .project-card {
    width: 400px;
  }
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}