:root {
    --white: #ffffff;
    --black: #000000;
    --gray: #8f9091;
    --blue-primary: #042436;
    --blue-secondary: #2d5ba8;
    --yellow-primary: #f4a03b;
    --yellow-secondary: #a66718;
}

a {
    color: var(--blue-secondary);
}

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

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

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

.bg-color-blue-primary {
    background-color: var(--blue-primary);
}

.bg-color-yellow-primary {
    background-color: var(--yellow-primary);
}

.bg-color-yellow-secondary {
    background-color: var(--yellow-secondary);
}


html,
body {
    font-family: 'Bahn', Arial, Helvetica, sans-serif;
    font-weight: normal;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 16px;
    line-height: 1.3;
}


main {
    /* max-width: 1920px;
    margin: 0 auto; */
}

.container {
    width: 100%;
    max-width: 1600px;
}

/* menu button begin */
.toggleMenu {
    display: inline-block;
    width: 36px;
    min-width: 36px;
    height: 36px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .toggleMenu {
        display: none;
    }
}

.toggleMenu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--yellow-secondary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.toggleMenu span:nth-child(1) {
    top: 6px;
}

.toggleMenu span:nth-child(2),
.toggleMenu span:nth-child(3) {
    top: 50%;
    margin-top: -1px;
}

.toggleMenu span:nth-child(4) {
    bottom: 6px;
}

.openMenu .toggleMenu {
    /*border-color: #fff;*/
}

.openMenu .toggleMenu span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.openMenu .toggleMenu span:nth-child(2) {
    transform: rotate(45deg);
}

.openMenu .toggleMenu span:nth-child(3) {
    transform: rotate(-45deg);
}

.openMenu .toggleMenu span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* menu button end */

/* size begin */
#windowSize * {
    font-family: "Arial", sans-serif !important;
}

#windowSize {
    position: fixed;
    left: 0px;
    bottom: 120px;
    z-index: 100;
    background: rgba(0, 0, 0, 1);
    padding: 3px;
    text-align: right;
    font-weight: normal;
}

@media (min-width: 768px) {
    #windowSize {
        bottom: 250px;
    }
}

#windowSize tr {
    border-top: 1px solid #aaa;
}

#windowSize tr:first-of-type {
    border-top: none;
}

#windowSize td {
    font-size: 11px;
    color: #eee;
    margin: 0;
    padding: 0;
    text-align: center;
}

#windowSize td span.hideMe {
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
    padding: 0;
    color: #777;
}

#windowSize:hover td span {
    height: auto;
    line-height: 1;
    padding: 2px 0;
}

#windowSize b {
    color: red;
    font-weight: bold;
}

#windowSize p span {
    display: inline-block;
    padding: 0 3px;
    font-weight: bold;
}

#windowSize .ipAddress {
    max-width: 60px;
    word-wrap: break-word;
}

/* size end */

html body .btn-sm {
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.btn-with-icon .icon {
    background: var(--gray);
    width: 24px;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 5px;
    transition: all 0.3s ease;
}

.btn-with-icon .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-with-icon .text {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-with-icon:hover .icon {
    background-color: var(--white);
}

.btn-with-icon:hover .text {
    color: var(--white);
}

.btn.has-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn.has-icon .icon {
    display: block;
    width: 24px;
    min-width: 24px;
}

.btn.has-icon .icon img {
    width: 100%;
}

.btn-primary {
    background: var(--blue-primary);
    color: var(--yellow-primary);
    border: none;
    border-radius: 5px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--yellow-secondary);
    color: var(--blue-primary);
    border: none;
}

.btn-warning {
    background: var(--yellow-primary);
    color: var(--blue-primary);
    border: none;
    border-radius: 5px;
    padding: 10px 20px 6px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: var(--yellow-secondary);
    color: var(--white);
    border: none;
}

.btn-outline-warning {
    border: 2px solid var(--yellow-secondary);
    color: var(--yellow-secondary);
    background: transparent;
}

.btn-outline-warning:hover {
    background: var(--yellow-secondary);
    color: var(--white);
    border-color: var(--yellow-secondary);
    border-width: 2px;
}

.btn-white-border {
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    background: transparent;
}

.btn-white-border:hover {
    background: var(--white);
    color: var(--blue-primary);
}

.btn-square {
    border-radius: 0;
}

.has-top-and-bottom-white-borders {
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    border-right: none;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    margin-bottom: 20px;
}

.ico-scroll {
    width: 50px;
}

.ico-scroll img {
    width: 100%;
    display: block;
}

.text-svg {
    display: block;
    max-width: 100%;
    height: 24px;
    object-fit: contain;
}

@media(min-width: 400px) {
    .text-svg {
        height: 32px;
    }
}

@media(min-width: 576px) {
    .text-svg {
        height: 42px;
    }
}

@media(min-width: 768px) {
    .text-svg {
        height: 48px;
    }
}

@media(min-width: 1200px) {
    .text-svg {
        height: 54px;
    }
}


h1 {
    margin-bottom: 30px;
}

h2 {
    margin-bottom: 20px;
    font-weight: 100;
}

h3 {
    margin-bottom: 10px;
}

p {}

@media(min-width: 992px) {

    h1 {
        margin-bottom: 40px;
    }

    h2 {
        margin-bottom: 34px;
    }

    h3 {
        margin-bottom: 22px;
    }
}

@media(min-width: 1400px) {

    h1 {
        margin-bottom: 50px;
    }

    h2 {
        margin-bottom: 44px;
    }

    h3 {
        margin-bottom: 32px;
    }
}

.has-overlay-blue-primary {
    position: relative;
}

.has-overlay-blue-primary .container,
.has-overlay-blue-primary .container-fluid,
.has-overlay-blue-primary .inner {
    position: relative;
    z-index: 2;
}

.has-overlay-blue-primary:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 36, 54, 0.75);
    z-index: 1;
}

.has-overlay-black {
    position: relative;
}

.has-overlay-black .container {
    position: relative;
    z-index: 2;
}

.has-overlay-black:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.has-border-yellow-secondary {
    border: 4px solid var(--yellow-secondary);
    border-radius: 100%;
}

@media(min-width: 1200px) {
    .has-border-yellow-secondary {
        border-width: 10px;
    }
}

.logo-alexandrion-group {
    mix-blend-mode: lighten;
}

.logo-alexandrion-group a,
.logo-alexandrion-group a img {
    display: block;
    max-width: 100%;
    max-width: 300px;
}

.font-bahn-bold-semi-cond {
    font-family: 'Bahn Bold SemiCond', 'Arial Narrow', Arial, sans-serif;
    font-weight: normal;
}

.title-yellow-border-bottom {
    position: relative;
    padding-bottom: 10px;
}

.title-yellow-border-bottom:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--yellow-secondary);
}

.badge {
    display: inline-block;
    font-family: 'Bahn SemiCond', 'Arial Narrow', Arial, sans-serif;
    font-weight: normal;
    border-radius: 0;
    padding: 10px 10px;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    border: none;
}

.bg-warning {
    background: var(--yellow-primary) !important;
}

.mix-blend-mode-lighten {
    mix-blend-mode: lighten;
}

.modal {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-backdrop {
    background: var(--blue-primary);
}

.modal-backdrop.show {
    opacity: 0.85;
}

.modal-content,
.modal-header,
.modal-body,
.modal-footer {
    background: var(--blue-primary);
    border: none;
}

@media(min-width: 1200px) {
    .modal-body {
        padding: 10px 30px;
    }
}


.modal-content {
    border: 2px solid var(--yellow-secondary);
    overflow: hidden;
}

.modal .auth-container {
    color: var(--white);
}

.modal .auth-container .logo {
    display: block;
    width: 40%;
    margin: 0 auto 40px;
}

.modal .auth-container .logo img {
    display: block;
    width: 100%;
}

.modal .btn-close {
    --bs-btn-close-bg: none;
    --bs-btn-close-opacity: 1;
    background: var(--yellow-secondary);
    filter: none;
    opacity: 1;
    -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e") center / 1em no-repeat;
    mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e") center / 1em no-repeat;
}

.modal .modal-body .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

label {
    display: block;
    cursor: pointer;
}

.form-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-switch input {
    margin-top: 0;
    margin-bottom: 0;
}

.form-switch .form-check-input {
    background-color: var(--blue-secondary);
    border-color: var(--blue-secondary);
}

.form-check-input:checked {
    background-color: var(--blue-secondary);
    border-color: var(--blue-secondary);
}

.form-switch .form-check-input:checked {
    background-position: right center;
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23a66718'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23a66718'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:hover {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23a66718'/%3e%3c/svg%3e");
}

.has-horizontal-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.has-horizontal-line .line {
    flex: 1;
    height: 1px;
    background: var(--yellow-secondary);
}

.ratio-1080x1920 {
    aspect-ratio: 1080 / 1920;
}