@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #0046AD;
    --text-color: #333333;
    --text-footer-color: #ececec;

    --primary-font: 'Poppins';
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--primary-font), sans-serif !important;
    font-weight: 400 !important;
}

.font-primary {
    color: var(--primary-color);
}

.font-primary-link {
    color: var(--primary-color);
}

.font-primary-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
    text-underline-offset: 5px !important;
}

.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.btn-video {
    background-color: transparent !important;
    cursor: pointer !important;
}

.btn-video:hover {
    background-color: var(--primary-color) !important;
}

.btn-video:hover p {
    color: white !important;
}

.color-text {
    color: var(--text-color);
}

.text-justify {
    text-align: justify;
}

/*.navbar-nav {*/
/*    white-space: nowrap;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*}*/

.navbar-nav .nav-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-images {
    width: 100%;
    height: auto;
}

@media (min-width: 576px) {
    .video-images {
        width: 80%;
    }
}

@media (min-width: 768px) {
    .video-images {
        width: 60%;
    }
}

@media (min-width: 992px) {
    .video-images {
        width: 70%;
    }
}

@media (min-width: 1200px) {
    .video-images {
        width: 100%;
    }
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-body iframe {
    flex: 1 1 45%;
    max-width: 45%;
    margin: 10px;
}

@media (max-width: 768px) {
    .modal-body iframe {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
