.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 0px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-banner-text .block-title h1 {
    color: #ffffff;
}

.copyrights-col-left a {
    color: #ffffff;
}

.copyrights-col-left a :hover {
    color: #6A7EA6;
}

.form-control {
    margin-bottom: 0;
}

.modal-header {
    background-color: #425271;
    color: #fff;
}

.modal-header .modal-title,
.modal-header .close {
    color: #fff;
}

.modal-footer .btn-primary:hover:after {
    right: -50px;
}

/*
    LOADER
*/

.loader-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 247, 248, 0.5);
    z-index: 1251;
    display: none;
    text-align: center;
}

.loader-container .logo {
    position: relative;
    top: 35%;
    left: 0;
    right: 0;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.loader-container .lds-ring {
    position: relative;
    width: 45px;
    height: 45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 36%;
}

.loader-container .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 45px;
    height: 45px;
    margin: 0;
    border: 3px solid;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #435271 transparent transparent transparent;
}

.loader-container .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.loader-container .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.loader-container .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}