:root {
    --primary: #232169;
    --secondary: #3a9d5d;
}

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

.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: #3a9d5d;
}

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

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


    #venue .section-title h4 {
        color: #3a9d5d;
    }

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

#register .section-title h4 {
    color: #e0a800;
}

#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;
}

    #schedule {

    }

        #schedule .container {
            padding-bottom: 20px;
            margin: 20px auto;
        }

        #schedule .topic {
            border-radius: 10px;
            border-width: 1px;
            border-style: solid;
            background: #dadae0;
        }

       #schedule .events .topic {
            border-color: #3a9d5d;
        }

       #schedule .events:nth-child(2) .topic {
            border-color: #d33f31;
       }

    #schedule .row {
        margin-top: 50px;
    }


        #schedule #layout {
            content: "";
            position: absolute;
            width: 100%;
            top: 120px;
            left: 0;
            height: calc(100% - 120px);
            background-color: #232169;
            background-image: url("/images/adher/woman.png"), url("/images/adher/invite.png");
            background-position: bottom right, bottom left;
            background-repeat: no-repeat, no-repeat;
            background-size: 21%, 34%;
        }

        #schedule .event {
            color: white;
            padding: 50px 20px 10px 20px;
            text-align: center;
            position: relative;
        }

    #schedule .event .title {
        font-weight: 600;
        height: 40px;
        line-height: 110%;
    }

    #schedule .event .speaker {
        font-weight: 500;
        color: #dfc347;
        margin-bottom: 20px;
    }

    #schedule .event img {
        border-radius: 3px;
        display: block;
        margin: 10px auto;
        width: 100px;
        height: 100px;
    }

    #schedule .event .small {
        font-weight: 400;
        font-size: 11px;
        text-align: left;
        line-height: 120%;
    }

    #schedule .time-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-120%);
        color: white;
        line-height: 1;
    }

        #schedule .time-circle span {
            display: block;
        }

    #schedule .events .time-circle {
        background: #3a9d5d;
    }

    #schedule .events:nth-child(2) .time-circle {
        background: #d33f31;
    }


@media (max-width: 768px) {
    #schedule .event:not(:last-child) {
        margin-bottom: 50px;
    }

    #schedule .event {
        min-height: 300px;
        background: var(--primary);
    }

    #schedule .events:not(:last-child) .event {
        background: #232169 url("/images/adher/invite.png") center bottom no-repeat;
        background-size: 90%;
    }

    #schedule .events:last-child .event:last-child {
        background: #232169 url("/images/adher/woman.png") right bottom no-repeat;
        background-size: 70%;
    }

    #schedule .time-circle {
        transform: translateX(-170%);
    }

    #schedule #layout {
        content: none;
        background: none;
    }

    #schedule .topic {

    }
}

    .btn-danger {
        font-family: din_pro, 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: din_pro, 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);
        }