.d-flex {
    display: flex;
}

.d-flex.division>.flex-1 {
    flex: 1;
}

.d-flex.division>.flex-1>a {
    display: block;
    height: 100%;
    padding: 3px;
}

.d-flex.division>.flex-1>a>img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.banner {
    width: 100%;
    padding: 0px;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 5rem;
    flex-flow: column;
}

.banner::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: block;
}

.banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0px;
}

#mainVideoContainer {
    position: fixed;
    width: 400px;
    height: 250px;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#mainVideoContainer>div.close {
    position: absolute;
    top: -25px;
    right: -1px;
    width: 25px;
    height: 25px;
    background-color: #fff;
    text-align: center;
    border: 1px solid #000;
}

#mainVideoContainer>div.close>i {
    font-size: 15px;
    margin: 0px;
}

#mainVideo {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner>iframe#mainVideo {
    z-index: 999;
}

.banner>#playPauseMainVideo {
    position: absolute;
    width: 145px;
    height: 145px;
    font-size: 17px;
    border-radius: 100%;
    background-color: #A71C24;
    color: #fff;
    text-align: center;
    right: 50px;
    bottom: 50px;
    z-index: 9999;
    transition: all 0.5s;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;

}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }

    40% {
        -o-transform: translateY(-30px);
    }

    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.banner>#playPauseMainVideo>i {
    display: block;
    margin: 0px auto;
    margin-bottom: 10px;
    font-size: 35px;
}

.banner h1,
.banner h4 {
    line-height: 1.5;
    width: 100%;
    text-align: left;
    z-index: 99999;
}

.banner h1 {
    font-size: 60px;
    color: #fff;
    width: 75%;

}

.banner span {
    font-size: 25px;
    color: #fff;
    width: 75%;
    z-index: 99999;
}

.banner h1 p,
.banner h4 p {
    margin: 0px;
}

.banner h4 p {
    display: inline-block;
    background: #fff;
    padding: 10px;
    font-weight: bold;
}

.mb-30 {
    margin-bottom: 30px;
    text-align: left;
}

.w-100 {
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
}

.speakers .card-title {
    height: 40px;
}

.speakers .card {
    text-align: center;
    /* background: #80808045; */
    margin-bottom: 30px;
    cursor: pointer;
}

.speakers .card:before {
    content: '';
    position: absolute;
    display: block;
    width: 100px;
    bottom: 0px;
    left: calc(50% - 50px);
    height: 2px;
    background-color: #a71c24;
    z-index: 99;
    transition: all 0.5s;
}

.speakers.option-2 .row>.item .card::before {
    left: 0px;
    width: 50%;
}

.speakers.option-3 .row>.item .card::before {
    left: 0px;
    width: 100%;
}

.speakers.option-4 .row>.item .card::before {
    left: 50%;
    width: 0px;
}

.speakers .card:hover:before {
    width: 100% !important;
    left: 0px !important;
    transition: all 0.5s;
}

.speakers .card .card-body {
    background: #fff;
    padding: 16px;
    position: relative;
    margin-top: -20px;
    z-index: 0;
    padding-top: 20px;
}

.speakers i {
    font-size: 150px;
    margin: 0px;
    height: 148px;
    margin-top: 16px;
    position: relative;
    z-index: 9;
}

.speakers .item img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s;

}

.speakers .item:hover img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    transition: all 0.5s;

}

.speakers .item img {
    height: 150px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    width: 150px;
    margin: 0 auto;
    border-radius: 100%;
    z-index: 9;
    margin-top: 15px;
    position: relative;
}

.filters ul {
    text-align: left;
}

.filters ul li {
    display: inline-block;

    text-align: left;
    cursor: pointer;
}

.filters ul li>div {
    padding: 10px;
    margin: 0px 5px;
    background-color: #787878;
    color: #fff;
}

.filters ul li>div.active {
    background-color: #A71C24;
}

.conferences {
    direction: ltr;
    padding: 0px;
}

.conferences>div {
    float: left;
}

.relative {
    position: relative;
}

.conferences>div img {
    width: 100%;
    object-fit: cover;
    width: 100%;
    height: 300px;
    left: 0px;
    top: 0px;
}

.register {
    background-color: #A71C24;
    z-index: 9;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    font-weight: bold;
}

.register:hover,
.register:focus,
.register:active {
    color: #fff;
}

.conferences>div .overlay {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9;
    padding: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.conferences>div .overlay a {
    color: #fff;
}

.about-conference .line-bottom {
    line-height: 1.5;
    text-align: left;

}

.about-conference div:not(.row):not(.container) {
    float: left;
    direction: ltr;
}

.line-bottom::after {
    right: auto;
    left: -1px;
}

.close {
    opacity: 1;
}

.form-footer>button:first-child {
    float: left;
}

.form-footer>button:last-child {
    float: right;
}

.modal-open {
    overflow: hidden !important;
}

section {
    z-index: 9;
}

@media screen and (min-width: 768px) {
    .modal-open .modal.in {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {

    .modal-open .modal.in {
        top: 90px
    }

    .form-group {
        margin-bottom: 10px;
    }
}

.modal .modal-dialog .modal-body>div>img {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.modal .modal-dialog .modal-body>div>h3 {
    text-align: center;
}

#countDown .d-flex {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#countDown .d-flex>div {
    flex: 1;
    font-weight: bold;
}

#countDown .counter {
    font-size: 40px;
}

#countDown .counter>div {
    font-size: 25px;
    line-height: 2;
    font-weight: bold;
    background: #a71c24;
    color: #fff;
    border: 2px solid #fff;
}

.center {
    text-align: center;
}

.nav-tabs {
    border-bottom: 1px solid #a71c24;
    margin-bottom: 10px;
}

.nav-tabs>li>a {
    color: #a71c24;
    background-color: #eee;
    border: 0;
    font-size: 14px;
    font-weight: bold;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    background: #a71c24;
    color: #fff;
    cursor: default;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.aganda .tab-content .d-flex {
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    text-align: left;
    padding: 10px;
    margin-left: 0px;
}

.aganda .tab-content .d-flex:nth-child(even) {
    background: #eeeeee;
    /* border-bottom: 1px solid #000; */
}

.aganda .tab-content .d-flex>div {
    margin: 0px 10px;
    flex: 1;
}

.aganda .tab-content .d-flex>span {
    /* border:1px solid #a71c24; */
    width: 100px;
    font-weight: bold;
    text-align: center;
}




.slick-slider.center img {
    display: block;
    height: 600px;
    margin: 0 auto;
    width: 100%;
    object-fit: cover;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.slick-arrow {
    position: absolute;
    top: calc(50% - 20px);
    height: 40px;
    width: 40px;
    font-size: 0px;
    padding: 0px;
    z-index: 99;
    border-radius: 100%;
}

.slick-arrow::before {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: 25px;
    color: #A71C24;
    content: '';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.slick-prev {
    left: 0px;
}

.slick-next {
    right: 0px;
}

.slick-prev:before {
    content: "\f053";
}

.slick-next:before {
    content: "\f054";
}

#navigateTo {
    display: none;
    position: fixed;
    right: 0px;
    z-index: 999;
    padding: 5px;
    background-color: #A71C24;
    color: #fff;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    align-items: stretch;
    justify-content: center;
    width: 100%;
    top: 50px;

}

#navigateTo>li {
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    /* border: 1px solid #fff; */
    flex: 1;
    text-transform: uppercase;
    align-items: center;
    display: inline-flex;
    text-align: center;
    justify-content: center;
}

#navigateTo>li:last-child {
    margin-bottom: 0px;
}

#navigateTo>li.active,
#navigateTo>li:hover {
    background-color: #fff;
    color: #A71C24;

}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.w-30 {
    width: 30%;
    margin: 30px auto;
}

.stratigic-partner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 50%;
    margin: 0 auto;
}

.stratigic-partner>* {
    display: inline-flex;
}

.stratigic-partner a img {
    width: 100%;
    object-fit: contain;
    height: 130px;
}

.separator {
    width: 6px;
    background-color: #A71C24;
    border-radius: 7px;
}

.honor-guest {
    position: absolute;
    left: 100px;
    width: calc(100% - 200px);
    top: 0px;
    padding: 15px;
    color: #A71C24;
    font-size: 20px;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 20px rgba(113, 107, 107, 0.5);
    font-weight: bold;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.honor-guest img {
    width: auto;
    height: 90px;
    position: relative;
    margin-right: 20px;
}

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

.color-theme.line-bottom:after {
    background-color: #000;
}

.sponsors .title {
    text-align: center;
    margin: 10px 0px;
    font-size: 21px;
    font-weight: bold;
    color: #000;
    height: 60px;
    overflow: hidden;
}

.sponsors-img {
    height: 250px;
    display: inline-flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.sponsors img {
    width: 100%;
    max-height: 100%;
}

.sponsors a {
    display: block;
}

#sponsors .slick-prev {
    left: -25px;
    border-radius: 0px;
}

#sponsors .slick-next {
    right: -25px;
    border-radius: 0px;
}

.boxy {
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 0 auto;
    width: 200px;
}

.badge1,
.badge2,
.badge3 {
    position: absolute;
    background-color: gold;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    height: 50px;
    padding: 0px 15px;
}

.badge3:after {
    content: "";
    position: absolute;
    top: 0px;
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
    right: -15px;
    width: 30px;
    height: inherit;
    background-color: gold;
    border-radius: 0 4px 4px 0;
}

.badge3:before {
    content: "";
    position: absolute;
    top: 7px;
    -webkit-transform: skewY(30deg);
    transform: skewY(30deg);
    left: 0px;
    width: 20px;
    height: inherit;
    background-color: black;
    z-index: -10;
}



.badge3 {
    left: 0px;
}

.feedback img {
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

.rate-badge {
    padding: 5px;
    font-size: 12px;
    background-color: #eee;
    color: #000
}

.conference-objective ul {
    list-style: decimal;
}

.conference-objective ul li {
    margin-bottom: 10px;
}

.conference-objective {
    font-size: 16px;
}

section:not(.footer):not(.xotox):not(.banner) {
    padding-bottom: 0px;
    padding-top: 0px;
    margin-bottom: 30px !important;
    margin-top: 30px !important;
}