﻿:root {
    --primary: #44b2be;
    --secondary: #37347b;
    --accent-color: #1a5b55;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    color: #111;
}

.btn-arrow {
    text-transform: uppercase;
    color: var(--secondary);
    font-size: 24px;
    font-weight: 800;
    font-family: Akrobat;
    text-align: center;
    align-content: center;
    padding-right: 45px;
    min-width: 200px;
    aspect-ratio: 4;
    background: url(/images/nscto26/arrow-button.svg) center center no-repeat;
    background-size: contain;
}




a {
    color: var(--primary);
    text-decoration: none;
}

    a:hover {
        color: var(--accent-color);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-family: Akrobat, sans-serif;
}

section {
    padding: 40px 0;
    scroll-margin-top: 160px;
}

.section-bg {
    background-color: #307a6c
}

    .section-bg .text-danger {
        color: var(--accent-color) !important;
        font-size: 12px;
    }

.section-title {
    text-align: center;
    padding-bottom: 20px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: var(--accent-color);
    }

    .section-title p {
        margin-bottom: 0;
    }

.section-title-1 {
    text-align: center;
    /*    padding-bottom: 20px;*/
}

    .section-title-1 h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        /*        margin-bottom: 20px;
        padding-bottom: 20px;*/
        position: relative;
        color: var(--accent-color);
    }

    .section-title-1 p {
        margin-bottom: 0;
    }

.two-columns {
    columns: 2;
    column-gap: 40px
}

@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    .two-columns {
        columns: 1;
        column-gap: 0;
    }

    .btn-arrow {
        font-size: 16px;
        width: 100%;
        min-width: auto;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: transparent;
    background-size: cover;
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    font-family: Lato, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

    #header.header-scrolled {
        background: var(--primary);
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    #header .logo img {
        max-height: 40px;
    }
/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
    border-left: 2px solid #a0a0a0;
    align-items: center;
}

    .header-social-links a {
        color: #a0a0a0;
        display: inline-block;
        line-height: 0px;
        transition: 0.3s;
    }

        .header-social-links a:not(:first-child) {
            padding-left: 20px;
        }

        .header-social-links a span {
            opacity: .5;
        }

            .header-social-links a span.active {
                opacity: 1;
                zoom: 1.2;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            }

        .header-social-links a:hover {
            color: var(--accent-color);
        }

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #ffffff;
        line-height: 0;
    }

    .back-to-top:hover i {
        color: var(--accent-color);
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

@media (max-width: 768px) {
    .header-social-links {
        padding: 0 15px 0 0;
        border-left: 0;
    }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-family: "Roboto", sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #FFFFFF;
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: var(--accent-color);
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-top: 2px solid var(--accent-color);
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            text-transform: none;
            color: #111;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: var(--accent-color);
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #111;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #111;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: var(--accent-color);
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: var(--accent-color);
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }


#hero {
    width: 100%;
    position: relative;
    padding-top: 70px !important;
    margin: 0;
    background: url(/images/nscto26/main-bg.jpg) center center no-repeat;
    background-size: cover;
    min-height: 100vh;
}

    #hero .dates {
        text-align: center;
        white-space: nowrap;
        font-family: Akrobat, Lato;
        font-weight: 800;
        font-size: 21px;
        color: var(--secondary);
        padding: 7px;
        border: 1px solid var(--primary);
        background: #FFFFFF;
        border-radius: 4px;
    }

        #hero .dates:lang(kk) {
            font-size: 16px;
            font-family: Lato;
        }

    #hero .title {
        font-family: Akrobat, Lato;
        font-weight: 900;
        font-size: 27px;
        line-height: 1;
        margin: 0;
        color: #152931;
    }

        #hero .title:lang(kk) {
            font-family: Lato;
            font-weight: bold;
            font-size: 20px;
        }

    #hero .subtitle {
        border-radius: 7px;
        padding: 7px 12px;
        background-color: rgb(255, 255, 255, .6);
        font-family: Akrobat, Lato;
        font-weight: 900;
        font-size: 30px;
        line-height: 1.2;
        color: var(--accent-color);
    }

        #hero .subtitle:lang(kk) {
            font-family: Lato;
            font-weight: 900;
            font-size: 26px;
        }

    #hero .place {
        width: auto;
        text-align: end;
        font-family: Akrobat;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
    }

        #hero .place:lang(kk) {
            font-weight: 600;
            font-size: 16px;
            font-family: Lato;
        }

        #hero .place span:lang(kk) {
            font-weight: bold;
        }

        #hero .place span {
            position: relative;
            color: var(--secondary);
            font-weight: 900;
        }

            #hero .place span::after {
                content: "";
                position: absolute;
                right: -20px;
                bottom: 0;
                width: 15px;
                height: 30px;
                background: url(/images/nscto26/place-mark.svg) center center no-repeat;
                background-size: contain;
            }

    #hero .countdown {
        text-align: center;
        position: absolute;
        bottom: 50px;
        right: 50px;
        font-size: 48px;
        font-weight: 700;
        color: rgba(255, 255, 255, .3);
        line-height: 1;
        z-index: 1;
        font-family: "Roboto", Arial;
        text-shadow: 5px 5px 10px rgba(100, 100, 100, .3);
        animation: fadeOut 7s forwards;
    }


@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

#hero .countdown .before {
    font-size: 24px;
}

@media (max-width: 767px) {
    #hero .title {
        font-size: 16px;
    }

        #hero .title:lang(kk) {
            font-size: 16px;
        }

    #hero .subtitle {
        text-align: center;
        font-size: 24px;
    }

        #hero .subtitle:lang(kk) {
            font-size: 20px;
        }

    #hero .dates {
        font-size: 16px;
    }

        #hero .dates:lang(kk) {
            font-size: 15px;
        }

    section {
        scroll-margin-top: 60px;
    }


    .section-title h2::after {
        width: 100%;
        left: 0;
    }

    body.modal-open #hero {
        width: 100%;
    }

    #hero {
        background: url(/images/nscto26/main-bg.jpg) left center no-repeat;
        background-size: cover;
        min-height: 100vh;
    }


        #hero .countdown {
            top: 130px;
            left: 50%;
            bottom: auto;
            right: auto;
            transform: translateX(-50%);
        }
}

.scale-2:hover {
    cursor: zoom-in;
    transition: all 0.4s ease-in-out;
    transform: scale(2.5);
}

.swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid var(--primary);
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

#supporters {
    padding: 60px 0;
}

    #supporters .supporters-wrap {
        margin-bottom: 30px;
    }

    #supporters .supporter-logo {
        /*        padding: 30px;*/
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.5);
        height: 160px;
    }

    #supporters .hor {
        padding: 30px;
    }

    #supporters .vert {
        padding: 10px;
    }

    #supporters .supporter-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #supporters .supporter-logo:hover img {
        transform: scale(1.2);
    }

    #supporters img {
        transition: all 0.4s ease-in-out;
    }


#venue {
    padding: 60px 0;
}

    #venue .container-fluid {
        margin-bottom: 3px;
    }

    #venue .venue-map iframe {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }

    #venue .venue-info {
        background: url("/images/nscto25/L_height.webp") center center no-repeat;
        background-size: cover;
        position: relative;
        padding-top: 60px;
        padding-bottom: 60px;
    }

        #venue .venue-info:before {
            content: "";
            background: rgb(60, 60, 60, .4);
            position: absolute;
            bottom: 0;
            top: 0;
            left: 0;
            right: 0;
        }

        #venue .venue-info h3 {
            font-size: 36px;
            font-weight: 500;
            color: #191919 !important;
        }


@media (max-width: 574px) {
    #venue .venue-info h3 {
        font-size: 24px;
    }
}

#venue .venue-info p {
    color: #191919 !important;
    margin-bottom: 0;
}

#venue .venue-gallery-container {
    padding-right: 12px;
}

#venue .venue-gallery {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

    #venue .venue-gallery img {
        transition: all ease-in-out 0.4s;
    }

    #venue .venue-gallery:hover img {
        transform: scale(1.1);
    }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid var(--primary);
        border-top-color: #efefef;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: #111;
}

    #footer .footer-top {
        padding: 60px 0 30px 0;
        background: var(--primary);
    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact h3 {
                font-size: 22px;
                margin: 0 0 10px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 500;
                letter-spacing: 1px;
                text-transform: uppercase;
                color: #fff;
            }

        #footer .footer-top i,
        #footer .footer-top a {
            font-family: "Roboto", sans-serif;
            font-weight: 600;
            color: #fff;
        }

        #footer .footer-top .footer-contact p {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 0;
            font-family: "Roboto", sans-serif;
            color: rgba(255, 255, 255, 0.7);
        }

        #footer .footer-top h4 {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-top .footer-links {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

                #footer .footer-top .footer-links ul i {
                    padding-right: 2px;
                    color: #1ed33c;
                    font-size: 18px;
                    line-height: 1;
                }

                #footer .footer-top .footer-links ul li {
                    padding: 10px 0;
                    display: flex;
                    align-items: center;
                }

                    #footer .footer-top .footer-links ul li:first-child {
                        padding-top: 0;
                    }

                #footer .footer-top .footer-links ul a {
                    color: rgba(255, 255, 255, 0.6);
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        text-decoration: none;
                        color: #fff;
                    }

    #footer .footer-newsletter {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
    }

        #footer .footer-newsletter h4 {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            position: relative;
            padding-bottom: 12px;
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 4px 0 0 4px;
            text-align: left;
        }

            #footer .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px 8px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: -4px;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                background: #1bbd36;
                color: #fff;
                transition: 0.3s;
                border-radius: 0 4px 4px 0;
                box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            }

                #footer .footer-newsletter form input[type=submit]:hover {
                    background: #2ae149;
                }

    #footer .credits {
        padding-top: 5px;
        font-size: 13px;
        color: #fff;
    }

    #footer .social-links a {
        font-size: 18px;
        display: inline-block;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

        #footer .social-links a:hover {
            background: #1bbd36;
            color: #fff;
            text-decoration: none;
        }

.custom-modal {
    background-color: var(--primary);
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    font-family: Arial, sans-serif;
}

.text-gold {
    color: var(--accent-color);
    font-weight: bold;
}


#hotels .hotel {
    border: 1px solid var(--primary);
    background: #fff;
    margin-bottom: 30px;
}

    #hotels .hotel:hover .hotel-img img {
        transform: scale(1.1);
    }

#hotels .hotel-img {
    overflow: hidden;
    margin-bottom: 15px;
}

    #hotels .hotel-img img {
        object-fit: cover;
        height: 300px;
        width: 100%;
        transition: 0.3s ease-in-out;
    }

#hotels h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    padding: 0 20px;
}

#hotels a {
    color: var(--primary);
}

    #hotels a:hover {
        color: var(--accent-color);
    }

#hotels .stars {
    padding: 0 20px;
    margin-bottom: 5px;
}

    #hotels .stars i {
        color: rgb(255, 195, 29);
    }

#hotels p {
    color: var(--primary);
    font-style: italic;
    font-size: 15px;
}

.eventinfo #eventinfo-flters {
    padding: 0;
    margin: 0 auto 50px auto;
    list-style: none;
    text-align: center;
}

    .eventinfo #eventinfo-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 20px 10px 20px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        text-transform: uppercase;
        color: #4d4643;
        transition: all 0.3s;
        border-radius: 4px;
    }

        .eventinfo #eventinfo-flters li:hover,
        .eventinfo #eventinfo-flters li.filter-active {
            color: #fff;
            background: #1bbd36;
        }

        .eventinfo #eventinfo-flters li:last-child {
            margin-right: 0;
        }

.eventinfo .eventinfo-item {
    margin-bottom: 30px;
}

    .eventinfo .eventinfo-item .eventinfo-info {
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px;
    }

        .eventinfo .eventinfo-item .eventinfo-info h4 {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            color: #111;
        }

        .eventinfo .eventinfo-item .eventinfo-info p {
            color: #444444;
            font-size: 14px;
            margin-bottom: 0;
        }

        .eventinfo .eventinfo-item .eventinfo-info .preview-link,
        .eventinfo .eventinfo-item .eventinfo-info .details-link {
            position: absolute;
            right: 40px;
            font-size: 24px;
            top: calc(50% - 18px);
            color: #2b2b2b;
        }

            .eventinfo .eventinfo-item .eventinfo-info .preview-link:hover,
            .eventinfo .eventinfo-item .eventinfo-info .details-link:hover {
                color: #1bbd36;
            }

        .eventinfo .eventinfo-item .eventinfo-info .details-link {
            right: 10px;
        }

    .eventinfo .eventinfo-item .eventinfo-links {
        opacity: 0;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 3;
        position: absolute;
        transition: all ease-in-out 0.3s;
    }

        .eventinfo .eventinfo-item .eventinfo-links a {
            color: #fff;
            margin: 0 2px;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .eventinfo .eventinfo-item .eventinfo-links a:hover {
                color: #57e76f;
            }

    .eventinfo .eventinfo-item:hover .eventinfo-info {
        opacity: 1;
        bottom: 20px;
    }

.eventinfo-details {
    padding-top: 40px;
}

    .eventinfo-details .eventinfo-details-slider img {
        width: 100%;
    }

    .eventinfo-details .eventinfo-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .eventinfo-details .eventinfo-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #1bbd36;
        }

        .eventinfo-details .eventinfo-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #1bbd36;
        }

    .eventinfo-details .eventinfo-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
    }

        .eventinfo-details .eventinfo-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .eventinfo-details .eventinfo-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .eventinfo-details .eventinfo-info ul li + li {
                margin-top: 10px;
            }

    .eventinfo-details .eventinfo-description {
        padding-top: 30px;
    }

        .eventinfo-details .eventinfo-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .eventinfo-details .eventinfo-description p {
            padding: 0;
        }
