﻿/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background: linear-gradient(135deg, #3a6073, #16222a);
    padding: .125rem 0;
    transition: all 0.5s;
    z-index: 997;
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 4.5rem;
            margin-right: .5rem;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
        }

    .header .header-social-links {
        padding-right: 15px;
    }

        .header .header-social-links a {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding-left: 6px;
            display: inline-block;
            transition: 0.3s;
            font-size: 16px;
        }

            .header .header-social-links a:hover {
                color: var(--accent-color);
            }

            .header .header-social-links a i {
                line-height: 0px;
            }

@media (max-width: 1200px) {

    .header .header-social-links {
        order: 2;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}






/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 60vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity:0.7;
    }

    .hero:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 70%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h2 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
    }

    .hero p {
        margin: 10px 0 0 0;
        font-size: 20px;
        color: var(--heading-color);
    }

.btn-get-started {
    background-color: whitesmoke; /*var(--accent-color) !important;*/
    color: #173C66;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 40px;
    margin: 30px 0 0 0;
    border-radius: 4px;
    transition: 0.5s;
    border-color: #173C66;
}

    .btn-get-started:hover {
        /*background: color-mix(in srgb, var(--accent-color) 90%, white 15%);*/
        background-color: #173C66;
        color: whitesmoke;
    }

    .btn-get-started:active {
        background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
        color: #000;
    }

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

.inquery-section-heading {
    border-bottom: solid 2px #d5d5d5;
    padding-bottom: .25rem;
    text-align: center;
}


.inquery-section {
    display: flex;
    justify-content: space-between;
    background-color: #002F70;
    align-items: center;
    padding-inline: 1rem;
    padding: .5rem 1rem;
    position: relative;
    border-radius: .5rem;
}

.inquery-subsection {
    display: flex;
    border: 1px solid #002F70;
    transform: translate(9%, -25%);
    width: 92%;
    color: #000;
    background: #fff;
    border-radius: .5rem;
    padding: .5rem .25rem;
    font-size: .95rem;
}

@media (min-width: 992px) {

    .inquery-section-heading {
        border-bottom: none;
        padding-bottom: 0;
        text-align: left;
    }

    .subsection-width {
        margin-left: 3.75%;
    }
}

.inquery-section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-inline: 1rem;
}

.inquery-section-step {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.downward-desktop-icon {
    display: inline-block;
    font-size: 2rem;
}

.downward-mobile-icon {
    display: none;
}

@media (max-width: 767px) {
    .track .step {
        height: 5rem;
    }

    .inquery-section-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-inline: .5rem;
    }

    .downward-desktop-icon {
        display: none;
    }

    .downward-mobile-icon {
        display: inline-block;
        font-size: 1.75rem;
    }

    .footer-access ul {
        flex-direction: column;
        gap: 1rem;
    }
}

.modal-content, .card {
    background-color: var(--background-color);
}

.noTicketFound {
    min-height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-weight: bold;
}

.award-img {
    width: 150px;
    margin-inline-end: 1rem;
}

/*---*/




.dark-background {
    --background-color: #347061; /*#51615f;*/
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #31394c;
    --contrast-color: #ffffff;
}


.bg-theme {
    background: linear-gradient(135deg, #3a6073, #16222a);
    color:white;
}

.text-theme {
    color: white;
    background-image: linear-gradient(45deg, #152129, #152129 50%, #152129 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Andale Mono", AndaleMono, monospace;
    font-variant: normal;
    font-weight: 700;
   /* line-height: 26.4px;*/
}