html,
body {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 18px;
    font-weight: 400;
    height: 100%;
    width: 100%;
}

body.active {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {

    html,
    body {
        font-family: 'Source Sans Pro', sans-serif !important;
        font-size: 20px;
        font-weight: 400;
    }
}

textarea:focus,
input:focus {
    outline: none !important;
    -webkit-appearance: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

*:focus {
    outline: none !important;
    -webkit-appearance: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.figure {
    display: block !important;
}

a {
    color: #ed1c24;
}

a:hover,
a:focus {
    color: #005596;
}

.alt-link a,
.alt-link a:hover,
.alt-link a:focus {
    color: #393838;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0 !important;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1440px !important;
    }
}

.list-group-item {
    border: 1px solid #cdcdcd;
}

.content-box {
    margin-bottom: 80px;
}


/*Background color*/

.b-grey {
    background-color: #f5f5f5;
}

.b-blue {
    background-color: #005596;
}

.gradient-grey {
    background: rgba(245, 245, 245, 1);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(245, 245, 245, 1)), color-stop(49%, rgba(250, 250, 250, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 245, 245, 1)), color-stop(49%, rgba(250, 250, 250, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(245, 245, 245, 1) 0%, rgba(250, 250, 250, 0) 49%, rgba(255, 255, 255, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#ffffff', GradientType=0);
}

.gradient-asem {
    background: rgba(0, 85, 150, 0.75);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 85, 150, 0.75)), color-stop(100%, rgba(237, 28, 36, 0.8)));
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 85, 150, 0.75)), to(rgba(237, 28, 36, 0.8)));
    background: linear-gradient(to right, rgba(0, 85, 150, 0.75) 0%, rgba(237, 28, 36, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#005596', endColorstr='#ed1c24', GradientType=1);
}


/*Text Color*/

.t-white {
    color: #fff !important;
}

a.t-white:hover,
a.t-white:focus {
    color: #ccc !important;
}

.t-red {
    color: #ed1c24 !important;
}

.t-blue {
    color: #005596 !important;
}

.t-text {
    color: #393838 !important;
}

.t-grey {
    color: #7c7c7c !important;
}


/*Scrolling Nav*/

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}


/*List item*/

.ul-none {
    padding: 0;
    margin: 0;
    list-style: none;
}

.li-mb-20 li {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.li-mb-30 li {
    display: block;
    margin-bottom: 30px;
}

.li-mb-20 li:last-child,
.li-mb-30 li:last-child {
    margin-bottom: 0;
}


/*
Go back up icon */

a.go-up {
    display: none;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    position: fixed;
    z-index: 100;
    background: url("../images/back-up.png") no-repeat top;
    right: 5px;
    bottom: 5px;
}

a.go-up {
    -webkit-transition: none !important;
    transition: none !important;
}

a:hover.go-up {
    background: url("../images/back-up.png") no-repeat bottom;
}

@media (min-width: 768px) {
    a.go-up {
        right: 2%;
        bottom: 306px;
    }
}

@media (min-width: 992px) {
    a.go-up {
        right: 2%;
        bottom: 213px;
    }
}


/*Border*/

.border {
    border: 1px solid #cdcdcd;
}


/*reset bootstrap card*/

.card {
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/*Round button*/

.scroller-btn {
    position: relative;
}

.scroller-btn .text {
    color: #393838;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 73px;
    margin-top: -16px;
}

@media (min-width: 768px) {
    .scroller-btn .text {
        left: 45px;
    }
}

@media (min-width: 992px) {
    .scroller-btn .text {
        left: 65px;
    }
}

.scroller-btn a:hover .bt-round {
    color: #fff;
    background: #005596;
}

.scroller-btn a:hover .text {
    color: #005596;
}

.bt-round {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: block;
    background: #ed1c24;
    text-align: center;
    vertical-align: middle !important;
    color: #fff;
    display: table-cell !important;
}

@media (min-width: 768px) {
    .bt-round {
        width: 40px;
        height: 40px;
        font-size: 16px
    }
}

@media (min-width: 992px) {
    .bt-round {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

.bt-round:hover {
    color: #fff;
    background: #005596;
}


/*Square button*/

.bt-square,
.bt-outline {
    color: #fff !important;
    display: block;
    padding: 10px 30px;
    text-align: center;
    background: #ed1c24;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #ed1c24;
}

.bt-outline {
    color: #393838 !important;
    display: block;
    border: 1px solid #cdcdcd;
    background: transparent;
}

.bt-square:hover {
    color: #fff;
    background: #005596;
    border: 1px solid #005596;
}

.bt-outline:hover {
    background: #f5f5f5;
}

@media (min-width: 768px) {
    .bt-square {
        /*        padding: 15px 30px;*/
        font-size: 16px;
    }
}


/*Load more button*/

.loadmore,
.more-videos .loadmore {
    overflow: hidden;
    text-align: center;
    font-weight: 700;
    margin-top: 40px;
    font-size: 16px;
}

.more-videos .loadmore {
    margin-top: 15px;
}

.loadmore a,
.more-videos .loadmore a,
.loadmore a:focus,
.more-videos .loadmore a:focus {
    color: #393838;
}

.loadmore a:hover,
.more-videos .loadmore a:hover {
    color: #ed1c24;
}

.loadmore:before,
.more-videos .loadmore:before {
    background-color: #000;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 65%;
}

.loadmore:before,
.more-videos .loadmore:before {
    right: 0.5em;
    margin-left: -70%;
}

.more-videos .loadmore:before {
    margin-left: 0;
    width: 20%;
}

@media (min-width: 768px) {

    .loadmore,
    .more-videos .loadmore {
        margin-top: 60px;
        font-size: 18px;
    }

    .more-videos .loadmore {
        margin-top: 10px;
    }

    .loadmore:before,
    .more-videos .loadmore:before {
        width: 15%;
    }

    .loadmore:before,
    .more-videos .loadmore:before {
        right: 0.5em;
        margin-left: -54%;
    }

    .more-videos .loadmore:before {
        margin-left: 0;
    }
}


/*Generic Container */

.generic-container {
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .generic-container {
        margin-bottom: 70px;
    }
}


/*Font Size Control*/

.font-30,
.font-40 {
    font-size: 25px;
    color: #393838;
    line-height: 1.4;
}

h1,
h2 {
    font-size: 26px;
    font-weight: 700;
    color: #393838
}

h3,
h4,
h5 {
    font-size: 22px;
    font-weight: 700;
    color: #393838
}

@media (min-width: 768px) {
    .font-30 {
        font-size: 30px;
    }

    h1,
    h2 {
        font-size: 30px;
    }

    h3,
    h4,
    h5 {
        font-size: 25px;
    }
}

.row [class*="col-"] {
    margin-bottom: 30px;
}

.row [class*="col-"]:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .row [class*="col-"] {
        margin-bottom: 0;
    }
}

.l-more {
    font-size: 15px;
    font-weight: 700;
    color: #ed1c24;
    text-transform: uppercase;
    display: inline-block;
}

.l-more:hover {
    color: #005596 !important;
}

.pub-date {
    font-size: 14px;
    color: #7c7c7c;
    display: block;
    margin-top: 10px;
}

.asem-line ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: -10px;
    margin-bottom: 20px;
}

.asem-line ul li {
    width: 60px;
    height: 5px;
    background: #ed1c24;
    display: inline-block;
    margin-top: -10px;
}

.asem-line ul li.blue {
    background: #005596 !important;
    margin-left: -5px;
}


/*Margin Space*/


/*Margin bottom*/

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}


/*Margin top*/

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}


/*Margin Left*/

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-70 {
    margin-left: 70px;
}


/*Margin right*/

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-70 {
    margin-right: 70px;
}


/*Margin Left & Right*/

.mxy-5 {
    margin: 5px !important;
}

.mxy-10 {
    margin: 10px;
}

.mxy-15 {
    margin: 15px;
}

.mxy-20 {
    margin: 20px;
}

.mxy-30 {
    margin: 30px;
}

.mxy-40 {
    margin: 40px;
}

.mxy-50 {
    margin: 50px;
}

.mxy-60 {
    margin: 60px;
}

.mxy-70 {
    margin: 70px;
}

@media (min-width: 768px) {

    /*Margin bottom*/
    .mb-md-5 {
        margin-bottom: 5px !important;
    }

    .mb-md-10 {
        margin-bottom: 10px;
    }

    .mb-md-15 {
        margin-bottom: 15px;
    }

    .mb-md-20 {
        margin-bottom: 20px;
    }

    .mb-md-30 {
        margin-bottom: 30px;
    }

    .mb-md-40 {
        margin-bottom: 40px;
    }

    .mb-md-50 {
        margin-bottom: 50px;
    }

    .mb-md-60 {
        margin-bottom: 60px;
    }

    .mb-md-70 {
        margin-bottom: 70px;
    }

    /*Margin top*/
    .mt-md-5 {
        margin-top: 5px !important;
    }

    .mt-md-10 {
        margin-top: 10px;
    }

    .mt-md-15 {
        margin-top: 15px;
    }

    .mt-md-20 {
        margin-top: 20px;
    }

    .mt-md-30 {
        margin-top: 30px;
    }

    .mt-md-40 {
        margin-top: 40px;
    }

    .mt-md-50 {
        margin-top: 50px;
    }

    .mt-md-60 {
        margin-top: 60px;
    }

    .mt-md-70 {
        margin-top: 70px;
    }

    /*Margin Left*/
    .ml-md-5 {
        margin-left: 5px !important;
    }

    .ml-md-10 {
        margin-left: 10px;
    }

    .ml-md-15 {
        margin-left: 15px;
    }

    .ml-md-20 {
        margin-left: 20px;
    }

    .ml-md-30 {
        margin-left: 30px;
    }

    .ml-md-40 {
        margin-left: 40px;
    }

    .ml-md-50 {
        margin-left: 50px;
    }

    .ml-md-60 {
        margin-left: 60px;
    }

    .ml-md-70 {
        margin-left: 70px;
    }

    /*Margin right*/
    .mr-md-5 {
        margin-right: 5px !important;
    }

    .mr-md-10 {
        margin-right: 10px;
    }

    .mr-md-15 {
        margin-right: 15px;
    }

    .mr-md-20 {
        margin-right: 20px;
    }

    .mr-md-30 {
        margin-right: 30px;
    }

    .mr-md-40 {
        margin-right: 40px;
    }

    .mr-md-50 {
        margin-right: 50px;
    }

    .mr-md-60 {
        margin-right: 60px;
    }

    .mr-md-70 {
        margin-right: 70px;
    }

    /*Margin Left & Right*/
    .mxy-md-5 {
        margin: 5px !important;
    }

    .mxy-md-10 {
        margin: 10px;
    }

    .mxy-md-15 {
        margin: 15px;
    }

    .mxy-md-20 {
        margin: 20px;
    }

    .mxy-md-30 {
        margin: 30px;
    }

    .mxy-md-40 {
        margin: 40px;
    }

    .mxy-md-50 {
        margin: 50px;
    }

    .mxy-md-60 {
        margin: 60px;
    }

    .mxy-md-70 {
        margin: 70px;
    }
}

@media (min-width: 992px) {

    /*Margin bottom*/
    .mb-lg-5 {
        margin-bottom: 5px !important;
    }

    .mb-lg-10 {
        margin-bottom: 10px;
    }

    .mb-lg-15 {
        margin-bottom: 15px;
    }

    .mb-lg-20 {
        margin-bottom: 20px;
    }

    .mb-lg-30 {
        margin-bottom: 30px;
    }

    .mb-lg-40 {
        margin-bottom: 40px;
    }

    .mb-lg-50 {
        margin-bottom: 50px;
    }

    .mb-lg-60 {
        margin-bottom: 60px;
    }

    .mb-lg-70 {
        margin-bottom: 70px;
    }

    /*Margin top*/
    .mt-lg-5 {
        margin-top: 5px !important;
    }

    .mt-lg-10 {
        margin-top: 10px;
    }

    .mt-lg-15 {
        margin-top: 15px;
    }

    .mt-lg-20 {
        margin-top: 20px;
    }

    .mt-lg-30 {
        margin-top: 30px;
    }

    .mt-lg-40 {
        margin-top: 40px;
    }

    .mt-lg-50 {
        margin-top: 50px;
    }

    .mt-lg-60 {
        margin-top: 60px;
    }

    .mt-lg-70 {
        margin-top: 70px;
    }

    /*Margin Left*/
    .ml-lg-5 {
        margin-left: 5px !important;
    }

    .ml-lg-10 {
        margin-left: 10px;
    }

    .ml-lg-15 {
        margin-left: 15px;
    }

    .ml-lg-20 {
        margin-left: 20px;
    }

    .ml-lg-30 {
        margin-left: 30px;
    }

    .ml-lg-40 {
        margin-left: 40px;
    }

    .ml-lg-50 {
        margin-left: 50px;
    }

    .ml-lg-60 {
        margin-left: 60px;
    }

    .ml-lg-70 {
        margin-left: 70px;
    }

    /*Margin right*/
    .mr-lg-5 {
        margin-right: 5px !important;
    }

    .mr-lg-10 {
        margin-right: 10px;
    }

    .mr-lg-15 {
        margin-right: 15px;
    }

    .mr-lg-20 {
        margin-right: 20px;
    }

    .mr-lg-30 {
        margin-right: 30px;
    }

    .mr-lg-40 {
        margin-right: 40px;
    }

    .mr-lg-50 {
        margin-right: 50px;
    }

    .mr-lg-60 {
        margin-right: 60px;
    }

    .mr-lg-70 {
        margin-right: 70px;
    }

    /*Margin Left & Right*/
    .mxy-lg-5 {
        margin: 5px !important;
    }

    .mxy-lg-10 {
        margin: 10px;
    }

    .mxy-lg-15 {
        margin: 15px;
    }

    .mxy-lg-20 {
        margin: 20px;
    }

    .mxy-lg-30 {
        margin: 30px;
    }

    .mxy-lg-40 {
        margin: 40px;
    }

    .mxy-lg-50 {
        margin: 50px;
    }

    .mxy-lg-60 {
        margin: 60px;
    }

    .mxy-lg-70 {
        margin: 70px;
    }
}


/*Padding Space*/


/*Padding bottom*/

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}


/*Padding top*/

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}


/*padding Left*/

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-100 {
    padding-left: 100px;
}


/*padding right*/

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-100 {
    padding-right: 100px;
}


/*padding overall*/

.pxy-5 {
    padding: 5px !important;
}

.pxy-10 {
    padding: 10px;
}

.pxy-15 {
    padding: 15px;
}

.pxy-20 {
    padding: 20px;
}

.pxy-30 {
    padding: 30px;
}

.pxy-40 {
    padding: 40px;
}

.pxy-50 {
    padding: 50px;
}

.pxy-60 {
    padding: 60px;
}

.pxy-70 {
    padding: 70px;
}

.pxy-80 {
    padding: 80px;
}

.pxy-90 {
    padding: 90px;
}

.pxy-100 {
    padding: 100px;
}

@media (min-width: 768px) {

    /*Padding bottom*/
    .pb-md-5 {
        padding-bottom: 5px !important;
    }

    .pb-md-10 {
        padding-bottom: 10px;
    }

    .pb-md-15 {
        padding-bottom: 15px;
    }

    .pb-md-20 {
        padding-bottom: 20px;
    }

    .pb-md-30 {
        padding-bottom: 30px;
    }

    .pb-md-40 {
        padding-bottom: 40px;
    }

    .pb-md-50 {
        padding-bottom: 50px;
    }

    .pb-md-60 {
        padding-bottom: 60px;
    }

    .pb-md-70 {
        padding-bottom: 70px;
    }

    .pb-md-80 {
        padding-bottom: 80px;
    }

    .pb-md-90 {
        padding-bottom: 90px;
    }

    .pb-md-100 {
        padding-bottom: 100px;
    }

    /*Padding top*/
    .pt-md-5 {
        padding-top: 5px !important;
    }

    .pt-md-10 {
        padding-top: 10px;
    }

    .pt-md-15 {
        padding-top: 15px;
    }

    .pt-md-20 {
        padding-top: 20px;
    }

    .pt-md-30 {
        padding-top: 30px;
    }

    .pt-md-40 {
        padding-top: 40px;
    }

    .pt-md-50 {
        padding-top: 50px;
    }

    .pt-md-60 {
        padding-top: 60px;
    }

    .pt-md-70 {
        padding-top: 70px;
    }

    .pt-md-80 {
        padding-top: 80px;
    }

    .pt-md-90 {
        padding-top: 90px;
    }

    .pt-md-100 {
        padding-top: 100px;
    }

    /*padding Left*/
    .pl-md-5 {
        padding-left: 5px !important;
    }

    .pl-md-10 {
        padding-left: 10px;
    }

    .pl-md-15 {
        padding-left: 15px;
    }

    .pl-md-20 {
        padding-left: 20px;
    }

    .pl-md-30 {
        padding-left: 30px;
    }

    .pl-md-40 {
        padding-left: 40px;
    }

    .pl-md-50 {
        padding-left: 50px;
    }

    .pl-md-60 {
        padding-left: 60px;
    }

    .pl-md-70 {
        padding-left: 70px;
    }

    .pl-md-80 {
        padding-left: 80px;
    }

    .pl-md-90 {
        padding-left: 90px;
    }

    .pl-md-100 {
        padding-left: 100px;
    }

    /*padding right*/
    .pr-md-5 {
        padding-right: 5px !important;
    }

    .pr-md-10 {
        padding-right: 10px;
    }

    .pr-md-15 {
        padding-right: 15px;
    }

    .pr-md-20 {
        padding-right: 20px;
    }

    .pr-md-30 {
        padding-right: 30px;
    }

    .pr-md-40 {
        padding-right: 40px;
    }

    .pr-md-50 {
        padding-right: 50px;
    }

    .pr-md-60 {
        padding-right: 60px;
    }

    .pr-md-70 {
        padding-right: 70px;
    }

    .pr-md-80 {
        padding-right: 80px;
    }

    .pr-md-90 {
        padding-right: 90px;
    }

    .pr-md-100 {
        padding-right: 100px;
    }

    /*padding overall*/
    .pxy-md-5 {
        padding: 5px !important;
    }

    .pxy-md-10 {
        padding: 10px;
    }

    .pxy-md-15 {
        padding: 15px;
    }

    .pxy-md-20 {
        padding: 20px;
    }

    .pxy-md-30 {
        padding: 30px;
    }

    .pxy-md-40 {
        padding: 40px;
    }

    .pxy-md-50 {
        padding: 50px;
    }

    .pxy-md-60 {
        padding: 60px;
    }

    .pxy-md-70 {
        padding: 70px;
    }

    .pxy-md-80 {
        padding: 80px;
    }

    .pxy-md-90 {
        padding: 90px;
    }

    .pxy-md-100 {
        padding: 100px;
    }
}

@media (min-width: 992px) {

    /*Padding bottom*/
    .pb-lg-5 {
        padding-bottom: 5px !important;
    }

    .pb-lg-10 {
        padding-bottom: 10px;
    }

    .pb-lg-15 {
        padding-bottom: 15px;
    }

    .pb-lg-20 {
        padding-bottom: 20px;
    }

    .pb-lg-30 {
        padding-bottom: 30px;
    }

    .pb-lg-40 {
        padding-bottom: 40px;
    }

    .pb-lg-50 {
        padding-bottom: 50px;
    }

    .pb-lg-60 {
        padding-bottom: 60px;
    }

    .pb-lg-70 {
        padding-bottom: 70px;
    }

    .pb-lg-80 {
        padding-bottom: 80px;
    }

    .pb-lg-90 {
        padding-bottom: 90px;
    }

    .pb-lg-100 {
        padding-bottom: 100px;
    }

    /*Padding top*/
    .pt-lg-5 {
        padding-top: 5px !important;
    }

    .pt-lg-10 {
        padding-top: 10px;
    }

    .pt-lg-15 {
        padding-top: 15px;
    }

    .pt-lg-20 {
        padding-top: 20px;
    }

    .pt-lg-30 {
        padding-top: 30px;
    }

    .pt-lg-40 {
        padding-top: 40px;
    }

    .pt-lg-50 {
        padding-top: 50px;
    }

    .pt-lg-60 {
        padding-top: 60px;
    }

    .pt-lg-70 {
        padding-top: 70px;
    }

    .pt-lg-80 {
        padding-top: 80px;
    }

    .pt-lg-90 {
        padding-top: 90px;
    }

    .pt-lg-100 {
        padding-top: 100px;
    }

    /*padding Left*/
    .pl-lg-5 {
        padding-left: 5px !important;
    }

    .pl-lg-10 {
        padding-left: 10px;
    }

    .pl-lg-15 {
        padding-left: 15px;
    }

    .pl-lg-20 {
        padding-left: 20px;
    }

    .pl-lg-30 {
        padding-left: 30px;
    }

    .pl-lg-40 {
        padding-left: 40px;
    }

    .pl-lg-50 {
        padding-left: 50px;
    }

    .pl-lg-60 {
        padding-left: 60px;
    }

    .pl-lg-70 {
        padding-left: 70px;
    }

    .pl-lg-80 {
        padding-left: 80px;
    }

    .pl-lg-90 {
        padding-left: 90px;
    }

    .pl-lg-100 {
        padding-left: 100px;
    }

    /*padding right*/
    .pr-lg-5 {
        padding-right: 5px !important;
    }

    .pr-lg-10 {
        padding-right: 10px;
    }

    .pr-lg-15 {
        padding-right: 15px;
    }

    .pr-lg-20 {
        padding-right: 20px;
    }

    .pr-lg-30 {
        padding-right: 30px;
    }

    .pr-lg-40 {
        padding-right: 40px;
    }

    .pr-lg-50 {
        padding-right: 50px;
    }

    .pr-lg-60 {
        padding-right: 60px;
    }

    .pr-lg-70 {
        padding-right: 70px;
    }

    .pr-lg-80 {
        padding-right: 80px;
    }

    .pr-lg-90 {
        padding-right: 90px;
    }

    .pr-lg-100 {
        padding-right: 100px;
    }

    /*padding overall*/
    .pxy-lg-5 {
        padding: 5px !important;
    }

    .pxy-lg-10 {
        padding: 10px;
    }

    .pxy-lg-15 {
        padding: 15px;
    }

    .pxy-lg-20 {
        padding: 20px;
    }

    .pxy-lg-30 {
        padding: 30px;
    }

    .pxy-lg-40 {
        padding: 40px;
    }

    .pxy-lg-50 {
        padding: 50px;
    }

    .pxy-lg-60 {
        padding: 60px;
    }

    .pxy-lg-70 {
        padding: 70px;
    }

    .pxy-lg-80 {
        padding: 80px;
    }

    .pxy-lg-90 {
        padding: 90px;
    }

    .pxy-lg-100 {
        padding: 100px;
    }
}


/*Nav Bar*/

.navigation {
    height: 95px;
    background: #f5f5f5;
}

@media (min-width: 1200px) {
    .navigation {
        height: 120px;
    }
}


/*Social Navbar*/

.nav-social {
    position: absolute;
    max-width: 1440px;
    width: 100%;
    text-align: right;
    top: 10px;
    display: block;
}

.nav-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-social ul li {
    display: inline-block;
    margin-left: 10px;
}

.nav-social ul li:last-child {
    margin-right: 15px;
}

.nav-social ul li a {
    color: #393838;
}

.nav-social ul li a:hover {
    color: #ed1c24;
}

.brand {
    position: absolute;
    top: 15px;
    left: 15px;
    /*
    padding-left: 15px;
    float: left;
    padding-top: 15px;
*/
}

.nav-logo {
    width: 320px;
    height: 91px;
    display: block;
}

.nav-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

nav {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
}

@media (min-width: 1200px) {
    nav {
        top: 74px;
    }
}

nav ul {
    list-style: none;
    /*    margin: 25px 0 0;*/
    padding: 0;
    background: #fff;
}

@media (min-width: 1200px) {
    nav ul {
        margin: 0;
    }
}

nav ul li {
    float: left;
    position: relative;
}

nav ul li a,
nav ul li a:visited,
nav ul li a:focus,
nav ul li li a,
nav ul li li a:visited {
    display: block;
    padding: 10px 10px 10px;
    color: #393838;
    text-transform: uppercase;
    margin-left: -1px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    border-bottom: 1px solid #eaeaea;
}

nav ul li li a,
nav ul li li a:visited {
    border-bottom: 1px solid #eaeaea;
}

@media (min-width: 1200px) {

    nav ul li a,
    nav ul li a:visited,
    nav ul li a:focus,
    nav ul li li a,
    nav ul li li a:visited {
        border-bottom: 1px solid transparent;
        margin-bottom: -1px;
    }

    nav ul li a.active {
        border-bottom: 3px solid #393838;
    }

    nav ul li li a.active {
        border-bottom: 1px solid transparent;
    }
}

nav ul li li a,
nav ul li li a:visited {
    color: #393838;
}

@media (min-width: 1200px) {

    nav ul li li a,
    nav ul li li a:visited {
        color: #393838;
    }

    nav ul li li a:hover {
        color: #ed1c24 !important;
    }
}


/*
nav ul li li:last-child a,
nav ul li li:last-child a:visited {
    border-bottom: 0;
}
*/

@media (min-width: 1200px) {
    nav ul li a {
        border: 1px solid transparent;
    }
}

nav ul li:last-child a {
    padding-right: 15px;
}


/*nav ul li a.hover,*/

nav ul li a:hover,
nav ul li a:visited:hover {
    background: #fff;
    z-index: 10;
    color: #393838;
}

@media (min-width: 1200px) {

    nav ul li a.hover,
    nav ul li a:hover,
    nav ul li a:visited:hover {
        background: #fff;
        z-index: 10;
        color: #393838;
        /*border-bottom: 1px solid #e7e5e5;*/
        /*border-bottom: 1px solid transparent;*/
    }

    nav ul li a.has-dropdown.hover {
        border: 1px solid #e7e5e5;
        border-bottom: 1px solid transparent;
    }

    nav ul li li a:hover,
    nav ul li li a:focus,
    nav ul li li a:visited:hover {
        border: 1px solid transparent;
    }

    nav ul li a.d-lg-block:hover,
    nav ul li a.d-lg-block:focus,
    nav ul li a.d-lg-block:visited:hover {
        background: transparent;
        color: #ed1c24;
    }
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a {
    background: #fff;
    padding: 15px;
    line-height: 20px;
    margin-left: 0;
}


/*
nav ul li ul li a:hover {
    color: #ed1c24;
}
*/

@media (min-width: 1200px) {
    nav ul li ul li a {
        padding: 10px;
    }
}

@media (min-width: 1200px) {
    nav ul li ul li a {
        background: transparent;
    }
}


/*
nav ul li ul li a:hover {
    border: 1px solid #eaeaea;
    z-index: 1;
}

@media (min-width: 1200px) {
    nav ul li ul li a:hover {
        border-bottom: 1px solid #eaeaea;
    }
}
*/

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    margin-top: 1px;
    margin-left: -1px;
    border: 1px solid #ededed;
    background: #fff;
}

.nav-list .edge ul {
    right: 0;
}

@media (min-width: 1200px) {
    .nav-dropdown {
        border: 1px solid #e7e5e5;
        border-top: 1px solid transparent;
    }

    .nav-list {
        display: block !important;
    }
}


/* Mobile navigation */

.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 15px;
    width: 70px;
}

@media only screen and (max-width: 1200px) {
    .nav-social {
        display: none;
    }

    .nav-logo {
        width: 225px;
        height: 64px;
    }

    /*
    nav {
        top: 22px;
    }
*/
    .nav-mobile {
        display: block;
    }

    nav {
        width: 100%;
        padding: 95px 0 15px;
    }

    nav ul {
        display: none;
    }

    nav ul li {
        float: none;
        margin-top: 1px;
    }

    nav ul li a {
        padding: 15px;
        line-height: 20px;
    }

    nav ul li ul li a {
        padding-left: 30px;
    }

    .nav-dropdown {
        position: static;
        border: none;
    }

    .nav-list {
        display: none;
        -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
        box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
    }

    nav ul li a:focus,
    nav ul li a:visited:focus {
        padding: 15px !important;
        line-height: 20px;
    }

    /*
    .show-drop:after {
        content: "+";
        top: 10px;
        right: 23px;
        position: absolute;
    }
*/
}

#nav-toggle {
    position: absolute;
    left: 28px;
    top: 23px;
    cursor: pointer;
    padding: 22px 35px 20px 10px;
}

#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 2px;
    width: 25px;
    background: #393838;
    position: absolute;
    display: block;
    content: '';
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#nav-toggle span:before {
    top: -7px;
}

#nav-toggle span:after {
    bottom: -7px;
}

#nav-toggle.active span {
    background-color: transparent;
}

#nav-toggle.active span:before,
#nav-toggle.active span:after {
    top: 0;
}

#nav-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

nav ul li .mobile-social {
    text-align: center;
}

nav ul li ul.mobile-social li {
    display: inline-block;
    min-width: auto;
}

nav ul li ul.mobile-social li a {
    background: #fff;
    color: #393838;
    text-align: center;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 20px;
}

nav ul li ul.mobile-social li a:hover,
nav ul li ul.mobile-social li a:focus,
nav ul li ul.mobile-social li a:visited:hover {
    background: #fff;
    color: #393838;
}


/*Nav Bar End*/


/*Reset Tab*/

.nav-tabs {
    border: none;
}

.nav-tabs .nav-item {
    margin-right: 50px;
}

@media (min-width: 768px) {
    .nav-tabs .nav-item {
        margin-right: 60px;
    }

    .nav-tabs .nav-item:last-child {
        margin-right: 0;
    }
}

.nav-tabs a.nav-link {
    color: #393838;
    font-size: 23px;
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
}

.nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #393838;
    background-color: #fff;
    border-bottom: 3px solid #393838;
}

.search-nav {
    background: transparent;
    border: 0;
    font-size: 17px;
    margin-top: 10px;
    margin-right: 8px;
    margin-left: 2px;
}

.search-nav:hover {
    color: #ed1c24;
}


/*
Content Block Type

.block {
    margin-top: 70px;
    margin-bottom: 70px;
}
*/


/*
.imgl-textr-full,
.content-block,
.content-tab,
.carousel-text-block {
    margin-top: 50px;
    margin-bottom: 50px;
}
*/


/*Carousel */

.indicator-line {
    height: 1px;
    background: #393838;
    width: 80px;
    position: absolute;
    bottom: 32px;
    left: 35px;
}

@media (min-width: 992px) {
    .indicator-line {
        width: 120px;
        left: 55px;
        bottom: 76px;
    }
}

.carousel-indicators {
    padding-left: 160px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    margin-left: 0%;
    margin-right: 0%;
}

@media (min-width: 992px) {
    .carousel-indicators {
        padding-left: 180px;
        bottom: 54px;
    }
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-indicators li {
    border: 2px solid #ed1c24;
    width: 0.55rem !important;
    height: 0.55rem !important;
}

@media (min-width: 768px) {
    .carousel-indicators li {
        width: 0.8rem !important;
        height: 0.8rem !important;
    }
}

.carousel-indicators .active {
    background-color: #ed1c24;
}


/*Homepage*/

#carousel-homepage .carousel-item {
    padding-top: 20px;
    /*    padding-bottom: 20px;*/
}

#carousel-homepage .carousel-item a {
    color: #393838;
}

@media (min-width: 768px) {
    #carousel-homepage .carousel-item {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

#carousel-homepage .indicator-line {
    height: 1px;
    background: #393838;
    position: absolute;
    bottom: 32px;
    left: 35px;
}

@media (min-width: 992px) {
    #carousel-homepage .indicator-line {
        left: 35px;
        bottom: 81px;
    }
}

#carousel-homepage .carousel-indicators {
    padding-left: 122px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    margin-left: 0%;
    margin-right: 0%;
}

@media (min-width: 992px) {
    #carousel-homepage .carousel-indicators {
        bottom: 54px;
        padding-left: 160px;
    }
}

#carousel-homepage .carousel-item h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}

#carousel-homepage .carousel-item h2 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
    color: #6f6f6f;
}

#carousel-homepage .carousel-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    #carousel-homepage .carousel-item h1 {
        font-size: 38px;
        margin-left: 20px;
    }

    #carousel-homepage .carousel-item h2 {
        font-size: 27px;
        margin-left: 20px;
    }

    #carousel-homepage .carousel-item h3 {
        font-size: 20px;
        margin-left: 20px;
    }
}

@media (min-width: 1400px) {
    #carousel-homepage .carousel-item h1 {
        font-size: 40px;
    }

    #carousel-homepage .carousel-item h2 {
        font-size: 29px;
    }

    #carousel-homepage .carousel-item h3 {
        font-size: 23px;
    }
}

.h-latest-news a:hover,
.h-latest-news a:focus {
    color: #ed1c24;
}

.h-pillars .row [class*="col-"] {
    height: 225px;
}

.h-pillars .pillars-3 {
    position: absolute;
    right: 15px;
    bottom: 0;
}

@media (min-width: 768px) {
    .h-pillars .row [class*="col-"] {
        height: 235px;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .h-pillars .row [class*="col-"] {
        height: 235px;
        margin-bottom: 0;
    }
}

.asem-number ul {
    margin-left: 50px;
}

@media (min-width: 768px) {
    .asem-number ul {
        margin-left: 15px;
    }
}

@media (min-width: 992px) {
    .asem-number ul {
        margin-left: 50px;
    }
}

.asem-number li {
    display: block;
    margin-bottom: 10px;
    line-height: 0.8;
    font-weight: 600;
}

@media (min-width: 768px) {
    .asem-number li {
        line-height: 1;
    }
}

.asem-number li span {
    font-size: 40px;
    color: #005596;
    font-weight: 700;
    margin-right: 5px;
}

@media (min-width: 992px) {
    .asem-number li span {
        font-size: 37px;
        margin-right: 0px;
    }
}

@media (min-width: 1200px) {
    .asem-number li span {
        font-size: 60px;
        margin-right: 10px;
    }
}

.number-line {
    /*    margin-bottom: -30px;*/
}

@media (min-width: 768px) {
    .number-line {
        position: absolute;
        width: 153px;
        left: -81px;
        top: 62px;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .number-line {
        left: -53px;
        top: 55px;
    }
}

@media (min-width: 1200px) {
    .number-line {
        left: -79px;
        top: 99px;
    }
}

@media (min-width: 1600px) {
    .number-line {
        left: -163px;
        top: 99px;
    }
}

.represent-number {
    position: relative;
    margin-left: 45px;
}

@media (min-width: 768px) {
    .represent-number {
        left: -24px;
        top: 62px;
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .represent-number {
        left: -24px;
        top: 57px;
    }
}

@media (min-width: 1200px) {
    .represent-number {
        left: -80px;
        top: 100px;
    }
}

@media (min-width: 1600px) {
    .represent-number {
        left: -200px;
        top: 100px;
    }
}

.represent-number li {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.represent-number li:last-child {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .represent-number li {
        width: 50%;
        margin-right: -4px;
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .represent-number li {
        font-size: 18px;
    }
}

.represent-number li span {
    font-size: 30px;
    color: #ed1c24;
    font-weight: 700;
    margin-right: 10px;
}

@media (min-width: 992px) {
    .represent-number li span {
        font-size: 22px;
        margin-right: 5px;
    }
}

@media (min-width: 1200px) {
    .represent-number li span {
        font-size: 30px;
        margin-right: 10px;
    }
}

.represent-number li span i {
    font-style: normal;
}


/*

.represent-number span.label {
    font-weight: 600;
    padding-left: 10px;
}
*/

.h-events {
    margin-top: 70px;
}

@media (min-width: 768px) {
    .h-events {
        margin-top: 115px;
    }
}

@media (min-width: 992px) {
    .h-events {
        margin-top: 115px;
    }
}

.h-events-list a {
    font-weight: 700;
    color: #393838;
    background: transparent;
}

.h-events-list a:hover {
    background: rgba(235, 235, 235, 0.8);
}

.h-events-list a span {
    display: block;
    font-size: 15px;
    color: #393838;
    font-weight: 400;
    margin-top: 5px;
}

@media (min-width: 768px) {
    .h-events-list a span {
        font-size: 17px;
        margin-top: 0;
    }
}

.worldmap {
    background-image: url(../images/worldmap.png);
    background-repeat: no-repeat;
    background-position: -180px 20px;
    background-size: 150%;
}

@media (min-width: 768px) {
    .worldmap {
        background-position: -200px 20px;
        background-size: 120%;
    }
}

@media (min-width: 992px) {
    .worldmap {
        background-position: -100px 20px;
        background-size: 100%;
    }
}

@media (min-width: 1921px) {
    .worldmap {
        background-position: -100px 30px;
        background-size: 85%;
    }
}


/*Owl Carousel */

.text-carousel {
    position: relative;
}

.owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.useful-links-carousel .owl-item {
    text-align: center;
    border-right: 1px solid #cdcdcd;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
}

.owl-item a {
    color: #393838;
    font-weight: 600;
}

.owl-item a:hover,
.owl-item a:focus {
    color: #ed1c24;
}

.useful-links-carousel .owl-dots,
.asem-enlargement .owl-dots {
    margin-top: 20px;
    text-align: center;
}

@media (min-width: 768px) {

    .useful-links-carousel .owl-dots,
    .asem-enlargement .owl-dots {
        position: absolute;
        top: -103px;
        left: 456px;
    }

    .asem-enlargement .owl-dots {
        top: -112px;
        left: 441px;
    }
}

@media (min-width: 992px) {
    .useful-links-carousel .owl-dots {
        top: -101px;
        left: 503px;
    }

    .asem-enlargement .owl-dots {
        left: 581px;
    }
}

.carousel-indicator-title-area .indicator-line {
    position: absolute;
    top: 20px;
    left: 385px;
}

.owl-carousel button.owl-dot {
    position: relative;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    width: .55rem !important;
    height: .55rem !important;
    border: 2px solid #ed1c24;
}

@media (min-width: 768px) {
    .owl-carousel button.owl-dot {
        width: .8rem !important;
        height: .8rem !important;
    }
}

.owl-carousel button.owl-dot.active {
    background: #ed1c24;
}


/*Footer Area*/


/*
footer .card {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-color: transparent;
    border: none;
    border-radius: none;
    color: #fff;
}

footer .accordion .card:last-child {
    border: none;
}
*/


/*
footer .card h5 {
    font-size: 14px;
}

footer .accordion .btn {
    margin: 0;
    padding: 0;
    text-align: center;
    width: auto;
}
*/


/*
footer .accordion .btn:after {
    content: "";
}

footer .accordion .black-text,
footer .accordion .btn.btn-link {
    color: #fff !important;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.collapsed .in {
    display: none;
}
*/


/*
footer .accordion .btn.btn-link:active,
footer .accordion .btn.btn-link:focus,
footer .accordion .btn.btn-link:hover {
    text-decoration: none;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
}
*/


/*

footer .accordion .btn.collapsed:after {
    content: "";
}
*/


/*
footer .accordion .card-footer,
footer .accordion .card-header {
    padding: 0;
    background-color: transparent;
    border: none;
}
*/


/*
footer .accordion .card .card-body {
    padding: 0;
    margin-top: 15px;
}

@media (min-width: 768px) {
    footer .accordion .card .card-body {
        margin-top: 0;
    }
}
*/


/*
footer .accordion .card .card-body ul li {
    display: inline-block;
    width: 50%;
    font-size: 14px;
    margin-right: -4px;
    vertical-align: top;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    footer .accordion .card .card-body ul li {
        width: 33.3333%;
    }
}

@media (min-width: 992px) {
    footer .accordion .card .card-body ul li {
        width: 20%;
    }
}

footer .accordion .card .card-body ul li {
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    footer .accordion .card .card-body ul li {
        margin-bottom: 0;
    }
}

footer .accordion .card .card-body ul li li:first-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    footer .accordion .card .card-body ul li:first-child {
        margin-bottom: 0;
    }
}

footer .accordion .card .card-body ul li li {
    display: block;
    width: 100%;
    margin-right: 0;
    color: #fff;
    margin-bottom: 2px;
    font-weight: 200;
}

footer .accordion .card .card-body ul li li a {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}

footer .accordion .card .card-body ul li li a:hover,
footer .accordion .card .card-body ul li li a:focus {
    color: #ccc;
}

footer .accordion .card h5 {
    text-align: center;
}
*/

#accordion-footer h4.accordion-toggle {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

#accordion-footer .fa-bars {
    margin-right: 5px;
}

@media (min-width: 768px) {
    #accordion-footer .accordion-toggle {
        display: none;
    }
}

#accordion-footer .accordion-content {
    display: none;
    margin-top: 20px;
}

@media (min-width: 768px) {
    #accordion-footer .accordion-content {
        margin-top: 0;
    }
}

#accordion-footer .accordion-content.default {
    display: none;
}

@media (min-width: 768px) {
    #accordion-footer .accordion-content.default {
        display: block !important;
    }
}

#accordion-footer .accordion-content ul li {
    display: inline-block;
    width: 50%;
    font-size: 14px;
    margin-right: -4px;
    vertical-align: top;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    #accordion-footer .accordion-content ul li {
        width: 33.3333%;
    }
}

@media (min-width: 992px) {
    #accordion-footer .accordion-content ul li {
        width: 20%;
    }
}

#accordion-footer .accordion-content ul li {
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    #accordion-footer .accordion-content ul li {
        margin-bottom: 0;
    }
}

#accordion-footer .accordion-content ul li li:first-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    #accordion-footer .accordion-content ul li:first-child {
        margin-bottom: 0;
    }
}

#accordion-footer .accordion-content ul li li {
    display: block;
    width: 100%;
    margin-right: 0;
    color: #fff;
    margin-bottom: 2px;
    font-weight: 200;
}

#accordion-footer .accordion-content ul li li a {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}

#accordion-footer .accordion-content ul li li a:hover,
#accordion-footer .accordion-content ul li li a:focus {
    color: #ccc;
}


/*adsfdf*/

footer .btn-subscribe {
    background: #0073ca;
    border: 1px solid #0073ca;
    padding: 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    width: 50%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    footer .btn-subscribe {
        width: auto;
    }
}

@media (min-width: 992px) {
    footer .btn-subscribe {
        margin: 0;
        text-align: left;
    }
}

footer .btn-subscribe i {
    margin-right: 5px;
}

footer .btn-subscribe:hover,
footer .btn-subscribe:focus {
    background: #393838;
}

footer .utility {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

@media (min-width: 992px) {
    footer .utility {
        text-align: left;
    }
}

footer .utility p {
    margin-bottom: 15px;
    line-height: 1.4;
}

footer .utility ul {
    margin-top: -10px;
}

footer .utility li {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
}

footer .utility li a {
    color: #fff;
}

footer .utility li a:hover,
footer .utility li a:focus {
    color: #393838;
}

footer .row [class*="col-"] {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    footer .row [class*="col-"] {
        margin-bottom: 0;
    }
}


/*Header Styling*/

.header,
.header-0 {
    position: relative;
    display: block;
    padding-top: 50px;
    margin-bottom: 50px
        /*    padding-bottom: 60px;*/
}

.header-0 {
    padding-top: 0;
    /*    padding-bottom: 0;*/
    height: 200px;
    /*    margin-bottom: 0;*/
}


/*
@media (min-width: 768px) {
    .header-0 {
        margin-bottom: 129px;
    }
}
*/

.header .text-only {
    padding-bottom: 60px;
}

.header .title h1,
.header .text-only h1,
.header .text-bg h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
}

.header .text-only h1,
.header .text-bg h1 {
    text-transform: none;
}

.header .text-only h1,
.header-action {
    display: block;
}

.header-action {
    margin-left: 0;
    font-size: 16px;
    text-align: center;
}

.header-action a {
    color: #ed1c24;
}

.header-action a span {
    color: #393838;
    padding-left: 10px;
    display: inline-block;
    font-weight: 700;
}

.title-bg.text-only {
    padding-bottom: 0;
}

.title-img {
    position: absolute;
    height: 200px;
    right: 0;
}

.title-img .img-size {
    height: 259px;
}

.header .title-bg .row {
    height: 200px;
}

@media (min-width: 768px) {
    .header {
        padding-top: 70px;
        margin-bottom: 70px
    }

    .header-0 {
        padding-top: 0;
        height: 395px;
        margin-bottom: 143px;
    }

    .header .title h1,
    .header .text-only h1,
    .header .text-bg h1 {
        font-size: 55px;
    }

    .title-img {
        height: 365px;
    }

    .title-img .img-size {
        height: 468px;
    }

    .header .title-bg .row {
        height: 365px;
    }

    .header .text-only h1,
    .header .text-bg h1 {
        margin-left: 20px;
    }

    .header-action {
        margin-left: 30px;
        text-align: left;
    }

    .header .text-only h1,
    .header-action {
        display: inline-block;
    }
}

@media (min-width: 1200px) {

    .header .title h1,
    .header .text-only h1,
    .header .text-bg h1 {
        font-size: 69px;
    }

    .header .text-only h1,
    .header .text-bg h1 {
        margin-left: 60px;
    }
}


/*End of Header Styling*/


/*Content Block*/

.content-block {
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .content-block {
        margin-bottom: 70px;
    }
}


/*
.without-container {
    margin-top: 0px;
}
*/

blockquote {
    border-left: 8px solid #005596;
    padding-left: 30px;
    margin: 40px 50px;
    font-weight: 700;
}

.block h1:first-child,
.block h2:first-child,
.block h3:first-child,
.block h4:first-child,
.block h5:first-child {
    margin-top: auto;
}

.block h1:first-child {
    text-align: center;
}

.block h1,
.block h2,
.block h3,
.block h4,
.block h5 {
    margin-top: 30px;
}

@media (min-width: 768px) {

    .content-block h1,
    .content-block h2,
    .content-block h3,
    .content-block h4,
    .content-block h5 {
        margin-top: 40px;
    }

    .block h1:first-child {
        text-align: left;
    }
}


/*List like link*/

.list-link {
    margin-top: -20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .list-link {
        margin-top: -20px;
        margin-bottom: 70px;
    }
}

.list-link .list-group-item {
    border-top: 5px solid #393838;
    border-bottom: 5px solid #393838;
    border-left: none;
    border-right: none;
    margin-top: -4px;
    padding: 0.8rem 1.25rem;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #393838;
    line-height: 1.05;
}

.list-link .list-group-item-action {
    color: #393838;
}

.list-group .list-group-item:first-child,
.list-group .list-group-item:last-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.list-link .list-group-item-action:focus,
.list-link .list-group-item-action:hover {
    background: #edecec;
}

@media (min-width: 768px) {
    .list-link .list-group-item {
        font-size: 25px;
    }
}

@media (min-width: 992px) {
    .list-link .list-group-item {
        font-size: 35px;
        border-top: 10px solid #393838;
        border-bottom: 10px solid #393838;
        margin-top: -9px;
        padding: 1rem 1.25rem;
    }
}

@media (min-width: 1200px) {
    .list-link .list-group-item {
        font-size: 43px;
    }
}


/* End List like link*/


/*2 column Image and Text*/

.col2-imgleft,
.col2-imgright,
.col2-even,
.col2-60-40,
.col2-40-60 {
    margin-bottom: 50px;
}

@media (min-width: 768px) {

    .col2-imgleft,
    .col2-imgright,
    .col2-even,
    .col2-60-40,
    .col2-40-60 {
        margin-bottom: 70px;
    }
}

.col2-imgleft .row [class*="col-"],
.col2-imgright .row [class*="col-"] {
    margin-bottom: 0;
}

.col2-even .row [class*="col-"],
.col2-60-40 .row [class*="col-"],
.col2-40-60 .row [class*="col-"] {
    margin-bottom: 30px;
}

.col2-even .row [class*="col-"]:last-child,
.col2-60-40 .row [class*="col-"]:last-child,
.col2-40-60 .row [class*="col-"]:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {

    .col2-even .row [class*="col-"],
    .col2-60-40 .row [class*="col-"],
    .col2-40-60 .row [class*="col-"] {
        margin-bottom: 0;
    }
}


/*
.col2-imgleft figure,
.col2-imgright figure{
    margin-top: 0;
}
*/

.col2-imgleft p:first-child,
.col2-imgright p:first-child {
    margin-top: -5px;
}

.col2-imgleft figure {
    margin-bottom: 20px;
}


/*
.col2-imgright figure {
    margin-top: 30px;
}
*/

@media (min-width: 992px) {

    .col2-imgleft figure,
    .col2-imgright figure {
        margin-bottom: 0;
    }

    .col2-imgright figure {
        margin-top: 0;
    }
}


/*Flow content Image On Left*/

.img-fullwidth,
.img-fullwidth-potrait,
.img-left,
.img-right {
    clear: both;
}

.img-left .figure {
    float: left;
    padding-top: 9px;
    margin-right: 0;
    margin-bottom: 0;
}

.img-right .figure {
    float: right;
    padding-top: 9px;
    margin-left: 0;
    margin-bottom: 0;
}

.img-fullwidth .figure-img,
.img-fullwidth-potrait .figure-img,
.img-left .figure-img,
.img-right .figure-img {
    margin-bottom: 0;
}

.img-fullwidth .figure-caption,
.img-fullwidth-potrait .figure-caption,
.img-left .figure-caption,
.img-right .figure-caption {
    border-bottom: 1px solid #cccccc;
    font-size: 13px;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    .img-left .figure {
        margin-right: 30px;
    }

    .img-right .figure {
        margin-left: 30px;
    }
}


/*2 Column Carousel*/

.carousel-2col {
    margin-bottom: 50px;
}

.carousel-2col:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .carousel-2col {
        margin-bottom: 70px;
    }
}

.carousel-2col .carousel-indicator-title-area .indicator-line {
    position: absolute;
    top: 20px;
    left: 460px;
}

@media (min-width: 768px) {
    .carousel-2col .carousel-indicator-title-area .indicator-line {
        top: 19px;
        left: 370px;
    }
}

@media (min-width: 992px) {
    .carousel-2col .carousel-indicator-title-area .indicator-line {
        top: 20px;
        left: 470px;
    }
}


/*
.carousel-2col .carousel-indicator-title-area .indicator-line {
    left: 460px;
}
*/

.carousel-2col .carousel-title {
    position: relative;
}

.carousel-2col .owl-item {
    padding-left: 5px;
    padding-right: 5px;
}

.carousel-2col .owl-item h2 {
    font-size: 50px;
    font-weight: 700;
}


/*Tab Sytle Content*/

.tab-layout {
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .tab-layout {
        margin-bottom: 70px;
    }
}

.tab-layout .nav-tabs .nav-link {
    padding-top: 0;
}

.tab-layout .tab-content {
    padding-top: 15px;
}

.tab-content {
    padding: 2rem 0 1rem;
}


/*Event Listings*/

.event-list li,
.doc-in-list li,
.generic-list li,
.search-list li {
    border-bottom: 1px solid #cdcdcd;
}

.event-list li a,
.doc-in-list li a,
.generic-list li a,
.search-list li a {
    color: #393838;
}

.event-list li a:hover,
.event-list li a:focus,
.doc-in-list li a:hover,
.doc-in-list li a:focus,
.generic-list li a:hover,
.generic-list li a:focus,
.search-list li a:hover,
.search-list li a:focus {
    background: #f5f5f5;
    display: block;
}

.event-list li li,
.doc-in-list li li,
.generic-list li li,
.search-list li li {
    display: inline-block;
    margin-right: -5px;
    vertical-align: middle;
    padding-top: 20px;
    padding-bottom: 20px;
}

.event-list li li:nth-child(odd),
.doc-in-list li li:nth-child(odd),
.generic-list li li:nth-child(odd) {
    width: 140px;
    border-right: 1px solid #cdcdcd;
    border-bottom: none;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
    color: #7c7c7c;
}

.doc-in-list li li:nth-child(odd),
.generic-list li li:nth-child(odd) {
    width: 100%;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    font-size: 18px;
    border-left: none;
    /*    border-bottom: 1px solid #cdcdcd;*/
    color: #393838;
}

.generic-list li li:nth-child(odd) {
    font-size: 13px;
    color: #7c7c7c;
}

.generic-list li li:nth-child(odd) span {
    font-size: 18px;
}

.event-list li li:nth-child(odd) span {
    font-size: 18px;
    display: block;
    font-weight: 600;
    line-height: 1.1;
    color: #393838;
    margin-bottom: 5px;
}

.event-list li li:nth-child(even) {
    width: calc(100% - 140px);
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    font-size: 18px;
    border-bottom: none;
    border-left: 1px solid #cdcdcd;
}

.doc-in-list li li:nth-child(odd),
.generic-list li li:nth-child(odd) {
    width: 100%;
    border-right: none;
    border-left: none;
}

.doc-in-list li li:nth-child(odd)::after {
    content: "\f019";
    font-family: Font Awesome\ 5 Pro;
    font-size: 18px;
    margin-left: 10px;
    color: #ed1c24;
    font-weight: 900;
    display: inline-block;
}

.generic-list li li:nth-child(odd)::after {
    content: "";
    font-size: 1px;
}

.event-list li li:nth-child(even) span,
.doc-in-list li li:nth-child(odd) span {
    font-size: 12px;
    text-transform: uppercase;
    color: #005596;
    display: block;
    padding-bottom: 5px;
    font-weight: 600;
}

.generic-list li li:nth-child(odd) span {
    font-size: 18px;
    color: #393838;
    text-transform: none;
}

.search-list li li {
    font-size: 18px;
    color: #393838;
    text-transform: none;
    padding: 20px;
    border-bottom: 1px solid transparent;
    font-weight: 600;
    line-height: 1.3;
    font-size: 18px;
}

.search-list li li span {
    font-size: 12px;
    text-transform: uppercase;
    color: #005596;
    display: block;
    padding-bottom: 5px;
    font-weight: 600;
}

.search-list li a li.doc-icon::after {
    content: "\f019";
    font-family: Font Awesome\ 5 Pro;
    font-size: 18px;
    margin-left: 10px;
    color: #ed1c24;
    font-weight: 900;
}

@media (min-width: 768px) {

    /*
    .event-list {
        margin-bottom: 70px;
    }
*/
    .event-list li li:nth-child(odd) {
        width: 230px;
        padding-right: 25px;
        font-size: 20px;
    }

    .event-list li li:nth-child(odd) span {
        font-size: 20px;
    }

    .event-list li li:nth-child(even) {
        width: calc(100% - 230px);
        padding-left: 25px;
        font-size: 23px;
    }

    .doc-in-list li li:nth-child(odd),
    .generic-list li li:nth-child(odd) {
        width: 100%;
        padding-right: 10px;
        font-size: 23px;
    }

    .event-list li li:nth-child(even) span,
    .doc-in-list li li:nth-child(odd) span,
    .generic-list li li:nth-child(odd) {
        font-size: 16px;
    }

    .generic-list li li:nth-child(odd) span {
        font-size: 23px;
    }

    .search-list li li {
        font-size: 23px;
    }

    .search-list li li span {
        font-size: 16px;
    }

    .nav-scroller .nav {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
    }
}

@media (min-width: 992px) {

    .event-list li li:nth-child(odd),
    .doc-in-list li li:nth-child(odd),
    .generic-list li li:nth-child(odd) {
        width: 250px;
    }

    .doc-in-list li li:nth-child(odd),
    .generic-list li li:nth-child(odd) {
        width: 100%;
    }

    .generic-list li li:nth-child(odd) {
        font-size: 16px;
    }

    /*
    .generic-list li li:nth-child(odd) span {
        font-size: 23px;
    }
    .search-list li li {
        font-size: 25px;
    }
*/
    .event-list li li:nth-child(even) {
        width: calc(100% - 250px);
    }

    /*
    .event-list li li:nth-child(even) {
        font-size: 26px;
    }
*/
    .doc-in-list li li:nth-child(odd)::after {
        content: "";
        font-family: Font Awesome\ 5 Pro;
        font-size: 18px;
        margin-left: 10px;
        color: #ed1c24;
        display: none;
    }

    .doc-in-list li a:hover li:nth-child(odd)::after {
        content: "\f019";
        font-family: Font Awesome\ 5 Pro;
        font-size: 18px;
        margin-left: 10px;
        color: #ed1c24;
        display: inline-block;
    }

    /*
    .doc-in-list li a:hover li:nth-child(odd)::after {
        content: "\f019";
        font-family: Font Awesome\ 5 Pro;
        font-size: 18px;
        margin-left: 10px;
        color: #ed1c24;
    }
*/
    .generic-list li a:hover li:nth-child(odd)::after,
    .search-list li a li.doc-icon::after {
        content: "";
        display: none;
    }

    .search-list li a:hover li.doc-icon::after {
        content: "\f019";
        display: inline-block;
        font-family: Font Awesome\ 5 Pro;
        font-size: 18px;
        margin-left: 10px;
        color: #ed1c24;
    }
}


/*Data Block*/

.data-block {
    position: relative;
    margin-bottom: 30px;
}

.data-block-container .data-block:last-child {
    margin-bottom: 0;
}

.data-block h2 {
    font-size: 23px;
    font-weight: 600;
}

.data-block hr {
    z-index: 10;
}

.data-block ul {
    margin-bottom: 0;
}

.data-block hr.red,
.data-block.data-media hr.red {
    position: absolute;
    width: 40%;
    border-top: 9px solid #ed1c24;
    margin: 0;
    display: inline-block;
    margin-right: -4px;
    top: 0;
    z-index: 10;
}

.data-block hr.blue,
.data-block.data-media hr.blue {
    position: absolute;
    width: 40%;
    border-top: 9px solid #005596;
    margin: 0;
    display: inline-block;
    top: 0;
    left: 40%;
    z-index: 10;
}

.data-block.data-media hr.red {
    top: -9px;
}

.data-block.data-media hr.blue {
    top: -9px;
}

.data-block.data-media {
    margin-top: 9px;
}

.data-block .data-content {
    background: #f5f5f5;
    z-index: 1;
}

.data-block.data-text .data-content,
.data-block.data-doc .data-content {
    padding: 30px 20px;
    line-height: 1.2;
    font-size: 18px;
}

.data-block.data-doc .data-content span {
    font-size: 14px;
    text-transform: uppercase;
    color: #005596;
    display: block;
    font-weight: 600;
    /*    margin-bottom: -5px;*/
}

.data-block.data-doc .data-content a,
.data-block.data-doc .data-content a:focus {
    color: #393838;
    font-weight: 600;
}

.data-block.data-doc .data-content a:hover {
    color: #ed1c24;
}

.call-out {
    font-size: 20px;
    font-weight: 600;
    width: 95%;
    text-align: center;
    margin: 0 auto 50px;
    line-height: 1.2;
}

.call-out hr {
    border-top: 5px solid #ed1c24;
    width: 50%;
}

@media (min-width: 768px) {
    .call-out {
        font-size: 30px;
        width: 87%;
    }

    .call-out hr {
        width: 40%;
    }
}

@media (min-width: 992px) {
    .call-out {
        margin: 0 auto 50px;
    }
}


/*Event Social Footer*/

.event-social-footer {
    margin-top: 60px;
    /*    margin-bottom: 70px;*/
    border-top: 5px solid #393838;
    padding-top: 20px;
}

.event-social-footer li {
    display: inline-block;
    margin-right: 20px;
}

.event-social-footer li a,
.event-social-footer li a:focus {
    color: #393838;
}

.event-social-footer li a:hover {
    color: #ed1c24;
}


/*Sub Header*/

.sub-header {
    margin-top: -60px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .sub-header {
        margin-top: -60px;
        margin-bottom: 70px;
    }
}


/*Navigation*/

.sub-header.sub-header-link ul {}

.sub-header.sub-header-link li,
.gallery-link li {
    display: inline-block;
    padding-bottom: 5px;
}

.sub-header.sub-header-link li a,
.gallery-link li a {
    margin-right: 30px;
    font-size: 20px;
    padding-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #393838;
}

@media (min-width: 768px) {

    .sub-header.sub-header-link ul,
    .gallery-link ul {
        margin-left: 20px;
    }

    .sub-header.sub-header-link li a,
    .gallery-link li a {
        margin-right: 50px;
        font-size: 25px;
    }
}

@media (min-width: 992px) {

    .sub-header.sub-header-link ul,
    .gallery-link ul {
        margin-left: 60px;
    }

    .sub-header.sub-header-link li a,
    .gallery-link li a {
        margin-right: 50px;
        font-size: 25px;
    }
}

.sub-header.sub-header-link li a:hover,
.gallery-link li a:hover {
    color: #ed1c24;
    border-bottom: 4px solid #393838;
}

.sub-header.sub-header-link li a.active,
.gallery-link li a.active {
    color: #393838;
    border-bottom: 4px solid #393838;
}

.sub-header.sub-header-link li:last-child a,
.gallery-link li:last-child a {
    margin-right: 0;
}

.gallery-link {
    margin-bottom: 50px;
    text-align: center;
}

.video-player {
    background: #000;
    margin-top: -70px;
    margin-bottom: 70px;
    padding-top: 50px;
    padding-bottom: 40px;
}

.video-player .event-social-footer {
    border: 0;
    margin-top: 10px;
}

.video-player .event-social-footer a {
    color: #fff;
}

.video-player .video-title {
    color: #fff;
    font-size: 25px;
    margin-top: 20px;
}

.video-player .video-desc {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .video-player .video-title {
        font-size: 30px;
        margin-top: 20px;
    }

    .video-player .video-desc {
        font-size: 20px;
    }
}

.container-sidebar .video-listing .row .row [class*="col-"] {
    margin-bottom: 0;
}

.container-sidebar .video-listing .row .row [class*="col-"] .title {
    margin-top: 10px;
}

.container-sidebar .video-listing .thumbnail .playing {
    display: inline-block;
    padding: 10px 15px 8px;
    background: #005596;
    font-size: 15px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -57px;
    z-index: 1;
}

.container-sidebar .video-listing .thumbnail .play-overlay {
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
}


/*Search*/


/*
.sub-header.search {
    padding-top: 10px;
}
*/

.sub-header.search .row [class*="col-"] {
    border-bottom: 4px solid #393838;
    margin: 0 auto;
}

.sub-header.search .md-form {
    margin-top: 0;
    margin-bottom: 0;
}

.sub-header.search .md-form input[type=text] {
    margin-bottom: 0;
    border-bottom: none;
    font-size: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
}

.sub-header.search .md-form input[type=date],
.sub-header.search .md-form input[type=datetime-local],
.sub-header.search .md-form input[type=email],
.sub-header.search .md-form input[type=number],
.sub-header.search .md-form input[type=password],
.sub-header.search .md-form input[type=search-md],
.sub-header.search .md-form input[type=search],
.sub-header.search .md-form input[type=tel],
.sub-header.search .md-form input[type=text],
.sub-header.search .md-form input[type=time],
.sub-header.search .md-form input[type=url],
.sub-header.search .md-form textarea.md-textarea {
    border-bottom: 3px solid transparent;
}

.sub-header.search input[type=date]:focus:not([readonly]),
.sub-header.search input[type=datetime-local]:focus:not([readonly]),
.sub-header.search input[type=email]:focus:not([readonly]),
.sub-header.search input[type=number]:focus:not([readonly]),
.sub-header.search input[type=password]:focus:not([readonly]),
.sub-header.search input[type=search-md]:focus:not([readonly]),
.sub-header.search input[type=search]:focus:not([readonly]),
.sub-header.search input[type=tel]:focus:not([readonly]),
.sub-header.search input[type=text]:focus:not([readonly]),
.sub-header.search input[type=time]:focus:not([readonly]),
.sub-header.search input[type=url]:focus:not([readonly]),
.sub-header.search textarea.md-textarea:focus:not([readonly]) {
    border-bottom: 3px solid transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.sub-header.search .md-form .form-control {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .sub-header.search .md-form input[type=text] {
        font-size: 30px;
    }

    .sub-header {
        margin-top: -70px;
    }
}

.btn-search {
    position: absolute;
    right: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    bottom: 5px;
}

.btn-search:hover {
    color: #ed1c24;
}


/*
@media (min-width: 992px) {
    .sub-header.search {
        padding-top: 40px;
    }
}
*/


/*Event Listing*/


/*Filter Function For Mobile*/

.listing-container {
    margin-bottom: 50px;
}

.listing-container .row [class*="col-"] {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .listing-container {
        margin-bottom: 70px;
    }
}

.listing-container .filter-sm {
    margin-top: 0;
    margin-bottom: 30px;
}

.listing-container .filter-sm .outline,
.listing-container .filter-sm .red {
    width: 50%;
    margin-right: -3px;
}

@media (min-width: 992px) {
    .listing-container .col-lg-9 {
        padding-right: 50px;
    }
}


/*Sidebar Styling*/

.sidebar {
    width: 320px;
    position: fixed;
    top: 0;
    right: -360px;
    height: 100vh;
    z-index: 9999;
    background: #fff;
    color: #242424;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow-y: auto;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    padding: 0 25px 25px;
    font-size: 16px;
}

.overlay-sidebar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 999;
    display: none;
}

.sidebar.active {
    right: 0;
    -webkit-box-shadow: 0px 1px 22px 0px rgba(0, 0, 0, .10);
    box-shadow: 0px 1px 22px 0px rgba(0, 0, 0, .10);
    border-left: 1px solid #d3d3d3;
}

.dismiss,
.dismiss.active {
    width: 300px;
    height: 35px;
    line-height: 35px;
    padding-left: 15px;
    margin-right: 19px;
    position: fixed;
    right: -360px;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-size: 17px;
    background: white;
}

.dismiss.active {
    right: 0;
}

.dismiss:hover {
    background: #fff;
    color: #7386D5;
}

.sidebarclick {
    cursor: pointer;
}

.sidebarclick:hover {
    color: #EB2520;
}

.sidebar-content {
    margin-top: 40px;
}


/*
.sidebar .sidebar-content h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 35px;
}
*/


/*Sidebar Sign In*/


/*sidebar end*/


/*Filter Function*/

.filter-selected ul li,
.filter-list ul li {
    float: none;
}

.refine-results h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 35px;
}

.refine-filter {
    /*    margin-top: 15px;*/
    margin-bottom: 20px;
    /*    border-bottom: 1px solid #c7c7c7;*/
}

.refine-filter:last-child {
    margin-bottom: 0;
}

.refine-filter .btn-filter {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 17px;
    color: #242424;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #cdcdcd;
    background: #f5f5f5;
}

.refine-filter a.selected {
    color: #eb2520 !important;
}

.asem-multi-collapse {
    border: 1px solid #cdcdcd;
    margin-top: -1px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.refine-filter a.btn-filter[aria-expanded="false"]:after {
    content: "\f067";
    font-family: Font Awesome\ 5 Pro;
    font-size: 12px;
    top: 14px;
    right: 10px;
    position: absolute;
}

.refine-filter a.btn-filter[aria-expanded="true"]:after {
    content: "\f068";
    font-family: Font Awesome\ 5 Pro;
    font-size: 12px;
    top: 14px;
    right: 10px;
    position: absolute;
}


/*
.refine-filter .btn-filter:first-child {
    margin-top: 10px;
}
*/

.refine-filter .filter-list {
    display: block;
    max-height: 229px;
    overflow-y: auto;
    padding: 0 0 0 20px;
    margin-top: 10px;
    margin-left: 1px;
}

.refine-filter .filter-selected {
    padding: 5px 0 5px 20px;
}

.refine-filter .filter-list::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

.refine-filter .filter-list::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.refine-filter .filter-list ul,
.refine-filter .filter-selected ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.refine-filter .filter-list li,
.refine-filter .filter-selected li {
    display: block;
}

.refine-filter .filter-list li a,
.refine-filter .filter-selected li a {
    display: block;
    color: #242424;
    font-weight: 400;
    font-size: 16px;
    padding: 2px 0;
    text-decoration: none;
}

.refine-filter .filter-list li a:hover,
.refine-filter .filter-selected li a:hover {
    color: #EB2520;
}

.refine-filter .filter-selected li a.active {
    color: #EB2520;
    font-size: 15px;
}

.sidebar .sidebar-content h2 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .refine-results {
        padding-right: 30px;
    }

    /*    Sidebar Style*/
    .sidebar {
        width: 380px;
        right: -450px;
    }

    .sidebar.active {
        right: 0;
    }

    .dismiss,
    .dismiss.active {
        width: 360px;
        right: -450px;
    }

    .dismiss.active {
        right: 0;
    }
}

@media (min-width: 992px) {
    .sidebar-content {
        margin-top: 0;
    }

    .dismiss,
    .dismiss.active {
        width: 400px;
        right: -460px;
    }

    .dismiss.active {
        right: -2px;
    }

    /*    Sidebar Style*/
    .sidebar {
        width: 420px;
        right: -460px;
    }

    .sidebar.active {
        right: 0;
    }

    /*    Sidebar For Desktop - break*/
    #sidebar-refine.sidebar {
        right: 0;
        z-index: 10;
        position: relative;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent;
        margin: 0;
        padding: 0;
        width: auto;
        height: auto;
        overflow: visible;
    }

    #sidebar-subsection.sidebar .sidebar-content h2,
    #sidebar-refine.sidebar .sidebar-content h2 {
        background: #EB2520;
        color: #fff;
        font-weight: 400;
        text-transform: uppercase;
        padding: 10px;
        display: block;
        font-size: 16px;
        margin-top: 0;
        margin-bottom: 0;
        text-align: left;
    }

    #sidebar-subsection.sidebar {
        right: 0;
        z-index: 10;
        position: relative;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent;
        margin: 0;
        padding: 0;
        width: auto;
        height: auto;
    }

    #sidebar-subsection .dismiss,
    #sidebar-subsection .dismiss.active,
    #sidebar-refine .dismiss,
    #sidebar-refine .dismiss.active {
        display: none;
    }

    .category-showall {
        cursor: pointer;
        color: #242424;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        margin-top: 20px;
        display: block;
        -webkit-transition: all 0.3s;
    }

    .sidebar-filter-category {
        margin-top: 20px;
        margin-bottom: 0;
    }
}


/*Individual Event Page*/

.ind-event-header {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1440px;
    margin: 0 auto;
}

.row [class*=col-] .ind-event-data {
    margin-bottom: -15px;
}

@media (min-width: 768px) {
    .row [class*=col-] .ind-event-data {
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .ind-event-header {
        margin: 0 auto 20px;
    }

}

.ind-event-data {
    position: relative;
}

.ind-event-data .title-box {
    display: block;
    /*    padding: 20px;*/
    /*    background: #fff;*/
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}

.main-event .ind-event-data .title-box {
    font-size: 35px;
}

.ind-event-data .title-box span {
    display: block;
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 600;
    padding-top: 5px;
}

/*
.ind-event-data .event-data ul {
    margin-left: 20px;
}
*/

.ind-event-data .event-data li {
    display: inline-block;
    margin-right: 3px;
    vertical-align: top;
}

.ind-event-data .event-data li:nth-child(odd) {
    font-weight: 600;
    max-width: 110px;
}

.ind-event-data .event-data li:nth-child(even) {
    max-width: calc(100% - 110px);
}

.ind-event-data .event-social-footer {
    border-top: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 3px;
    padding-top: 15px;
}

.event-img {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .event-img {
        margin-bottom: 0;
    }

    /*
    .ind-event-header {
        height: 356px;
    }
*/

    /*
    .ind-event-data {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 60px;
    }
*/

    .event-img {
        /*
        position: absolute;
        right: 15px;
        top: 0;
*/
        text-align: none;
    }

    .ind-event-data .title-box {
        font-size: 24px;
        /*        width: 350px;*/
    }

    /*
    .ind-event-data .event-data ul {
        margin-left: 20px;
    }
*/

    .ind-event-data .title-box span {
        font-size: 22px;
    }

    .main-event .ind-event-data .title-box {
        font-size: 35px;
        width: 400px;
    }
}

@media (min-width: 1100px) {

    /*
    .ind-event-header {
        height: 439px;
    }
*/
    .ind-event-data .title-box {
        font-size: 28px;
        /*        width: 500px;*/
    }

    .main-event .ind-event-data .title-box {
        font-size: 45px;
        /*        width: 500px;*/
    }
}

@media (min-width: 1200px) {
    .ind-event-header {
        /*        height: 439px;*/
    }

    .ind-event-data .title-box {
        font-size: 30px;
        /*        width: 450px;*/
    }

    .main-event .ind-event-data .title-box {
        font-size: 45px;
        /*        width: 500px;*/
    }
}

@media (min-width: 1360px) {
    .ind-event-data .title-box {
        font-size: 32px;
        /*        width: 520px;*/
    }
}

@media (min-width: 1460px) {
    .ind-event-data .title-box {
        /*        width: 500px;*/
    }
}

.event-info {
    padding-right: 0;
}

@media (min-width: 992px) {
    .event-info {
        padding-right: 80px;
    }
}

.side-events {
    margin-top: 60px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .side-events {
        margin-top: 60px;
    }
}

.side-events h2 {
    position: relative;
    margin-bottom: 20px;
}

.side-events h2:before {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    content: attr(data-content);
    background-color: #FFF;
    color: #FFF;
    z-index: -1;
    padding-right: .5em;
}

.side-events h2:after {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    right: 0;
    top: 50%;
    background-color: #393838;
    height: .1em;
    min-height: 1px;
    z-index: -2;
}

@media (min-width: 992px) {
    .side-events .event-list li li:nth-child(even) {
        font-size: 24px;
        line-height: 1.2;
    }
}


/*News Page*/

.news-featured-page {
    border-bottom: 1px solid #cdcdcd;
}

.news-featured-page a,
.news-featured-page a:focus {
    color: #393838;
}

.news-featured-page a:hover {
    color: #005596;
}

.news-featured-page .row {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.1
}

.news-featured-page .row span {
    display: block;
    font-size: 16px;
    color: #7c7c7c;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .news-featured-page .row {
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .news-featured-page .row {
        font-size: 34px;
    }
}


/*Press Releases Individual Page*/

.ind-pr-title h1 {
    font-size: 30px;
    font-weight: 600;
}

.ind-pr-title h1 span {
    font-size: 13px;
    color: #7c7c7c;
    display: block;
    margin-top: 20px;
}

.ind-pr-title .event-social-footer {
    border: none;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .ind-pr-title h1 {
        font-size: 45px;
    }

    .ind-pr-title h1 span {
        font-size: 16px
    }
}


/*Releted Contents Container */

.related-contents-container .row {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2
}

.related-contents-container .row span {
    display: block;
    font-size: 15px;
    color: #7c7c7c;
    padding-top: 15px;
}

.related-contents-container .row [class*="col-"] {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 30px;
}

.related-contents-container .row [class*="col-"]:last-child {
    border-bottom: 1px solid transparent;
    padding-bottom: 0;
}

.event-info-container {
    margin-bottom: 70px;
}

.related-contents-container .row a,
.related-contents-container .row a:focus {
    color: #393838;
}

.related-contents-container a:hover {
    color: #ed1c24;
}

@media (min-width: 768px) {
    .related-contents-container .row {
        font-size: 23px;
    }

    .related-contents-container .row span {
        font-size: 14px;
    }

    .related-contents-container .row [class*="col-"] {
        border-right: 1px solid #cdcdcd;
        border-bottom: 1px solid transparent;
        /*margin-bottom: 10px;*/
        padding-bottom: 50px;
    }

    .related-contents-container .row [class*="col-"]:last-child {
        border-right: 1px solid transparent;
    }
}

@media (min-width: 992px) {
    .related-contents-container .row {
        font-size: 24px;
    }

    .related-contents-container .row span {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .related-contents-container .row {
        font-size: 27px;
    }
}


/*Contact Us */

.contact-form h2 {
    padding-top: 30px;
}


/*
.newsletter-form {
    margin-left: 0;
    margin-right: 0;
}
*/

@media (min-width: 768px) {
    .contact-form {
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (min-width: 992px) {
    .contact-form h2 {
        padding-top: 0;
    }

    .contact-form {
        margin-left: 50px;
    }

    .newsletter-form {
        margin-left: 100px;
        margin-right: 100px;
    }
}


/*Special class on body to control fotter spacing */

.controller .block:last-child {
    margin-bottom: 0;
}


/*Reset Bootstrap Accordion */

#faq {
    margin-top: 30px;
}

.accordion .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion .card-header {
    padding: 0;
    background-color: transparent;
    border-top: 1px solid #cdcdcd;
    border-bottom: none;
}

.accordion .card:last-child {
    border-bottom: 1px solid #cdcdcd;
}

.accordion .btn {
    padding: 5px 15px;
    width: 100%;
    text-align: left;
}


/*
[data-toggle="collapse"] .fa:before {
    content: "\f139";
}

[data-toggle="collapse"].collapsed .fa:before {
    content: "\f13a";
}
*/

.accordion .btn:after {
    content: "\f068";
    font-family: Font Awesome\ 5 Pro;
    position: absolute;
    right: 15px;
}

.accordion .btn.collapsed:after {
    content: "\f067";
    font-family: Font Awesome\ 5 Pro;
    position: absolute;
    right: 15px;
}

.accordion .black-text,
.accordion .btn.btn-link,
.accordion .btn.btn-link:active,
.accordion .btn.btn-link:focus {
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
}

.accordion .btn.btn-link:hover {
    text-decoration: none;
    color: #ed1c24 !important;
}

.accordion .card-body {
    padding-top: 0px;
}


/*Reset MD forms*/

button {
    cursor: pointer;
}

.select-wrapper input.select-dropdown,
.md-form input[type=date],
.md-form input[type=datetime-local],
.md-form input[type=email],
.md-form input[type=number],
.md-form input[type=password],
.md-form input[type=search-md],
.md-form input[type=search],
.md-form input[type=tel],
.md-form input[type=text],
.md-form input[type=time],
.md-form input[type=url],
.md-form textarea.md-textarea {
    border-bottom: 3px solid #393838;
}

.form-check-input[type=checkbox] + label:before,
.form-check-input[type=checkbox]:not(.filled-in) + label:after,
label.btn input[type=checkbox] + label:before,
label.btn input[type=checkbox]:not(.filled-in) + label:after {
    top: 3px;
    border: 2px solid #393838;
}

.form-check-input[type=checkbox]:checked + label:before,
label.btn input[type=checkbox]:checked + label:before {
    border-right: 2px solid #393838;
    border-bottom: 2px solid #393838;
}

.select-wrapper input.select-dropdown {
    height: 2.2rem;
    font-size: .875rem;
    color: #393838;
}

.select-wrapper span.caret {
    top: 0.9rem;
}

.dropdown-content li > a,
.dropdown-content li > span {
    color: #393838;
}

.md-form label {
    color: #393838;
}

.disclaimer {
    margin-bottom: 20px;
    font-size: 18px;
}

input[type=date]:focus:not([readonly]),
input[type=datetime-local]:focus:not([readonly]),
input[type=email]:focus:not([readonly]),
input[type=number]:focus:not([readonly]),
input[type=password]:focus:not([readonly]),
input[type=search-md]:focus:not([readonly]),
input[type=search]:focus:not([readonly]),
input[type=tel]:focus:not([readonly]),
input[type=text]:focus:not([readonly]),
input[type=time]:focus:not([readonly]),
input[type=url]:focus:not([readonly]),
textarea.md-textarea:focus:not([readonly]) {
    border-bottom: 3px solid #005596 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


/*Press Room */

.card-list {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.3;
}

.card-list .fa-newspaper:before {
    font-size: 800%;
}

.card-list i {
    margin-right: -90px;
    color: #fb6268;
}

.card-content li {
    display: inline-block;
    margin-right: -4px;
    vertical-align: top;
}

.card-content li:nth-child(odd) {
    width: 126px
}

.card-content li:nth-child(even) {
    width: calc(100% - 126px);
    padding: 0 20px 0 30px;
    vertical-align: middle;
}

.card-content {
    padding: 20px 0;
}

.card-list .row [class*="col-"] {
    margin-bottom: 30px;
    background-color: #f5f5f5;
    background-clip: content-box;
}

@media (min-width: 992px) {
    .card-content li:nth-child(odd) {
        width: 90px
    }

    .card-content li:nth-child(even) {
        width: calc(100% - 90px);
        padding: 0 20px 0 30px;
        vertical-align: middle;
    }

    .card-list .row [class*="col-"] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 1200px) {
    .card-content li:nth-child(odd) {
        width: 126px
    }

    .card-content li:nth-child(even) {
        width: calc(100% - 126px);
        padding: 0 20px 0 30px;
        vertical-align: middle;
    }
}

.card-list .row [class*="col-"] a {
    color: #393838;
    display: block;
    overflow: hidden;
}

.card-list .row [class*="col-"]:hover {
    background: #ededed;
    background-clip: content-box;
    cursor: pointer;
}


/*
.card-list .row [class*="col-"] img {
    width: 100%;
    transition: all 0.3s ease;
}
*/


/*
.card-list .row [class*="col-"]:hover img {
    width: 95%;
    filter: blur(2px);
}
*/


/*Video Section*/

.video-listing .thumbnail {
    position: relative;
    overflow: hidden;
}

.video-listing .thumbnail img {
    margin: -17px 0;
    width: 100%;
}

.video-listing .row .col-12 img {
    margin: -35px 0;
    width: 100%;
}

@media (min-width: 768px) {
    .video-listing .thumbnail img {
        margin: -20px 0;
    }

    .video-listing .row .col-12 img {
        margin: -21px 0;
    }
}

@media (min-width: 1200px) {
    .video-listing .thumbnail img {
        margin: -25px 0;
    }

    .video-listing .row .col-12 img {
        margin: -26px 0;
    }
}

@media (min-width: 1600px) {
    .video-listing .thumbnail img {
        margin: -35px 0;
    }

    .video-listing .row .col-12 img {
        margin: -35px 0;
    }
}

.video-listing .thumbnail .play {
    display: inline-block;
    padding: 10px 15px 8px;
    background: #005596;
    font-size: 15px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -21px;
}

.video-listing a:hover .thumbnail .play {
    background: #ed1c24;
}

.video-listing a .title,
.photo-listing a .title {
    font-weight: 600;
    color: #393838;
    margin-top: 10px;
    line-height: 1.1;
    font-size: 16px;
}

@media (min-width: 768px) {

    .video-listing a .title,
    .photo-listing a .title {
        font-size: 18px;
    }
}

@media (min-width: 992px) {

    .video-listing a .title,
    .photo-listing a .title {
        font-size: 20px;
    }
}

.video-listing a:hover .title,
.photo-listing a:hover .title {
    color: #ed1c24;
}

.video-listing .row [class*="col-"],
.photo-listing .row [class*="col-"] {
    margin-bottom: 30px;
}

#searchmodal .modal-xs,
#ytVideo .modal-xs,
.fs-modal .modal-xs {
    max-width: 100vw;
}

#searchmodal .modal-dialog .modal-content,
#ytVideo .modal-dialog .modal-content,
.fs-modal .modal-dialog .modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.modal-backdrop {
    background-color: #fff;
    opacity: 0.8 !important;
}

#ytVideo .modal-body,
.fs-modal .modal-body {
    background: #000;
    padding-top: 20px !important;
}

#searchmodal .modal-body {
    background: #fff;
}

#searchmodal .modal-header,
#ytVideo .modal-header,
.fs-modal .modal-header {
    border: none;
    display: inline-block;
    padding: 0;
}

#searchmodal .modal-header button,
#ytVideo .modal-header button,
.fs-modal .modal-header button {
    text-align: right;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    padding: 10px
}

#searchmodal .modal-footer,
#ytVideo .modal-footer,
.fs-modal .modal-footer {
    border: none;
    padding: 10px;
    background: #000;
    display: inline-block;
}

#ytVideo .modal-video-container,
.fs-modal .modal-video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: #fff;
    font-size: 18px;
}

#searchmodal .modal-content-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: #393838;
}


/*ASEM DAy*/

.asem-day h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 35px;
}

.asem-day p a {
    font-weight: 600;
}

/*.asem-day p span {*/
/*    display: block;*/
/*    font-size: 16px;*/
/*    color: #7c7c7c*/
/*}*/

.asem-day .accordion .card-header {
    border-bottom: 4px solid #393838;
    border-top: 1px solid transparent;
}

.asem-day .accordion .black-text,
.asem-day .accordion .btn.btn-link,
.asem-day .accordion .btn.btn-link:active,
.asem-day .accordion .btn.btn-link:focus {
    font-size: 45px;
}

.asem-day .accordion .btn:after {
    font-size: 20px;
    top: 34px;
}

.asem-day .accordion .card-body {
    padding-top: 20px;
}

.asem-day .accordion .card-body li a {
    color: #393838;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 15px;
    display: inline-block;
}

.asem-day .accordion .card-body li a:focus,
.asem-day .accordion .card-body li a:hover {
    color: #ed1c24;
}

.asem-day .accordion .card:last-child {
    border-bottom: 1px solid transparent;
}

@media (min-width: 768px) {
    .asem-day .row .col-md-7 {
        padding-right: 60px;
    }
}


/*Site Search Modal Form*/

.site-search {
    border-bottom: 4px solid #393838;
}

#searchmodal h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

#searchmodal .modal-content {
    margin-top: -50px;
}

.search-open .modal-backdrop {
    background-color: transparent !important;
    opacity: 0;
}

.search-open .fade {
    -webkit-transition: opacity .05s linear;
    transition: opacity .05s linear;
}

#searchmodal .modal-body {
    padding-top: 35px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
}

.site-search .icon-search {
    border: 0;
}

.site-search .form-control {
    border: 1px solid transparent;
}


/*
.site-search .md-form input[type=text] {
    border-bottom: 3px solid #393838;
}
*/

.site-search input[type=text]:focus:not([readonly]) {
    border-bottom: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.mobile-search {
    /*    width: 80%;*/
    padding: 15px 10px;
    border-bottom: 1px solid #eaeaea;
}

.mobile-search input[type=text]:focus:not([readonly]) {
    border: 1px solid #ced4da !important;
    border-right: 1px solid transparent !important;
}

.mobile-search button {
    background: transparent;
    border: 1px solid #ced4da !important;
    border-left: 1px solid transparent !important;
}

.mobile-search .form-control {
    border-right: 1px solid transparent;
    border-radius: 0;
}

.nav-list .mobile-utilities ul {
    border-bottom: 1px solid #eaeaea;
}

.nav-list .mobile-utilities ul li a {
    border-bottom: 1px solid transparent !important;
}


/*Working Group*/

.working-group {
    text-align: center;
}

.working-group p {
    padding-top: 30px;
    padding-bottom: 40px;
}

.working-group .row [class*="col-"] {
    border-bottom: 1px solid #cdcdcd;
    background-clip: content-box;
}

.working-group .row [class*="col-"]:last-child {
    border-bottom: 1px solid transparent;
}

.working-group span.alt {
    font-size: 45px;
}

.working-group span {
    display: block;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
}

@media (min-width: 768px) {
    .working-group span.alt {
        font-size: 55px;
    }

    .working-group span {
        font-size: 35px;
    }

    .working-group .row [class*="col-"] {
        border-bottom: 1px solid #cdcdcd;
        border-right: 1px solid #cdcdcd;
        padding: 30px 30px 0 30px;
    }

    .working-group .row [class*="col-"]:nth-last-child(2):nth-child(odd) {
        border-bottom: 1px solid transparent;
    }

    .working-group .row [class*="col-"]:nth-child(even) {
        border-right: 1px solid transparent;
    }
}

@media (min-width: 992px) {
    .working-group span {
        font-size: 40px;
    }

    .working-group span.alt {
        font-size: 55px;
    }

    .working-group .row [class*="col-"]:nth-child(even),
    .working-group .row [class*="col-"] {
        border-right: 1px solid #cdcdcd;
    }

    .working-group .row [class*="col-"] {
        border-bottom: 1px solid transparent;
        padding: 0 15px;
    }

    .working-group .row [class*="col-"]:last-child {
        border-right: 1px solid transparent;
    }
}


/*Partners Gridder List*/

.partner-block {
    margin-bottom: 50px;
}

.partner-block.institutional-block {
    margin-bottom: 30px;
}


/*
.arrow-up {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #f5f5f5;
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -15px;
    display: none;
}
*/

.selectedItem .arrow-up {
    display: block;
}

.gridder {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    font-size: 0
}

.gridder-list,
.gridder-show {
    font-size: 16px
}

.gridder-list {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.gridder-list img {
    border: 1px solid #e0dfdf;
}

.gridder-show {
    display: block;
    float: left;
    width: 100%;
    position: relative;
    background: #f5f5f5;
    padding: 30px 15px 0;
    margin-bottom: 30px;
    margin-top: -8px;
}

.gridder-content {
    display: none;
}

.gridder-nav {
    display: none;
}

.gridder-close {
    display: block;
    width: 19px;
    height: 28px;
    line-height: 1;
    overflow: hidden;
    position: absolute;
    right: 10px;
    top: 10px;
}

.gridder-close:before {
    content: "\f00d";
    font-family: Font Awesome\ 5 Pro;
    font-size: 16px;
    /*
    margin-right: 50px;
    margin-bottom: 30px;
*/
}

a.gridder-close {
    color: #393838;
}

.gridder-list {
    width: 100%
}

.gridder-list:nth-child(n) {
    /*    margin-bottom: 1%;*/
    margin-right: -4px;
}

.gridder-list:nth-of-type(2n) {
    margin-right: 0;
    margin-bottom: 0
}

.partner-block li li {
    display: inline-block;
    margin-bottom: 20px;
    vertical-align: middle;
}

.partner-block li li:nth-child(odd) {
    width: 30%;
    margin-right: -4px;
    position: relative;
    vertical-align: top;
}

.partner-block li li:nth-child(even) {
    width: 70%;
    padding-right: 10px;
    padding-left: 15px;
    font-size: 20px;
    vertical-align: middle;
    line-height: 1.1;
    color: #7c7c7c;
}

.partner-block li li:nth-child(even) span {
    display: block;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.1;
    color: #393838;
}

.partner-block .gridder-show .flag {
    width: 200px;
    display: none;
}

.partner-block .gridder-show li {
    display: inline-block;
    vertical-align: top;
}

.partner-block .gridder-show li:nth-child(odd) {
    /*    width: 0;*/
    display: none;
}

.partner-block .gridder-show li:nth-child(even) {
    width: 100%;
    font-size: 20px;
    line-height: 1.1;
}

.partner-block .gridder-show li:nth-child(even) h2 {
    margin-bottom: 0;
    line-height: 1.1;
    font-size: 35px;
}

.partner-block .gridder-show li:nth-child(odd) li,
.partner-block .gridder-show li:nth-child(even) li {
    display: inline-block;
    padding-left: 0;
    width: auto;
    line-height: 1.1;
    width: 100%;
    font-size: 16px;
    color: #7c7c7c;
    display: block;
}

.partner-block .gridder-show li:nth-child(odd) li span,
.partner-block .gridder-show li:nth-child(even) li span {
    font-size: 22px;
    font-weight: 600;
    display: block;
    color: #393838;
}

@media (min-width: 768px) {
    .partner-block {
        margin-bottom: 70px;
    }

    .gridder-list {
        width: 50%
    }

    .partner-block .gridder-show li:nth-child(odd) {
        width: 150px;
        display: inline-block;
        margin-right: -4px;
    }

    .partner-block .gridder-show li:nth-child(even) {
        width: calc(100% - 150px);
        padding-left: 20px;
        font-size: 20px;
    }

    .partner-block .gridder-show .flag {
        width: 150px;
        display: block;
    }
}

@media (min-width: 992px) {
    .gridder-show {
        padding: 30px 15px 30px 30px;
        /*        margin-top: -15px;*/
    }

    .gridder-list {
        width: 25%
    }

    .partner-block li li {
        margin-bottom: 30px;
    }

    .partner-block .gridder-show .flag {
        width: 200px;
        display: block;
    }

    .partner-block .gridder-show li:nth-child(odd) {
        width: 200px;
        margin-right: -4px;
    }

    .partner-block .gridder-show li:nth-child(even) {
        width: calc(100% - 200px);
        padding-left: 20px;
        font-size: 20px;
    }

    .partner-block .gridder-show li:nth-child(even) h2 {
        font-size: 35px;
    }

    .partner-block .gridder-show li:nth-child(odd) li,
    .partner-block .gridder-show li:nth-child(even) li {
        width: auto;
        display: inline-block;
        margin-right: 30px;
        margin-bottom: 20px;
    }

    .partner-block .gridder-show li:nth-child(odd) li span,
    .partner-block .gridder-show li:nth-child(even) li span {
        font-size: 26px;
    }
}


/*Mailchimp Archive*/

.campaign {
    padding: 20px 15px;
    border-bottom: 1px solid #cdcdcd;
    font-size: 16px;
    color: #7c7c7c;
    font-family: 'Source Sans Pro', sans-serif !important;
}

.campaign a {
    display: block;
    font-size: 26px;
    color: #393838;
    font-weight: 600;
    margin-top: 5px;
}

.campaign a:hover,
.campaign a:focus {
    color: #ed1c24;
}

.brand a {
    display: block;
    z-index: 999;
    position: relative;
}

.font-40 {
    font-size: 40px;
    line-height: 1.2;
}

.event-list li li:nth-child(odd) {
    line-height: 1.2;
}


/* Contact form honey pot field */

#contact-824587aa-b304 {
    display: none;
}

.block-imageText + .block-imageText {
    margin-top: -50px;
}

.data-block .data-content.two-img {
    background: #fff;
}

.data-block .data-content.two-img li {
    font-size: 16px;
    font-weight: 600;
}

.data-block .data-content.two-img li:nth-child(even) {
    padding: 5px;
    background-color: #f5f5f5;
    margin-bottom: 10px;
}

.data-block .data-content.two-img li:nth-child(even):last-child {
    margin-bottom: 0;
}

.data-block .data-content.two-img a {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

#ytVideo .modal-dialog,
.fs-modal .modal-dialog {
    margin: 0;
}

.disclaimer-footer {
    font-size: 14px;
    color: #fff;
    margin-top: 25px;
    font-weight: 300;
}

.disclaimer-footer a {
    color: #fff;
    text-decoration: underline;
}

.eu-support {
    background: #e0dcdd;
    padding-top: 13px;
    padding-bottom: 13px;
}

.eu-support img {
    width: 280px;
}

@media (min-width: 768px) {
    .eu-support img {
        width: 300px;
    }
}

.header-left-img .text-only h1 {
    margin-left: 0;
}

.header-left-img ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-left-img ul li:first-child {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.header-left-img ul li:last-child {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {

    .header-left-img ul li {
        display: inline-block;
    }

    .header-left-img ul li:first-child {
        width: 40%;
        vertical-align: middle;
        text-align: left;
    }

    .header-left-img ul li:last-child {
        width: 59%;
        vertical-align: middle;
        text-align: left;
    }

    .header-left-img .text-only h1 {
        margin-left: 20px;
    }
}

@media (min-width: 992px) {
    .header-left-img ul li:first-child {
        width: auto;
        vertical-align: middle;
    }

    .header-left-img ul li:last-child {
        width: 50%;
    }
}

.header-left-img .text-only {
    margin-bottom: 70px;
}

.asem-cultural .accordion .btn:after {
    content: "";
    font-size: 20px;
    top: 34px;
}

.asem-cultural .accordion .black-text,
.asem-cultural .accordion .btn.btn-link,
.asem-cultural .accordion .btn.btn-link:active,
.asem-cultural .accordion .btn.btn-link:focus {
    font-size: 30px;
    text-transform: none;
}

@media (min-width: 992px) {

    .asem-cultural .accordion .black-text,
    .asem-cultural .accordion .btn.btn-link,
    .asem-cultural .accordion .btn.btn-link:active,
    .asem-cultural .accordion .btn.btn-link:focus {
        font-size: 38px;
    }
}

.asem-cultural .accordion .black-text,
.asem-cultural .accordion .btn.btn-link,
.asem-cultural .accordion .btn.btn-link:active,
.asem-cultural .accordion .btn.btn-link:focus {
    line-height: 1.2;
}
