*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*==================portfolio part start=======================*/
/* 
.portfolio{
    border: 1px solid white;
} */
.portfolio .head-port{
    padding:50px 0 50px 0;
    text-align: center;
}
.portfolio .head-port h1{
    color:#82c6c5;
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-size: 50px;
    letter-spacing: 2px;
    display: inline-block;
    border-bottom: 2px solid #f7d40c;
}
.portfolio .inner-port{
    padding: 0 100px 0 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.portfolio .inner-port .img-port{
    height:300px;
    width:32%;
    overflow: hidden;
    border: 3px double #f7d40c;
}
.img-port {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.img-port.visible {
    transform: scale(1);
    opacity: 1;
}
.portfolio .inner-port .other{
    height:330px;
    width:32%;
    overflow: hidden;
    border: 3px double #f7d40c;
    text-align: center;
    color:#f7d40c;
}

.portfolio .inner-port .other img{
    height: 300px;
    width: 100%;
}


.portfolio .inner-port .img-port:hover img{
    transform: scale(1.2);
    
}

.portfolio .inner-port .img-port img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 1s;
}
.portfolio .inner-port .banner{
    height: 200px;
}
.portfolio .inner-port .banner img{
   height: 100%;
   width: 100%;
   object-fit:fill;
}
.portfolio .inner-port .poster{
    height: 500px;
}
.portfolio .inner-port .poster img{
   height: 100%;
   width: 100%;
   object-fit:contain;
}
.portfolio .inner-port .insta{
    height: 400px;
}
.portfolio .inner-port .insta img{
   height: 100%;
   width: 100%;
   object-fit:scale-down;
}
/* Mobile devices (up to 767px) */
@media (max-width: 767px) {
  .portfolio .inner-port{
    padding: 0 0px 0 0px;
}
.portfolio .inner-port .img-port{
    height:250px;
    width:100%;
    border: 3px double #f7d40c;
}
.portfolio .inner-port .banner{
    height: 180px;
}
}

/* Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
 .portfolio .inner-port{
    padding: 0 0px 0 0px;
}
.portfolio .inner-port .img-port{
    height:150px;
    width:31%;
    border: 3px double #f7d40c;
}
.portfolio .inner-port .banner{
    height: 100px;
}
}

/* Small Laptops / Desktop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
.portfolio .inner-port{
    padding: 0 30px 0 30px;
}
.portfolio .inner-port .img-port{
    height:280px;
    width:32%;
    border: 3px double #f7d40c;
}
.portfolio .inner-port .banner{
    height: 200px;
}
}
/*==================portfolio part close=======================*/