html { scroll-padding-top: 180px; }

body::before {
    display: block;
    content: '';
    height: 180px;
}

.primary-color-bg {
    background-color: #002868;
}

.primary-dark-color-bg {
    background-color: #00003d;
}

.primary-light-color-bg {
    background-color: #405097;
}

.secondary-color-bg {
    background-color: #bf0a30;
}

.secondary-dark-color-bg {
    background-color: #87000a;
}

.secondary-light-color-bg {
    background-color: #f85059;
}

.primary-color-text {
    color: #002868;
}

.read-more-content {
    display: none;
}

.popup-box {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.popup-box.open {
    visibility: visible;
    opacity: 1;
}

.popup-box .popup-content {
    background-color: #fff;
    width: 600px;
    position: absolute;
    width: 75%;
    top: 50%;
    transform: translate(16.5%, -30%);
    border-radius: 8px;
}

.popup-box .popup-header {
    padding: 15px 40px 15px 15px;
    border-bottom: 1px solid #87000a;
}

.popup-box .popup-header .popup-close-icon {
    position: absolute;
    height: 30px;
    width: 30px;
    text-align: center;
    color: #87000a;
    font-size: 28px;
    line-height: 30px;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

.popup-box .popup-header h3 {
    margin: 0;
    color: #87000a;
}

.popup-box .popup-body {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.popup-box .popup-footer {
    padding: 15px;
    border-top: 1px solid #00003d;
    text-align: right;
}

.form-layout {
    width: 100%;
}

@media(min-width: 768px) {
    .news-input{
        width: 65%;
    }

    #contactInformation {
        max-width: 50%;
    }
}