﻿:root {
    --primary: #21265f;
    --primary-80: rgb(0, 25, 101, .8);
    --primary-30: rgb(0, 25, 101, .3);
    --secondary: #2d5baa;
    --secondary-80: rgb(20, 157, 161, .8);
    --third: #68bed7;
}

.plyr {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--primary) !important;
    padding: 7px 20px;
    border-radius: 3px;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
}

    a:hover {
        color: var(--secondary);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Raleway", sans-serif;
}

#header {
    height: 80px;
    padding: 20px 0;
    z-index: 10;
    position: relative;
}

    #header .lang {
        background: var(--primary);
        font-size: 16px;
        font-weight: 600;
        display: inline-block;
        padding: 5px 15px;
        border-radius: 3px;
    }

    #header .lang a {
        color: #fff !important;
        text-decoration: none;
    }

    #header .logo {
        display: inline-block;
        margin-inline-end: 40px;
    }

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

@media (max-width: 768px) {
    #header .logo h1 {
        font-size: 28px;
        padding: 8px 0;
    }
}

.nav-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    right: -260px;
    width: 260px;
    padding-top: 18px;
    background: var(--primary);
    transition: 0.4s;
}

    .nav-menu * {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu a,
    .nav-menu a:focus {
        display: block;
        position: relative;
        color: #cccccc;
        padding: 10px 20px;
        font-weight: 500;
        transition: 0.3s;
    }

        .nav-menu a:hover,
        .nav-menu .active > a,
        .nav-menu li:hover > a {
            color: #ffffff;
            text-decoration: none;
        }

    .nav-menu .drop-down > a:after {
        content: "\ea27";
        font-family: "boxicons";
        padding-left: 10px;
        position: absolute;
        right: 15px;
    }

    .nav-menu .active.drop-down > a:after {
        content: "\ea27";
    }

    .nav-menu .drop-down > a {
        padding-right: 35px;
    }

    .nav-menu .drop-down ul {
        display: none;
        overflow: hidden;
    }

    .nav-menu ul.drop-down-active {
        display: block;
    }

    .nav-menu .drop-down li {
        padding-left: 20px;
    }

.nav-menu-active {
    right: 0;
}

.nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: var(--primary);
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    padding: 10px 12px;
    border-radius: 2px;
}

    .nav-toggle i {
        color: #fff;
        font-size: 18px;
    }

.nav-toggle-active {
    right: 275px;
}

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

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

#video {
    margin-top: -80px;
    background: #ffff url(/images/summit/main-bg.png) center center no-repeat fixed;
    background-size: cover;
    min-height: 100vh;
}

#hero {
    width: 100%;
    min-height: 100vh;
    background: #ffff url(/images/summit/main-bg.png) center center no-repeat fixed;
    background-size: cover;
    margin-top: -80px;
    padding-bottom: 80px;
    overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    #hero {
        background: #ffff url(/images/summit/main-bg-mob.png) center center no-repeat;
        background-size: cover;
    }
}


    #hero .hero-container {
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }

    #hero #title {
        font-size: 40px;
        font-weight: 700;
        line-height: 110%;
        color: var(--primary);
        margin-bottom: 20px;
    }

@media (max-width: 768px) {
    #hero #title {
        font-size: 34px;
    }
}

#hero #date,
#hero #times {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

    #hero .php-email-form .loading {
        display: none;
        background: rgba(255, 255, 255, 0.5);
        text-align: center;
        padding: 15px;
        border-radius: 50px;
    }

        #hero .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-notify 1s linear infinite;
        }

.button {
    background: var(--secondary);
    font-weight: 600;
    font-size: 12pt;
    border: none;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border-radius: 50vh;
    text-align: center;
    display: block;
    width: 250px;
    height: 50px;
    line-height: 50px;
}

.button a {
    font-weight: 600 !important;
    font-size: 12pt !important;
    color: #fff !important;
}


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

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

    #hero .php-email-form input {
        border-radius: 50px;
        box-shadow: none;
        font-size: 14px;
        border: 0;
        padding: 0px 15px 2px 20px;
        width: 250px;
        height: 40px;
        margin: 0 8px;
    }

    #hero .php-email-form button[type=submit] {
        font-family: "Raleway", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 8px 30px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: none;
        color: #fff;
        background: #fd680e;
    }

        #hero .php-email-form button[type=submit]:hover {
            background: #fd8841;
        }

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

    section {
        padding: 80px 0;
    }

    .section-bg {
        background-color: #fff7f2;
    }

    .section-title {
        text-align: center;
        padding-bottom: 30px;
    }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            padding-bottom: 10px;
            position: relative;
            color: var(--primary);
        }

            .section-title h2::after {
                content: "";
                position: absolute;
                display: block;
                width: 100px;
                height: 2px;
                background: var(--primary);
                bottom: 0;
                left: calc(50% - 50px);
            }

        .section-title p {
            margin-bottom: 0;
            font-style: italic;
            color: #666666;
        }


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

        #footer .copyright {
            text-align: center;
        }

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


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

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

.drop-shadow {
    filter: drop-shadow(5px 5px 3px var(--primary-80)) !important;
}



.doctors .member {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background: transparent;
    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-weight: 600;
        font-size: 16px;
        line-height: 140%;
        color: var(--primary) !important;
    }

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