:root {
    --primary: #232169;
    --secondary: #3a9d5d;
    --background-color: #232169;
    --accent-color: #d33f31;
}

body {
    font-family: 'Century Gothic', Raleway, Arial, Helvetica, sans-serif;
    background-color: #e6e6e6;
    margin: 0;
    padding: 0;
    text-align: center;
}

.page-title {
    background: url(/images/ksp/title-bg.jpg) center center no-repeat;
    background-size: cover;
    height: auto;
    width: 100%;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
}

    .page-title span {
        font-weight: 700;
        color: var(--accent-color);
    }
 
.header {
    color: #d33f31;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.sub-header {
    font-size: 24px;
    color: #232169;
    text-align: center;
}

.section-title h4 {
    padding: 30px 0 10px;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
}

#schedule .events .section-title h4 {
    color: var(--accent-color);
}

#schedule .events:nth-child(2) .section-title h4 {
    color: var(--accent-color);
}

.section-title p {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}


#venue .section-title h4 {
    color: var(--accent-color);
}

#register .container {
    padding-bottom: 20px;
    margin: 20px auto;
    background: #dadae0;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
}

#register .section-title h4 {
    color: var(--accent-color);
}

#register .reg {
    padding: 20px 30px;
    background: #232169;
}

section#video {
    margin: 50px 0;
}

#venue .container {
    padding-bottom: 20px;
    margin: 20px auto;
    background: #dadae0;
    border-radius: 10px;
    border: 1px solid #d33f31;
}

#venue .row {
    padding: 20px 10px;
    background: #232169;
}


.btn-danger {
    font-family: 'Century Gothic', 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px 16px 32px !important;
    border-radius: 50px !important;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    border: 2px solid #fa0000;
    background: linear-gradient(180deg, #ff3333, #c40000);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), -2px -2px 4px rgba(255, 255, 255, 0.2);
}

        .btn-danger::before {
            content: "";
            position: absolute;
            top: -30%;
            left: -100%;
            width: 80%;
            height: 200%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-20deg);
            animation: shine 3s ease-in-out infinite;
        }

        .btn-danger::after {
            content: attr(data-text);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: inherit;
            font-weight: inherit;
            color: rgba(255, 255, 255, 0.2);
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            opacity: 0;
            animation: text-shine 3s ease-in-out infinite;
        }

    @keyframes shine {
        0% {
            left: -100%;
            opacity: 0;
        }

        30% {
            left: 120%;
            opacity: 0.8;
        }

        100% {
            left: 120%;
            opacity: 0;
        }
    }

    @keyframes text-shine {
        0% {
            opacity: 0;
        }

        30% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

#footer {
    background: var(--secondary);
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

    #footer .footer-newsletter {
        padding: 50px 0;
        background: #0d2735;
    }

        #footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 20px 0;
            padding: 0;
            line-height: 1;
            font-weight: 600;
            color: var(--secondary);
        }

        #footer .footer-newsletter form {
            margin-top: 30px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: 50px;
        }

            #footer .footer-newsletter form input[type=email] {
                border: 0;
                padding: 4px;
                width: calc(100% - 100px);
            }

            #footer .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 20px;
                margin: 3px;
                background: #68A4C4;
                color: #fff;
                transition: 0.3s;
                border-radius: 50px;
            }

                #footer .footer-newsletter form input[type=submit]:hover {
                    background: #468db3;
                }

    #footer .footer-top {
        background: var(--primary);
        border-top: 1px solid var(--secondary);
        border-bottom: 1px solid var(--secondary);
        padding: 30px;
    }

        #footer .footer-top .footer-info {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-info h3 {
                font-size: 18px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                color: var(--primary);
                font-weight: 600;
            }

            #footer .footer-top .footer-info p {
                font-size: 14px;
                line-height: 24px;
                margin-bottom: 0;
                font-family: 'Century Gothic', 'Raleway', sans-serif;
                color: #fff;
            }

        #footer .footer-top .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #1e4356;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            margin-right: 4px;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
        }

            #footer .footer-top .social-links a:hover {
                background: #68A4C4;
                color: #fff;
                text-decoration: none;
            }

        #footer .footer-top h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            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: var(--secondary);
                    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: #fff;
                    transition: 0.3s;
                    display: inline-block;
                    line-height: 1;
                }

                    #footer .footer-top .footer-links ul a:hover {
                        color: var(--secondary);
                    }

        #footer .footer-top .footer-contact {
            margin-bottom: 30px;
        }

            #footer .footer-top .footer-contact p {
                line-height: 26px;
            }

    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        padding-top: 10px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }

        #footer .credits a {
            color: var(--secondary);
        }

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
    }

        .section-title h2:before,
        .section-title h2:after {
            content: "";
            width: 50px;
            height: 2px;
            background: var(--accent-color);
            display: inline-block;
        }

        .section-title h2:before {
            margin: 0 15px 10px 0;
        }

        .section-title h2:after {
            margin: 0 0 10px 15px;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

    .team .member .member-img {
        margin: 0 80px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        border: 4px solid var(--background-color);
        box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 1024px) {
    .team .member .member-img {
        margin: 0 60px;
    }
}

.team .member .member-img img {
    position: relative;
    z-index: 1;
}

.team .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

    .team .member .member-img .social a {
        transition: 0.3s;
        color: var(--contrast-color);
        font-size: 20px;
        margin: 0 8px;
    }

        .team .member .member-img .social a:hover {
            color: var(--accent-color);
        }

.team .member .member-info {
    margin-top: 30px;
}

    .team .member .member-info h4 {
        font-weight: 700;
        margin-bottom: 6px;
        font-size: 18px;
    }

    .team .member .member-info span {
        font-style: italic;
        display: block;
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 10px;
    }

    .team .member .member-info p {
        margin-bottom: 0;
        font-size: 14px;
    }

.team .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
    padding: 60px 0 60px 0;
}

    #schedule .nav-tabs {
        text-align: center;
        margin: auto;
        display: block;
        border-bottom: 0;
        margin-bottom: 30px;
    }

        #schedule .nav-tabs li {
            display: inline-block;
            margin-bottom: 0;
        }

        #schedule .nav-tabs a {
            border: none;
            border-radius: 50px;
            font-weight: 600;
            background-color: #0e1b4d;
            color: #fff;
            padding: 10px 100px;
        }

@media (max-width: 991px) {
    #schedule .nav-tabs a {
        padding: 8px 60px;
    }
}

@media (max-width: 767px) {
    #schedule .nav-tabs a {
        padding: 8px 50px;
    }
}

@media (max-width: 480px) {
    #schedule .nav-tabs a {
        padding: 8px 30px;
    }
}

#schedule .nav-tabs a.active {
    background-color: var(--accent-color);
    color: #fff;
}

#schedule .sub-heading {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
    #schedule .sub-heading {
        width: 100%;
    }
}

#schedule .tab-pane {
    transition: ease-in-out 0.2s;
}

#schedule .schedule-item {
    border-bottom: 1px solid #cad4f6;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color ease-in-out 0.3s;
}

    #schedule .schedule-item:hover {
        background-color: #fff;
    }

    #schedule .schedule-item time {
        padding-bottom: 5px;
        display: inline-block;
    }

    #schedule .schedule-item .speaker {
        width: 60px;
        height: 60px;
        overflow: hidden;
        border-radius: 50%;
        float: left;
        margin: 0 10px 10px 0;
    }

        #schedule .schedule-item .speaker img {
            height: 100%;
            transform: translateX(-50%);
            margin-left: 50%;
            transition: all ease-in-out 0.3s;
        }

    #schedule .schedule-item h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }

        #schedule .schedule-item h4 span {
            font-style: italic;
            color: #19328e;
            font-weight: normal;
            font-size: 16px;
        }

    #schedule .schedule-item p {
        font-style: italic;
        color: #152b79;
        margin-bottom: 0;
    }

