/* 
 * 1. Google Font
 */
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,700);

:root {
    --it-black: #111;
    --it-orange: #ec9c44;
}

/*
 * 2.0 Global Style
 */
html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

body {
    color: #4e4e4e;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #000;
}

a:focus {
    outline: none;
}

h1,
h2,
h3 {
    font-weight: 700;
}

ul li {
    margin-bottom: 10px;
}

.text-purple {
    color: var(--it-black);
}

.text-orange {
    color: var(--it-orange);
}

.bg-purple {
    background-color: var(--it-black);
}

.bg-orange {
    background-color: var(--it-orange);
}

.custom-list-icon, .list-arrow-right {
    list-style-type: none;
    padding: 0;
}

.custom-list-icon li, .list-arrow-right li {
    position: relative;
    padding-left: 20px;
}

.custom-list-icon li::before, .list-arrow-right li::before {
    position: absolute;
    left: 0;
    color: #4e4e4e;
    font-family: "Ionicons";
}

.social-block {
    list-style-type: none;
    padding: 0;
}

.social-block li {
    display: inline-block;
}

.social-block li a {
    display: inline-block;
    height: 32px;
    width: 32px;
    color: #4e4e4e;
}

.social-block li a i {
    font-size: 1.5em;
}

.social-block li a:hover, .social-block li a:focus {
    color: #000;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
}

.btn {
    border: 0;
    border-radius: 0;
    padding: 6px 28px;
    text-transform: uppercase;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.btn:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.form-control {
    border-radius: 0;
    box-shadow: none;
    height: 48px;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 1.6;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ccc;
    background-color: #f8f8f8;
}

.valign-center {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.section {
    padding: 70px 0;
}

.section-title {
    color: var(--it-black);
    letter-spacing: 1px;
    margin: 0 0 20px;
    text-transform: uppercase;
    text-align: center;
}

.section-title span {
    border-bottom: var(--it-orange) 2px solid;
}

/* 
 * 3.0 Helper Class
 */
/* 
 * 3.1 Helper Class: font-weight
 */
.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-700 {
    font-weight: 700;
}

/* 
 * 3.3 Helper Class: list
 */
.list-arrow-right li::before {
    content: "\f3d3";
}

/* 
 * 3.4 Helper Class: button
 */
.btn-white {
    color: #000;
    background-color: #fff;
}

.btn-white:hover, .btn-white:focus {
    color: #000;
    background-color: #fff;
}

.btn-black {
    color: #fff;
    background-color: #000;
}

.btn-black:hover, .btn-black:focus {
    color: #fff;
    background-color: #000;
}

/* 
 * 3.5 Helper Class: background
 */
.bg-image, .bg-image-1, .bg-image-2 {
    position: relative;
}

.bg-image::before, .bg-image-1::before, .bg-image-2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-image-1 {
    background: url(/2026/ball-close-up-colors-dark-593467.jpg) no-repeat center center/cover;
}

.bg-image-1::before {
    background-color: rgba(0, 0, 0, 0.7);
}

.bg-image-2 {
    background: url(/2026/live-concert-388160.jpg) no-repeat center center/cover;
}

.bg-image-2::before {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
    .section {
        padding: 90px 0;
    }

    .section-title {
        letter-spacing: 1px;
        margin: 0 0 60px;
        text-transform: uppercase;
        text-align: left;
    }
}

/* 
 * 4.0 Navigation
 */
.navbar-custom {
    border: 0;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #000;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.navbar-custom .navbar-nav li {
    margin: 0;
}

.navbar-custom .navbar-nav > li > a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid transparent;
}

.navbar-custom .navbar-nav > li > a:focus, .navbar-custom .navbar-nav > li > a:hover {
    background-color: transparent;
    border-color: white;
}

.navbar-custom .navbar-nav > li > a.active {
    border-color: white;
}

.navbar-toggle {
    border: 0;
    border-radius: 0;
    margin-top: 2px;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-solid {
    background-color: var(--it-black) !important;
    padding: 0 !important;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.site-branding {
    float: left;
    margin-top: 0;
    margin-left: 10px;
}

.site-branding .logo {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 24px;
    display: inline-block;
}

.site-branding .logo:focus, .site-branding .logo:hover {
    text-decoration: none;
}

/* 
 * 5.0 Site Header
 */
.site-header {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
    text-align: center;
    background: url(/2026/background.jpg) no-repeat center center/cover;
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.site-header .intro {
    color: #fff;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    z-index: 1;
    padding: 0 15px;
}

.site-header .intro h2 {
    margin-top: 0px;
    font-size: 25px;
    font-weight: 300;
}

.site-header .intro h1 {
    margin-top: 0px;
    font-size: 30px;
}

.site-header .intro p {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .navbar-custom {
        background-color: transparent;
        padding-top: 30px;
    }

    .site-branding {
        margin-top: 6px;
        margin-left: 0;
    }
}

/* 
 * 6.0 Section
 */
/* 
 * 6.1 Section: About 
 */
.about .section-title {
    margin: 0 0 25px;
}

.about figure {
    margin-bottom: 25px;
}

/* 
 * 6.2 Section: Facts
 */
.facts i {
    color: #fff;
    font-size: 3em;
}

.facts h3 {
    color: #fff;
    text-align: center;
    font-weight: 400;
}

/* 
 * 6.3 Section: Speaker
 */
.team-member {
    text-align: center;
    color: #313131;
    text-transform: uppercase;
    margin: 25px 0;
}

.team-member h4 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.team-member p {
    margin-bottom: 5px;
}

.team-member img {
    width: 300px;
    max-width: 100%;
}

/* 
 * 6.4 Section: Registration & Pricing
 */
/* 
 * 6.5 Section: Contribution
 */
.registration {
    text-align: center;
    color: #fff;
}

/*
 * 6.8 Section: FAQ
 */
.faq {
    background-color: #f8f8f8;
}

.faq .card-header, .faq .card-header:focus {
    cursor: pointer;
    background: var(--it-orange) !important;
    color: black !important;
    transition: background-color 0.1s linear;
}

.faq .card-header:hover {
    background: var(--it-black) !important;
    color: white !important;
}

.faq .card-header::before {
    position: absolute;
    left: 15px;
    font-family: "Ionicons";
    content: "\f209";
}

.faq .card-header.collapsed::before {
    content: "\f218";
    -webkit-transition: 0.5s linear ease-out;
    transition: 0.5s linear ease-out;
}

.faq .card-header h5 {
    margin-left: 1em;
}

.faq .faq-group .card + .card {
    margin-top: 15px;
}

/* 
 * 6.9 Section: photos
 */
.grid {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.grid::after {
    content: '';
    display: block;
    clear: both;
}

.grid-item {
    float: left;
    overflow: hidden;
    padding: 3px;
    margin: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .grid-item-sm-6 {
        width: 50%;
    }

    .grid-item-sm-3 {
        width: 25%;
    }

    .section-title {
        margin: 0 0 30px;
    }

    figure {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .grid-item-md-6 {
        width: 50%;
    }

    .grid-item-md-3 {
        width: 25%;
    }
}

/* 
 * 7.0 Site-footer
 */
.site-footer {
    background-color: var(--it-black);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.site-footer .site-info {
    font-weight: 400;
    margin-bottom: 10px;
}

.site-footer .site-info a {
    color: #fff;
}

.site-footer .social-block li a {
    color: #fff;
}

.site-footer .social-block li a:hover, .site-footer .social-block li a:focus {
    opacity: 0.8;
}

.corner-ribbon {
    width: 200px;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;
    position: fixed;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    top: 25px;
    right: -50px;
    left: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background: #a90000;
    color: white !important;
    z-index: 9999;
    font-weight: 700;
}

.pointer {
    cursor: pointer;
}

.ns-btn {
    padding: 6px 14px;
    border-radius: 0.25rem;
    font-weight: bold;
    font-size: 14px;
}

.btn.ns-btn:hover {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.ns-btn .nslogo {
    vertical-align: baseline;
    height: 10px;
}

.attribution a {
    color: white;
    font-size: 0.8rem;
}

.sold-out, .sold-out:hover, .sold-out:focus {
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.register-now {
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-weight: bold;
    /*box-shadow: var(--it-orange) 0 0 20px 6px;*/
    transition: background 0.2s linear;
}

.register-now:hover, .register-now:focus {
    background: var(--it-orange);
    color: black;
    text-decoration: none;
}
