:root {
    --cg-background: #000000;
    --cg-primary-color-text: #f3f4f6;
    --cg-secondary-color-text: #8b8b8b;
    --cg-text-font-family: "General Sans";
    --cg-primary-font-weight: 300;
    --cg-secondary-font-weight: 400;
    --cg-text-font-size: 16px;
    --cg-text-line-height: 21px;
    --cg-border-color: #cccccc;
    --cg-course-separator-color: #cccccc;
    --cg-link-color: #8b8b8b;
}

body {
    min-height: 100vh;
}

.black-theme {
    background-color: var(--cg-background);
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--cg-primary-color-text);
    font-size: var(--cg-text-font-size);
    font-weight: var(--cg-primary-font-weight);
    line-height: var(--cg-text-line-height);
}

.layout-header {
    /*position: sticky;*/
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #1f2937;
    backdrop-filter: blur(4px);
    /*-webkit-backdrop-filter: blur(4px);*/
}

.header-navbar {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-text {
    animation: rainbow 8s linear infinite;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}

@keyframes rainbow {
    0% {
        color: #22d3ee;
    }

    25% {
        color: #9400d3;
    }

    50% {
        color: #2563eb;
    }

    75% {
        color: #9333ea;
    }

    100% {
        color: #22d3ee;
    }
}

@keyframes rainbow1 {
    0% {
        color: #ff0000;
    }

    14% {
        color: #ff7f00;
    }

    28% {
        color: #ffff00;
    }

    42% {
        color: #00ff00;
    }

    57% {
        color: #0000ff;
    }

    71% {
        color: #4b0082;
    }

    85% {
        color: #9400d3;
    }

    100% {
        color: #ff0000;
    }
}

.navbar-nav {
    display: none;
    font-weight: 400;
}

.navbar-nav li:not(:first-child) {
    margin-left: 32px;
}

@media (min-width: 768px) {
    .navbar-nav {
        display: -webkit-box;
    }
}

.navbar-nav li a {
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    color: #d1d5db;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.navbar-nav li a:hover {
    color: #22d3ee;
}

.header-menu {
    display: flex;
    align-items: center;
}

.sign-in {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background-image: linear-gradient(to right, #06b6d4, #2563eb);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    font-weight: 400;
}

.sign-in:hover {
    background-image: linear-gradient(to right, #0891b2, #1d4ed8);
}

.section-bg {
    content: '';
    display: block;
    width: 100%;
    background-image: url(/images/al-0004.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    position: relative;
}

.section-bg_dev {
    content: '';
    display: block;
    width: 100%;
    background-image: url(/images/aladamus-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    position: relative;
}

.section-bg-blur {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.8), #000);
}

.section-bg_dev .section-bg-blur {
    background-image: linear-gradient(to bottom, #000, rgb(0 0 0 / 0.2), #000);
}

.section-bg .cg-container {
    padding: 8rem 1.5rem;
}

.section-bg_dev .cg-container .m-auto,
.section-bg .cg-container .m-auto {
    z-index: 100;
}

.rainbow-text {
    animation: rainbow 8s linear infinite;
}

.text-gradient {
    color: transparent !important;
    background-clip: text;
    background-image: linear-gradient(to right, #22d3ee, #3b82f6);
}

.text-gradient_purple {
    color: transparent !important;
    background-clip: text;
    background-image: linear-gradient(to right, #c084fc, #9333ea);
}

.text-gradient_green {
    color: transparent !important;
    background-clip: text;
    background-image: linear-gradient(to right, #64ff00, #4ade80);
}

.text-gradient_pink {
    color: transparent !important;
    background-clip: text;
    background-image: linear-gradient(to right, #f472b6, #ff1cbd);
}

.section-bg p {
    color: #d1d5db;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.btn-cg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    font-weight: 600;
}

.btn-cg-primary {
    background-image: linear-gradient(to right, #06b6d4, #2563eb);
}

.btn-cg-secondary {
    color: #22d3ee;
    border: 1px solid #22d3ee;
}

.btn-cg-primary:hover {
    background-image: linear-gradient(to right, #0891b2, #1d4ed8);
    transform: scaleX(1.05) scaleY(1.05);
}

.btn-cg-secondary:hover {
    background-color: rgb(34 211 238 / 0.1);
}

.neon-text {
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.section-bg-gradient {
    margin: 80px 0 0 0;
}

.section-bg-gradient p {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #9ca3af;
}

.card_img-extended {
    width: 100%;
    margin-bottom: 3rem;
}

.col-md-6:nth-child(2n+1) .card_img-extended {
    padding-right: 40px;
}

.card_img-75 {
    width: 1088px;
    margin-bottom: 2rem;
}

.card_img-bg {
    height: 100%;
}

.card_img-tag {
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.bal-container {
    position: relative;
    width: 100%;
    height: auto;
    cursor: grab;
    overflow: hidden;
}

.bal-container--sticky {
    margin-top: -390px;
}

.max-width-3528 {
    max-width: 3528px;
    margin: auto;
}

.max-width-1500 {
    max-width: 1500px;
    margin-right: auto;
}

.max-width-2000 {
    max-width: 2000px;
    margin-left: auto;
}

.max-width-2532 {
    max-width: 2532px;
    margin: auto;
}

.bal-after {
    display: block;
    overflow: hidden;
}

.bal-before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    overflow: hidden;
}

.bal-before-inset {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.bal-after img,
.bal-before img {
    pointer-events: none;
    user-select: none;
    object-fit: cover;
    width: 100%;
    height: auto;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.bal-beforePosition {
    background: rgb(18 18 18 / 80%);
    color: #fff;
    left: 0;
    pointer-events: none;
    border-radius: 0.2rem;
    padding: 2px 10px;
}

.bal-afterPosition {
    background: rgb(18 18 18 / 80%);
    color: #fff;
    right: 0;
    pointer-events: none;
    border-radius: 0.2rem;
    padding: 2px 10px;
}

.beforeLabel {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin: 1rem;
    font-size: 1em;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.afterLabel {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin: 1rem;
    font-size: 1em;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.bal-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    z-index: 20;
    pointer-events: none;
    background: #ffffff;
    transform: translateX(-50%);
}

.handle-left-arrow,
.handle-right-arrow {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    margin-top: 14px;
}

.handle-left-arrow {
    left: -20px;
}

.handle-right-arrow {
    left: 20px;
}

.bal-container-range {
    display: none;
}

.card_img-text {
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

.card_img-btn {
    display: block;
    text-align: center;
    width: 100%;
    border-radius: 0.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-weight: 500;
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.card_img-btn.bg-cyan-600:hover {
    background-color: #0e7490;
}

.card_img-btn.bg-purple-600:hover {
    background-color: #7e22ce;
}


a {
    color: #d1d5db;
    text-decoration: inherit;
}

h1 {
    font-size: 2.75rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.5rem;;
}

h2 {
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;;
}

h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

.title-elem {
    width: 100%;
    margin: 5rem 0 3rem;
    text-align: center;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-green-400 {
    color: #4ade80;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-yellow-400 {
    color: #facc15;
}

.text-pink-400 {
    color: #f472b6;
}

.text-purple-400 {
    color: #c084fc;
}

.bg-cyan-600 {
    background-color: #0891b2;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-blue-900-30 {
    background-color: rgb(30 58 138 / 0.3);
}

.bg-cyan-900-30 {
    background-color: rgb(22 78 99 / 0.3);
}

.bg-green-900-30 {
    background-color: rgb(20 83 45 / 0.3);
}

.bg-yellow-900-30 {
    background-color: rgb(113 63 18 / 0.3);
}

.bg-pink-900-30 {
    background-color: rgb(131 24 67 / 0.3);
}

.bg-purple-900-30 {
    background-color: rgb(88 28 135 / 0.3);
}

.bg-cyan-900-50 {
    background-color: rgb(22 78 99 / 0.5);
}

.bg-purple-900-50 {
    background-color: rgb(88 28 135 / 0.5);
}


@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.cg-container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

.cg-container {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cg-container > .row {
    width: 100%;
}

main > .cg-container {
    padding: 60px 12px 24px;
}

@media (min-width: 1400px) {
    .cg-container {
        max-width: 1364px;
    }
}

@media (min-width: 2000px) {
    .cg-container {
        max-width: 1920px;
    }
}

@media (min-width: 1800px) {
    .cg-container {
        max-width: 1720px;
    }
}

@media (min-width: 2000px) {
    .cg-container {
        max-width: 1736px;
    }
}

@media (min-width: 2200px) {
    .cg-container {
        max-width: 1920px;
    }
}

@media (min-width: 2400px) {
    .cg-container {
        max-width: 2120px;
    }
}

@media (min-width: 2600px) {
    .cg-container {
        max-width: 2320px;
    }
}

@media (min-width: 3000px) {
    .cg-container {
        max-width: 2720px;
    }
}

@media (min-width: 3500px) {
    .cg-container {
        max-width: 3220px;
    }
}

@media (min-width: 3760px) {
    .cg-container {
        max-width: 3420px;
    }
}

@media (min-width: 4000px) {
    .cg-container {
        max-width: 3720px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: 0;
    margin-left: 0;
}

.blob {
    position: absolute;
    filter: blur(60px);
    opacity: 0.15;
    z-index: -1;
}

.blob-tl {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background-color: #ff00ff;
}

.blob-br {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -150px;
    background-color: #00f0ff;
}

.vector-shape {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    border-radius: 9999px;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    display: none;
    left: 5rem;
    top: 5rem;
    width: 10rem;
    height: 10rem;
    background-color: #00ff9d;
}

@media (min-width: 576px) {
    .shape-1 {
        display: block;
    }
}

.shape-2 {
    bottom: 10rem;
    width: 8rem;
    height: 8rem;
    background-color: #0fc;
    animation-delay: 1s;
}

.shape-3 {
    display: none;
    right: 20%;
    bottom: 0;
    width: 6rem;
    height: 6rem;
    background-color: #00f0ff;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.link-card {
    border-radius: 0.75rem;
    background-color: rgba(17, 24, 39, 30%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    cursor: pointer;
}

.link-card:hover {
    border-color: #00f0ff;
}

.link-card_icon {
    margin-bottom: 1.5rem;
    display: flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.link-card_icon i {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.link-card h3 {
    margin-bottom: 1rem;
}

.link-social {
    border-color: #00f0ff;
    cursor: auto;
}

@media (max-width: 576px) {
    .link-social {
        padding: 12px;
    }
}

.index-menu {
    max-height: 320px;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

@media (max-width: 576px) {
    .index-menu {
        max-height: 100%;
    }
}

.index-menu h3 {
    flex: 1;
}

.bal-range {
    position: relative;
    width: 100%;
    height: 100%;
}

.range-slider {
    position: relative;
    z-index: 999;
}

.range-slider_bg {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 2.25rem;
    border: 1px solid #22d3ee;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20%;
    left: 10%;
    width: 320px;
    height: 90px;
    margin: 150px 0;
}

.range-slider label {
    font-size: 20px;
    font-weight: 500;
    user-select: none;
}

.range-slider_input {
    -webkit-appearance: none;
    width: 100%;
    height: 1px;
    border-radius: 10px;
    background: #ffffff;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    cursor: pointer;
}

.range-slider_input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00dcff;
    cursor: pointer;
    margin-top: -1px;
    border: 1px solid black;
}

.range-slider_input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00dcff;
    cursor: pointer;
}

.range-slider_input:hover {
    opacity: 1;
}

.range-slider_ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 8.5px;
}

.range-slider_ticks span {
    display: flex;
    justify-content: center;
    width: 1px;
    height: 6px;
    background: #d3d3d3;
    line-height: 40px;
}

@media (max-width: 992px) {
    .bal-range {
        display: flex;
        flex-direction: column;
    }

    .bal-container--sticky {
        order: 1;
        margin-top: 0;
    }

    .range-slider {
        order: 2;
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
    }

    .range-slider_bg {
        border-radius: 0 0 0.5rem 0.5rem;
        border: none;
    }

    .sticky {
        margin: 0;
    }

    .col-md-6:nth-child(2n+1) .card_img-extended {
        padding-right: 0;
    }
}

.gallery_header {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 400px 0 80px 0;
    background-image: linear-gradient(to bottom, #000, #111827);
}

.gallery_header .link-card {
    margin: auto;
    cursor: auto;
}

.gallery_header .link-card:hover {
    border-color: transparent;
}


.gallery_item {
    display: inline-block;
    max-width: 337px;
    margin-bottom: 2px;
}

@media (max-width: 576px) {
    .gallery_item {
        max-width: 100%;
    }
}

.gallery-item a {
    display: inline-block;
    background-color: #fff;
}

.fancybox__container .fancybox__backdrop {
    background: #000000;
    opacity: 0.99;
}

.fancybox__cols {
    --right-col-width: clamp(150px, 20vw, 300px);
    grid-template-columns: minmax(0, 1fr) var(--right-col-width);
    display: grid;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 720px) {
    .fancybox__cols {
        --right-col-width: auto;
        grid-template-columns: auto;
    }

    #fancybox_title {
        font-size: 14px;
    }
}

.has-sidebar .fancybox__cols {
    grid-template-columns: minmax(0, 1fr) 0;
}

.fancybox__col {
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
    overflow: hidden;
}

.fancybox__data {
    width: var(--right-col-width);
    padding: 1rem;
    height: 100%;
    overflow: auto;
    background: rgba(13, 14, 18, 0.40);
}

.fancybox__button--thumbs,
.fancybox__thumbs {
    display: none;
}

.col-lg-4 a {
    text-decoration: none;
}

.resolution-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #9ca3af;
}

@media (max-width: 576px) {
    .link-social .ai-social {
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .link-social {
        margin-top: 24px;
    }

    .link-social .ai-social {
        flex-direction: column;
        text-align: left;
        align-items: normal !important;
        margin-right: 0 !important;
    }

    .link-social .ai-social .ml-3 {
        margin-left: 0 !important;
        margin-top: 16px;
    }
}