@media only screen and (max-width: 1000px) {
    .desktop {
        display: none !important;
    }
    .section {
        padding: 0px 10px;
    }
    .section .section-logo {
        width: 100%;
        max-width: 100px;
        height: auto;
    }
}
@media only screen and (min-width: 1001px) {
    .mobile {
        display: none;
    }
    .section .section-logo {
        width: 100%;
        max-width: 150px;
        height: auto;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: acumin-pro, sans-serif;
    color: #333333;
    font-weight: 500;
}

body {
    overflow-x: hidden;
}

.section a {
    color: #047de5;
    font-size: 1.4em;
    font-weight: bolder;
}

.fa-angle-right {
    color: #047de5;
}

.darkab-navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1400;
}

.darkab-navbar li,
.darkab-navbar a,
.navbar-btn {
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
}

.active {
    transition: all 0.4s ease 0s;
    background-color: #24252A;
}

.nav-links {
    list-style: none;
    margin-top: 10px;
}

.nav-links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav-links li a {
    transition: all 0.3s ease 0s;
}

.nav-links li a:hover {
    opacity: 0.8;
}

.navbar-btn {
    padding: 9px 25px;
    background-color: #047de5;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.navbar-btn:hover {
    opacity: 0.8;
}

.section {
    margin-bottom: 10px;
    height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-content {
    vertical-align: middle;
}

.section-text-primary {
    color: #222222;
}

.section-text-secondary {
    color: #444444;
}

.section-dark .section-text-primary {
    color: white;
}

.section-dark .section-text-secondary {
    color: #eeeeee;
}

.section-darkabdm {
    background: url("assets/darkmineBackground.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.section-darkabui {
    background: #f5f5f7;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-darkabts {
    background: url("assets/tsBackground.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 5px;
}

.section-darkabpss {
    background: url("assets/pssBackground.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 5px;
}

.page-heading {
    background-color: #047de5;
    width: 100%;
    color: white;
    padding: 20px;
}

.page-content {
    min-height: 100vh;
    padding-top: 30px;
    padding-bottom: 30px;
}

.text-uppercase {
    letter-spacing: 0.15em;
}

.social-link {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-link:hover,
.social-link:focus {
    background: #ddd;
    text-decoration: none;
    color: #555;
}