/* styles.css */
.filter-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.filter-buttons {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

button.filter-btn {
    background-color: transparent;
    outline: none;
    border: none;
    padding: 8px 12px;
    line-height: 100%;
}

button.filter-btn.active {
    background-color: #d9e6ff;
    border-radius: 6px;
}

.search-section {
    display: flex;
    align-items: center;
}

.search-section input, .search-section select {
    margin-left: 10px;
}

#searchInput {
    padding: 7px 10px 7px 40px;
    background: url(./images/search_3978029.svg) no-repeat scroll 10px 10px;
}
#searchDropdown {
    -webkit-appearance: none;
    appearance: none;
    padding: 7px 40px 7px 10px;
    background: url(./images/arrow_14098546.svg) no-repeat scroll right 10px center;
    background-size: 12px;
}
#searchInput, #searchDropdown  {
    background-color: #FFFFFF;
    border: 1px solid #D0D5DD;
    box-sizing: border-box;
    box-shadow: 0px 1px 2px rgb(16 24 40 / 5%);
    border-radius: 6px;
    margin-right: 10px;
    outline: none;
    height: 40px;
    min-width: 250px;
}
.content {
    text-align: left;
    line-height: inherit;
    font-weight: inherit;
}
.content-section {
    display: block;
    margin-top: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 80px 50px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.content-section>div {
    width: calc((100% / 3) - 50px);
}
.slick-dotted.slick-slider {
    width: 100%;
}
.slick-list.draggable {
    margin-bottom: 30px;
}
.content-section>h2 {
    width: 100%;
    text-align: center;
}

.document-thumbnail {
    padding: 30px 0;
    padding-bottom: 0;
    border-radius: 10px;
    background-color: #F5F5F5;
    overflow: hidden;
    margin-bottom: 10px;
}

.document-thumbnail img {
    width: 80%;
    display: block;
    margin: auto;
    box-shadow: #32325d40 0 50px 100px -20px, #0000004d 0 30px 60px -30px;
}

.document-title, .content.container a.document-url, .content.container p.document-desc {
    line-height: 28px;
    font-weight: 400;
    text-align: left;
}
.document-title {
    font-size: 18px;
}
.content.container a.document-url {
    font-size: 16px;
}
.content.container p.document-desc {
    font-size: 15px;
}
.case-study>div {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    height: 100%;
}
.case-study .document-thumbnail {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid #dee2e6;
}
.case-study .ducument-details {
    padding: 0 20px 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-height: 100%;
}
.case-study img {
    max-height: 50px;
    box-shadow: none;
}
.watch-video {
    position: relative;
}
.watch-video:hover button[name="play"]{
    transform: translate(-50%, -50%);
    opacity: 1;
}
#video .watch-video:hover img{
    filter: brightness(1) grayscale(0);
}
#video .slick-slide img {
    filter: brightness(0.7) grayscale(1);
    transition: all 0.5s;
}
#videoModel button.close {
    position: inherit;
}
button[name="play"] {
    width: 50px;
    height: 50px;
    background: red;
    border: none;
    border-radius: 100%!important;
    margin: 0 auto;
    cursor: pointer!important;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 300%);
    transition: all 0.8s cubic-bezier(0.54, 0, 0, 1.68);
    z-index: 1;
}
button[name="play"]::before {
    display: none;
}
button[name="play"]::after {
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    left: 3px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent white;
}
.slick-track {
    align-items: flex-start;
}
#pr .pnm-link {
    padding: 0 20px 20px;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
}
#pr .slick-slide {
    height: 400px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 0px 20px;
} 
.press-release {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0D51D9;
}
#pr .press-thumbnail {
    margin-top: 10px;
}
#pr .press-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    padding: 16px 0;
}
#pr .press-date {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #5D636E;
}