﻿/* -------------------------------------------------------------------------- */
/*                               Portfolio list                               */
/* -------------------------------------------------------------------------- */

/* *portfolio list cards start */
.portfolio__Main_List {
    --col-desktop: 4;
    --col-tablet: 3;
    --col-mobile: 2;

    display: grid !important;
    grid-template-columns: repeat(var(--col-desktop), 1fr);
    gap: 1rem;
}

.logo-Portfolio-box {
    border: 1px solid #dadada;
    -webkit-filter: grayscale(80%);
    filter: grayscale(80%);
    padding: 0 !important;
    width: 100%;
    overflow: hidden;
    height: auto !important;
    display: inline-block;
    transition: var(--transition);
    border-radius: var(--border-radius-sm);
}

.logo-Portfolio-box:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.ListCell {
    display: flex;
}

.ListCell img {
    width: 100%;
    height: auto;
    display: inline-block;
}


/* play button */

.logo-Por-hover {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1.5rem;
    transition: var(--transition);
    background: rgba(2, 2, 2, 0.9);
    font-size: 0;
    line-height: 0;
    --icon-color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-Por-hover div {
    display: inline-block;
    width: 100%;
}

.play-video i::before {
    min-width: 0.75rem;
    min-height: 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
    display: block;
    margin: auto;
    background-color: var(--icon-color);
    mask: url(/Portals/0/Images/play.svg) no-repeat center;
    mask-size: cover;
    -webkit-mask: url(/Portals/0/Images/play.svg) no-repeat center;
    -webkit-mask-size: cover;
}


/* ------------------------------- Responsive ------------------------------- */
@media (max-width:991px) {
    .portfolio__Main_List {
        grid-template-columns: repeat(var(--col-tablet), 1fr);
    }
}

@media (max-width:575px) {
    .portfolio__Main_List {
        grid-template-columns: repeat(var(--col-mobile), 1fr);
    }
}

/* !portfolio list cards end */


/* *portfolio side category start */

.title__Sidebar {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: var(--fw-700);
    font-size: var(--fz-lg);
}

.sideCategory__Link {
    display: flex;
    transition: var(--transition);
    color: var(--bw-fade-4);
    position: relative;
}


.sideCategory .SCat-Main>li>.sideCategory__Link {
    font-size: var(--fz-md);
    margin-inline: 0;
    padding: 0.75rem;
    transition: var(--transition);
    font-weight: var(--fw-700);
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.sideCategory .SCat-Main>li:hover>.sideCategory__Link,
.sideCategory .SCat-Main>li.SCat-Active>.sideCategory__Link,
.sideCategory .SCat-Main>li.SCat-ActiveParent>.sideCategory__Link,
.sideCategory .SCat-Main>li.active>.sideCategory__Link {
    color: var(--black);
    background: var(--bw-fade-3);
}

.btnStyle_Black.side__Category_Btn {
    width: 100%;
    padding: 1rem 20px;
    justify-content: center;
    margin-top: 1.5rem;
}

.btnStyle_Black.side__Category_Btn .WbIcon {
    margin-right: auto;
}

.sideCategory .SCat-Main>li:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.sideCategory .SCat-Main>li:not(.SCat-have-sub-menu):is(:hover, .SCat-Active, .SCat-ActiveParent),
.sideCategory .SCat-Main>li.SCat-have-sub-menu:not(.active):is(:hover, .SCat-Active, .SCat-ActiveParent) {
    border-color: transparent;
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu .category__Drawer_Arrow {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: end;
    width: 4rem;
    height: 100%;
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu .category__Drawer_Arrow i.fa {
    transform: rotate(0);
    transition: var(--transition);
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu.active .category__Drawer_Arrow i.fa {
    transform: rotate(180deg);
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu {
    transition: var(--transition);
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu.active {
    padding-bottom: 0.75rem;
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu:hover,
.sideCategory .SCat-Main>li.SCat-have-sub-menu.SCat-Active,
.sideCategory .SCat-Main>li.SCat-have-sub-menu.SCat-ActiveParent {
    border-color: var(--mc1);
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu.SCat-Active,
.sideCategory .SCat-Main>li.SCat-have-sub-menu.SCat-ActiveParent {
    padding-bottom: 0.75rem;
}

.sideCategory .SCat-Main>li.SCat-have-sub-menu>.SCat-sub-menu>li>.sideCategory__Link {
    font-size: 0.875rem;
    padding: 0.5rem 0px;
}

.sideCategory .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li {
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding-right: 0.5rem;
}

.sideCategory .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li>.sideCategory__Link {
    color: var(--bw-fade-6);
    font-size: var(--fz-sm);
    font-weight: var(--fw-700);
}

.sideCategory .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li::before {
    content: "";
    min-width: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-left: 0.5rem;
    transition: var(--transition);
    background: var(--bw-fade-6);
}

.sideCategory .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-Active>.sideCategory__Link,
.sideCategory .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li:hover>.sideCategory__Link {
    color: var(--mc1);
}

.sideCategory .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li.SCat-Active::before,
.sideCategory .SCat-Main>.SCat-have-sub-menu>.SCat-sub-menu>li:hover::before {
    background: var(--mc1);
}

/* side cat container */
.WBContainer_Sidebar {
    border-radius: 0.5rem;
    background: var(--white);
    border: 1px solid var(--bw-fade-2);
    padding: 1.5rem 0.75rem;
}

.category__Wrapper_mainParents {
    margin: 0 0 20px;
}

.category__Wrapper_mainParents {
    flex-wrap: nowrap;
}

.category__Wrapper_mainParents>li.nav-item {
    width: 100%;
}

.category__Wrapper_mainParents .nav-link {
    text-align: center;
    padding: 0;
    padding-bottom: 0.875rem;
    transition: var(--transition);
    border: none;
    border-bottom: solid transparent 3px;
    color: var(--bw-fade-5);
    font-size: 1rem;
    white-space: nowrap;
    font-weight: var(--fw-700);
}

.category__Wrapper_mainParents .nav-link.active {
    background: transparent;
    color: var(--mc1);
    border-color: var(--mc1);
}


.side__Category_Btn {
    border: solid 1px var(--bw-fade-2);
    border-radius: 0.5rem;
    margin-top: 2.5rem;
    color: var(--bw-fade-5);
    font-size: 1rem;
    font-weight: var(--fw-700);
    margin-bottom: 40px;
}

.side__Category_Btn .WbIcon {
    --icon: 20px;
    background: var(--bw-fade-5);
}

.side__Category_Btn .fa {
    color: var(--bw-fade-4);
    font-size: var(--fz-xl);
}

.appendCategory_SideMenu .WBContainer_Sidebar {
    background: transparent;
    padding: 0;
    border: none;
}

.sideMenu__Wrapper {
    position: fixed;
    top: 0;
    right: 0;
    transition: var(--transition);
    transform: translate(+100%);
    background: var(--bw-fade-2);
    box-shadow: 0px 4px 10px 0px #00000026;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    z-index: 21;
    width: 396px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    visibility: hidden;
    opacity: 0;
}

.sideMenu__Wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translate(0);
}

.sideMenu__Wrapper .close_Btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.WBContainer_Sidebar~.btnStyle_Primary {
    width: 100%;
    margin-top: 1.5rem;
    justify-content: space-between;
    padding: 20px 1rem;
}




/* ------------------------------- Responsive ------------------------------- */
@media (min-width:992px) {
    .WBContainer_Sidebar {
        width: 100%;
    }

    body:not(.personabar-visible) .DnnModule-DNN_HTML:has(.sideCategory) {
        position: sticky;
        top: 1rem;
        padding-bottom: 4rem;
    }

    .portfolioList__Category_Wrapper .sideCategory {
        max-height: 25rem;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .portfolioList__Category_Wrapper .sideCategory::-webkit-scrollbar {
        width: 5px;
    }

    /* Track */
    .portfolioList__Category_Wrapper .sideCategory::-webkit-scrollbar-track {
        background: var(--white);
        border-radius: 0;
    }

    /* Handle */
    .portfolioList__Category_Wrapper .sideCategory::-webkit-scrollbar-thumb {
        transition: var(--transition);
        background: var(--bw-fade-2);
        border-radius: 0;
    }
}

/* !portfolio side category end */

/* *portfolio category message start */

.CategoryMessage h1 {
    font-size: var(--fz-xl);
}

.CategoryMessage p {
    font-size: var(--fz-md);
    line-height: 2rem;
    text-align: justify;
}

/* new catMessage Start */

.appendCategoryMessage {
    padding: 2.5rem 2rem;
    border-radius: 0.5rem;
    border: solid 1px var(--bw-fade-3);
    margin-bottom: 64px;
    margin-top: 64px;
    position: relative;
}

.CategoryMessage h1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    background: var(--white) !important;
    padding: 0 1rem;
    white-space: nowrap;

}

.CategoryMessage img {
    margin: 1rem auto;
    display: flex;
}

.CategoryMessage h2 {
    margin-bottom: 0.5rem;
    font-size: var(--fz-xl);
    font-weight: var(--fw-700);
}

.CategoryMessage h2:not(:first-of-type) {
    margin-top: var(--title-space);
}

.CategoryMessage h3 {
    margin-top: calc(var(--title-space) / 2);
    margin-bottom: 0.5rem;
    font-size: var(--fz-lg);
    font-weight: var(--fw-600);
}

.CategoryMessage #showmore-1 {
    position: unset;
}

.shorter-ar,
.shorter {
    position: absolute;
    width: auto;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, +50%);
    padding: 0 1rem;
    color: var(--mc1);
    background: var(--white);
}

.showmore__Wrapper .CategoryMessage::after {
    content: '';
    width: 100%;
    position: absolute;
    height: 32px;
    bottom: 2rem;
    left: 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, var(--white) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, var(--white) 50%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, var(--white) 50%);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.showmore__Wrapper .CategoryMessage[style*="max-height"]::after {
    opacity: 1;
    visibility: visible;
}

.ShortDiv {
    margin-bottom: 0;
}

.CategoryMessage:has(.shorter i.fa-angle-up) .ShortDiv::after {
    background: transparent;
}

.shorter:has(i.fa-angle-up),
.shorter-ar:has(i.fa-angle-up) {
    background: var(--white);
}

/* a#component-2,
a:not([href]):not([tabindex]) {
    display: none;
} */

.title__Sidebar {
    margin: 0 0 2rem;
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: var(--fw-700) !important;
    font-size: var(--fz-lg) !important;
}

.proList__PageTitle {
    margin-bottom: 1.5rem;
}


/* ------------------------------- Responsive ------------------------------- */

@media (max-width:991px) {
    .appendCategoryMessage {
        padding: 1rem !important;
    }

    .showmore__Wrapper .CategoryMessage::after {
        bottom: 0;
    }
}

/* !portfolio category message end */

/* -------------------------------------------------------------------------- */
/*                              Portfolio Detail                              */
/* -------------------------------------------------------------------------- */

/* *brand Gallery Slider start */


.protfolio__Detail_ImageBox {
    position: relative;
}

.imageBox__Inner {
    border-radius: var(--border-radius);
    background: var(--bw-fade-2);
    padding: 2.5rem;
    position: sticky;
    top: 1.5rem;
}

.imageBox__Inner .btnStyle_Primary{
    margin-top: 2rem;
}

.protfolio__Detail_Wrapper:not(:has(.portfolio__Detail_Bottom)) {
    padding-bottom: 1.5rem;
}

.protfolio__Detail_ImageBox .slick-list {
    border-radius: var(--border-radius);
}

.protfolio__Detail_ImageBox .slick-dots{
    margin-top: 1rem;
}

.imageBox__Inner .slick-arrow {
    border: none !important;
}

.imageBox__Inner .slick-arrow:hover {
    background-color: var(--bw-fade-3) !important;
}

.protfolio__Detail_ImageBox .slick-arrow.slick-prev {
    left: calc(100% - 1.5rem) !important;
}

.protfolio__Detail_ImageBox .slick-arrow.slick-next {
    right: calc(100% - 1.5rem) !important;
}

.slider__Video {
    position: relative;
    width: 100%;
    padding-top: 97%;
}

.slider__Video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.brand__Video_Btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bw-fade-3);
    transition: 0.25s;
    border: none;
    outline: none;
}

.brand__Video_Btn:hover {
    background-color: var(--bw-fade-2);
}

.brand__Gallery_Slider {
    margin-bottom: 2rem;
}

/* ------------------------------- Responsive ------------------------------- */
@media (min-width:992px) {
    .brand__MainLogo_Box {
        margin-top: 2.5rem;
    }
}

@media (max-width:991px) {
    .imageBox__Inner {
        padding: 1rem 1rem 40px;
    }
}

/* !brand Gallery Slider end */


/* *protfolio info section start */
.brand__MainLogo_Box {
    display: flex;
    justify-content: center;
    align-self: center;
}

.brand__Info_List li {
    list-style-position: inside;
    font-size: var(--fz-lg);
}
.brand__Info_List h1 {
    font-size: var(--fz-xxl);
    line-height: normal;
    font-weight: var(--fw-800);
}

.brand__Info_List .detail-list li>span:before,
.brand__Info_List .detail-list li>a:before,
.brand__Info_List .divItems>div:before {
    position: static;
    margin-top: 0;
    margin-left: 0.5rem;
}

.brand__Info_List .divItems {
    padding-right: 0;
}

.brand__Info_List .divItems>div {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-size: var(--fz-md);
}
.brand__Info_List .divItems>div>div:nth-child(1) {
    font-weight: var(--fw-800);
    margin-left: 0.5rem;
}

.info__List_Colors img {
    margin-right: auto;
}

.brand__About_Wrapper .showmore-button {
    transform: none;
    text-align: right !important;
    text-decoration: underline !important;
    background: transparent;
    padding: 0;
    position: relative;
    top: 1.5rem;
    left: unset;
    color: var(--mc1);

}

.brand__About_Wrapper .showmore-button::before {
    position: absolute;
    content: '';
    bottom: 100%;
    right: 0;
    width: 100%;
    height: 25px;
    display: block;
    background: var(--white);
    background: linear-gradient(0deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    transition: 0.5s;
}

.brand__About_Wrapper .showmore-button:has(.active)::before {
    opacity: 0;
    visibility: 0;
}

.brand__About_Text {
    padding-bottom: 2rem;
}

.protfolio__Detail_Info {
    padding: 0 7% !important;
}

/* ------------------------------- Responsive ------------------------------- */
@media (max-width:991px) {
    .protfolio__Detail_Info,.protfolio__Detail_ImageBox {
        margin-bottom: 40px;
    }
    .brand__Info_List li{
        font-size: 16px;
    }
}
/* !protfolio info section end */


/* *Portfolio related start */

.portfolio__Detail_Bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: var(--main-space);
    position: relative;
    background:  var(--mc1) url(../Images/footerPattern.svg) no-repeat bottom;
    background-size: 200;
}

.protfolio__Related_Title {
    width: fit-content;
    color: var(--black);
}

.portfolio__Related .other-portfolio-box {
    border: none;
    padding: 0 0.5rem;
    border-radius: var(--border-radius-sm); 
}


.portfolio__Related .other-portfolio-box img{
    border-radius: var(--border-radius-sm);
}

.portfolio__Detail_Bottom .btnStyle_White{
    margin-top: 2.5rem;
}



/* ?------------------------------- responsive ------------------------------- */

@media (min-width:992px) {
    .protfolio__Related_Slider .slick-track{
        margin: auto;
    }
}

@media (max-width:991px) {
    .RelatedWrapper {
        display: flex;
        overflow-x: scroll;
    }

    .other-portfolio-box{
        min-width: 300px;
        width: 300px;
    }

    .portfolio__Detail_Bottom{
        padding-bottom: 7rem;
    }

   
}

@media (max-width:576px) {
    .portfolio__Related{
        margin-inline: -15px;
    }
}
/* !Portfolio related end */