@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@400;600&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --red: #db0100;
    --darkred: #880000;
    --blue: #296fb7;
    --darkblue: #0B57A5;
    --black: #000;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: var(--black);
    font-weight: 600;
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.Normal {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: var(--black);
}

p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--blue);
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--black);
}

a:visited {
    color: var(--blue);
}

a:visited:hover {
    text-decoration: none;
    color: var(--black);
}

.bi {
    font-size: 1.4em;
    padding: 0 10px;
    vertical-align: middle;
}

hr.blue-hr-center {
    border: none;
    border-top: 3px solid var(--blue);
    max-width: 100px;
    margin: 10px auto;
}

hr.red-hr-center {
    border: none;
    border-top: 3px solid var(--red);
    max-width: 100px;
    margin: 10px auto;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container-fluid .row {
    margin-right: 0;
    margin-left: 0;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    padding: 0;
    letter-spacing: 1px;
}

.bg-dark {
    background-color: var(--black) !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

#dnn_dnnLOGO_imgLogo {
    max-height: 80px;
    margin-left: 20px;
    margin-right: 5px;
}

.nav-item {
    text-align: center;
}

.nav-link {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff !important;
    border-bottom: 2px solid rgba(255,255,255,0);
    display: inline-block;
    text-decoration: none;
    line-height: 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-link:hover {
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,1);
    color: #fff !important;
}

.nav-link:visited {
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0);
}

.nav-link:visited:hover {
    text-decoration: none;
    color: #fff !important;
    border-bottom: 2px solid rgba(255,255,255,1);
}

.dropdown-menu {
    background-color: #505050;
    margin: 0;
    min-width: 10rem;
}

.dropdown-menu .nav-link {
    line-height: initial;
}

.dropdown-menu .nav-link:hover {
    color: #ccc !important;
    border-bottom: 2px solid rgba(255,255,255,0);
}

.dropdown-menu .nav-link:visited {
    color: #fff !important;
}

.dropdown-menu .nav-link:visited:hover {
    color: #ccc !important;
    border-bottom: 2px solid rgba(255,255,255,0);
}

.dropdown-menu .active {
    border-radius: 0px;
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

.hero-bg {
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    height: 400px;
}

.Page-Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/Portals/168/sims.jpg');
    height: 600px;
}

/*  */

.PageType_Normal .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/Portals/168/sims.jpg');
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-text h1 {
    text-transform: uppercase;
}

.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4,
.hero-text h5 {
    color: #fff;
    font-weight: 700;
}

.header-logo {
    max-width: 200px;
    width: 100%;
}

#MainContent {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.slider p {
    margin-top: 0;
    margin-bottom: 0;
}

#MainContent li {
    list-style-type: disc;
}

.image-border {
    border-radius: 10px;
}

.grey {
    background-color: #f5f5f5;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 1px solid var(--blue);
}

.grey li {
    font-size: .85rem;
}

.blue-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--blue);
    color: var(--white) !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.blue-button:hover {
    background-color: var(--darkblue);
    color: var(--white) !important;
    text-decoration: none;
}

.red-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    background-color: var(--red);
    color: var(--white) !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.red-button:hover {
    background-color: var(--darkred);
    color: var(--white) !important;
    text-decoration: none;
}

/* home */

dnn_ContentPaneNarrow {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

/* home page buttons */

.zoom-button {
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.zoom-button img {
    width: 100%;
    transition: transform .5s ease;
}

.zoom-button:hover img {
    transform: scale(1.3);
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.text-overlay h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
    color: var(--white);
    font-size: 3rem;
}

.text-overlay a {
    color: var(--white) !important;
    text-decoration: none;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    border-top: 1px solid var(--blue);
    background-color: var(--white);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (min-width: 996px) {

    .dropdown-menu {
        border-radius: 0;
    }

    .hero-text h1 {
        font-size: 5rem;
    }

    #MainContent {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }
}

@media screen and (max-width: 997px) {

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .header-logo {
        max-width: 100px;
    }
}

@media screen and (max-width: 768px) {
   
}
