﻿ :root {
    --primary: #5b7286;
    --primary-80: rgba(78,129,218, 0.8);
    --secondary: #687681;
    --third: #ced8e4;
    --third-50: rgba(252,138,42, 0.5);
    --third-80: rgba(252,138,42, 0.8);
}

.drop-shadow {
    text-shadow: 2px 2px 2px rgba(100, 100, 100, 0.8);
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

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

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

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

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

#greetings .letter-box {
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    padding: 30px;
}

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

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

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-white {
    color: #FFFFFF !important;
}

body {
    overflow-x: hidden;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    color: #777777;
    position: relative;
}

.w-90 {
    width: 90%;
}

.w-85 {
    width: 85%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.w-65 {
    width: 65%;
}

.w-60 {
    width: 60%;
}

.w-55 {
    width: 55%;
}

.w-45 {
    width: 45%;
}

.w-40 {
    width: 40%;
}

.w-35 {
    width: 35%;
}

.w-30 {
    width: 30%;
}

.w-20 {
    width: 20%;
}

section {
    padding: 20px 0;
}

section:not(:first-child) {
    margin-top: 2px;
}

    section .section-title {
        font-size: 32px;
        font-weight: 600;
        text-align: center;
        position: relative;
        color: var(--primary);
        padding: 0 0 10px 0;
        margin: 0 0 30px 0;
    }

    section .section-title::after {
        content: "";
        height: 3px;
        width: 60px;
        background-color: var(--primary);
        position: absolute;
        bottom: 0;
        left: calc(50% - 30px);
    }

#video {
    padding-top: 80px;
    min-height: 100vh !important;
    /*    background: url(/images/asvk24/main-bg.jpg) center center no-repeat fixed;
    background-size: cover;*/
    background: var(--primary);
}

    #video .section-header {
        display: none;
    }

    #video h6 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 3px !important;
    }

#video h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0 5px 0;
}

    #video h4 {
        font-size: 17px;
        font-weight: 500;
    }

    #video .badge {
        margin-top: 10px;
    }
    #video #comments {
        overflow-y: scroll;
        max-height: 370px;
        margin: 7px 0 7px 0;
        padding: 3px;
    }

        #video #comments legend {
            color: #fff;
        }

    #video #comments .alert-info {
        padding: 7px !important;
        background: transparent !important;
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
        color: #fff;
    }

    #video #sendBtn.btn {
        background-color: var(--primary) !important;
        color: #FFF;
        border-radius: 4px;
        padding: 5px 20px;
        border: 1px solid #fff;
    }

    #video .nav {
        margin-top: 15px;
    }

    #video .video-link {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        padding: 5px 8px;
        border: none;
        margin-right: 6px;
        background: rgb(255, 255, 255, .5);
        color: #777 !important;
    }

        #video .video-link.active {
            background: var(--secondary);
            color: #fff !important;
        }

#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: #d1e6f9;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#supporters {
    padding: 60px 0;
}

#supporters h5 {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    text-align: center;
}

    #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);
        min-height: 160px;
    }

        #supporters .supporter-logo:hover img {
            transform: scale(1.2);
        }

    #supporters img {
        transition: all 0.4s ease-in-out;
    }


.features .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: ease-in-out 0.3s;
}

    .features .icon-box i {
        font-size: 32px;
        padding-right: 10px;
        line-height: 1;
        color: var(--secondary);
    }

    .features .icon-box h3 {
        font-weight: 700;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-size: 16px;
    }

        .features .icon-box h3 a {
            color: #111;
            transition: ease-in-out 0.3s;
        }

            .features .icon-box h3 a:hover {
                color: var(--secondary);
            }


.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: var(--primary);
            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(--secondary);
    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: 75%;
    }
}

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

.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: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #57aae1;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

#header {
    z-index: 997;
    transition: all 0.5s;
    padding: 22px 0;
}

    #header .logo img {
        visibility: hidden;
    }
    
    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
        background: var(--primary);
    }

        #header.header-scrolled .logo img {
            visibility: visible;
            padding: 0;
            margin: 0 10px 0 0;
            max-height: 56px;
        }

    #header .logo h1 {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
    }

        #header .logo h1 a:hover {
            color: var(--secondary);
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0 20px 0 0;
        max-height: 60px;
    }

.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-size: 15px;
        font-weight: 600;
        color: var(--secondary);
        white-space: nowrap;
        transition: 0.3s;
    }

#header.header-scrolled .navbar a:not(.getstarted),
#header.header-scrolled .navbar a:focus {
    color: #FFFFFF;
}
        
        .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(--secondary);
            position: relative;
        }

            .navbar .active:not(.getstarted)::after {
                content: "";
                position: absolute;
                display: block;
                width: 20px;
                height: 2px;
                background: var(--secondary);
                bottom: 5px;
                left: calc(50% + 5px);
            }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        color: var(--secondary) !important;
        background: transparent;
        padding: 8px 25px;
        margin-left: 30px;
        border-radius: 5px;
        border: 2px solid var(--secondary);
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            background: var(--secondary);
            color: #fff !important;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        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-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
        }

            .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: #191919 !important;
            }

    .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: var(--secondary);
    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(9, 9, 9, 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;
        border-radius: 8px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #191919 !important;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: var(--primary);
        }

    .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(--primary);
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

.btn-get-started {
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    transition: 0.5s;
    color: #fff;
    background: var(--secondary);
    border: 2px solid var(--secondary);
    width: 100%;
    text-align: center;
}

    .btn-get-started:hover {
        color: var(--secondary);
        background: transparent;
    }

a {
    text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    min-height: 100vh;
    background: var(--primary) url(/images/npc25/main-bg.jpg) center center no-repeat;
    background-size: cover;
    padding: 0 !important;

}

    #hero .layout {
        width: 100%;
        padding: 60px 0 70px 0 !important;
        min-height: 100vh;
        position: relative;
    }

    #hero .orgs {
        font-size: 12px;
        line-height: 14px;
        color: #FFFFFF;
        margin-bottom: 10px;
    }
    
    #hero .title {        
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        text-align: center;
        padding: 40px 60px;
    }

        #hero .title h2 {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        #hero .subtitle span {
            color: var(--secondary) !important;
            font-weight: 700;
        }

        #hero .date {
            color: #FFF;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

    #hero .countdown {
        color: #FFF;
        font-weight: 500;
        font-size: 28px;
        position: relative;
        margin-bottom: 20px;
    }

        #hero .countdown:before {
            content: "До начала:";
            width: 100%;
            height: 15px;
            margin-top: -15px;
            font-size: 14px;
            position: absolute;
            top: 0;
            left: 0;
        }

    #hero .info {
        background: rgb(255, 255, 255, .8);
        color: var(--secondary);
        font-weight: 600;
        font-size: 16px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

        @media (min-width: 1024px) {

            #hero {
                background-attachment: fixed;
            }
        }

        @media (max-width: 768px) {
            #hero {
                background: url(/images/npc25/main-bg.jpg) center center no-repeat;
                background-size: cover;
            }

                #hero .title {
                    padding: 20px 30px;
                }

                #hero .title h2 {
                    font-size: 26px;
                    font-weight: 700;
                    line-height: 1.2;
                    margin-bottom: 30px;
                }

            #hero .orgs {
                font-size: 10px;
                line-height: 12px;
            }



                #hero .subtitle span {
                    color: #FFF;
                }
        }

#hero .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#f82249 50%, rgba(101, 111, 150, 0.15) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    #hero .play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    #hero .play-btn:before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 2px solid rgba(163, 163, 163, 0.4);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    #hero .play-btn:hover::after {
        border-left: 15px solid #f82249;
        transform: scale(20);
    }

    #hero .play-btn:hover::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

.doctors .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    padding: 30px;
    border-radius: 10px;
    background: #FFF;
    display: flex;
    flex-direction: row;
    height: 100%;
}

    .doctors .member img {
        transition: ease-in-out 0.3s;
        border-radius: 50%;
        width: 120px;
        height: 120px;
    }

    .doctors .member:hover img {
        transform: scale(1.1);
    }

    .doctors .member .member-info {
        padding-left: 30px;
    }

    .doctors .member h4 {
        line-height: 100% !important;
    }

        .doctors .member h4 a {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 20px;
            color: var(--primary) !important;
        }

    .doctors .member p {
        margin: 10px 0 0 0;
        font-size: 14px;
        line-height: 140%;
    }

@media (max-width: 768px) {
    .doctors .member {
        padding: 20px;
    }

    .doctors .member h4 a {
        font-size: 16px;
    }

    .doctors .member img {
        width: 100px;
        height: 100px;
    }

        .doctors .member .member-info {
            padding-left: 10px;
        }
}

.countdown {
    font-family: Arial, Helvetica, sans-serif;
}

#registration #registration-about h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary);
}

#registration #registration-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    color: #888;
}

#registration .social-links {
    padding-bottom: 20px;
}

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

        #registration .social-links a:hover {
            background: var(--primary);
            color: #fff;
        }

#registration .info {
    color: #444444;
}

    #registration .info i {
        font-size: 32px;
        color: var(--primary);
        float: left;
        line-height: 1;
    }

    #registration .info p {
        padding: 0 0 10px 42px;
        line-height: 28px;
        font-size: 14px;
    }

#registration .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

    #registration .php-email-form .error-message br + br {
        margin-top: 25px;
    }

#registration .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#registration .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

    #registration .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        animation: animate-loading 1s linear infinite;
    }

#registration .php-email-form .form-group {
    margin-bottom: 10px;
}

#registration .php-email-form input[type=text],
#registration .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 10px 15px;
}

    #registration .php-email-form input[type=text]:focus,
    #registration .php-email-form textarea:focus {
        border-color: var(--primary);
    }

#registration .php-email-form button[type=submit] {
    background: var(--primary);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

    #registration .php-email-form button[type=submit]:hover {
        background: #2383c4;
    }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.floating-label {
    color: var(--secondary) !important;
    margin-bottom: 3px;
    margin-left: 7px;
    font-size: 14px;
    visibility: collapse;
    color: #ddd;
}

select:valid ~ .floating-label,
textarea:not(:placeholder-shown) ~ .floating-label,
input:not(:placeholder-shown) ~ .floating-label {
    visibility: visible;
    animation: slide-in-top-label 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-top-label {
    0% {
        -webkit-transform: translateY(10px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-top-label {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.form-group .text-danger {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f8f8f8;
    min-height: 40px;
    margin-top: 86px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 72px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 992px) {
    .breadcrumbs ol {
        margin-top: 10px;
    }
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

    .breadcrumbs ol li + li::before {
        display: inline-block;
        padding-right: 10px;
        color: #3c3c3c;
        content: "/";
    }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

#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/infect25/place.jpg") 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);
    }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    padding: 20px 0 30px 0;
}
