.pevents {
    margin: 20px 0 0 0;
    padding: 0 0 20px 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
}
.peventcont {
    width: 100%;
    margin: 0 auto;
}
.pehead {
    padding: 20px 0;
}
.pehead p {
    font-family: "Poppins";
    font-size: 22px;
}
.pesubhead {
    margin: 20px 0;
}
.pesubhead p {
    font-family: "Poppins";
    font-size: 16px;
    font-style: italic;
}

.pelist {
    position: relative;
    text-align: left;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #e0e0e0;
    padding: 10px 0;
}
.lbarrow {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 13px -6px #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 8px;
    top: calc((100% - 40px) / 2);
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.lbarrow img {
    width: 100%;
}
.lbleft {
    left: calc((100% - 1300px) / 2);
    text-indent: -2px;
}
.lbright {
    right: calc((100% - 1300px) / 2);
    text-indent: 2px;
}
.peslider {
    position: relative;
    width: 1200px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
}
.pecarousel {
    position: absolute;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    width: max-content;
    transition: left 0.4s;
}
.peitem {
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: 180px;
}
.peitemimg {
    height: 100%;
    box-shadow: 0 0 10px 0 #8f8f8f;
    cursor: pointer;
}
.peitemimg img {
    height: 100%;
    display: block;
}
.peitem:hover .peitemtext {
    opacity: 1;
}
.peitemtext {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: opacity 0.4s;
    padding: 5px;
    cursor: pointer;
}
.peitemtext p {
    font-family: "Poppins";
    font-size: 14px;
    color: #2a2a2a;
}
