﻿/* ---------------------------------------------------------------
    Theme Name : PNT
    Version: 08.2025
  ---------------------------------------------------------------- */

@import url(templates/_template-1.css);
@import url(slider/_owl-main.css);
@import url(cards/_cards.css);
@import url(listgroup/_listgroup.css);
@import url(section/_why-choose.css);
@import url(tabs/_pills-tab.css);
@import url(portlets/_portlets-ts.css);

.w--110 {
    width:110px;
}

.psc-event {
    background-color: #3e3e3d;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.event-bottom {
    background-color: #fff;
    padding-top: 1rem;
}

@media(max-width:1024px) {
    .container {
        max-width: 100%;
    }
}

header.psc-section.header--fixed {
    z-index: 9999;
}

/**/
.see-more-link {
    text-transform: uppercase;
    color: var(--highlight);
    font-weight: 500;
    display: block;
}

.backtotop {
    background-color: #00612a;
    border: 1px solid #fff;
    width: 45px;
    bottom: 0;
    right: 0px;
    padding: 5px 0;
    overflow: hidden;
    z-index: 99999;
    position: fixed;
    display: block;
    text-align: center;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    color: #fff;
}

    .backtotop:hover,
    .backtotop:focus {
        color: white;
        text-shadow: 0 0 7px rgba(255,255,255,0.7);
    }

    .backtotop i {
        font-size: 24px;
        margin: 0;
        display: block;
    }

@media(max-width:767px) {
    .navbar-brand {
        padding-top: inherit;
    }
}
.card.border-0 .hvr-shine{
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.chairman-list {
    display:grid;
    grid-template-columns:repeat(5, 1fr); /* tối đa 5 người */
    gap:25px;
}
/* ===== POPUP ===== */
.chairman-item {
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

    .chairman-item img {
        width: 180px;
        height: 230px;
        border-radius: 50%;
        object-fit: cover;
	object-position:top;
        transition: 0.4s;
	transform: scale(1.05);
    }

    /* Hover zoom */
    .chairman-item:hover img {
        transform: scale(1.1);
	box-shadow:
        0 0 25px #00ff66,
        0 0 50px rgba(0,255,102,0.6);
    }

    .chairman-item h3 {
        color: #009245;
        font-size: 16px;
        margin-top: 12px;
    }

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s;
}

    .popup-content img {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
@media(max-width:1200px){
    .chairman-list{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:768px){
    .chairman-list{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .chairman-list{
        grid-template-columns:repeat(1,1fr);
    }
}

