﻿body {
    background: #0a0a0c;
    color: white;
    font-family: 'Futura PT';
}

main {
    display: block;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    font-family: 'Futura PT', "Beaufort for LOL", YuMincho, "Yu Mincho", "MS Mincho", "Hiragino Kaku Gothic ProN", serif;
}

.h6, h6 {
    font-size: 1.2rem;
}

a {
    color: #ffc107;
    text-decoration: none;
}
a:hover, a:focus {
    color: #ffffff;
    color: #ffd24a;
    text-decoration: none;
}

.text-primary {
    color: orange !important;
}


/* Constrols */
.btn-primary {
    background-color: #101217;
    border: 1px solid #362d21;
    /* background-color: #14181d; */
    background-color: #101217 !important;
    border: 1px solid #322c24;
    color: #c4b998;
    padding: 11px 34px;
}
.btn-primary:hover {
    background-color: #14181d;
}


input[type="text"], input[type="password"], select, input[type="date"], .form-control {
    background-color: #101217 !important;
    border: 1px solid #322c24;
    color: #c4b998;
}

.form-control:focus {
    color: #dadada;
    background-color: #14171d !important;
    border-color: #3f608f;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(112 168 250 / 25%);
}

/* NAVBAR */
.navbar {
    background-color: #111 !important;
    border-bottom: 2px solid rgba(51,51,51,.25);
    box-shadow: 0 0 6px 5px rgba(0,0,0,.4);
    font-family: 'Futura PT', "Beaufort for LOL", sans-serif;
    min-height: 70px;
    z-index: 3000000;
    position: absolute;
    width: 100%;
}
.navbar-nav .nav-item {
    margin-right: 10px;
}
.navbar-nav .nav-link {
    display: flex;
    position: relative;
    margin: auto;
    padding: 0 !important;
    flex-direction: column;
    justify-content: center;
    height: 66px;
    color: #f9f9f9 !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: .08em;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
}
.navbar-nav .nav-link p {
    padding: 7.5px 16px;
    text-align: center;
    margin: 0 !important;
    margin-right: 4px;
    transition: .2s;
}

.navbar-nav .nav-link:hover p {
    background: rgba(128,128,128,.3);
    border-radius: 6.4px;
}

.desktop-link-item-underline {
    opacity: 0;
    background-color: rgb(11, 196, 226);
    position: absolute;
    bottom: 7px;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    transition: .2s;
}
.nav-link:hover .desktop-link-item-underline {
    opacity: 1;
}

.user-nav .nav-link p {
    background: rgba(128,128,128,.3);
    border-radius: 6.4px;
}
.user-nav .nav-item.gold p {
    text-align: center;
    line-height: 16px;
    position: relative;
    z-index: 0;
    text-overflow: ellipsis;
    height: 32px;
    border-radius: 12px;
    padding: 8px 16px;
    color: #111;
    background: linear-gradient(315deg, rgb(226 150 11) 0%, rgb(194 166 44) 100%);
}
.user-nav .nav-link:hover p {
    filter: brightness(120%);
}

/* banner section */
section.home-banner {
    position: relative;
    z-index: 1;
    height: 500px;
    filter: brightness(85%);
    display: flex;
    justify-content: left;
    background: url(../../images/imperium/bg.jpg) no-repeat 50% -55px;
}

.home-banner iframe {
    width: 560px;
    height: 315px;
    margin-top: 70px;
    margin-left: -110px;
}

.home-banner__item {
    width: 100%;
    height: 50px;
    display: flex;
    position: absolute;
    bottom: -50px;
    background: #0f0f0f;
    border-top: 3px solid #1d1d1d;
    border-bottom: 3px solid #1d1d1d;
    text-align: center;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px 14px rgba(0,0,0,.4);
}
.home-banner__content {
    position: absolute;
    width: 635px;
    height: 230px;
    display: flex;
    background: #16171b;
    text-align: center;
    background: url(../../images/imperium/banner-bg.png) no-repeat center;
    background-size: contain;
    justify-content: center;
    align-items: center;
}


.home-banner__item h2 {
    color: #c4b998;
    color: #e4d8b6;
    font-size: 22px;
    letter-spacing: 4px;
    padding: 0 50px;
    text-transform: uppercase;
}

.home-banner__item h1 {
    color: #937341;
    color: #ffe634;
    font-size: 40px;
    letter-spacing: 3px;
    padding: 7px 50px 14px;
    margin: 0;
    text-transform: uppercase;
}

.home-banner__item p {
    color: #c4b998;
    font-size: 18px;
    line-height: 1.4;
    padding: 0 50px 0;
    margin: 0;
    position: relative;
}

.home-banner__item p:after {
    -webkit-transition: opacity 1.5s ease;
    -moz-transition: opacity 1.5s ease;
    transition: opacity 1.5s ease;
    left: -webkit-calc(50% - 30px);
    left: calc(50% - 30px);
    background: #937341;
    bottom: 0;
    content: "";
    height: 2px;
    opacity: 0;
    position: absolute;
    width: 60px;
}

.banner-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 110px;
    border-radius: 3px;
    padding: 5px;
    margin: 0 15px;
    overflow: hidden;
    cursor: pointer;
    transition: background-color .125s,box-shadow .125s,transform .125s;
}
.banner-button:hover {
    background-color: #131417;
    background-image: none;
    box-shadow: 0 8px 16px rgb(0 0 0 / 20%);
    text-decoration: none;
    transform: translateY(-4px);
}
.banner-button .icon {
    width: 150px;
    height: 80px;
}
.banner-button h4 {
    color: #c4b998;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumb {
    justify-content: center;
}

.breadcrumb .separator {
    color: #8c7f7e !important;
    padding: 0 5px;
}

/* Latest */
.latest {
    position: relative;
    overflow: hidden;
}

.latest .latestBackground {
    background-image: url(../../images/imperium/latestBg.jpg);
    background-position: 50%;
    background-size: cover;
    height: 850px;
    position: absolute;
    top: -205px;
    right: 0;
    bottom: 40%;
    left: 0;
    opacity: .15;
}

.latest .latestBackground .gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0a0a0c;
    background-image: -webkit-linear-gradient(top,#0a0a0c,rgba(0,0,0,0),#0a0a0c);
    background-image: linear-gradient(180deg,#0a0a0c,rgba(0,0,0,0),#0a0a0c);
    background-color: rgba(0,0,0,0);
}

.majorSectionHeader {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.line {
    position: relative;
    width: 30%;
    display: flex;
    align-items: center;
}
.lineLeft {
    transform: rotate(180deg);
}
.titleStart {
    color: #c4b998;
    font-size: 24px;
    letter-spacing: 7px;
    position: relative;
    text-indent: 8px;
    text-transform: uppercase;
}
.diamond, .diamondLeft, .diamondRight {
    position: relative;
    background: #373121;
    font-size: 0;
    z-index: 1;
    width: 5px;
}
.diamondLeft:before, .diamondRight:before {
    height: 5px;
    width: 5px;
    position: absolute;
    top: -3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 1px solid #373121;
    background: #171717;
    content: "\25C7";
    font-size: 0;
}


.home-content {
    background-color: rgba(0,0,0,.75);
}

@media (min-width: 1368px) {
    .content--wide {
        width: 1358px;
    }
}
.home-wrap {
    display: flex;
    margin: 40px auto 10px;
}

/* Borders */
.ags-ContainerModule-container-imageBorderContainer {
    position: relative;
    padding: 25px;
    background-color: rgb(7 7 7 / 75%);
    display: flex;
    flex-direction: column;
}

.ags-ContainerBorder {
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
}

.ags-ContainerBorder--top {
    top: -4px;
}

.ags-ContainerBorder--bottom {
    bottom: -4px;
    transform: rotate(180deg);
}

.ags-ContainerBorder-diamond {
    width: 9px;
    height: 9px;
    border: 1px solid #141312;
    background-image: radial-gradient(#545454,#8a898a);
    left: calc(50% - 4.5px);
    transform: rotate(45deg);
}

.ags-ContainerBorder-diamond, .ags-ContainerBorder-left, .ags-ContainerBorder-right {
    position: absolute;
}

.ags-ContainerBorder-left {
    left: -4px;
    right: calc(50% + 4px);
}

.ags-ContainerBorder-left, .ags-ContainerBorder-right {
    top: -2px;
    border-top: 5px solid #4f4f4f;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.ags-ContainerBorder--light .ags-ContainerBorder-left, .ags-ContainerBorder--light .ags-ContainerBorder-right {
    border-top: 5px solid #545454b3;
}

.ags-ContainerBorder-right {
    right: -4px;
    left: calc(50% + 4px);
}

.ags-ContainerBorder-left, .ags-ContainerBorder-right {
    top: -2px;
    border-top: 5px solid #4f4f4f;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.ags-ContainerBorder-left:before, .ags-ContainerBorder-right:before {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: -5px;
    border-top: 4px solid #161616;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}


/* FOOTER */
.footer {
    background-color: #111;
    padding: 0px 0px 28px 0px;
    border-top: 2px solid #343434;
    margin-top: 100px;
}

.footer .footer__links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    user-select: none;
    box-sizing: border-box;
    background: #292929;
    padding: 18px;
    margin: 0;
    color: #7e7e7e;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}
.footer__links a, .footer-legal-links a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #f9f9f9;
    transition: all .2s linear;
}
.footer__links a:hover, .footer-legal-links a:hover {
    background: rgba(128,128,128,.3);
    border-radius: 6.4px;
}

.footer .footer__copyright {
    margin: 0 auto;
    max-width: 640px;
    padding: 24px 0 8px;
    font-weight: 500;
    font-size: 13px;
    line-height: 140%;
    text-align: center;
    word-break: keep-all;
    color: #7e7e7e;
}
.footer .footer-legal-links {
    display: flex;
    justify-content: center;
    user-select: none;
    box-sizing: border-box;
    padding: 24px 0px 28px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

/* Donate BGs */
.donate-item .bg-1 {
    background: url(../../images/imperium/donate/donate-bg-1.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-2 {
    background: url(../../images/imperium/donate/donate-bg-2.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-3 {
    background: url(../../images/imperium/donate/donate-bg-3.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-4 {
    background: url(../../images/imperium/donate/donate-bg-4.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-5 {
    background: url(../../images/imperium/donate/donate-bg-5.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-6 {
    background: url(../../images/imperium/donate/donate-bg-8.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-7 {
    background: url(../../images/imperium/donate/donate-bg-9.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-8 {
    background: url(../../images/imperium/donate/donate-bg-9.jpg) no-repeat center;
    background-size: cover;
}

.donate-item .bg-9 {
    background: url(../../images/imperium/donate/donate-bg-9.jpg) no-repeat center;
    background-size: cover;
}
/* Social Links Container */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 999;
    margin-top: 70px;
}

/* The Link Tags */
.social-links a {
    display: block;
    flex-shrink: 0;
    height: fit-content;
}

.social-links img {
    height: auto;
    width: auto;
    display: block; /* Notice margin-top is gone from here! */
    transition: transform 0.2s ease;
}

.social-links img:hover {
    transform: scale(1.05);
}
