:root {
    --nx-primary-color: #3A3089;
    --nx-secondary-color: #F7669D;
    --nx-banner-title-color: #ffffff;
    --nx-banner-subtitle-color: #ffffff;
    --nx-footer-bg-color: #3A3089;
    --nx-footer-font-color: #ffffff;
    --nx-font-family: 'DM Sans';
}

.bg-white {
    background-color: #fff;
}

html,
body {
    overflow-x: hidden;
    font-family: var(--nx-font-family);
    line-height: inherit;
}

/* Header Navigation Start */
.header .navbar-nav .nav-link{
    padding-top: 5px;
    padding-bottom: 5px;
}
.header .navbar-nav .nav-link#login {
    border: 1px solid var(--nx-secondary-color);
    padding: 5px 15px;
    border-radius: 50px;
    transition: .2s ease-out;
    display: inline-block;
    text-align: center;
    min-width: 90px;
}
.header .navbar-nav .nav-link#login:hover, 
.header .navbar-nav .nav-link#login:active, 
.header .navbar-nav .nav-link#login:focus {
    opacity: 0.75;
    box-shadow: none !important;
    background-color: var(--nx-secondary-color);
}
@media (max-width: 991px){
    .header .navbar-nav .nav-link{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
/* Header Navigation Ends */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    padding: 0px;
}
.mainBanner {
    position: relative;
    background-color: var(--nx-primary-color);
    height: 95vh;
    color: var(--nx-banner-title-color);
}

.mainBanner:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 100vw;
    border-left-width: 0px;
    border-bottom: 73px solid #fff;
}
.mainBanner:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 50vw;
    border-right-width: 0px;
    border-bottom: 73px solid #ffffff;
    z-index: 1;
}

.mainBanner>.container {
    position: unset;
}

.mainBanner .row {
    display: flex;
    align-items: flex-start;
}

.banner-slider {
    width: 50%;
    height: 95vh;
    position: absolute;
    right: 0;
    background-image: url("/images/theme5/banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .banner-content p {
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 18px;
} */

.banner-content .timer-area {
    margin-bottom: 15px;
    flex-direction: column;
}

.banner-content .timer-area li {
    font-size: 18px;
    margin: 3px 0;
    width: 100%;
}
.banner-content .timer-area li:first-child {
    margin-top: 0px;
}
.banner-content .big-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
}
.banner-content ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}
.banner-content ul.cta-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.banner-content ul.cta-box li{
    margin-right: 15px;
}
.banner-content ul.cta-box li .cbtn {
    margin-right: 0;
}
@media (max-width:480px){
    .banner-content ul.cta-box {
        display: block;
    }
    .banner-content ul.cta-box li{
        margin-right: 0;
        margin-bottom: 15px;
    }
    .banner-content ul.cta-box li .cbtn {
        margin-right: 0;
        width: 100%;
    }    
}
@media (max-width:991px){
    .banner-content ul.cta-box {
        justify-content: center;
    }
}

.nx-content-center {
    height: 95vh;
    display: inline-flex;
    justify-content: start;
    align-items: center;
}




.banner-content ul li a:hover {
    text-decoration: none;
}

.event-wrapper {
    margin-top: 5rem;
    padding-top:3em;
}

.yellow-round4 {
    position: absolute;
    top: 50%;
    right: -67px;
    z-index: -1;
}

.event-wrapper .row {
    align-items: center;
}

.event-wrapper .event-content {
    margin-right: 4rem;
}
.event-wrapper .cta-box a {
    color: var(--nx-primary-color);
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
    margin-top: 40px;
    background: linear-gradient(to left, transparent 50%, var(--nx-primary-color) 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
    min-width: 200px;
    border-radius: 50px;
    text-align: left;
    text-decoration: none;
}
.event-wrapper .cta-box a i.fa {
    background: var(--nx-primary-color);
    padding: 13px 19px;
    border-radius: 50%;
    margin-right: 5px;
    color: var(--nx-secondary-color);
}
.event-wrapper .cta-box a:hover {
    background-position: left;
    opacity: 1;
    color: var(--nx-secondary-color);
}
.event-content h5 {
    color: var(--nx-primary-color);
    font-weight: 400;
    font-size: 24px;
}

.event-content h3, .sub-heading {
    color: #000;
    font-weight: 600;
    font-size: 40px;
}

.event-content p {
    color: #333;
    font-weight: 400;
    font-size: 14x;
}

.event-content a {
    color: #F7669D;
    font-weight: 400;
    font-size: 18px;
    display: block;
    margin-top: 40px;
    text-decoration: none;
    background: linear-gradient(to left, transparent 50%, #F7669D 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
    max-width: 200px;
    border-radius: 20px;
}

.event-content a:hover {
    background-position: left;
    color: #fff;
}

.event-content a i.fa {
    background: #F7669D;
    padding: 13px 19px;
    border-radius: 50%;
    margin-right: 5px;
    color: #fff;
}

.event-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.left-event {
    margin: 0px 10px;
    position: relative;
    width: 235px;
    height: 220px;
}

.left-event img {
    width: 100%;
    height:100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.triangle-blue {
    width: 90px;
    height: 90px;
    background: var(--nx-primary-color);
    border-top-left-radius: 90px;
    position: absolute;
    top: -110px;
    right: 0;
}

.right-event {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    margin: 0px 10px;
    position: relative;
}

.right-event img {
    width: 100%;
    height:100%;
    display: block;
    z-index: 9;
    object-fit: cover;
    object-position: center;
}

img.yellow-round2 {
    position: absolute;
    top: -48%;
    right: -19%;
    max-width: 120px;
    z-index: -1;
    object-fit: contain;
    object-position: center;
}

.right-event .bottom {
    margin: 10px 0px;
    position: relative;
    width: 260px;
    height: 235px;
}
.right-event .top{
    width:295px;
    height:260px;
    margin: 10px 0px;
    position: relative;
}

.right-event .bottom img {
    width: 90%;
}

.right-event .bottom img.bottom-dot-line {
    max-width: 110px;
    position: absolute;
    bottom: -14%;
    left: 96%;
    height: 150px;
}

.theme-5 .cbtn.btn-primary svg {
    fill: #ffffff;
}

.triangle-pink {
    width: 40px;
    height: 40px;
    background: #F7669D;
    border-bottom-right-radius: 50px;
    position: absolute;
    top: 0px;
    left: 98%;
}

div#countdown {
    margin: 25px 0px 20px;
}

div#countdown ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

div#countdown ul li {
    margin-right: 40px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

div#countdown ul li span {
    display: block;
    text-align: center;
    font-weight: 500;
    font-size: 30px;
}

.theme-5 .hal-devent-current-session {
    padding: 50px 0;
}   

/*.event-wrap {
    margin-top: 5rem;
    position: relative;
}

.event-wrap>.container {
    position: relative;
}

.event-wrap .head-title h5 {
    color: var(--nx-primary-color);
    font-weight: 400;
    font-size: 18px;
    display: block;
}

.event-wrap .head-title h3 {
    color: #000;
    font-weight: 600;
    font-size: 36px;
    display: block;
}

.event-wrap .head-title {
    margin-bottom: 3rem;
    max-width: 400px;
}

.event-wrap ul.tab-button li {
    padding: 20px 60px;
    background: var(--nx-secondary-color);
    transition: .5s all;
    border-top: 1px solid #fff;
}

.event-wrap ul.tab-button li a#get-my-schedule {
    color: #fff;
    text-align: left;
    display: block;
    text-decoration: none;
}
.event-wrap ul.tab-button {
    list-style: none;
    padding: 0;
}
.event-wrap ul.tab-button li.active {
    background: var(--nx-primary-color);
    transition: .5s all;
}

.event-wrap ul.tab-button li.dot-icon,
.event-wrap ul.tab-button li.dot-icon:hover {
    background: transparent;
    padding: 0px;
}

.event-wrap ul.tab-button li.dot-icon img {
    max-width: 80px;
    margin-top: -10px;
    z-index: -1;
    position: relative;
}

.event-wrap ul.tab-button li:hover {
    background: var(--nx-primary-color);
    transition: .5s all;
}
.event-wrap ul.tab-button li h5 {
    color: #fff;
    font-weight: 600;
    font-size: 34px;
    display: block;
}

.event-wrap ul.tab-button li p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    display: block;
}

.day-content {
    display: none;
    margin-bottom: 30px;
}

.day-content.active {
    display: inline-flex;
    width:100%;
}

.group-content {
    margin-bottom: 20px;
}

.group-content ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}

.group-content ul li.time {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 230px;
}

.group-content ul li.time img {
    width: 20px;
    margin-right: 10px;
}

.group-content ul li.time p {
    color: var(--nx-primary-color);
    font-weight: 500;
    font-size: 14px;
    display: block;
    text-transform: uppercase;
}

.group-content ul li.discription {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    max-width: 100%;
}

.group-content ul li.discription strong {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.group-content ul li.discription p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    display: block;
}*/



footer {
    background-color: var(--nx-footer-bg-color);
    color: var(--nx-footer-font-color);
    padding: 5rem 0px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;   
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.footer-navigation.nav-col-2 {
    margin-top: 3.5em;
}

footer .group-area h5 {
    color: #F7669D;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 18px;
    display: block;
    text-align: left;
    text-transform: uppercase;
    margin: 0px;
    margin-bottom: 30px;
}

footer .group-area .logo-white {
    margin-bottom: 25px;
}

footer .group-area p {
    color: #fff;
    font-family: 'Dm Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    display: block;
    text-align: left;
    line-height: 30px;
    margin: 0px;
}

footer .group-area p a {
    color: #fff;
    font-family: 'Dm Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
    text-align: left;
    line-height: 30px;
    margin: 0px;
    text-decoration: none;
}

footer .group-area ul li a {
    color: #fff;
    font-family: 'Dm Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    display: block;
    text-align: left;
    margin: 0px;
    text-decoration: none;
    line-height: 30px;
}

footer ul.social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}

footer ul.social-icon li {
    margin-right: 10px;
}

footer ul.social-icon li a {
    display: block;
    /* width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50%; */
    text-align: center;
    color: #fff;
    margin-right: 5px;
}

footer ul.social-icon li a i.fa {
    font-size: 18px;
}
.hal-event-registration .contact-form .contact-form-title{margin-bottom:5px;}
.bottom-section{padding-bottom:3em;}
footer .gallery-image ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .gallery-image ul li {
    width: calc((100% / 3) - 10px);
    margin: 5px 5px;
}

footer .gallery-image ul li img {
    width: 100%;
    display: block;
}

.footer-navigation h4,
.footer-social h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    display: block;
    text-align: left;
    text-transform: capitalize;
    margin: 0px;
    margin-bottom: 30px;
    text-decoration: none
}
.footer-navigation ul {
    list-style: none;
    padding: 0;
}
.footer-navigation ul li {
    margin: 5px 0px;
}

.footer-navigation ul li a {
    color: var(--nx-footer-font-color);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    display: block;
    text-align: left;
    margin: 0px;
    text-decoration: none;
    padding: 5px 0px;
}

.footer-navigation ul li a i.fa {
    margin-left: 20px;
}
.footer-address ul {
    list-style: none;
    padding: 0;
}
.footer-address ul li {
    margin-bottom: 10px;
}

.footer-address ul li p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    display: block;
    text-align: left;
    margin: 0px;
    text-decoration: none;
}

.footer-address ul li p img {
    width: 22px;
}

.footer-address h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 36px;
    display: block;
    text-align: left;
    margin: 10px 0px;
    text-decoration: none;
}

.footer-address p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    display: block;
    text-align: left;
    margin: 0px;
    text-decoration: none;
}

.terms-link {
    text-align: left;
}

.powered-by {
    text-align: right;
}

.copyright .terms-link ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

.copyright .terms-link ul li {
    margin-right: 0px;
}

.copyright .terms-link ul li a {
    color: var(--nx-footer-font-color);
    font-family: 'Dm Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    display: block;
    text-align: left;
    margin: 0px;
    text-decoration: none;
    line-height: 16px;
    padding-right: 30px;
    border: none;
    padding-left: none;
}

.copyright .terms-link ul li:last-child a {
    border-left: 1px solid var(--nx-footer-font-color);
    padding-left: 30px;
}

.powered-by p {
    font-family: 'Dm Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    display: block;
    text-align: right;
    margin: 0px;
    line-height: 16px;
}

.powered-by p a {
    color: var(--nx-secondary-color);
    text-decoration: underline;
}







.total-count h5 {
    color: #000;
    font-weight: 600;
    font-size: 32px;
    display: block;
    text-align: left;
    margin: 0px;
}



.add-to-schedule {
    text-align: right;
}






.theme-5 .tooltip-inner {
    background-color: #000;
    min-width: auto;
    opacity: 1;
    border-radius: 0;
    font-style: italic;
    border-radius: 10px;
    font-size: 12px;
    font-style: normal;
}

.theme-5 .tooltip.bs-tooltip-top .arrow:before {
    border-top-color: #000 !important;
}

.speakers-icon-agenda,
.agenda-add-schedule {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.theme-5 .agenda-banner {
    height: 40vh;
    background: url("/images/theme5/banner2.jpg");
    background-size: cover;
    background-position: 0%;
    background-repeat: no-repeat;
    position: relative;
    color: #ffffff;
}
.theme-5 .agenda-banner .content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.theme-5 .bannerContent {
    color: #fff;
    margin-top: 10%;
    transform: translateY(-50%);
}

.theme-5 .nx-breadcrumb {
    position: absolute;
    bottom: 20px;
    width: 100%;
    margin: 0 auto;
}

.theme-5 .nx-breadcrumb .breadcrumb .breadcrumb-item {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}

.theme-5 .nx-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "";
    background-color: #fff;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin: 0 8px 0 4px;
    float: none;
    padding-right: 0px;
}

.theme-5 .nx-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #fff;
    text-transform: capitalize;
    font-family: 'DM Sans';
    font-size: 14px;
}

.theme-5 .nx-breadcrumb .breadcrumb .breadcrumb-item a:hover,
.theme-5 .nx-breadcrumb .breadcrumb .breadcrumb-item a:focus-visible {
    color: var(--nx-primary-color);
}

.theme-5 .nx-breadcrumb .breadcrumb .breadcrumb-item.active a {
    color: var(--nx-primary-color);
}


.tooltip-inner{
    text-align:left;
}


.agenda-banner img {
    width: 100%;
    display: block;
}

.register-button > .cbtn, .agenda-button > .cbtn{
    min-width:130px;
}

body.theme-5 .hal-devent-banner .event-theme {
    color: var(--nx-primary-color);
}

body.theme-5 .hal-devent-banner .event-theme:after {
    background-color: var(--nx-primary-color);
}

.cbtn.btn-primary {
    color: #fff;
}

.theme-5 .hal-sessions-inner {
    padding: 50px 0;
}

body.theme-5 .redirecttoagendapage .cbtn.btn-primary {
    background: var(--nx-primary-color);
    color: #fff;
}

body.theme-5 .box.red {
    background: var(--nx-primary-color);
}

body.theme-5 .box.grey {
    background: var(--nx-secondary-color);
}

body.theme-5 .box {
    padding: 40px 40px;
    border-radius: 5px;
    height: 100%;
}

body.theme-5 .icon-title-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

body.theme-5 .icon-title-wrap h5 {
    font-family: 'Poppins';
    font-size: 24px;
    color: #fff;
    text-align: left;
    margin-left: 30px;
    font-weight: 400;
}

body.theme-5 .icon-title-wrap h5 i.fa {
    font-size: 24px;
    margin-left: 5px;
}

body.theme-5 .box p {
    font-family: 'Poppins';
    font-size: 18px;
    color: #fff;
    display: block;
    text-align: left;
    margin-top: 20px;
    padding-right: 5rem;
}

body.theme-5 .icon-title-wrap img {
    max-width: 80px;
}

/*====== Lobby style ======*/
.all-lobby-cta .pulse{
    border: 10px solid var(--nx-primary-color);
    background-color: var(--nx-primary-color);
}
.dot-main.speaker-dot .pulse{
    border: 10px solid var(--nx-primary-color);
    background-color: var(--nx-primary-color);
}
.pulse {
    width: 18px;
    height: 18px;
    border: 5px solid var(--nx-primary-color);
    border-radius: 50%;
    background-color: var(--nx-primary-color);
    z-index: 10;
    position: absolute;
    animation: scaleIn 2s infinite cubic-bezier(.36, .11, .89, .32);
    opacity: 0
}
.room-area {
    background: var(--nx-primary-color);
    border-radius: 5px;
    color: #fff;
    padding: 15px;
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%)
}
span.value-name{
    color:var(--nx-primary-color)
}
.btn-save {
    width: 110px;
    background: var(--nx-primary-color);
    border: 1px solid var(--nx-primary-color);
}
p#post-event-msg{
    color: var(--nx-primary-color);
}
.meet-time {
    background: var(--nx-primary-color)
}

.room-area:after {
    border-top: 15px solid var(--nx-primary-color)
}
.start-session p a{
    color: var(--nx-primary-color);
}
.login-detail .form-group .change-email {
    color: var(--nx-primary-color);
}
.user-icon{
    background-color:var(--nx-primary-color)
}
.blink-text{
    animation: blinker 1s linear infinite;
}
.social-icons{
    margin-top:0px;
}
@keyframes blinker {
    50% {
        opacity: .5;
    }
}
.discoverNow > .btn{
    color: var(--nx-primary-color);
    font-weight: 400;
    font-size: 16px;
    background: transparent;
    display: block;
    padding: 0px 20px 0px 0px;
    border-radius: 20px;
    background: linear-gradient(to left, #ffffff 50%, var(--nx-primary-color) 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
    border-radius: 50px;
    border-color: #ffffff;
    text-transform: capitalize;
    width: 300px;
    text-align: left;
}
.discoverNow .fa{
    background: var(--nx-primary-color);
    padding: 13px 19px;
    border-radius: 50%;
    margin-right: 5px;
}
.hal-devent-upnext .speaker-slide .speakers-img img, 
.hal-devent-current-session .speaker-slide .speakers-img img, 
.hal-ondemand-event .time-tabs .tab-content .event-cards .image-section img{
    position: relative;
    top: unset;
    transform: unset;
}

/*===== Timer styles =====*/

.theme-5 #timer {
    display: flex;
    font-size: 2.5em;
    font-weight: 600;
    letter-spacing: 0px;
    margin-left: -12px;
}

.theme-5 #timer div {
    padding: 5px 15px;
    position: relative;
    width: 75px;
    text-align: center;
}

.theme-5 #timer div:after {
    content: ':';
    display: block;
    position: absolute;
    top: 1px;
    right: -4px;
}

.theme-5 #timer div:last-child:after {
    display: none;
}

.theme-5 #timer span {
    font-size: 12px;
    display: block;
    font-weight: 500;
}

.theme-5 .evntTxt {
    font-size: 12px;
    font-weight: 500;
}

/* Survey Form CSS Overwrite */
.survey-form-popup .cta-box {
    display: flex;
    justify-content: right;
}
.survey-form-popup .checkradio {
    top: -1px;
}
.survey-form-popup {
    padding: 50px 0;
}
.survey-form-popup .check-option label {
    justify-content: start;
    align-items: start;
}
.survey-form-popup .form-field-group .question .qno .circle {
    border-color: var(--nx-primary-color)
}
.survey-form-popup .check-option label:before {
    margin-top: 0px;
}
.survey-form-popup input[type='checkbox'] + label:before{
    padding:8px;
}
.survey-form-popup input[type='checkbox']:checked + label:after{
    top: 3px;
    left: 7px;
}



/* Common CTA button CSS overwrite */
.cbtn.btn-primary{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
    background: linear-gradient(to left, var(--nx-secondary-color) 50%, var(--nx-primary-color) 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
    border-radius: 50px;
    text-transform: capitalize;
    border: none;
}
.cbtn.btn-primary.cta.link-tab{
    background: #0c3697;
}
.cbtn.btn-primary:hover{
    background-position: left;
    opacity: 1;
}
.cbtn.btn-secondary {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    background: transparent;
    display: inline-block;
    padding: 0px 28px 0px 0px;
    background: linear-gradient(to left, rgba(255,255,255,0.1) 50%, var(--nx-secondary-color) 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
    border-radius: 50px;
    border-color: var(--nx-secondary-color);
    text-transform: capitalize;
    min-width: 180px;
    text-align: left;
    margin-right: 10px;
}
.cbtn.btn-secondary:focus,
.cbtn.btn-secondary:active{
    box-shadow: none;
}
.cbtn.btn-secondary .fa {
    background: var(--nx-secondary-color);
    padding: 13px 19px;
    border-radius: 50%;
    margin-right: 5px;
    color: var(--nx-primary-color);
}
.cbtn.btn-secondary:hover {
    background-position: left;
    opacity: 1;
}
/* .cbtn.btn-secondary:hover .fa{
    color: #ffffff;
} */
.nx-about-event-opt2 .big-cto-content .cbtn.btn-secondary:hover{
    color: var(--nx-primary-color);
}
body.theme-5 .content-section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 3.7em;
    padding-bottom: 0;
}

.remove_from_my_schedule .fa{
    -webkit-text-stroke: 0px #fff !important;
    -moz-text-stroke: 0px #fff !important;
    -ms-text-stroke: 0px #fff !important;
}
.scheduled .fa-clock-o{
    -webkit-text-stroke: 0px #fff !important;
    -moz-text-stroke: 0px #fff !important;
    -ms-text-stroke: 0px #fff !important;
}
ul.dropdown-menu li a {
    color: #000;
    padding: 10px 14px;
}

ul.dropdown-menu li a:hover {
    background: #f7669d;
    color: #fff;
}

/* Theme Event Banner Component CSS Start */
.theme-event-banner{
    padding: 0;
    position: relative;
    background-color: var(--nx-primary-color);
    height: 95vh;
    color: var(--nx-banner-title-color);
    min-height: auto;
}
.theme-event-banner:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 100vw;
    border-left-width: 0px;
    border-bottom: 73px solid #fff;
}
.theme-event-banner:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 50vw;
    border-right-width: 0px;
    border-bottom: 73px solid #ffffff;
    z-index: 1;
}
.theme-event-banner .nx-content-center {
    height: 95vh;
    display: inline-flex;
    justify-content: start;
    align-items: center;
}
.theme-event-banner .banner-content .event-theme {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 0;
}
.theme-event-banner .banner-content .event-theme:after{
    display: none;
}
.theme-event-banner .banner-slider {
    width: 50%;
    height: 95vh;
    position: absolute;
    right: 0;
    background-image: url("/images/theme5/banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.theme-event-banner .banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:  991px){
    .theme-event-banner {
        height: 300px;
        height: 100%;
        margin-top: 0px;
    }
    .theme-event-banner:before{
        border-bottom: 40px solid #ffffff;
        display: none;
    }
    .theme-event-banner:after{
        border-left-width: 50vw;
        border-bottom: 40px solid #ffffff;
        bottom:-3px;
    }
    .theme-event-banner .nx-content-center {
        height: auto;
        justify-content: center;
    }
    .theme-event-banner .row {
        flex-direction: column-reverse;
    }
    .theme-event-banner .banner-slider {
        background: var(--nx-primary-color);
        height: 100%;
        width: 100%;
        position: static;
    }
    .theme-event-banner .banner-content {
        margin: 0rem 0rem 0px;
        padding: 50px 0px;
        text-align: center;
        min-height: 400px;
    }    
    .theme-event-banner .banner-content .banner-content ul{
        justify-content: center;
    }
    .theme-event-banner .banner-content ul li a.cbtn.btn-primary {
        padding: 5px;
    }    
    .theme-event-banner .banner-content .timer-area li {
        line-height: 26px;
    }
    .banner-content ul, div#countdown ul{
        justify-content: center;
    }
}
.nx-event-listing .time-tabs .tab-content .event-cards .image-section img {
    object-fit: fill !important;
}
.theme-5 .agenda-banner .content h1, .theme-5 .agenda-banner .content .agendaEveName, .event-keypoint-listing ul li {
    color: #333;
}  
.nx-registration-form .register_btn {
    color: #333 !important;
}
.nx-registration-form .register_btn svg {
    color: #333 !important;
}
.nx-registration-form .register_btn:hover {
    color: #fff;
}
.agenda-banner h1, .event-keypoint-listing ul li, .agenda-banner h4 {
    color: #333;
}
.nx-event-listing .time-tabs .tab-content .event-cards .image-section img {
    object-fit: fill !important;
}
.theme-5 .agenda-banner .content h1, .theme-5 .agenda-banner .content .agendaEveName, .event-keypoint-listing ul li {
    color: #333;
}
#sponsors .sponsor-logo-slider {
    background-color: #fff !important;
}
.nx-sponsors-section-opt1 .eachSection .sponsor-logo-slider .logo {
    display: block !important;
}  
.hal-event-registration .bottom-section li::marker {
    content: "" !important;
}
.nx-registration-form .register_btn {
    color: var(--nx-secondary-color) !important;
    background-color: var(--nx-primary-color) !important;
    border-color: var(--nx-primary-color) !important;
    background: var(--nx-primary-color) !important;
}
.theme-5 .theme-event-banner .banner-content .event-keypoint-listing ul li{
    color:#fff
}
.rating-star {
    width: 100%;
    word-wrap: break-word;
}
.theme-event-banner .cta-box .cbtn {
    color: #fff !important;
    background: linear-gradient(to left, #eb0023 50%, #eb0023 50%) right !important;
}
@media only screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

@media only screen and (max-device-width: 1180px) and (orientation:portrait) {
    .yellow-round4 {
        display: none;
    }
    .event-wrapper .row > div:first-child{
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 3em;
    }
    .event-wrapper .row > div:nth-child(2){
        flex: 0 0 75%;
        max-width: 75%;
        margin:0 auto;

    }
    .banner-content ul li a.cbtn.btn-primary i.fa {
        padding: 7px 13px;
        margin-right: 3px;
    }
    .banner-content ul li a.cbtn.btn-primary{
        width:155px;
        background-position:left;
    }
    .banner-content ul li a.cbtn.btn-primary{
        font-size:12px;
    }
    .theme-5 .hal-event-registration .contact-us-summary {
        margin: 0px 0 20px 0px;
    }
    .theme-5 .bottom-wrap .row .col-6.col-md-6.col-lg-6 {
        max-width: 100%;
    }
    .speakers-icon-agenda {
        width: 100%;
    }
    .theme-5 .col-6.col-md-6.col-lg-6.d-inline-flex.justify-content-end.align-items-center.pl-0 {
        margin-top: 20px;
        max-width: 100%;
    }
    .bottom-wrap .row {
        flex-direction: column;
    }
    .agenda-day-wrap .container.edays-session-list .row.my-3 {
        display: flex;
        justify-content: space-between;
    }
    .footer-address h3 {
        font-size: 30px;
    }    
    .banner-slider {
        background: #fff;
    }
    .banner-content {
        margin: 0rem 0rem 0px;
        padding: 58px 0px;
    }
    .banner-content ul li a.cbtn.btn-primary {
        padding: 10px 10px 10px 0px;
    }       
    .footer-navigation ul li a {
        font-size: 14px;
    }
    .footer-navigation ul li a i.fa {
        margin-left: 5px;
    }    
    div#countdown{
        margin:10px 0 22px;
    }
    
    .banner-content .timer-area li{
        font-size:14px;
    }
    .banner-content h3, .big-heading {
        font-size: 25px;
        line-height: 32px;
    }
    img.box-dot-line {
        bottom: -10%;
        left: -11%;
        max-width: 69px;
    }
    .right-event .bottom img.bottom-dot-line {
        max-width: 69px;
        height: 100px;
    }
    .day-content .group-box .bottom-wrap .row > div.col-12{
        max-width: 100%;
        flex:0 0 100%;
        margin-top: 0px;
    }
}
@media only screen and (max-device-width: 1180px) and (orientation:landscape){
    .banner-content ul li a.cbtn.btn-primary{
        background-position:left;
    }    
    img.yellow-round2{
        top: -44%;
        right: -7%;
        max-width: 70px;
        object-fit: contain;
    }
    img.box-dot-line{
        max-width: 60px;
        bottom: -39px;
        left: -37px;
    }
    img.yellow-round3{
        top: -9%;
        left: -12%;
        max-width: 70px;
    }
    .right-event .bottom{
        width: 230px;
        height: 215px;
    }
    .right-event .bottom img{
        width:100%;
    }
    .triangle-pink{
        left: 110%;
    }
    .right-event .bottom img.bottom-dot-line{
        max-width: 50px;
        bottom: -8%;
        left: 110%;
        height: 70px;
    }    
    .theme-5 .agenda-add-schedule > ul > .cbtn{font-size:11px;}
    .left-event{
        height:175px;
    }
    .triangle-blue{
        width:50px;
        height:50px;
        top:-70px
    }
    .day-content .group-box .bottom-wrap .row > div.col-12{
        max-width: 100%;
        flex:0 0 100%;
        margin-top:10px;
    }
    
}
@media only screen and (max-device-width: 768px) and (orientation:landscape) {
    .yellow-round4 {
        display: none;
    }    
    .banner-content ul li a.cbtn.btn-primary{
        width: 190px;
        font-size: 12px;
        background-position:left;
    } 
    .time-tabs .tab-content .event-cards .image-section img{
        position: relative !important;
        left: 0 !important;
        top: 0 !important; 
        transform: unset !important;
    }    
    .right-event .top{
        width: 250px;
        height: 240px;
    }
    img.yellow-round2{
        top: -44%;
        right: -7%;
        max-width: 70px;
    }
    .triangle-blue{
        width: 70px;
        height: 70px;
        top: -41%;
    }
    img.box-dot-line{
        max-width: 60px;
        bottom: -39px;
        left: -37px;
    }
    img.yellow-round3{
        top: -9%;
        left: -12%;
        max-width: 70px;
    }
    .right-event .bottom{
        width: 220px;
        height: 215px;
    }
    .triangle-pink{
        left: 95%;
    }
    .right-event .bottom img.bottom-dot-line{
        max-width: 50px;
        bottom: -8%;
        left: 95%;
        height: 70px;
    }    
    .theme-5 .agenda-add-schedule > ul > .cbtn{font-size:11px;}    
}

@media only screen and (max-device-width: 768px) and (orientation:portrait) {
    div#countdown ul li{
        font-size:12px;
    }
    img.box-dot-line {
        max-width: 69px;
        bottom: -11%;
        left: -12%;
        transform: scaleX(-1);
        z-index: -1;
    }
    .right-event .bottom img.bottom-dot-line {
        max-width: 69px;
        height: 100px;
    }
    .yellow-round4 {
        display: none;
    }

    .time-tabs .tab-content .event-cards .image-section img{
        position: relative !important;
        left: 0 !important;
        top: 0 !important; 
        transform: unset !important;
    }
    .event-wrapper .row{
        flex-direction: column;
    }
    .event-content h3, .sub-heading{
        font-size:30px;
    }
    .event-wrapper .row > div:first-child{
        flex:0 0 100%;
        max-width: 100%;
        margin-bottom:3em;
    }
    .event-wrapper .row > div:nth-child(2){
        flex:0 0 75%;
        max-width: 75%;
    }
    .banner-content ul li a.cbtn.btn-primary i.fa {
        padding: 5px 9px;
        margin-right: 3px;
    }
    .banner-content ul li a.cbtn.btn-primary{
        width: 176px;
        font-size: 12px;
        background-position:left;
    }
    .theme-5 .hal-event-registration .contact-us-summary {
        margin: 0px 0 20px 0px;
    }
    .theme-5 .bottom-wrap .row .col-6.col-md-6.col-lg-6 {
        max-width: 100%;
    }
    .speakers-icon-agenda {
        width: 100%;
    }
    .agenda-add-schedule{margin-top:10px;}
    .theme-5 .col-6.col-md-6.col-lg-6.d-inline-flex.justify-content-end.align-items-center.pl-0 {
        margin-top: 20px;
        max-width: 100%;
    }
    .bottom-wrap .row {
        flex-direction: column;
    }
    .agenda-day-wrap .container.edays-session-list .row.my-3 {
        display: flex;
        justify-content: space-between;
    }
    .footer-address h3 {
        font-size: 30px;
    }  
    .footer-navigation ul li a {
        font-size: 14px;
    }
    .footer-navigation ul li a i.fa {
        margin-left: 5px;
    }
}

@media only screen and (max-width: 680px) and (orientation:portrait){
    .banner-content ul li a.cbtn.btn-primary{
        width: 140px;
        min-width: 140px;
    }
    .edays-session-list .event-days-list{
        overflow-x:auto; 
        justify-content: start;
        padding-bottom: 1em;
    }
    .right-event{
        margin:0;
    }
    body.theme-5 .box.grey{
        margin-top:1em;
    }
    .triangle-blue, .triangle-pink, .right-event .bottom .bottom-dot-line,
    .right-event .top img.yellow-round2{
        display:none;
    }
    .right-event .top, .right-event .bottom, .left-event{
        width: 320px;
        height: 260px;
        max-width: 100%;
        margin: 5px auto;
    }
    .right-event, .right-event .bottom img{
        margin:0;
        width:100%
    }
    .event-banner-wrap{
        flex-direction: column;
    }
    .banner-content ul li a.cbtn.btn-primary {
        font-size: 14px;
    }
    .theme-5 .edays-session-list .event-schedule{margin-right:.5em;}
    .edays-session-list .event-schedule, .edays-session-list .add-to-schedule{
        width:150px;
    }    
    .event-banner-wrap{
        display: none
    }
    .theme-5 .edays-session-list .event-schedule a, .theme-5 .edays-session-list .event-schedule a .fa{
        font-size:11px;
    }
    .theme-5 .edays-session-list .event-days-list .event-day{
        max-width: 48%;
        flex: 0 0 48%;
        min-width: unset;
        margin:0 3px !important;
    }
    .theme-5 .agenda-add-schedule > ul > .cbtn:not(:last-child) {
        margin-right: 5px;
        letter-spacing: 0px;
        padding:4px;
        font-size:11px;
    }
    .yellow-round4 {
        display: none;
    }
    .hamburger {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        z-index: 9;
        margin-right: 10px;
        transform: translateY(-50%);
    }
    .hamburger:before {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: -9px;
        left: 0;
    }
    .hamburger:after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 8px;
        left: 0;
    }
    
    
    .event-wrapper {
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding: 1.5em 0 0;
    }
    .event-wrapper .row {
        flex-direction: column-reverse;
    }
    .event-content p{font-size:16px;}
    .event-content p:nth-child(2){
        opacity: 1;
        color: #000;
    }
    .event-content {
        margin-top: 0px;
        margin-right: 0 !important;
        padding:1em 0;
    }
    .event-content h5 {
        font-size: 20px;
    }
    .event-content h3 {
        font-size: 18px;
    }
    footer{
        padding:1.5em 0;
    }    
    div#countdown {
        margin: 3rem 0px 30px;
    }
    .discoverNow {text-align:center;}
    .discoverNow > .btn{
        display:inline-block;
        background-position: left;
        color: #fff;
    }
    
    img.yellow-round3 {
        display: none !important;
    }
    footer>.container>.row>.col-sm-4 {
        width: 60%;
        float: left;
    }
    footer>.container>.row>.col-sm-3 {
        width: 40%;
        float: left;
    }
    footer>.container>.row>.col-sm-5 {
        margin-top: 3rem;
    }
    .footer-address h3 {
        font-size: 24px;
    }
    .copyright .container .row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .copyright .terms-link ul {
        justify-content: center;
    }
    .powered-by {
        text-align: center;
        margin-top: 2rem;
    }
    .powered-by p {
        text-align: center;
        font-size: 14px;
    }
    .agenda-day-wrap .day-tab ul li {
        width: calc((100% / 3) - 10px);
    }
    .agenda-day-wrap .day-tab ul li p {
        display: none;
    }
    .agenda-day-wrap .day-tab ul li {
        padding: 8px 10px;
    }
    .col-sm-6.add-to-schedule-elem {
        width: 60%;
        float: right;
    }
    .total-count h3 {
        font-size: 18px;
        margin: 0px;
        line-height: 36px;
    }
    .group-box p {
        line-height: 26px;
        max-height: unset;
    }
    .speakers-icon-agenda {
        margin: 10px 0px;
    }
    .col-6.col-md-6.col-lg-6.d-inline-flex.justify-content-end.align-items-center.pl-0 {
        padding-left: 10px !important;
    }
    .group-box .bottom-wrap .row .col-6 {
        max-width: 100%;
    }
    .group-box .bottom-wrap {
        align-items: flex-start;
        flex-direction: column;
    }
    .group-box .bottom-wrap img {
        margin: 0px 0px;
    }
    .nx-main-heading{
        font-size:16px;
    }
    .group-box .bottom-wrap ul li {
        padding: 10px;
    }    
    footer .col-md-2 {
        width: 50%;
    }
    footer .col-md-3 {
        margin-bottom: 20px;
    }
    .footer-address ul li {
        margin-bottom: 0px;
    }
    .copyright {
        margin-top: 2rem;
        padding-top: 1em;
        padding-bottom: 0em;
    }    
    .footer-navigation h4 {
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    .footer-social h4 {
        margin-top: 20px;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    footer ul.social-icon {
        margin-top: 10px;
    }
    .modal-open .modal-content {
        width: calc(100% - 1rem);
    }
    .modal.show .modal-dialog {
        transform: translateY(30%);
    }
    body.theme-5 .day-tab {
        margin-top: 0rem;
        margin-bottom: 10px;
    }
    .theme-5 .edays-session-list .event-schedule a {
        padding: 10px ;
        border-radius: 50px;
        width: 100%;
        height:36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .add-to-schedule a {
        width: 100%;
        padding: 10px 4px;
        margin-top: 0px;
        font-size: 11px;
        border: 0px;
        height:36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .bottom-wrap .row{
        width: 100%;
        margin: 0 auto;
    }
    .theme-5 .edays-session-list .add-to-schedule a .fa{
        font-size: 11px;
        margin-right: 4px;
        -webkit-text-stroke: 1px var(--nx-secondary-color);
    }
    .edays-session-list .event-days-list .event-day {
        padding: 10px !important;
    }
    .copyright .terms-link ul li a {
        font-size: 13px;
        padding-right: 15px;
    }
    .footer-address ul li p {
        font-size: 13px;
    }
    .footer-address p {
        font-size: 14px;
        line-height: 22px;
    }
    .hv-close:before,
    .hv-close:after {
        height: 20px;
    }
    .survey-form-popup .section-heading {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 26px;
        line-height: 30px;
    }
    .survey-form-popup .form-field-group .question .col-md-12,
    .survey-form-popup .form-field-group .question .col-md-3 {
        padding: 0px 15px;
    }
    .survey-form-popup .form-field-group .card .card-header {
        padding-left: 0px;
    }
    .survey-form-popup .form-field-group .card .radio-check-option .option {
        margin: 15px 0;
    }
    .footer-navigation.nav-col-2 {
        margin-top: 37px;
    }
    .banner-content ul li a.cbtn.btn-primary {
        padding: 5px 4px 5px 4px;
    }
    div#countdown ul li {
        margin-right: 15px;
        font-size:14px;
    }  
    .speaker-wrap h3 {
        font-size: 18px;
    }
}
@media only screen and (max-width: 680px) and (orientation:landscape){
    .banner-content ul li a.cbtn.btn-primary{
        width:140px;
    }
    .right-event{
        margin:0;
    }
    body.theme-5 .box.grey{
        margin-top:1em;
    }
    .triangle-blue, .triangle-pink, .right-event .bottom .bottom-dot-line,
    .right-event .top img.yellow-round2{
        display:none;
    }
    .right-event .top, .right-event .bottom, .left-event{
        width: 320px;
        height: 260px;
        max-width: 100%;
        margin: 5px auto;
    }
    .right-event, .right-event .bottom img{
        margin:0;
        width:100%
    }
    .event-banner-wrap{
        flex-direction: column;
    }
    .banner-content ul li a.cbtn.btn-primary {
        font-size: 14px;
    }
    .theme-5 .edays-session-list .event-schedule{margin-right:.5em;}
    .edays-session-list .event-schedule, .edays-session-list .add-to-schedule{
        width:50%;
    }    
    .event-banner-wrap{
        display: none
    }
    .theme-5 .edays-session-list .event-schedule a, .theme-5 .edays-session-list .event-schedule a .fa{
        font-size:11px;
    }
    .yellow-round4 {
        display: none;
    }
    .hamburger {
        display: block;
        position: absolute;
        top: 32px;
        right: 20px;
        width: 20px;
        height: 2px;
        background: #fff;
        z-index: 9;
        margin-right: 10px;
    }
    .hamburger:before {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: -9px;
        left: 0;
    }
    .hamburger:after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 8px;
        left: 0;
    }
    
    
    .event-wrapper {
        margin-bottom: 0rem;
        margin-top: 0rem;
        padding: 1.5em 0;
    }
    .event-wrapper .row {
        flex-direction: column-reverse;
    }
    .event-content p{font-size:16px;}
    .event-content p:nth-child(2){
        font-size: 20px !important;
        font-weight: 600;
        opacity: 1;
        color: #000;
    }
    .event-content {
        margin-top: 0px;
        margin-right: 0 !important;
        padding:1em 0;
    }
    .event-content h5 {
        font-size: 20px;
    }
    .event-content h3 {
        font-size: 18px;
    }
    footer{
        padding:1.5em 0;
    }
    .event-content p:nth-child(2) {
        font-size: 22px !important;
        line-height: 26px;
    }    
    div#countdown {
        margin: 3rem 0px 30px;
    }
    .discoverNow {text-align:center;}
    .discoverNow > .btn{
        display:inline-block;
        background-position: left;
        color: #fff;
    }    
    img.yellow-round3 {
        display: none !important;
    }
    footer>.container>.row>.col-sm-4 {
        width: 60%;
        float: left;
    }
    footer>.container>.row>.col-sm-3 {
        width: 40%;
        float: left;
    }
    footer>.container>.row>.col-sm-5 {
        margin-top: 3rem;
    }
    .footer-address h3 {
        font-size: 24px;
    }
    .copyright .container .row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .copyright .terms-link ul {
        justify-content: center;
    }
    .powered-by {
        text-align: center;
        margin-top: 2rem;
    }
    .powered-by p {
        text-align: center;
        font-size: 14px;
    }
    .agenda-day-wrap .day-tab ul li {
        width: calc((100% / 3) - 10px);
    }
    .agenda-day-wrap .day-tab ul li p {
        display: none;
    }
    .agenda-day-wrap .day-tab ul li {
        padding: 8px 10px;
    }
    .col-sm-6.add-to-schedule-elem {
        width: 60%;
        float: right;
    }
    .total-count h3 {
        font-size: 18px;
        margin: 0px;
        line-height: 36px;
    }
    .group-box p {
        line-height: 26px;
        max-height: unset;
    }
    .speakers-icon-agenda {
        margin: 15px 0px;
    }
    .col-6.col-md-6.col-lg-6.d-inline-flex.justify-content-end.align-items-center.pl-0 {
        padding-left: 10px !important;
    }
    .group-box .bottom-wrap .row .col-6 {
        max-width: 100%;
        justify-content: flex-start !important;
    }
    .group-box .bottom-wrap {
        align-items: flex-start;
        flex-direction: column;
    }
    .group-box .bottom-wrap img {
        margin: 0px 0px;
    }
    
    .group-box .bottom-wrap ul li {
        padding: 10px;
    }
    
    footer .col-md-2 {
        width: 50%;
    }
    footer .col-md-3 {
        margin-bottom: 20px;
    }
    .footer-address ul li {
        margin-bottom: 0px;
    }
    .copyright {
        margin-top: 2rem;
        padding-top: 1em;
        padding-bottom: 0em;
    }   
    
    .footer-navigation h4 {
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    .footer-social h4 {
        margin-top: 20px;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    footer ul.social-icon {
        margin-top: 10px;
    }
    .modal-open .modal-content {
        width: calc(100% - 1rem);
    }
    .modal.show .modal-dialog {
        transform: translateY(30%);
    }
    body.theme-5 .day-tab {
        margin-top: 0rem;
        margin-bottom: 10px;
    }
    .col-sm-6.text-right.d-inline-flex.align-items-start.justify-content-end {
        flex-direction: row;
        padding: 0px;
    }
    .theme-5 .edays-session-list .event-schedule a {
        padding: 10px 10px;
        border-radius: 50px;
    }
    .add-to-schedule a {
        width: 100%;
        padding: 10px;
        margin-top: 0px;
        font-size:11px;
    }
    .bottom-wrap .row{
        width: 100%;
        margin: 0 auto;
    }
    .theme-5 .edays-session-list .add-to-schedule a .fa{
        font-size:14px;
        margin-right:4px;
    }
    .agenda-day-wrap .edays-session-list .row.my-3 {
        padding: 0px 15px;
    }
    .container.edays-session-list .col-sm-12 {
        padding: 0px;
    }
    .edays-session-list .event-days-list .event-day {
        padding: 10px !important;
    }
    .copyright .terms-link ul li a {
        font-size: 13px;
        padding-right: 15px;
    }
    .footer-address ul li p {
        font-size: 13px;
    }
    .footer-address p {
        font-size: 14px;
        line-height: 22px;
    }
    .hv-close:before,
    .hv-close:after {
        height: 20px;
    }
    .survey-form-popup .section-heading {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 26px;
        line-height: 30px;
    }
    .survey-form-popup .form-field-group .question .col-md-12,
    .survey-form-popup .form-field-group .question .col-md-3 {
        padding: 0px 15px;
    }
    .survey-form-popup .form-field-group .card .card-header {
        padding-left: 0px;
    }
    .survey-form-popup .form-field-group .card .radio-check-option .option {
        margin: 15px 0;
    }
    .footer-navigation.nav-col-2 {
        margin-top: 37px;
    }
    .banner-content ul li a.cbtn.btn-primary {
        padding: 5px 4px 5px 4px;
    }
    div#countdown ul li {
        margin-right: 15px;
        font-size:14px;
    }    
    .speaker-wrap h3 {
        font-size: 18px;
    }    
}

/*768 close*/

@media only screen and (max-width: 576px) {
    .register-button {
        margin-bottom: 0px;
    }
    .yellow-round4 {
        display: none;
    }    
    .justify-content-end {
        margin-top: 10px;
    }
    .theme-5 .bottom-wrap ul li.cbtn {
        border-radius: 0px;
    }
    .yellow-round4 {
        display: none;
    }
    .justify-content-end {
        margin-top: 10px;
    }
    .count-elem + .col-sm-6{ justify-content: center !important;}
    .theme-5 .bottom-wrap ul li.cbtn {
        border-radius: 0px;
    }
    .copyright .terms-link ul li:last-child a {
        padding-left: 15px;
    }
    div#countdown {
        margin: 1rem 0px 30px;
    }    
    .survey-form-popup .section-heading {
        font-size: 20px;
        line-height: 26px;
    }
    .survey-form-popup .form-field-group textarea {
        width: 88%;
    }
    .survey-form-popup input[type='checkbox']+label:before {
        margin-top: 0px;
    }
    .survey-form-popup .cta-box {
        margin: 40px 0 40px;
    }
    .edays-session-list .event-days-list .event-day {
        padding: 10px !important;
    }
    .event-content h5 {
        font-size: 16px;
    }
    .footer-navigation ul li a {
        font-size: 14px;
    }
    .copyright .terms-link ul li a {
        font-size: 13px;
        padding-right: 15px;
    }
    .powered-by p {
        font-size: 13px;
    }
    .footer-address h3 {
        font-size: 20px;
    }
    .footer-navigation h4 {
        font-size: 20px;
    }
    .footer-social h4 {
        font-size: 20px;
    }
    .banner-content ul li a.cbtn.btn-primary {
        font-size: 14px;
    }
    .modal-open .modal-content {
        width: 100%;
    }
    .hv-close:before,
    .hv-close:after {
        height: 16px;
    }
    .theme-5 .hal-devent-banner h1 {
        font-size: 24px;
    }
    .theme-5 .hal-event-registration .contact-form .contact-form-title {
        font-size: 24px;
    }
    .theme-5 .hal-event-registration .contact-form .contact-form-desc {
        line-height: 20px;
        margin-top: 10px;
    }
    .theme-5 .hal-event-registration .contact-us-summary {
        margin-bottom: 20px;
    }
    .theme-5 .register-button {
        margin-bottom: 0px;
    }
    .powered-by {
        margin-top: 1rem;
    }
    .yellow-round4 {
        display: none;
    }
    .container {
        width: 100%;
    }    
    .time-tabs .tab-content .event-cards .image-section img{
        position: relative !important;
        left: 0 !important;
        top: 0 !important; 
        transform: unset !important;
    }
    .hal-ondemand-event .time-tabs .tab-content{
        margin-top:0px;
    }
    .banner-content .timer-area li {
        font-size: 14px;
    }
    .banner-content .timer-area li {
        line-height: 14px;
    }
    .survey-form-popup .form-field-group .question .col-md-12,
    .survey-form-popup .form-field-group .question .col-md-3 {
        padding: 0px;
    }
    .survey-form-popup .form-field-group textarea {
        width: 100%;
    }
    .heading-highlight{
        font-size:12px !important;
    }
    .social-icons a{
        margin-right:4px;
    }
    .social-icons .txt-label{
        font-size:12px;
    }
    .hal-session-detail{
        padding:20px 0
    }
    .bottom-wrap .row > div{
        padding:0;
    }
}

@media only screen and (max-width: 992px) and (orientation: landscape){
    .banner-content .timer-area li{
        font-size:14px;
    }
}

/* max width 375 close */
