/*
Theme Name: Wordpress Quick Theme Pack
Author: Instalogic Marketing
Author URI: instalogic.com
Theme URI: 
Front End Developer: Enamul Kabir
Back End Developer:  Enamul Kabir
Project Start:
Date: 03 January 2025
*/
.portfolio-galery-area {
  position: relative;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  margin: 0 0 80px;
  flex-wrap: wrap;
}

.portfolio-tab {
  position: relative;
  padding: 10px 5px;
  cursor: pointer;
  border: 0;
  border-bottom: none;
  margin: 0 15px;
  background-color: transparent;
  border-radius: 0;
  font-size: 20px;
  font-family: "Oswald", Sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
}
.portfolio-tab::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  opacity: 0;
  transition: 0.4s all;
}
.portfolio-tab.active:after {
  opacity: 1;
}

.portfolio-tab-content {
  display: none;
}
.portfolio-tab-content.single-portfolio {
  padding-top: 50px;
}
.portfolio-tab-content.active {
  display: block;
}

.portfolio-dropdown {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .portfolio-dropdown {
    position: relative;
    margin: 0 0 0 15px;
  }
}
.portfolio-dropdown.relative {
  position: relative;
}

.portfolio-dropdown-label {
  padding: 10px 20px;
  border: 1px solid #9b000b;
  border-radius: 0;
  cursor: pointer;
  background-color: #101010;
  width: 180px;
  text-align: left;
  text-transform: capitalize;
  font-family: "Oswald", Sans-serif;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  background-image: url(../img/dropdown-arrow.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center right 10px;
}

.portfolio-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #101010;
  border: 1px solid #9b000b;
  border-radius: 0;
  display: none;
  z-index: 10;
  font-family: "Oswald", Sans-serif;
  color: #ffffff;
  font-size: 18px;
}
.portfolio-dropdown-options div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #353535;
  text-transform: capitalize;
  text-align: center;
  transition: 0.4s all;
}
.portfolio-dropdown-options div:last-child {
  border-bottom: none;
}
.portfolio-dropdown-options div:hover {
  background-color: #9b000b;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 42px;
       column-gap: 42px;
  row-gap: 30px;
  margin: 20px 15px;
}
@media screen and (max-width: 1366px) {
  .portfolio-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1280px) {
  .portfolio-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .portfolio-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-gallery-item {
  position: relative;
  margin-bottom: 15px;
  display: none;
}
.portfolio-gallery-item:before {
  position: absolute;
  content: "";
  right: -12px;
  top: 12px;
  height: 100%;
  width: 100%;
  border: 1px solid #323232;
}
.portfolio-gallery-item .img-wrap {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  padding-bottom: 100%;
  z-index: 2;
  position: relative;
}
.portfolio-gallery-item .img-wrap:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 2px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  transition: 0.4s all;
}
.portfolio-gallery-item .img-wrap .positioner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.portfolio-gallery-item .img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  height: 100%;
}
.portfolio-gallery-item a:hover .img-wrap:after {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.portfolio-gallery-item img {
  max-width: 100%;
  border: 2px solid #ddd;
  border-radius: 8px;
}
/*# sourceMappingURL=theme.css.map */
