@font-face {
    font-family: 'AmericaXIX';
    src: url('font/america/americaxix.woff2') format('woff2');
}

@font-face {
    font-family: 'Chunkfiveex';
    src: url('font/chunkfiveex/chunkfiveex.woff2') format('woff');
}

@font-face {
    font-family: 'bradobrei';
    src: url('font/bradobrei/bradobrei.woff2') format('woff');
}

.cta-btn-custom {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
    background-color:darkblue;
}

.cta-btn-custom:hover {
    background: blue;
    border: 2px solid grey;
    color: var(--contrast-color);
}

.services .service-item .description {
    line-height: 24px;
    font-size: 16px;
    text-align: justify;
}

.language-switcher {
    color: #fff;
    background: #009970;
    padding: 7px 22px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid #009970;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    line-height: 1;
    font-size: 19px;
    white-space: nowrap;
}
.language-switcher:hover {
    background: none;
    color: #fff;
}
.language-switcher:focus {
    color: #fff;
}
@media (max-width: 992px) {
    .language-switcher {
        margin: 0 15px 0 0;
    }
}

.navmenu a {
    font-size: 25px;
    font-weight: bold;
}

.footer {
    padding-bottom: 20px;
}

.head-title {
    font-family: AmericaXIX, sans-serif;
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
#schedule {
    padding: 30px 0 30px 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: #0e1b4d;
    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: #009970;
    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-title {
    color: #0E1B88;
}
#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;
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
    padding: 30px 0;
}
#venue .container-fluid {
    margin-bottom: 3px;
}
#venue .venue-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}
#venue .venue-info {
    background: url("../img/uipve3.jpg") top center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
#venue .venue-info:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#venue .venue-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 574px) {
    #venue .venue-info h3 {
        font-size: 24px;
    }
}
#venue .venue-info p {
    color: #fff;
    margin-bottom: 0;
}


