#project-banner {
    /* background: url(../res/projects/projectbanner2.png); */
    background: #000000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 511px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 63px;
    -webkit-filter: brightness(60%);
    filter:brightness(60%);
}

#project-banner img {
    width: 60px;
    height: 60px;
}

#project-banner h1 {
    font: normal normal normal 9px/13px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    margin-top: 10px;
}

.projects-main-wrap {
    width: 1100px;
    display: flex;
    flex-direction: column;
    margin-bottom: 92px;
}

.projects-main-wrap h2 {
    font: normal normal 300 14px/45px Poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

.projects-main-wrap h1 {
    text-align: left;
    font: normal normal 300 45px/55px Poppins;
    letter-spacing: 0px;
    color: #000000;
    margin-top: 21px;
    margin-bottom: 20px;
}

.projects-main-wrap h1 span {
    text-align: left;
    font: normal normal bold 45px/55px Poppins;
    letter-spacing: 0px;
    color: #000000;
}

.buttons-projects {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.buttons-projects a {
    text-decoration: none;
    text-align: center;
    font: normal normal 500 14px/21px Poppins;
    letter-spacing: 0px;
    color: #000000;
    text-transform: capitalize;
    opacity: 1;
}

.buttons-projects>a>div {
    padding: 17px 42px;
    border: 1px solid #000000;
    border-radius: 100px;
    opacity: 1;
    border: 1px solid #000000;
    border-radius: 100px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.buttons-projects>a>div:hover {
    background: transparent linear-gradient(101deg, #000000 0%, #808080 100%) 0% 0% no-repeat padding-box;
    /* border: 2px solid #FFFFFF; */
    border-radius: 100px;
    opacity: 1;
    text-align: center;
    font: normal normal 500 14px/21px Poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.projecs-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 33px;
}

.box-project {
    display: flex;
    flex-direction: column;

}

.img-project1 {
    width: 250px;
    height: 340px;
    overflow: hidden;
}

.img-project1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    overflow: hidden;
}

.img-project1 img:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.pr-box-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 100px;
    background: #000000 0% 0% no-repeat padding-box;
    opacity: 1;
}

.pr-box-title h1 {
    text-align: center;
    font: normal normal 600 16px/26px Poppins;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    opacity: 1;
    margin: 0%;
}

.pr-box-title p {
    text-align: center;
    font: normal normal 400 12px/19px Poppins;
    letter-spacing: -0.36px;
    color: #FFFFFF;
    opacity: 1;
}

.btn-pr-all {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 65px;
}

.btn-pr-all>a {
    text-decoration: none;
    width: 200px;
    height: 50px;
}

.btn-pr-all>a>div {
    width: 200px;
    height: 50px;
    border: 1px solid #000000;
    border-radius: 100px;
    opacity: 1;
    text-align: center;
    font: normal normal 500 14px/21px Poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.btn-pr-all>a>div:hover {
    background: #000000;
    color: #FFFFFF;
}


.wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;

}

.wrapper i {
    height: 50px;
    width: 50px;
    background: rgb(118, 233, 118);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25 rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);

}

.wrapper i:first-child {
    left: -22px;

}

.wrapper i:last-child {
    right: -22px;

}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel :where(.card, .img) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel .card {
    scroll-snap-align: start;
    /* height: 340px; */
    list-style: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    width: 98%;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.projecs-wrap a{
    text-decoration: none;
}
.card a{
    text-decoration: none;
}


@media (min-width:760px){
    #pr-slide-mob{
        display: none;
    }

}
@media (max-width:1100px){
    .projects-main-wrap {
        width: 993px;
    }
    .wrapper {
        width: 993px;
    }
}
@media (max-width:993px){
    .projects-main-wrap {
        width: 870px;
    }
    .wrapper {
        width: 870px;
    }
}
@media (max-width:870px){
    .projects-main-wrap {
        width: 760px;
    }
    .wrapper {
        width: 760px;
    }
}

@media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);

    }
}

@media screen and (max-width: 760px) {
    /* .wrapper .carousel {
        grid-auto-columns: 100%;

    } */
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - -68px);
    }
}
@media (max-width:760px){
    .wrapper {
        width: 100%;
    }
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - -68px);
    }
    .projects-main-wrap{
        width: 100%;
    }
    .buttons-projects{
        flex-wrap: wrap;
    }
    .projecs-wrap {
        align-items: center;
        justify-content: center;
    }
    #pr-slide-web{
        display: none;
    }
    #project-banner {
        height: 260px;
      
    }
}