﻿:root {
    --primary: #79316d;
    --primary-80: rgb(121, 49, 109, .8);
    --primary-50: rgb(121, 49, 109, .5);
    --primary-30: rgb(121, 49, 109, .3);
    --secondary: #87c2d7;
    --secondary-80: rgb(135, 194, 215, .8);
    --third: #eb5091;
}

.schedule .card {
    border: 3px solid var(--primary);
    background: rgb(255, 255, 255, .5);
    border-radius: 20px;
    filter: drop-shadow(5px 5px 3px var(--primary-30)) !important;
}

.border-primary-50 {
    border-color: var(--primary-50);
}

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

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

a.btn-primary {
    text-align: center;
}

.btn-primary {
    display: block;
    background: transparent url(/images/ester/btn-face.png) center center no-repeat;
    background-size: contain;
    height: 70px;
    line-height: 70px;
    width: 300px;
    border: none;
    filter: drop-shadow(5px 5px 3px rgb(30, 30, 30, .5)) !important;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    outline: none !important;
}

    .btn-primary:active,
    .btn-primary:focus,
    .btn-primary:hover {
        background: transparent url(/images/ester/btn-face.png) center center no-repeat;
        background-size: contain;
        filter: drop-shadow(2px 2px 1px rgb(30, 30, 30, .5)) !important;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }


body {
    font-family: "Open Sans", sans-serif;
    color: var(--third);
    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(--third);
        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: 200px;
    }

@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(--secondary);
    background-size: cover;
    transition: 0.4s;
}

    .nav-menu * {
        margin: 0 5px;
        padding: 0;
        list-style: none;
        border-radius: 4px;
    }

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

        .nav-menu a:hover,
        .nav-menu .active > a,
        .nav-menu li:hover > a {
            color: var(--primary);
            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(--third);
    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;
}

#hero {
    width: 100%;
    min-height: 100vh;
    background: url(/images/globe/main-bg.png) no-repeat center center;
    background-size: cover;
    margin-top: -80px;
}

#hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    color: #fff;
    filter: drop-shadow(5px 5px 3px var(--primary-80)) !important;
}

    #hero h2 {
        color: var(--primary);
        font-size: 36px;
        font-weight: 700;
        line-height: 120%;
        text-align: center;        
    }
 
#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 var(--third);
            border-top-color: #eee;
            animation: animate-loading-notify 1s linear infinite;
        }

    @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: var(--third);
        }

    @media (max-width: 768px) {
        #hero h1 {
            font-size: 28px;
            line-height: 34px;
        }

        #hero h2 {
            font-size: 20px;
            line-height: 24px;
        }

        #hero .php-email-form input {
            margin: 0 auto;
        }
    }

    section {
        padding: 80px 0;
    }

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

    .section-title {
        text-align: center;
        padding: 15px;
        background: var(--primary);
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }


        .section-title p {
            text-align: center !important;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }



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

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


.schedule .h3 {
    font-weight: 700;
    font-size: 32px;
    color: var(--secondary);
    text-align: center;
}

.schedule p.day-title {
    text-align: center;
}

    .schedule p.day-title span {
        font-weight: 700;
        font-size: 24px;
        color: var(--primary);
    }

.schedule .h4 {
    font-weight: 700;
    text-align: center;
    color: var(--primary);
}

.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;
        font-weight: 600;
        background-color: var(--primary);
        color: #fff;
        padding: 10px 100px;
        border-radius: 50px;
    }


@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;
    font-weight: 600;
    color: var(--secondary)
}

.schedule p {
    margin: 0;
    text-align: justify;
    font-size: 14px !important;
}

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

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

    .schedule .schedule-item:not(:last-child) {
        border-bottom: 1px solid var(--primary);
    }

    .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.lg {
            width: 120px;
            height: 120px;
        }

        .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: 500;
        margin-bottom: 5px;
        color: var(--secondary);
    }

    .schedule .schedule-item h5 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 5px;
        color: var(--primary);
        font-style: italic;
    }

    .schedule .schedule-item h4 span {
        font-style: italic;
        color: var(--primary);
        font-weight: normal;
        font-size: 16px;
    }

    .schedule .schedule-item p {
        font-style: italic;
        color: var(--primary);
        margin-bottom: 0;
    }

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


.doctors {
    background: transparent;
}

    .doctors .member {
        position: relative;
        box-shadow: 0px 2px 7px rgba(44, 73, 100, 0.08);
        padding: 20px;
        border-radius: 10px;
    }

        .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: 10px;
        }

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

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