/* RTP - Our Story button */
.popup-trigger {
    background-color: #00263E !important;
    color: #fff !important;
    box-shadow: none;
    transition: all 300ms linear;
    border: 1px solid #00263E !important;
    border-radius: 5px;
    padding: 5px 16px;
    font-weight: 600;
}

.popup-trigger:hover {
    background-color: #fff !important;
    color: #00263E !important;
    border: 1px solid #00263E !important;
  
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 20px;
    max-width: 683px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin: 20px;
}

.popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 900;
    padding: 0px 10px 3px 10px;
    border: 2px solid white;
    color: #fff;
    background: black;
    cursor: pointer;
}

.popup-close:hover {
    color: #ccc;
}

.popup-hidden {
    display: none !important;
}


.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


