﻿:root {
    --primary: #3fa0ae;
    --primary-80: rgba(63, 160, 174, 0.8);
    --secondary: #035766;
    --third: #66c3d0;
    --third-50: rgba(102, 195, 208, 0.5);
    --third-80: rgba(102, 195, 208, 0.8);
}

a.lang {
    color: var(--secondary);
    text-decoration: none;
    font-size: 12px;
    line-height: 110%;
}

a.lang.active {
    font-weight: 600;
}

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

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

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

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

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

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

.drop-shadow {
    filter: drop-shadow(5px 5px 5px rgba(55,55,55,.8));
}

.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: var(--primary);
    background: #FFF;
}

.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 {
    margin-top: 80px;
    min-height: 100vh !important;
}

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

#supporters {
    padding: 60px 0;
}

    #supporters .supporters-wrap {
        border-top: 1px solid #e0e5fa;
        border-left: 1px solid #e0e5fa;
        margin-bottom: 30px;
    }

    #supporters .supporter-logo {
        padding: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #e0e5fa;
        border-bottom: 1px solid #e0e5fa;
        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;
    }

#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 .alert-info {
        padding: 2px !important;
        background: transparent !important;
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }

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



.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 button
--------------------------------------------------------------*/
.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;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#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(--third);
    }

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

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

    #header .logo a {
        color: var(--secondary);
        text-decoration: none;
        font-size: 12px;
        line-height: 110%;
    }

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

@media (max-width: 768px) {
    #header .logo {
        font-size: 10px;
    }

    #header .logo h1 {
        font-size: 20px;
    }
}

    .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(--primary);
            white-space: nowrap;
            transition: 0.3s;
        }

    #header.header-scrolled .navbar a:not(.getstarted),
    #header.header-scrolled .navbar a:focus {
        color: #191919;
    }

    .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) !important;
        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-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 {
        width: 100%;
        min-height: 100vh;
/*        background: #c9d8d5 url(/images/hpx/photo1.png) 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;
        }

/*    html[lang="ru"] #hero .layout {
        background: url(/images/hpx/frame.png?ver=1) center bottom no-repeat;
        background-size: cover;
    }

    html[lang="kk"] #hero .layout {
        background: url(/images/hpx/frame-kaz.png?ver=1) center bottom no-repeat;
        background-size: cover;
    }*/

    #hero .orgs {
        font-size: 12px;
        line-height: 14px;
        color: #FFFFFF;
        margin-bottom: 10px;
    }

    #hero .title {
        font-size: 28px;
        font-weight: 500;
        line-height: 36px;
        color: #FFFFFF;
        text-transform: uppercase;
    }

    #hero .subtitle {
        font-size: 32px;
        font-weight: 700;
        line-height: 38px;
        color: #FFFFFF;
        text-transform: uppercase;
        margin-bottom: 40px;
        text-shadow: -1px -1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary);
    }

        #hero .subtitle span {
            color: var(--secondary) !important;
            text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
        }

    #hero .date {
        color: #FFF;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: -1px -1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary);
    }

    #hero .countdown {
        color: #FFF;
        font-weight: 500;
        font-size: 28px;
        position: relative;
        margin-bottom: 20px;
        text-shadow: -1px -1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary);
    }

        #hero .countdown:before {
            width: 100%;
            height: 15px;
            margin-top: -15px;
            font-size: 14px;
            position: absolute;
            top: 0;
            left: 0;
            text-shadow: -1px -1px 0 var(--secondary), 1px -1px 0 var(--secondary), -1px 1px 0 var(--secondary), 1px 1px 0 var(--secondary);
        }

    html[lang="ru"] #hero .countdown:before {
        content: "До начала осталось:";
    }

html[lang="kk"] #hero .countdown:before {
    content: "Басталуға қалды:";
}

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

    @media (min-width: 1024px) {
        #hero {
            background-attachment: fixed;
        }
    }

    @media (max-width: 768px) {

/*        #hero {
            background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 220px, rgba(255, 255, 255, 0) 220px), #c9d8d5 url(/images/hpx/photo-mob.jpg) center bottom 220px no-repeat;
            background-size: contain;
        }

        html[lang="ru"] #hero .layout {
            background: url(/images/hpx/frame-mob.png?ver=1) center bottom no-repeat;
            background-size: cover;
        }

        html[lang="kk"] #hero .layout {
            background: url(/images/hpx/frame-mob-kaz.png?ver=1) center bottom no-repeat;
            background-size: cover;
        }*/

        #hero .subtitle {
            font-size: 25px;
            line-height: 120%;
        }
    }

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

        .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 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 16px;
            color: var(--secondary);
        }

        .doctors .member span {
            display: block;
            font-size: 15px;
            padding-bottom: 10px;
            position: relative;
            font-weight: 500;
        }

            .doctors .member span::after {
                content: "";
                position: absolute;
                display: block;
                width: 50px;
                height: 1px;
                background: #b2c8dd;
                bottom: 0;
                left: 0;
            }

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


    @media (max-width: 768px) {
        .doctors .member h4 {
            font-size: 16px;
        }

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

        .doctors .member {
            padding: 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/vac25/clinic10.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;
    }

    body {
        position: relative;
    }
