@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Russo+One&display=swap');

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
     font-family: 'Montserrat', sans-serif !important; 
    overflow-x: hidden;
    position: relative;
    /* font-family: 'Montserrat'; */
}

a {
    text-decoration: none;
    color: #c81c24;
    font-family: 'Montserrat', sans-serif !important;
}

a:hover {
    text-decoration: none;
    color: #152a3f;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
}

p {
    
    font-weight: 500;
    font-size: 18px;
    /* color: #e7e7e7 */
    color: #4a4a4a;
    font-family: 'Montserrat', sans-serif !important;
}

.russo-font {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
}

.exo2light-font {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
}

.montserrat-regualr {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.Ubuntu-font {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}


.black-bg {
    background-color: #000 !important;
}

.black-bg p {
    color: #e7e7e7;
}

.auto-container {
    width: 80%;
    margin: 0 auto;
}


.whiteOutline-btn {
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 0;
    overflow: hidden;
    transition: 1s all ease;
    background: 0 0;
    display: inline-block;
    font-weight: 600;
    font-style: normal;
    width: unset !important;
    padding: 5px 20px;
    height: unset !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
}

.whiteOutline-btn:hover {
    background: #fff;
    color: #152a3f;
    text-decoration: none;
}

.redOutline-btn {
    position: relative;
    display: block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #eb1b24;
    padding: 0;
    overflow: hidden;
    transition: 1s all ease;
    background: 0 0;
    display: inline-block;
    font-weight: 600;
    font-style: normal;
    width: unset !important;
    padding: 5px 20px;
    height: unset !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eb1b24;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.redOutline-btn:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #152a3f;
    text-decoration: none;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #eb1b24;
        -webkit-box-shadow: 0 0 3px #eb1b24;
    }

    50% {
        background-color: #a8090f;
        -webkit-box-shadow: 0 0 40px #a8090f;
    }

    100% {
        background-color: #eb1b24;
        -webkit-box-shadow: 0 0 3px #eb1b24;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #eb1b24;
        -moz-box-shadow: 0 0 3px #eb1b24;
    }

    50% {
        background-color: #a8090f;
        -moz-box-shadow: 0 0 40px #a8090f;
    }

    100% {
        background-color: #eb1b24;
        -moz-box-shadow: 0 0 3px #eb1b24;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #eb1b24;
        box-shadow: 0 0 3px #eb1b24;
    }

    50% {
        background-color: #a8090f;
        box-shadow: 0 0 40px #a8090f;
    }

    100% {
        background-color: #eb1b24;
        box-shadow: 0 0 3px #eb1b24;
    }
}

@keyframes glowing {
    0% {
        background-color: #eb1b24;
        box-shadow: 0 0 3px #eb1b24;
    }

    50% {
        background-color: #a8090f;
        box-shadow: 0 0 40px #a8090f;
    }

    100% {
        background-color: #eb1b24;
        box-shadow: 0 0 3px #eb1b24;
    }
}


.redSolid-btn {
    position: relative;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
    transition: 1s all ease;
    background: #c81c24;
    display: inline-block;
    font-weight: 600;
    font-style: normal;
    width: unset !important;
    padding: 5px 20px;
    height: unset !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
}

.redSolid-btn:hover {
    background: #fff;
    border: 1px solid #c81c24;
    color: #152a3f;
    text-decoration: none;
}

.headerBtn .whiteOutline-btn,
.headerBtn .redOutline-btn {
    font-size: 12px;
    margin-right: 25px;
    padding: 8px 10px;
}

.headerBtn .dropdown-menu.show {
    display: block;
    background: #eb1b24;
    border-radius: 0;
    width: 87%;
}

.headerBtn .dropdown-item {
    color: #fff;
    background: none;
}

.headerBtn .dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    background-color: #28292a;
}

.headerBtnMobile {
    display: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0px 0;
    left: 0;
    border-bottom: none;
    z-index: 9999;
    margin-left: auto;
    width: 100%
}

header.headfixed {
    background: #000 ;
    position: fixed;
    z-index: 9999;
}

.header-upper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.headerBtn-mobile {
    display: none
}

.logo-box_new {
    width: 50%
}

.logo-box_new .top-logo figure {
    margin-top: 14px;
    width: 38%;
    text-align: center;
}

span.HeaderTiming {
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    top: -12px;
}

    span.HeaderTiming:before {
        content: '';
        position: absolute;
        top: 9px;
        width: 34%;
        height: 1px;
        background: #ffffff94;
        left: -76px;
        transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
    }

    span.HeaderTiming:after {
        content: '';
        position: absolute;
        top: 9px;
        width: 34%;
        height: 1px;
        background: #ffffff94;
        margin-left: 5px;
        transition: all 0.3s ease-in-out 0s;
        -webkit-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        -o-transition: all 0.3s ease-in-out 0s;
    }

header.headfixed figure.logolockup span.HeaderTiming {
    font-size: 12px;
    top: -5px;
}

    header.headfixed figure.logolockup span.HeaderTiming:before {
        left: -50px;
    }

    header.headfixed figure.logolockup span.HeaderTiming:after,
    header.headfixed figure.logolockup span.HeaderTiming:before {
        width: 24%;
    }

.headfixed .logo-box_new .top-logo figure {
    margin-top: 0;
    width: 100%;
    margin-bottom: 5px;
}

.nav-menu {
    background: 0 0;
    top: 0;
    right: 0;
    -webkit-transition: width .2s, height .4s;
    -moz-transition: width .2s, height .4s;
    -o-transition: width .2s, height .4s;
    transition: width .2s, height .4s;
    -ms-transition: width .2s, height .4s;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 65%
}

.headerBtn {
    position: relative;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    height: 100%;
    opacity: unset;
    z-index: 9999;
    margin-right: 0 !important
}

.headerBtn a:last-child {
    margin-right: 20px !important
}

.searchIcon {
    margin-right: 10px;
    width: 50px
}

.searchIcon i {
    color: #fff;
    font-size: 20px
}

.headerBtn .whiteOutline-btn,
.headerBtn .redOutline-btn {
    font-size: 12px;
    margin-right: 15px;
    padding: 8px 20px;
}

.headerBtn .red-btn {
    width: 160px;
    height: 37px;
    font-size: 14px;
    margin-right: 15px
}

#menu-wrapper {
    overflow: hidden;
    max-width: 100%;
    cursor: pointer
}

#menu-wrapper #hamburger-menu {
    position: relative;
    margin: 16px;
    color: #fff;
    font-weight: 500;
    margin-left: 0;
}

#menu-wrapper #hamburger-menu i {
    margin-left: 5px
}

.burger-strip {
    transition: .5s;
    margin-top: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    margin-left: 5px;
}

.strip div {
    height: 3px;
    width: 35px;
    border-radius: 2px;
    margin: 4px;
    transition: .55s cubic-bezier(.075, .82, .165, 1);
    -webkit-transition: .55s cubic-bezier(.075, .82, .165, 1);
    -moz-transition: .55s cubic-bezier(.075, .82, .165, 1);
    -ms-transition: .55s cubic-bezier(.075, .82, .165, 1);
    -o-transition: .55s cubic-bezier(.075, .82, .165, 1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.burger {
    border-radius: 10px;
    background: 0 0;
    box-shadow: none;
    justify-content: center;
    align-items: center;
    margin: 10px 10px;
    /* width: 82px; */
    height: 58px;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    flex-direction: row;
    margin-right: 25px;
    display: flex;
}

.burger span {
    font-size: 16px;
    margin-right: 11px;
    color: #fff;
}

.burger .strip div {
    background: #fff;
}

.burger-strip div:first-child {
    width: 25px;
    height: 3px;
}

.burger-strip div:last-child {
    width: 42px;
}

.open.burger:hover .burger-strip div:first-child {
    transform: rotate(45deg) translateY(1px) translateX(5px);
    -webkit-transform: rotate(45deg) translateY(1px) translateX(5px);
    -moz-transform: rotate(45deg) translateY(1px) translateX(5px);
    -ms-transform: rotate(45deg) translateY(1px) translateX(5px);
    -o-transform: rotate(45deg) translateY(1px) translateX(5px)
}

.open.burger .burger-strip div:nth-child(2),
.open .burger:hover .burger-strip div:nth-child(2) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg)
}

/* .open.burger:hover .burger-strip div:last-child {
    transform: rotate(45deg) translateY(-13px) translateX(2px);
    -webkit-transform: rotate(45deg) translateY(-13px) translateX(2px);
    -moz-transform: rotate(45deg) translateY(-13px) translateX(2px);
    -ms-transform: rotate(45deg) translateY(-13px) translateX(2px);
    -o-transform: rotate(45deg) translateY(-13px) translateX(2px)
} */

.open.burger .burger-strip div:first-child {
    transform: rotate(45deg) translateY(1px) translateX(5px);
    -webkit-transform: rotate(45deg) translateY(1px) translateX(5px);
    -moz-transform: rotate(45deg) translateY(1px) translateX(5px);
    -ms-transform: rotate(45deg) translateY(1px) translateX(5px);
    -o-transform: rotate(45deg) translateY(1px) translateX(5px);
    width: 16px;
    display: none;
}

.open.burger .burger-strip div:last-child {
    transform: rotate(45deg) translateY(-13px) translateX(2px);
    -webkit-transform: rotate(45deg) translateY(-8px) translateX(3px);
    -moz-transform: rotate(45deg) translateY(-13px) translateX(2px);
    width: 42px;
    -ms-transform: rotate(45deg) translateY(-13px) translateX(2px);
    -o-transform: rotate(45deg) translateY(-13px) translateX(2px);
}

#menu-wrapper #hamburger-menu span {
    opacity: 1;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    color: #fff;
    background-color: #fff;
    position: absolute;
    transform: rotate(0deg);
    transition: .4s ease-in-out;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#menu-wrapper #hamburger-menu span:nth-child(1) {
    top: 0
}

#menu-wrapper #hamburger-menu span:nth-child(2) {
    top: 9px
}

#menu-wrapper #hamburger-menu span:nth-child(3) {
    top: 18px
}

#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
    -webkit-transform: translateY(9px) rotate(135deg);
    -moz-transform: translateY(9px) rotate(135deg);
    -ms-transform: translateY(9px) rotate(135deg);
    -o-transform: translateY(9px) rotate(135deg);
}

#menu-wrapper #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px);
    -webkit-transform: translateX(-60px);
    -moz-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    -o-transform: translateX(-60px);
}

#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
    -webkit-transform: translateY(-9px) rotate(-135deg);
    -moz-transform: translateY(-9px) rotate(-135deg);
    -ms-transform: translateY(-9px) rotate(-135deg);
    -o-transform: translateY(-9px) rotate(-135deg);
}

#menu-container .menu-list .menu-submenu {
    padding-top: 0;
    padding-bottom: 10px
}

#menu-container .menu-list {
    padding-left: 0;
    display: block;
    position: absolute;
    width: 100%;
    max-width: 320px;
    backdrop-filter: blur(5px);
    background-color: rgb(0 0 0 / 88%) !important;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    right: -100%;
    display: none
}

#menu-container .menu-list.active {
    display: block
}

#menu-container .menu-list li.accordion-toggle,
#menu-container .menu-list .menu-login {
    font-size: 16px;
    padding: 20px 10px;
    text-transform: uppercase;
    border-top: 1px solid #fff6;
    padding-left: 20px
}

#menu-container .menu-list li.accordion-toggle a {
    color: #fff
}

#menu-container .menu-list li.accordion-toggle span {
    color: #fff
}

#menu-container .menu-list li:first-of-type {
    border-top: 0
}

#menu-container .menu-list li {
    color: #fff;
    padding: 3px 5px;
}

#menu-container .menu-list li a {
    color: #fff;
    transition: all .15s;
    -webkit-transition: all .15s;
    -moz-transition: all .15s;
    -ms-transition: all .15s;
    -o-transition: all .15s;
    text-transform: uppercase;
}

#menu-container .menu-list li a:hover {
    color: #fff;
    padding-left: 20px
}

#menu-container .menu-list li li a:hover {
    color: #eb1b24
}

#menu-container .menu-list li li.parent a {
    color: #fff
}

#menu-container .menu-list li li.parent.open ul a:hover {
    color: #00A5BA
}

.accordion-toggle,
.accordion-content {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px
}

.accordion-content {
    display: none
}

.accordion-toggle a:before,
.accordion-toggle a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: #5a5858;
    transform-origin: 50% 50%;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
}

.accordion-toggle a:before {
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.accordion-toggle.active-tab {
    background: #152a3f;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.accordion-toggle a.active:before {
    transform: rotate(0deg);
    background: #fff !important;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.accordion-toggle a.active:after {
    transform: rotate(180deg);
    background: #fff !important;
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

#leftside-navigation ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%
}

#leftside-navigation ul li {
    display: block;
    width: 100%;
    vertical-align: middle;
    list-style-type: none;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

#leftside-navigation ul li.open>a {
    background: #c81c24;
}

#leftside-navigation ul li.open>a>i {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

#leftside-navigation ul li.open>a>i:not(:hover) {
    color: #fff
}

    #leftside-navigation ul li a {
        position: relative;
        display: block;
        color: #aeb2b7;
        text-decoration: none;
        width: 100%;
        padding: 5px 35px 5px 10px;
        box-sizing: border-box;
        font-size: 19px;
        line-height: 17px;
        outline: 0;
        font-weight: 500;
    }

#leftside-navigation ul li a:hover {
    color: #f3ff09
}

#leftside-navigation ul li a span {
    display: inline-block
}

        #leftside-navigation ul li a i {
            top: 0;
            right: 0;
            width: 25px;
            height: 25px;
            line-height: 27px;
            text-align: center;
            display: block;
            position: absolute;
            touch-action: manipulation
        }

#leftside-navigation ul li a i:hover {
    color: #fff
}

#leftside-navigation ul li a i .fa-angle-left,
#leftside-navigation ul li a i .fa-angle-right {
    padding-top: 3px
}

#leftside-navigation ul ul {
    display: none
}

#leftside-navigation ul ul ul {
    background-color: unset !important
}

#leftside-navigation ul ul li {
    border-bottom: none
}

#leftside-navigation ul ul li a {
    padding: 5px 20px 5px 15px;
    font-size: 13px;
    line-height: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

#leftside-navigation ul ul li a i {
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    line-height: 34px;
    text-align: center;
    display: flex;
    position: absolute;
    touch-action: manipulation;
    align-items: center
}

.menu-list .navfooter {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #9c8952;
}

.menu-list .soc-media {
    display: flex;
    justify-content: center;
    margin: 0
}

.menu-list .soc-media li:nth-child(n+2) {
    margin-left: 1rem
}

.menu-list .soc-media a {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .65);
    transition: color .25s ease-in;
    padding: 0 !important
}

.menu-list .soc-media a:focus,
.soc-media a:hover {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .2)
}

.text-black {
    color: #000 !important;
}

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

.sectionTitle {
    position: relative;
    width: 70%;
    margin: 0 AUTO;
}

.sectionTitle.centered h2,
.sectionTitle.centered p,
.sectionTitle.centered h4 {
    text-align: center;
}

.sectionTitle.text-black p,
.sectionTitle.text-black h4 {
    color: #4a4a4a !important;
}

.sectionTitle h2 {
    color: #fff;
    font-size: 45px;
    line-height: 55px;
    text-transform: uppercase;
}

.sectionTitle h4 {
    text-transform: uppercase;
    color: #e7e7e7;
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    font-size: 25px;
}

.sectionTitle p {
    text-align: center;
    color: #e7e7e7;
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    margin: 0;
    font-size: 16px;
}

.main-footer {
    position: relative;
    padding: 80px 0px 20px 0px;
    background: #000;
    width: 100%;
    background-size: contain;
    z-index: 9;
}

    .main-footer:before {
        position: absolute;
        content: '';
        background-size: contain;
        width: 100%;
        height: 100%;
        top: 0%;
        left: 0;
        z-index: -1;
        /* background: radial-gradient(circle, #392739, #152a3f); */
    }

.showlogoft {
    padding-bottom: 40px;
}

.showlogoft figure {
    width: 60%;
    margin: 0 auto;
}
.inner-footer {
    position: relative;
    border-bottom: #868585 solid 1px;
    padding-bottom: 30px;
}

.inner-footer h2 {
    color: #fff;
    font-size: 16px;
}

.ftrEmails h3 {
    font-size: 13px;
    color: #fff;
}

.inner-footer p a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    line-height: 20px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.inner-footer ul {
    margin: 0;
    padding: 0;
}

.inner-footer li {
    margin: 0;
    padding: 0;
}

.inner-footer li a {
    color: #fff;
    font-size: 12px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.ft-btn {
    margin-bottom: 15px;
    text-align: right;
}

.ft-btn a {
    font-size: 12px;
    /* font-family: 'Montserrat', sans-serif; */
    /* font-weight: 400; */
    width: 220px !important;
    padding: 8px 10px;
}

.bottom-ft {
    padding: 20px 0px 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-ft p {
    color: #868585;
    font-size: 13px;
    margin: 0;
}

.bottom-ft p a {
    color: #868585;
    margin: 0px 5px;
}

.bottom-ft p a:hover {
    color: #fff;
}

.websiteby-text {
    color: #868585;
}

.websiteby-text p {
    font-size: 13px;
    color: #868585;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.websiteby-text img {
    height: 20px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    margin: 0px -3px 0px 3px;
    opacity: 0.7;
}

.websiteby-text a {
    color: #868585;
    font-weight: 400;
    font-size: 13px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}

.websiteby-text a:hover {
    color: #fff;
}

.footer-social {
    margin-top: 40px;
}

.footer-social ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-social li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social li a span {
    position: relative;
    color: #fff;
    font-size: 24px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0px 0;
    left: 0;
    border-bottom: none;
    z-index: 9999;
    margin-left: auto;
    width: 100%;
}

.heroSection {
    width: 100%;
    height: 100%;
    background-color: #152a3f;
    position: relative;
}

.videobg {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 99%;
    z-index: 1;
    overflow: hidden;
}

.videobg video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* header Video home */
.bg_video {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    }
    .youtube-container {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9.5;
    pointer-events: none;
    }
    .youtube-container iframe {
    width: 300%;
    height: 100%;
    margin-left: -100%;
    }
    @media only screen and (min-width: 320px) and (max-width: 768px) {
    .heroSection {
    height: auto !important;
    }
    }
    .header_Img{
    background-image: url(/images/Home_Banner-1_11.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center -24.8766px;
    }
    .header_Img::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgb(30 30 30 / 24%) 0.02%, rgb(30 30 30 / 58%) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
    width: 100%;
    height: 100%;
    z-index: 1;
    }
/* header Video home End */
/*Privacy policy Css */
.text_col{
    color: #000;
    font-weight: 400;
    font-size: 16px;
    }
    .head_align{
    margin-bottom: 30px;
    text-align: center;
    }
    .ul_cls{
    margin-left: 60px;
    margin-bottom: 15px;
    list-style-type: disc;
    }
/*Privacy policy Css End */

.heroOverlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #152a3f; */
    z-index: 1;
    /* background: linear-gradient(177deg, #00010a00, #00000000, #0f0f0fb5, #030303);*/
    /* background: linear-gradient(359deg, #00010a, #0000005e, #0f0f0f96, #030303); */
    display: flex;
    align-items: flex;
    align-items: center;
    padding-top: 5%;
}

.video-tagline {
    width: 60%;
    padding-bottom: 20px;
    z-index: 9;
}

.video-tagline h4 {
    color: #e7e7e7;
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
}

.video-tagline h2 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 66px;
}

.video-tagline p {
    color: #e7e7e7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
}

.video-bttomText {
    margin: 20px 0px;
    display: flex;
    align-items: center;
    width: 55%;
}

.video-bttomText .redSolid-btn {
    padding: 10px 20px;
    text-align:center;
}

/* PLAY NOW */
.play-now {
    position: relative;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    right: 0;
    top: 0%;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-now text {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    fill: #fff;
}

.play-now svg {
    left: 0;
    top: 0;
    width: 40%;
    height: 40%;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 10s;
    -moz-animation-duration: 10s;
    -ms-animation-duration: 10s;
    -o-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

/* ANIMATIONS */
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(360deg);
    }

    to {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(360deg);
    }

    to {
        -moz-transform: rotate(0);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(360deg);
    }

    to {
        -ms-transform: rotate(0);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(360deg);
    }

    to {
        -o-transform: rotate(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
}

/* @-webkit-keyframes svg-morph {
    0% {
      d: path("m244.333332,38.437499c26.666664,-1.666666 125.666662,0.999995 195.333325,50.33333c69.666663,49.333335 -39.666664,141.666664 -70.666664,174.229164c-31,32.5625 -176.999993,107.437507 -234.999993,76.437507c-58,-31 73.666665,-107.000001 49,-190.4375c-24.666665,-83.437499 34.666668,-108.895835 61.333332,-110.562501z");
    }
    100% {
      d: path("m244.333332,38.437499c58.666669,50.333342 24.666647,101.000011 94.33331,150.333346c69.666663,49.333335 71.333353,156.666666 14.333349,175.229163c-57.000004,18.562498 -160.999991,6.437492 -218.999991,-24.562508c-58,-31 -109.333363,-174.000012 -70.000018,-236.437507c39.333345,-62.437496 121.666681,-114.895836 180.33335,-64.562494z");
    }
  } */

.headlinebanner {
    display: flex;
    align-items: center;
    margin-left: 20px;
    width: 59%;
}

.headlinebanner .iconSpeaker {
    margin-right: 20px;
    width: 9%;
}

    .headlinebanner p {
        color: #fff;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }

.features-style01 {
    position: relative;
    padding: 50px 0px;
    background: #152a3f;
    position: relative;
    z-index: 9;
}

.features-style01 .sectionTitle {
    position: relative;
    padding-bottom: 70px;
}

.features-style01 .testelement02 {
    position: absolute;
    bottom: unset;
    left: -2%;
    z-index: -1;
    top: 0;
}

.featureInner01 {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featureInner01 .innerfront01 {
    height: 100%;
    position: relative;
    /* overflow: hidden; */
    padding-bottom: 40px;
}

.featureInner01 .innerfront01 figure {
    position: relative;
}

.featureInner01 .innerfront01 figure:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(177deg, #00010a00, #00000000, #0f0f0fb5, #030303);
    content: '';
}

.featureInner01 .innerfront01 figcaption {
    position: relative;
    margin-top: -15%;
    left: 0;
    right: 0;
    padding: 5px 20px;
}

.featureInner01 .innerfront01 figcaption p {
    color: #fff;
    line-height: 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.innerback01 {
    position: relative;
    border-radius: 40px 0px 40px 40px;
    border: #fff solid 1px;
    padding: 30px 20px 30px 20px;
    background: #152a3f;
    text-align: center;
    height: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 1s;
    top: 100%;
    left: 0;
    z-index: 9;
    visibility: hidden;
}

.innerback01 h2 {
    color: #fff;
    line-height: 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding-bottom: 20px;
    text-align: left;
}

.innerback01 p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    padding-bottom: 30px;
    text-align: left;
}

.innerback01 a.viewbtn {
    background: #E12F17;
    color: #fff;
    font-size: 16px;
    border-radius: 50px;
    padding: 10px 30px;
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
}

.innerback01 a.viewbtn:hover {
    background: #fff;
    color: #152a3f;
}

.featureInner01:hover .innerfront01 figure {
    display: none;
}

.featureInner01:hover .innerfront01 p {
    display: none;
}

.featureInner01:hover .innerback01 {
    top: 0%;
    visibility: visible;
    /* background: transparent; */
}

.tickerband {
    background: #152a3f;
    padding: 100px 0px;
    /* height: 40px; */
    padding-bottom: 140px;
    /* overflow-x: hidden; */
}

.marq-colorbg2 {
    background: #000 url(../images/marqueImg.png);
    background-size: cover;
    width: 100%;
    height: 70px;
    -webkit-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    animation: scroll-anim 2s linear infinite;
    -webkit-animation: scroll-anim 2s linear infinite;
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
}

@keyframes scroll-anim {
    100% {
        background-position: 100% 0;
    }
}

.marquee {
    position: relative;
    overflow: hidden;
    /*-webkit-transform: rotate(5deg);
    */
    -ms-transform: rotate(5deg);
    transform: rotate(4deg);
    width: calc(100% + 60px);
    /*margin-left: -30px;
    */
    background: #c81c24;
    margin-top: -7%;
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -o-transform: rotate(4deg);
}

.marquee .slide-har {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.scrolltext {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-animation: slide-har-revers 30s linear infinite;
    animation: slide-har-revers 30s linear infinite;
}

.scrolltext .item {
    padding: 0 10px;
}

.scrolltext .item h4 {
    color: #fff !important;
    -webkit-text-stroke: 0 !important;
    white-space: nowrap;
    margin: 0;
    text-transform: uppercase;
    font-size: 40px;
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    padding: 10px 0px;
}

@-webkit-keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
}

@-webkit-keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }

    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
}

@keyframes slide-har-revers {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }

    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
}

.LogoSlider01 {
    padding: 50px 0px;
    position: relative;
    position: relative;
    margin-bottom: 0%;
    z-index: 99;
}

.mediapartners.sectionTitle {
    margin-bottom: 50px;
    text-align: center;
}

.mediapartners.sectionTitle h2 {
    color: #152a3f;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.mediapartners.sectionTitle h2:before {
    position: absolute;
    bottom: -20%;
    right: -5%;
    content: '';
    width: 45%;
    height: 13px;
    background: #FF0000;
}

.logoscrollStyle {
    position: relative;
    overflow-x: hidden;
}

.logoscrollStyle .swiper-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
    position: relative;
}

/* .swiper-container.swiper--logo.swiper-marquee {
    overflow: hidden;
} */

.logoscrollStyle .swiper-marquee .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 20px 20px;
    width: 200px !important;
    height: 100px;
    position: relative;
    /* background-color: #ccc; */
    margin: 10px 0;
}

.logoscrollStyle .swiper-marquee .swiper-slide>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 20px 20px;
    width: 200px !important;
    height: 100px;
    position: relative;
    /* background-color: #ccc; */
    margin: 10px 0;
    cursor: pointer;
}

.logoscrollStyle .swiper-marquee .swiper-slide img {
    mix-blend-mode: multiply;
    filter: contrast(1);
    max-width: 100%;
    -webkit-filter: contrast(1);
    max-height: 100%;
    /*filter: grayscale(1);*/
}

.logoscrollStyle .swiper-marquee .swiper-slide>div img {
    mix-blend-mode: multiply;
    filter: contrast(1);
    max-width: 100%;
    -webkit-filter: contrast(1);
    max-height: 100%;
    /* filter: grayscale(1); */
}

.africa-accelerates {
    position: relative;
    padding: 50px 0px;
}

/* .africa-accelerates .sectionTitle h2 {
    line-height: 50px;
} */

.africa-accelerates.features-style01 {
    background-color: #fff;
    z-index: 99;
}

.africa-accelerates .featureInner01 .innerfront01 figure:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(177deg, #ffffff0f, #ffffff59, #ffffffb5, #ffffff);
    content: '';
}

.africa-accelerates .featureInner01 .innerfront01 figcaption p {
    color: #152a3f;
}

.africa-accelerate .featureInner01:before .innerback01 {
    border: #000 solid 1px !important;
    background: #fff !important;
}

.testimonialStyle02 {
    position: relative;
    padding: 50px 0px;
}

.testimonialSlider {
    padding-left: 11%;
    padding-top: 20px;
}

.testimonialSlider .item {
    padding-left: 5%;
    padding-top: 40px;
}

.testimonialSlider figure {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    z-index: 9;
    padding: 30px 30px 30px 0px;
}

.testimonialSlider figure .quoteimg {
    width: 40% !important;
    z-index: -1;
    position: absolute;
    top: -5%;
    left: -17%;
}

.testimonialSlider figure .quoteimg img {
    filter: grayscale(0) !important;
    -webkit-filter: grayscale(0) !important;
}

.testimonialItemOuter figure img {
    filter: grayscale(1);
    width: unset !important;
    -webkit-filter: grayscale(1);
}

.testimonial-Content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-left: 0px;
}

.testimonial-Content p.testText {
    font-size: 28px;
    color: #e7e7e7;
    line-height: 35px;
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    padding-top: 30px;
}

.testimonial-Content h2 {
    font-size: 18px;
    font-family: nekst;
    font-weight: 600;
    font-style: normal;
    color: #152a3f;
    padding: 0;
    margin: 0;
    line-height: 31px;
    padding-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.testimonial-Content p.testiDesig {
    font-size: 16px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 23px;
    margin: 0;
    width: 70%;
}

.testimonial-Content p.TestiCompany {
    color: #152a3f;
    font-size: 28px;
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    padding-top: 10px;
    margin: 0;
}

.testimonialItemOuter .testilogo img {
    width: 100px;
}

.testelement01 {
    position: absolute;
    top: 0;
    right: 0;
}

.testelement02 {
    position: absolute;
    bottom: -20%;
    left: -2%;
    z-index: 99;
}

.testelement02 img {
    width: 60%;
}

.logoboard-grey {
    position: relative;
    padding: 50px 0px;
    background: #EFF0F0;
}

.redlinehead {
    width: 35%;
    height: 10px;
    background: #FF0000;
    display: inline-block;
    vertical-align: middle;
}

.logoboard-grey .sectionTitle.centered h2 {
    width: 80%;
    margin: 0 auto;
}

.logoboard-grey .text-right {
    text-align: right;
}

.logoboard-grey .logoscrollStyle {
    padding-top: 50px;
}

.logoboard-grey .logoscrollStyle .swiper-marquee .swiper-slide {
    background-color: #eff0f0;
    /* filter: grayscale(1); */
}

.logoboardstyle01 {
    position: relative;
    padding: 50px 0px;
    /* padding-top: 0px; */
    z-index: 99;
}

.logoboardstyle01 .redlinehead {
    width: 25%;
    margin-right: 20px;
}

.logoboardstyle01 .text-left {
    text-align: left;
}

.logoboardstyle01 .sectionTitle {
    text-align: center;
    /* margin-bottom: 50px; */
}

.logoboardstyle01 .sectionTitle h2 {
    display: inline-block;
}

.logoboardstyle01 .logoscrollStyle {
    padding-top: 50px;
}

.logoboardstyle01 .element-right {
    position: absolute;
    right: -10.4%;
    top: 5%;
    width: 19%;
}

.logoboardstyle01 .element-right img {
    width: 45%;
    text-align: right;
}

.logoboard-grey .element-left {
    position: absolute;
    left: -5%;
    top: -17%;
    width: 51%;
}

.logoboard-grey .element-left img {
    width: 25%;
}

.elementlinebeat {
    position: absolute;
    bottom: -16%;
    left: 0;
    background-size: cover !important;
    background-position: center right;
    background-repeat: no-repeat;
    width: 100%;
    height: 33%;
    z-index: 99;
}

.speakerStyle01 {
    position: relative;
    padding: 50px 0px;
    background: #152a3f;
    z-index: 99;
    overflow: hidden;
    /* overflow: hidden; */
    /* margin-bottom: 100px; */
}

.speakerStyle01 .sectionTitle {
    width: 100%;
}

.linitlessOPP {
    position: relative;
    padding: 50px 0px;
    z-index: 998;
    padding-bottom: 100px;
}

/* .linitlessOPP:before{
    position: absolute;
    top:-10%;
    left: 0;
    background-image: url(../images/bg03.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
} */

.globalpower:before {
    position: absolute;
    /* bottom: -150%;*/
    bottom: unset !important;
    left: 0;
    /* background-image: url(../images/bg02.jpg);*/
    background-image: none !important;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    /* background-position: top; */
    height: 200%;
    content: '';
    z-index: -1;
}

.linitlessOPP .sectionTitle {
    margin-bottom: 50px;
    width: 100%;
}

.linitlessOPP .sectionTitle h2 {
    color: #fff;
}

.linitlessOPP .sectionTitle h4 {
    color: #fff !important;
}

.boxLEft {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    background-color: #292929;
}

.starupText {
    padding: 20px 10px;
    background-color: #292929;
}

.starupText figure {
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 100%;
    border-radius: 20px;
    width: 100%;
    margin: 0;
}

.innovateStartup {
    padding: 20px 10px;
    background-color: #292929;
}

.boxLEft h2 {
    color: #fff;
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 20px;
}

.boxLEft p {
    color: #e7e7e7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
}

.boxLEft p.text-black {
    color: #4a4a4a;
}

.innovateStartup figure {
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 100%;
    border-radius: 20px;
    width: 100%;
    margin: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.rightText-innovt {
    padding: 10px 5px;
}

.generationTalents {
    background-color: 292929;
}

.generationTalents figure {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* 
.generationTalents figure img{
    max-width: 100%;
    max-height: 100%;
} */

.talentsText {
    padding: 20px 15px;
}

.innovateStartup {
    position: relative;
    border: #292929 solid 1px;
    border-radius: 20px;
    background: #292929;
}

/* .innovateStartup h2 {
    color: #152a3f;
} */

.leftText-innovt {
    padding: 10px 20px;
}

.bigtechLeft {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 18%;
    display: flex;
    align-items: self-start;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 99;
    padding: 10px 10px;
    margin-bottom: 10px;
}

.bigtechLeft2 {
    position: relative;
}


.bigtechLeft h2 {
    color: #fff;
    text-transform: capitalize;
    font-size: 22px;
    line-height: 28px;
}

.bigtechLeft p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.lefttopImgnew {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    position: relative;
}

    .lefttopImgnew:before {
        content: '';
        position: absolute;
        bottom: -7px;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(177deg, #00010a00, #00000000, #0f0f0f52, #030303e8);
    }
    .lefttopImgnew.overlaygardtonly:before {
        background: linear-gradient(177deg, #00010a00, #00000000, #0f0f0fb5, #030303);
    }

.leftbtmTextnew {
    background: #152a3f;
    padding: 20px 20px;
    margin-bottom:46px;
}

.BottomButtons_ {
    position: absolute;
    bottom: 24px;
    left: 17px;
}

.govofficials {
    background: #152a3f;
    padding: 0px 0px;
    width: 100%;
    height: 25%;
    margin-bottom: 10px;
    background: #152a3f;
    position: relative;
    overflow: hidden;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.govofficials h2 {
    text-align: center;
    color: #fff;
    font-size: 21px;
    line-height: 28px;
}

.govofficials p {
    color: #e7e7e7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.govofficials .bgimggov {
    background-position: center bottom;
    background-size: cover;
    width: 100%;
    height: 50%;
    background-repeat: no-repeat;
    position: relative;
    z-index: -1;
}

.govofficials .bgimggov:before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(177deg, #00010a, #00000094, #0f0f0f00, #03030300);
}

.govoff-Text {
    padding: 10px 10px;
}

.knowmorebtn.redSolid-btn {
    font-size: 14px;
    margin-top: 20px;
    padding: 5px 15px;
}

.ga-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    width: 100%;
    height: 320px;
    text-align: center;
    color: whitesmoke;
    background-color: #152a3f;
}

.ga-card .imagecard {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* transition: transform calc(700ms * 1.5) cubic-bezier(0.19, 1, 0.22, 1); */
    pointer-events: none;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
}

.ga-card .imagecard:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(177deg, #00010a00, #00000000, #0f0f0fb5, #030303);
    content: '';
}

.ga-card:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
    transform: translateY(-50%);
    transition: transform calc(700ms * 2) cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: transform calc(700ms * 2) cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform calc(700ms * 2) cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: transform calc(700ms * 2) cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform calc(700ms * 2) cubic-bezier(0.19, 1, 0.22, 1);
}

.ga-card .content01 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 10px;
    transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    -webkit-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.ga-card .content>*+* {
    margin-top: 10px;
}

.ga-card .title {
    color: #fff;
    /* line-height: 20px;
        font-size: 16px; */
    font-family: 'Montserrat', sans-serif;
    line-height: 16px;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    /* padding-bottom: 20px;*/
}

.ga-card .title {
    /*font-size: 14px;*/
    font-size: 17px;
}

.ga-card .title span {
    font-size: 12px;
}

.ga-card .copy {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    padding-bottom: 10px;
    text-align: left;
}

.ga-card .btn01 {
    background: #E12F17;
    color: #fff;
    font-size: 11px;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
    font-weight: 600;
}

.ga-card .btn01:hover {
    background-color: #fff;
    color: #152a3f;
}

.ga-card:hover .imagecard {
    display: none;
}

.ga-card:after {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.ga-card .content01 {
    transform: translateY(calc(100% - 5.4rem));
    -webkit-transform: translateY(calc(100% - 5.4rem));
    -moz-transform: translateY(calc(100% - 5.4rem));
    -ms-transform: translateY(calc(100% - 5.4rem));
    -o-transform: translateY(calc(100% - 5.4rem));
}

.ga-card .content01>*:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    -o-transform: translateY(1rem);
    -webkit-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 700ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1), opacity 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.ga-card:hover {
    border: #fff solid 1px;
    padding: 20px 22px;
    border-radius: 30px 0px 30px 30px;
    -webkit-border-radius: 30px 0px 30px 30px;
    -moz-border-radius: 30px 0px 30px 30px;
    -ms-border-radius: 30px 0px 30px 30px;
    -o-border-radius: 30px 0px 30px 30px;
}

.ga-card:hover,
.ga-card:focus-within {
    align-items: center;
}

.ga-card:hover:after,
.ga-card:focus-within:after {
    background: #152a3f;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

.ga-card:hover .content01,
.ga-card:focus-within .content01 {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.ga-card:hover .content01>*:not(.title),
.ga-card:focus-within .content01>*:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(700ms / 8);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

/* .ga-card:focus-within .imagecard, .ga-card:focus-within:after,
  .ga-card:focus-within .content01,
  .ga-card:focus-within .content01 > *:not(.title) {
    transition-duration: 0s;
  } */


.africa-accelerates .ga-card .imagecard:before {
    background: linear-gradient(177deg, #ffffff00, #ffffff1a, #ffffffe6, #ffffff);
}

.africa-accelerates .ga-card .title {
    color: #152a3f;
}

.africa-accelerates .ga-card:hover:after,
.africa-accelerates .ga-card:focus-within:after {
    background: #fff;
}

.africa-accelerates .ga-card .copy {
    color: #152a3f;
}

.africa-accelerates .ga-card:hover {
    border: #0a0909 solid 1px;
}

.africa-accelerates .ga-card:after {
    background-image: unset;
}

.speakerSlider {
    padding: 50px 0px;
    padding-top: 100px;
}

.speakerITem {
    position: relative;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transform: scale(1.0);
    background: #152a3f;
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -o-transform: scale(1.0);
}

.speakerITem:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 30px 0px 30px 30px;
    -ms-transform: scale(1.1);
    -webkit-border-radius: 30px 0px 30px 30px;
    -moz-border-radius: 30px 0px 30px 30px;
    -ms-border-radius: 30px 0px 30px 30px;
    -o-border-radius: 30px 0px 30px 30px;
}

.speakerITem figure {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 300px; */
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}

.speakerITem:hover figure img {
    border-radius: 30px 0px 0px 0px;
}

.speakerITem figure img {
    max-width: 100%;
    min-height: 100%;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
}

.speakerITem figcaption {
    position: relative;
    padding: 5px 15px 15px 15px;
    z-index: 9;
    margin-top: -5%;
}

    .speakerITem figure:before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(181deg, #0c0c0c33, #14141400, #00000021, #000000d6);
    }

    .speakerITem figcaption h2.speakername {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 22px;
        line-height: 28spx;
    }

    .speakerITem figcaption p.speakDesg {
        margin: 0;
        padding: 5px 0px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 14px;
    }

    .speakerITem figcaption p.speakComapny {
        margin: 0;
        padding: 0;
        color: #fff;
        font-weight: 600;
        font-size: 30px;
        padding-bottom: 10px;
        text-transform: uppercase;
        line-height: 40px;
        color: #ffe076;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

.gradientmove {
    position: absolute;
    /*top: -20%;
    right: -30%;
    */
    /*animation: yellow 8s infinite ease;
    */
    width: 80%;
    animation: blurb 8s infinite ease;
    z-index: 99;
    -webkit-animation: blurb 8s infinite ease;
}

.gradientmove2 {
    position: absolute;
    /*top: -20%;
    right: -30%;
    */
    /*animation: yellow 8s infinite ease;
    */
    width: 100%;
    animation: blurb2 8s infinite ease;
    z-index: -1;
    -webkit-animation: blurb2 8s infinite ease;
}

.gradientmove3 {
    position: absolute;
    /*top: -20%;
    right: -30%;
    */
    /*animation: yellow 8s infinite ease;
    */
    width: 100%;
    animation: blurb3 20s infinite ease;
    z-index: -1;
    -webkit-animation: blurb3 20s infinite ease;
}

.gradientmove img,
.gradientmove2 img,
.gradientmove3 img {
    max-width: 100%;
    max-height: 100%;
}

@keyframes blurb {
    0% {
        top: -20%;
        right: -0%;
        transform: scale(1.2);
        width: 60%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    25% {
        top: -10%;
        right: 20%;
        transform: scale(1.2);
        width: 60%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    55% {
        top: -5%;
        right: 90%;
        transform: scale(1.2);
        width: 60%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    85% {
        top: -10%;
        right: 20%;
        transform: scale(1.2);
        width: 60%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    100% {
        top: -10%;
        right: -30%;
        transform: scale(1.2);
        width: 60%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
}

@keyframes blurb2 {
    0% {
        top: -10%;
        right: -40%;
        transform: scale(1.2);
        width: 100%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    25% {
        top: -15%;
        right: 20%;
        transform: scale(1.2);
        width: 80%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    55% {
        top: -20%;
        right: 60%;
        transform: scale(1.2);
        width: 100%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    85% {
        top: -15%;
        right: 20%;
        transform: scale(1.2);
        width: 80%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    100% {
        top: -10%;
        right: -30%;
        transform: scale(1.2);
        width: 100%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
}

@keyframes blurb3 {
    0% {
        top: -50%;
        left: -40%;
        transform: scale(1.2);
        width: 80%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    25% {
        top: -25%;
        left: 30%;
        transform: scale(1.2);
        width: 80%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    55% {
        top: -10%;
        left: 40%;
        transform: scale(1.2);
        width: 100%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    85% {
        top: -25%;
        left: 30%;
        transform: scale(1.2);
        width: 80%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }

    100% {
        top: -50%;
        left: -40%;
        transform: scale(1.2);
        width: 100%;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    }
}

.globalpower {
    position: relative;
    padding: 50px 0px;
    background: #152a3f;
    position: relative;
    transition: 0.5s ease;
    padding-bottom: 100px;
    z-index: 99;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}

.globalpower .sectionTitle {
    width: 100%;
    padding-bottom: 40px;
}

.postList-wrap {
    position: relative;
    border-top: #292929 solid 1px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #292929 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s ease-out;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}

.postList-wrap.borderbtmlast {
    border-bottom: #292929 solid 1px;
    border-left: none;
}

.postList-wrap h2 {
    color: #e7e7e7;
    padding: 10px 30pxs;
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 25px;
    padding-bottom: 10px;
}

.postList-wrap p {
    font-size: 14px;
    width: 70%;
    line-height: 20px;
    margin: 0;
    display: none;
    transition: all .5s ease-out;
    color: #e7e7e7;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
}

.postList-wrap:hover p {
    display: block;
}

.postList-wrap:hover h2 {
    color: #fff;
    font-family: 'Russo One', sans-serif;
    font-weight: 300;
}

.postList-wrap:hover {
    background-position: left bottom;
}

.imghoverlist {
    position: absolute;
    right: 10%;
    width: 140px;
    height: 140px;
    z-index: 99;
    top: -50%;
    transform: rotate(-25deg);
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    display: none;
    /*justify-content: center;
    */
    -webkit-transform: rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
}

.imghoverlist figure {
    background: linear-gradient(177deg, #2d2d31, #373737, #0f0f0f, #2f2b2b);
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    border-radius: 20px 0px 20px 20px;
    -webkit-border-radius: 20px 0px 20px 20px;
    -moz-border-radius: 20px 0px 20px 20px;
    -ms-border-radius: 20px 0px 20px 20px;
    -o-border-radius: 20px 0px 20px 20px;
}

.imghoverlist img {
    width: 50%;
    /* padding: 30px;
    background: #152a3f; */
}

.imghoverlist:before {
    left: -13px;
    top: 13px;
    background: #c81c24;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.postList-wrap:hover .imghoverlist {
    position: absolute;
    right: 10%;
    width: 140px;
    height: 140px;
    z-index: 99;
    top: -31%;
    /*display: none;
    */
    transform: rotate(0deg);
    display: none;
    background: #152a3f;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.arrowImg {
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: transparent;
    padding: 10px;
    position: relative;
    z-index: 99;
    -ms-transition: all 0.2s linear;
}

.arrowImg:before {
    background-color: #eb1b24;
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
}

.arrowImg:hover:before {
    top: 0;
}

.arrowImg:hover:hover {
    transition: 0.25s;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    -o-transition: 0.25s;
}

.arrowImg:hover img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.d-rotate {
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.d-rotate .rotate-text {
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -webkit-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    opacity: 0;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -moz-transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    -ms-transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
    -o-transform: translate3d(0px, 50px, -50px) rotateX(-45deg) scale(0.95);
}

.d-rotate.animated .rotate-text {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    -ms-transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
    -o-transform: translate3d(0px, 0px, 0px) rotateX(0deg) scale(1);
}

.d-slideup .sideup-text {
    overflow: hidden;
    display: block;
}

.d-slideup .sideup-text:first-of-type .up-text {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s;
}

.d-slideup .sideup-text:nth-of-type(2) .up-text {
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}

.d-slideup .sideup-text:nth-of-type(3) .up-text {
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

.d-slideup .sideup-text:nth-of-type(4) .up-text {
    -webkit-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s;
}

.d-slideup .sideup-text:nth-of-type(5) .up-text {
    -webkit-transition-delay: 1.6s;
    -o-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

.d-slideup .sideup-text .up-text {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
    -moz-transition: all .8s;
    -ms-transition: all .8s;
}

.d-slideup.animated .up-text {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
}

.headerBtnMobile {
    display: none;
}

.red-pattern01 {
    position: absolute;
    top: -30%;
    right: -38%;
    z-index: -1;
    width: 47%;
    height: 100%;
}

.red-pattern01:before {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/red-pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    content: '';
}

.red-pattern02 {
    position: absolute;
    top: -30%;
    left: -38%;
    z-index: -1;
    width: 47%;
    height: 100%;
}

.red-pattern02:before {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/red-pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    content: '';
}

.newsBlockItem {
    position: relative;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 3%);
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 6px;
    border: 1px solid #eceaea;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-align: center;
    z-index: 99;
}

.newsBlockItem div {
    width: 100%;
}

.newsBlockItem figure {
    display: flex;
    flex-wrap: wrap;
    height: 220px;
    width: 100%;
    margin: 0;
    border-radius: 6px 6px 0 0;
    background: top/cover no-repeat #dddbdb;
    width: 100%;
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    -ms-border-radius: 6px 6px 0 0;
    -o-border-radius: 6px 6px 0 0;
    height: 250px;
    position: relative;
    /* filter: grayscale(100%);*/
    background-size: cover !Important;
}

.newsBlockItem figure img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.newsBlockItem figure:before {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 20%;
    content: '';
    background: linear-gradient(179deg, #ffffff00, #ffffff96, #ffffff, #ffffff);
}

.newsContent {
    padding: 10px;
    min-height: 100px;
    z-index: 99;
}

.newsContent h5 {
    line-height: 20px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #152a3f;
    padding: 0;
    text-align: left;
    padding-top: 0px;
    padding-bottom: 0;
}

.newsContent h5 a {
    color: #152a3f;
    text-align: left;
}

.newsContent .news-meta {
    font-size: 13px;
    padding-bottom: 8px;
    text-align: center;
    display: none;
}

.newsContent .news-meta a {
    text-align: center;
    text-decoration: none;
    letter-spacing: -.4px;
}

.news-author-meta .pr-news-more a:hover:after {
    width: 100%;
}

.news-author-meta .pr-news-more a:after {
    left: 0;
    bottom: 0;
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    background-color: #df1e3b;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
}

.news-author-meta {
    border-top: 1px solid #eaeaea;
    padding: 5px 10px;
    width: 100%;
    /* height: 30px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-author-meta .newssourcename a {
    width: 100%;
    color: #df1e3b;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
}

.news-author-meta .pr-news-more {
    color: #152a3f;
    font-size: 13px;
    font-weight: 300;
}

.news-author-meta .pr-news-more a {
    position: relative;
    color: #152a3f;
    text-decoration: none;
    font-weight: 300;
}

.news-author-meta .pr-news-more a em {
    color: #152a3f;
}

.news-author-meta .pr-news-more a:after {
    left: 0;
    bottom: 0;
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    background-color: #df1e3b;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
}

.equalHeight .owl-stage {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.equalHeight .owl-stage .item {
    height: 100%;
    flex-wrap: wrap
}

.latestnews .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 1;
    /* max-width: 69px;
    margin-left: 20px; */
}

.latestnews .owl-nav .owl-prev {
    position: absolute;
    left: -5%;
    font-family: flaticon;
    font-size: 20px;
}

.latestnews .owl-nav .owl-next {
    position: absolute;
    right: -5%;
    font-family: flaticon;
    font-size: 20px;
}

.innerBanner {
    background: #152a3f;
    padding: 100px 0 0;
    position: relative;
    background-position: center;
    background-size: cover;
    z-index: 99;
    height: 70%;
    width: 100%;
}

.innerBanner:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    /* background-image: linear-gradient(to bottom,rgb(6 7 10),rgb(0 0 0 / 75%),rgb(26 26 27/0%)); */
    z-index: -1;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0/37%), rgb(26 26 27/0%));
}

.innerBanner:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 40%;
    /* background: #152a3f; */
    z-index: 1;
    background: linear-gradient(178deg, #00010a00, #00000000, #0f0f0f, #030303);
    display: flex;
    align-items: flex;
    align-items: center;
    padding-top: 10%;
    z-index: -1;
}

.innerOverlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.innerBanner .bannerheading {
    width: 80%;
    position: relative;
    margin: 0 auto;
    padding: 150px 0px 100px 0px;
    /* padding-top: 140px; */
}

.innerBanner h1 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    line-height: 48px;
    text-shadow: 2px 2px #0a0a0a;
}

.twocolStyle {
    background: #152a3f;
    position: relative;
    padding: 50px 0px;
    z-index: 9;
}

.twocolStyle .testelement02 {
    position: absolute;
    top: 10%;
    left: -2%;
    bottom: unset;
    z-index: 99;
}

.singletext-fw p {
    color: #e7e7e7;
    font-size: 16px;
}

.singletext-fw p a {
    color: #E31E33;
}

.startupecosytem {
    background: #152a3f;
    position: relative;
    padding: 50px 0px;
}

.superstartwrap {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.superstartwrap figure img {
    border-radius: 20px;
}

.superstartwrap p strong {
    color: #FFE075;
}

.startupStats-time {
    position: relative;
}

.startupStats-time ul {
    margin: 0;
    padding: 0;
}

.startupStats-time ul li {
    list-style: none;
    margin: 0px 0px;
    color: #e7e7e7;
    position: relative;
    padding-bottom: 30px;
    padding-left: 50px;
    display: flex;
    align-items: center;
}

.startupStats-time ul li p {
    font-size: 18px;
    margin: 0;
    vertical-align: middle;
    height: 100%;
}

.startupStats-time ul li span {
    font-size: 30px;
    color: #FFE075;
    font-family: 'Russo One', sans-serif;
    margin: 0 5px 0px 5px;
    border-bottom: dotted 1px #fff;
    text-align: center;
}

.text-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 100%;
}

.text-marker:before {
    /*background: #E31E33;
    */
    border: 3px solid transparent;
    border-radius: 100%;
    font: 14px/1 FontAwesome;
    content: "\f058";
    color: #767676;
    display: block;
    font-size: 30px;
    /*height: 40px;
    */
    position: absolute;
    top: 4px;
    left: -10px;
    /*width: 40px;
    */
    transition: background .3s ease-in-out, border .3s ease-in-out;
    -webkit-transition: background .3s ease-in-out, border .3s ease-in-out;
    -moz-transition: background .3s ease-in-out, border .3s ease-in-out;
    -ms-transition: background .3s ease-in-out, border .3s ease-in-out;
    -o-transition: background .3s ease-in-out, border .3s ease-in-out;
}

/* .text-marker:after {
    content: "";
    width: 2px;
    background: #E31E33;
    display: block;
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 6px;
    height: 100%;
} */

.africaRocks {
    position: relative;
    padding: 50px 0px;
    z-index: 9;
}

.rocks_logos {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0px;
}

.rocks_logos li {
    padding: 10px;
    width: 14.2%;
}

.rocks_logos .CGMFigure {
    margin: 0;
    padding: 10px;
    text-align: center;
    background: #FFF;
    box-shadow: 0px 0px 14px -10px #222222c4;
    border-radius: 10px;
    height: 150px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.CGMFigure h5 {
    font-size: 16px !important;
    color: #df1e3b;
    padding-top: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.statsWraper {
    position: relative;
    background: #EFF0F0;
    padding: 40px 0px;
    padding-bottom: 150px;
    margin-bottom: 80px;
}

.statsWraper .elementlinebeat {
    position: absolute;
    bottom: -38%;
    top: unset;
    left: 0;
    background-size: cover !important;
    background-position: center right;
    background-repeat: no-repeat;
    width: 100%;
    height: 85%;
    z-index: 9;
}

.statsItem {
    display: table-cell;
    flex: 0 1 calc(20.0% - 0px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.statsItem h2 {
    font-size: 40px;
    text-align: center;
    color: #fff;
}

.statsItem p {
    color: #e7e7e7;
    text-align: center;
}

.showmobile {
    display: none;
}

.col4box {
    position: relative;
    padding: 100px 0px;
    z-index: 9;
}

.col4box .red-pattern01 {
    top: -50%;
}

.col4box-item {
    border: #000 solid 2px;
    position: relative;
    border-radius: 40px 0px 40px 40px;
    padding: 30px 20px;
    height: 100%;
    -webkit-border-radius: 40px 0px 40px 40px;
    -moz-border-radius: 40px 0px 40px 40px;
    -ms-border-radius: 40px 0px 40px 40px;
    -o-border-radius: 40px 0px 40px 40px;
}

.col4box-item img {
    width: 30%;
    margin-bottom: 20px;
}

.col4box-item h2 {
    font-size: 20px;
    padding-bottom: 20px;
}

.col4box-item p {
    color: #4a4a4a;
    margin: 0;
}

.leftRightContent {
    padding: 50px 0px;
    position: relative;
    z-index: 99;
}

.leftRightContent figure {
    position: relative;
}

.leftRightContent figure img {
    border-radius: 30px 30px;
    -webkit-border-radius: 30px 30px;
    -moz-border-radius: 30px 30px;
    -ms-border-radius: 30px 30px;
    -o-border-radius: 30px 30px;
}

.leftRightContent p {
    color: #4a4a4a;
}

.contentRGLT {
    padding: 0px 0px;
    display: flex;
    align-items: flex-start;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.contentRGLT h2 {
    padding-bottom: 10px;
    font-size: 45px;
}
.our_vibrant {
    background-image: url(https://design.myworldofexpo.com/themes/TBIS_2/Contents/Theme-2024/images/Vibrant-11_03.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.our_vibrant:before {
    content: '';
    position: absolute;
    background: #000000a8;
    height: 100%;
    width: 100%;
    top: 0;
}
.section-title {
    margin-bottom: 40px;
}
.section-title h1 {
    font-size: 65px;
    margin-bottom: 0;
    cursor: none;
}

.contentRGLT p {
    padding-bottom: 18px;
}

.mediapartners .sectionTitle h2.withoutbefore:before {
    display: none;
}

.internaltest {
    z-index: 99;
}

.internaltest .red-pattern02 {
    position: absolute;
    top: unset;
    bottom: -30%;
}

.internaltest .testimonialSlider figure {
    width: unset;
    height: unset;
}

.internaltest .testimonial-Content p.testText {
    font-size: 18px;
    line-height: 29px;
    font-weight: 800;
    color: #152a3f;
}

.internaltest .testimonial-Content {
    justify-content: flex-start;
}

.internaltest .testimonial-Content p.TestiCompany {
    padding-top: 0;
}

.internaltest .testimonial-Content img {
    width: 200px;
}

.internaltest .testimonialSlider {
    padding-left: 5%;
    z-index: 99;
}

.testimonialSlider .owl-nav {
    position: absolute;
    right: 3%;
    bottom: 25%;
    width: 100%;
    z-index: 1;
    max-width: 69px;
    margin-left: 20px;
}

.testimonialSlider .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    font-family: flaticon;
    font-size: 20px;
}

.testimonialSlider .owl-nav .owl-next {
    position: absolute;
    right: -12px;
    font-family: flaticon;
    font-size: 20px;
}

.supporters-partners {
    position: relative;
    padding: 50px 0px;
}

.institutionalPArtner-inner {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.mediaPartner-inner {
    position: relative;
    padding: 50px 0px;
    background-color: #EFF0F0;
}

.mediaPartner-inner .col-6.col-sm-3.col-md-3.col-lg-2.mb-3 {
    width: 14% !important;
    margin: 20px 0;
}

.mediaPartner-inner .sectionTitle {
    padding-bottom: 30px;
}

.mediapartner02 {
    border: 2px solid #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fff;
    box-shadow: -1px 6px 13px 0 #0c0c0c21;
    cursor: pointer;
    min-height: 100px;
}

.mediapartner02:hover {
    border: 2px solid #df1e3b;
}

.mediapartner02 figure {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.communityPartner-inner {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.communityPartner-inner .col-6.col-sm-3.col-md-3.col-lg-2.mb-3 {
    width: 14% !important;
    margin: 20px 0;
}

.logoStyle01 {
    width: 14% !important;
    margin: 20px 0;
}

.logoStyle02 {
    width: 20% !important;
    margin: 20px 20px;
}

.partnersBoard {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.partnersBoard .red-pattern02 {
    position: absolute;
    top: -49%;
    left: -31%;
    z-index: -1;
    width: 38%;
    height: 100%;
}

.partnerLogoWrap {
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    border-bottom: 2px dotted #cdcbcb;
    padding-bottom: 10px;
}

.logoborderbtm {
    border-bottom: 2px dotted #cdcbcb;
}

.sponsorslogoTitle {
    text-transform: uppercase;
    font-size: 10px;
    padding: 5px 0 10px;
    line-height: 14px;
    background: 0 0;
    text-align: center;
    color: #152a3f;
    font-weight: 600;
    min-height: 44px;
    font-family: 'Montserrat', sans-serif;
}

.sponsors2022Logonew figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
}

.sponosrsLogoItem figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
}

.planvisitBoard {
    position: relative;
    padding: 50px 0px;
    padding-top: 200px;
}

.planvisitBoard .elementlinebeat {
    position: absolute;
    top: -5%;
    left: 0;
    background-size: cover !important;
    background-position: center right;
    background-repeat: no-repeat;
    width: 100%;
    height: 16%;
    z-index: 9;
}

.planvisitITem {
    position: relative;
    padding: 0px 0px;
    padding-bottom: 0;
    border: #000 solid 1px;
    border-radius: 40px 0px 40px 40px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    /*align-items: flex-start;
    */
    justify-content: space-between;
    z-index: 99;
    -webkit-border-radius: 40px 0px 40px 40px;
    -moz-border-radius: 40px 0px 40px 40px;
    -ms-border-radius: 40px 0px 40px 40px;
    -o-border-radius: 40px 0px 40px 40px;
}

.visititemtop {
    padding: 10px 15px;
}

.visititemtop figure {
    height: 180px;
    width: 100%;
    margin: 0;
}

.visititemtop figure img {
    width: 100%;
    height: 100%;
    /*max-width: 100%;
    min-height: 100%;
    */
    object-fit: cover;
    border-radius: 40px 0px 0px 0px;
    -webkit-border-radius: 40px 0px 0px 0px;
    -moz-border-radius: 40px 0px 0px 0px;
    -ms-border-radius: 40px 0px 0px 0px;
    -o-border-radius: 40px 0px 0px 0px;
}

.visititemtop h2 {
    font-size: 19px;
    padding-top: 20px;
}

.visititemtop p {
    font-size: 14px;
    margin: 0;
    padding-bottom: 20px;
    color: #4a4a4a;
}

.visititembottom {
    background-color: #152a3f;
    border-radius: 0px 0px 40px 40px;
    -webkit-border-radius: 0px 0px 40px 40px;
    -moz-border-radius: 0px 0px 40px 40px;
    -ms-border-radius: 0px 0px 40px 40px;
    -o-border-radius: 0px 0px 40px 40px;
}

a.vistilinkbar {
    background-color: #152a3f;
    border-radius: 0px 0px 40px 40px;
    width: 100%;
    padding: 10px 20px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-right: 30px;
    font-size: 14px;
    height: 80px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-border-radius: 0px 0px 40px 40px;
    -moz-border-radius: 0px 0px 40px 40px;
    -ms-border-radius: 0px 0px 40px 40px;
    -o-border-radius: 0px 0px 40px 40px;
}

.planvisitITem:hover a.vistilinkbar {
    background-color: #E31E33;
}

.modalContentBox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
}

.commonModal .modal-content {
    border: 8px solid #aaa8a787;
    overflow: auto;
    background: #fff;
    border-radius: 5px;
    height: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.commonModal .close {
    padding: 10px 10px;
    margin: 0;
    position: absolute;
    right: 0;
    color: #df1e3b;
    font-size: 20px;
    /* background: #efefef; */
    opacity: .8;
    z-index: 999;
    outline: none;
    box-shadow: unset !important;
    border: none;
    top: 0
}

.commonModal .close .modalIndex {
    z-index: 9999;
}

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

ul.PopupContactList li {
    display: block;
    margin: 0px 0 6px 0;
    font-size: 16px;
}

ul.PopupContactList li a {
    color: #df1e3b;
}

.travelpopup {
    align-items: start;
}

.imgwhite {
    -webkit-filter: brightness(0) invert(1);
    --filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.hotelListWrap {
    padding: 50px 0px;
    position: relative;
    z-index: 99;
}

.hotelListWrap .sectionTitle {
    width: 100%;
}

.hotelListWrap .sectionTitle h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

p.hotellistpar {
    font-size: 18px;
    color: #152a3f;
}

p.hotellistpar strong {
    font-weight: 600;
}

.flightAfricaTable {
    margin: 0 auto;
    padding: 30px 0px;
    text-align: center;
    position: relative;
}

.flightAfricaTable.allhotelslist {
    padding: 30px 0px;
    z-index: 99;
}

.flightAfricaTable table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: auto;
}

.flightAfricaTable td,
.flightAfricaTable th {
    border-right: 1px solid #E8E8E8;
    empty-cells: show;
    padding: 10px;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    font-size: 14px;
}

.flightAfricaTable th {
    font-weight: normal;
    padding: 0;
    border-top: 0px solid #E8E8E8;
    border-bottom: 0px solid #E8E8E8;
}

.flightAfricaTable .product,
.flightAfricaTable .tl {
    color: #FFF;
    padding: 10px;
    font-size: 14px;
}

.flightAfricaTable .product {
    background: #0098A4;
    height: 40px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.4px;
    width: 22%;
    text-align: center;
}

.flightAfricaTable.allhotelslist tr th:first-child {
    width: 36%;
}

.flightAfricaTable.allhotelslist tr th:nth-child(2) {
    width: 15%;
}

.tablewidthrow tr th:first-child {
    width: 55% !important;
}

.tablewidthrow tr th:nth-child(2) {
    width: 10% !important;
}

.tablewidthrow .product {
    width: 35% !important;
}

.flightAfricaTable table tbody {
    box-shadow: -1px 6px 8px 0 #0c0c0c8c;
    border: 1px solid #E8E8E8;
}

.flightAfricaTable.allhotelslist tbody tr:nth-child(odd) {
    display: table-row;
    background: #f6f6f6;
}

.hotelListItem01 {
    position: relative;
    padding: 10px 10px;
    border: #dedddd solid 1px;
    background: #fff;
    border-radius: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.hotelListItem01 figure {
    position: relative;
}

.hotelListItem01 h2 {
    font-size: 16px;
    /* color: #0098A4; */
    text-align: center;
}

.hotelListItem01 ul {
    margin: 0;
    padding: 0;
}

.hotelListItem01 li {
    list-style: none;
    margin: 10px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
}

.hotelListItem01 a {
    color: #df1e3b !important;
}

.hotelListItem01 li span .fa {
    font-size: 20px;
    margin-right: 15px;
    color: #152a3f;
}

.stroke-transparent {
    -webkit-text-stroke: 1px #000 !important;
    -webkit-text-fill-color: transparent;
}

.fellowInvestors {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.stageinvst10 {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.gettingMorocco {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.gettingMorocco figure {
    margin: 0;
}

.gettingflightsWrap {
    padding: 40px 40px;
    position: relative;
}

.flightsDEtBtn {
    position: relative;
    margin: 30px 0px;
}

.flightsDEtBtn a {
    padding: 20px 20px;
    padding-left: 15px;
    background: #152a3f;
    color: #fff;
    display: block;
    padding-right: 35px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.flightsDEtBtn a:hover {
    background: #152a3f;
}

a.redlinkbtn {
    background-color: #E31E33;
}

a.greenlinkbtn {
    background-color: #0098A4;
}

.flightsDEtBtn a:before {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    content: '\e93a';
    font-family: 'icomoon' !important;
    text-transform: none;
    line-height: 1;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    transform: rotate(0.003deg);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    -webkit-transform: rotate(0.003deg);
    -moz-transform: rotate(0.003deg);
    -ms-transform: rotate(0.003deg);
    -o-transform: rotate(0.003deg);
}

.hotelsMarrakech {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
    background: #EFF0F0;
}

.starhotelsITem {
    margin-top: 0;
    border: #000 solid 1px;
    position: relative;
    border-radius: 45px 0px 40px 40px;
    padding: 0px 0px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-border-radius: 45px 0px 40px 40px;
    -moz-border-radius: 45px 0px 40px 40px;
    -ms-border-radius: 45px 0px 40px 40px;
    -o-border-radius: 45px 0px 40px 40px;
}

.starhotelsITem h2 {
    font-size: 18px;
    padding: 0px 10px;
    padding-bottom: 10px;
    text-align: center;
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
}

.starhotelsITem figure img {
    border-radius: 42px 0px 0px 0px;
    /*border: #000 solid 1px;
     */
    -webkit-border-radius: 42px 0px 0px 0px;
    -moz-border-radius: 42px 0px 0px 0px;
    -ms-border-radius: 42px 0px 0px 0px;
    -o-border-radius: 42px 0px 0px 0px;
}

.starhotelsITem a {
    background-color: #E31E33;
    border-radius: 0px 0px 40px 40px;
    width: 100%;
    padding: 20px 10px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    /*padding-right: 30px;
    */
    font-size: 15px;
    /*height: 80px;
    */
    font-weight: 600;
    text-transform: uppercase;
    -webkit-border-radius: 0px 0px 40px 40px;
    -moz-border-radius: 0px 0px 40px 40px;
    -ms-border-radius: 0px 0px 40px 40px;
    -o-border-radius: 0px 0px 40px 40px;
}

.starhotelsITem a:hover {
    background-color: #152a3f;
}

.starsRating {
    display: block;
    padding-bottom: 20px;
}

.staractive {
    color: #ffa600 !important;
}

.starsRating .fa {
    font-size: 19px;
    color: #cfcfcf;
}

.otherttravel03 {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.travelothertab .accordion-button i,
.travelothertab .accordion-button em {
    background: #152a3f;
    width: 50px;
    height: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 20px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.travelothertab .accordion-button {
    outline: unset;
}

.travelothertab .accordion-button:focus {
    border-color: unset;
    outline: unset;
    box-shadow: unset
}

.travelothertab .accordion-button:not(.collapsed) {
    background-color: #f0f0f0;
    color: #171616;
    border: none;
    border-right: #dee2e6 1px solid;
    border-left: #dee2e6 1px solid;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.travelothertab .accordion-button:not(.collapsed) i {
    background: #E31E33;
}

.travelothertab .accordion-body a {
    color: #E31E33;
    font-weight: 600;
}

.travelothertab .accordion-body {
    padding: 30px 20px;
}

.travelothertab .accordion-body p {
    font-size: 15px;
    color: #4a4a4a;
}

.accordion-body h4 {
    font-size: 18px;
    color: #0098A4;
}

.mobileAppItem {
    border-bottom: #f9f3f3 solid 1px;
    padding: 5px 10px 5px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.appLogovenue {
    display: flex;
    width: 10%;
    margin-right: 10px;
}

.travelpopup figure {
    width: 300px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.appLogovenue figure img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.appsContentright {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.appsContentright h2 {
    text-align: left !important;
    margin: unset;
    padding: 5px 0px;
    color: #df1e3b !important;
    font-size: 17px;
}

.travelpopup p {
    text-align: left !important;
    width: 100%;
    flex-direction: column;
    line-height: 26px;
    margin-bottom: 5px !important;
    font-size: 15px !important;
    color: #4a4a4a;
}

.travelpopup .listStyle li {
    font-size: 15px !important;
}

.appbtnstyle {
    /* margin-top: 5px; */
    display: block;
    width: 100%;
}

.appbtnstyle a {
    width: 10%;
    display: inline-block;
}

.travelpopup a {
    color: #df1e3b;
}

.travelpopup a img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.numberinfoTag p {
    text-align: left !important;
    width: 100%;
    flex-direction: column;
    line-height: 26px;
    margin-bottom: 5px;
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

.tophiglightwrap {
    margin: -3% auto 0;
    position: relative;
    z-index: 99;
    text-align: center;
    margin-bottom: 30px;
}

.airportshortinfo .innwebannertagline {
    width: 80% !Important;
    margin: 0 auto;
    padding: 20px 30px;
    background: #d9d9d9;
    width: auto;
    box-shadow: 1px 3px 11px 0 #0c0c0c87;
    text-align: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.airportshortinfo h2 {
    color: #fff;
    font-size: 25px;
    font-family: nunito, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.airportshortinfo h3 {
    padding-top: 25px;
}

.airportshortinfo h3 a {
    font-size: 30px;
    color: #ffbb1a;
    font-family: nunito, sans-serif;
}

.airportshortinfo h2 span .fa {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.airportshortinfo h2 span .fa.stroke-transparent {
    -webkit-text-stroke: 1px #fff !important;
    -webkit-text-fill-color: transparent;
}

.listStyle {
    margin: 0;
    padding: 0;
}

.listStyle li {
    position: relative;
    list-style: none;
    padding: 5px 0 5px 20px;
    font-size: 16px;
    margin: 0;
    line-height: 21px;
    color: #000 !important;
}

.listStyle li:before {
    position: absolute;
    top: 8px;
    left: 0;
    font: 14px/1 FontAwesome;
    content: "\f192";
    color: #df1e3b;
}

.flightAfricaTable {
    margin: 0 auto;
    padding: 30px 0px;
    text-align: center;
    position: relative;
}

.flightAfricaTable table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: auto;
}

.flightAfricaTable table tbody {
    box-shadow: -1px 6px 8px 0 #0c0c0c8c;
}

.flightAfricaTable td,
.flightAfricaTable th {
    border-right: 1px solid #E8E8E8;
    empty-cells: show;
    padding: 10px;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.flightAfricaTable td {
    font-size: 15px;
    text-align: center;
    padding: 20px 20px;
}

.flightAfricaTable tbody tr:nth-child(odd) {
    display: none;
}

.flightAfricaTable .compare-row {
    background: #ffffff;
}

.flightAfricaTable th {
    font-weight: normal;
    padding: 0;
    border-top: 0px solid #E8E8E8;
    border-bottom: 0px solid #E8E8E8;
}

.flightAfricaTable tr td:first-child {
    text-align: left;
    padding: 15px;
    border-left: 1px solid #1898a2;
    border-top: 1px solid #1898a2;
    background: #1898a2;
    color: #fff;
    border-bottom: #15434675 solid 1px;
    border-right: 1px solid #1898a2;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.flightAfricaTable .product,
.flightAfricaTable .tl {
    color: #FFF;
    padding: 10px;
    font-size: 14px;
}

.flightAfricaTable .tl2 {
    border-right: 0;
}

.flightAfricaTable .product {
    background: #1898a2;
    height: 40px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.4px;
    width: 22%;
}

.flightAfricaTable .price-info {
    padding: 15px;
}

.flightAfricaTable .price-now,
.flightAfricaTable .price-now span {
    color: #808080;
}

.flightAfricaTable .price-now span {
    font-size: 36px;
    color: #545454;
}

.flightAfricaTable .price-now p {
    font-size: 14px;
    text-align: center;
    line-height: 16px;
    display: inline;
}

.flightAfricaTable .price-buy {
    background: #EC671A;
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 5px 0 10px 0;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.flightAfricaTable .price-buy:hover {
    background: #E84D00;
}

@media screen and (min-width: 721px) and (max-width: 1000px) {
    .table_ul li {
        letter-spacing: 0px;
    }

    .flightAfricaTable .price-now span {
        font-size: 32px;
    }

    .flightAfricaTable .price-now p {
        display: block;
    }
}

@media screen and (max-width: 720px) {
    .table_ul {
        padding: 0px;
    }

    .table_ul li {
        font-size: 10px;
        line-height: 16px;
        padding: 3px 0;
    }

    .flightAfricaTable {
        max-width: 100%;
    }

    .flightAfricaTable td:first-child,
    .flightAfricaTable th:first-child {
        display: none;
    }

    .flightAfricaTable tbody tr:nth-child(odd) {
        display: table-row;
        background: #F7F7F7;
    }

    .flightAfricaTable .row {
        background: #FFF;
    }

    .flightAfricaTable td,
    .flightAfricaTable th {
        border: 1px solid #CCC;
        border-top: none;
        padding: 10px;
    }

    .price-info {
        border-top: 0 !important;
        padding: 10px 0 !important;
    }

    .price-info p {
        line-height: 8px;
        font-size: 8px !important;
    }

    .flightAfricaTable .compare-row {
        background: #ffffff;
    }

    .flightAfricaTable .price-now p {
        display: block;
    }

    .flightAfricaTable .price-now span {
        font-size: 24px;
    }

    .flightAfricaTable .qbse {
        font-size: 1.2em;
    }

    .flightAfricaTable td {
        font-size: 14px;
    }

    .flightAfricaTable th {
        font-size: 14px;
    }

    .flightAfricaTable .product {
        background: #1898a2;
        height: 40px;
        font-size: 8px;
        width: 16%;
    }
}


.gettingGFStyle {
    position: relative;
    padding: 50px 0px;
    background-color: #EFF0F0;
    z-index: 99;
}

.africamarketInner {
    padding: 30px 40px;
}

.africamarketItem {
    background: #152a3f;
    padding: 30px 20px;
    height: 100%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    min-height: 200px;
}

.usefulinfoITems .africamarketItem {
    background: unset;
    background-image: linear-gradient(to right, rgb(0 0 0), rgb(0 0 0 / 60%), rgb(0 0 0 / 81%));
    border: #f3f3f3 solid 3px;
    min-height: 350px;
}

.africamarketItem h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.usefulinfoITems .africamarketItem h2 {
    font-size: 21px;
    padding-bottom: 20px;
}

.africamarketItem p {
    letter-spacing: 0.6px;
    font-size: 14px;
    color: #fff;
    line-height: 22px;
}

.usefulinfoITems .africamarketItem a {
    color: #1898a2;
}

.imageStylehover {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.imageStylehover {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.imageStylehover figure {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 350px;
    margin: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.imageStylehover h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #df1e3b;
    color: #fff;
    padding: 10px 10px;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    font-family: nunito, sans-serif;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.imageStylehover h2:before {
    position: absolute;
    top: 0;
    right: 0;
    font: normal normal normal 14px/1 FontAwesome;
    content: '\f178';
    width: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.imageStylehover:hover h2 {
    text-align: left;
}

.imageStylehover:hover h2:before {
    opacity: 1
}

.imageStylehover:hover figure {
    filter: grayscale(100%);
    transform: scale(1.1);
    -webkit-filter: grayscale(100%);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.travelpopup22 h2 {
    font-size: 30px;
    padding-bottom: 30px;
    color: #0098A4;
    text-transform: uppercase;
}

.travelpopup22 p {
    color: #152a3f;
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.travelpopup22 p a {
    color: #E31E33;
}

.travelpopup22 figure {
    width: 300px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.africamarketWrap {
    position: relative;
    z-index: 99;
}

.super-categories {
    position: relative;
    padding: 50px 0px;
    /* z-index: 99; */
}

.super-categories .testelement02 {
    position: absolute;
    bottom: 20%;
    left: -2%;
    z-index: 99;
}

.super-categories .testelement01 {
    position: absolute;
    top: 50%;
    right: 0;
}

.novafetures-Item {
    position: relative;
    padding: 30px 20px;
    border-radius: 20px;
    border: #fff solid 1px;
    height: 100%;
    /*background: #0098A4;
    */
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 99;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.novafetures-Item.colorblock-1 {
    background: #0098a4ad;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0/37%), rgb(26 26 27/0%));
}

.novafetures-Item.colorblock-2 {
    background: #e31e33b8;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0/37%), rgb(26 26 27/0%));
}

.novafetures-Item.colorblock-3 {
    background: #055d3182;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0/37%), rgb(26 26 27/0%));
}

.novafetures-Item h2 {
    color: #fff;
    font-size: 21px;
    /* height: 80px; */
    line-height: 25px;
    padding-bottom: 30px;
    min-height: 80px;
}

.novafetures-Item p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.faqwrap {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.speakerWraper {
    position: relative;
    padding: 50px 0px;
}

.prizedistr {
    position: relative;
    padding: 50px 0px;
    background: #EFF0F0;
    z-index: 99;
}

.prizedistr .red-pattern02 {
    position: absolute;
    top: 4;
    right: -30%;
    left: unset;
    z-index: -1;
    width: 44%;
    height: 59%;
}

.prizedistr-item {
    margin-top: 0;
    border: #000 solid 1px;
    position: relative;
    border-radius: 40px 0px 40px 40px;
    padding: 10px 10px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    /*justify-content: space-between;
     */
    -webkit-border-radius: 40px 0px 40px 40px;
    -moz-border-radius: 40px 0px 40px 40px;
    -ms-border-radius: 40px 0px 40px 40px;
    -o-border-radius: 40px 0px 40px 40px;
}

.prizedistr-item figure {
    margin: 0 0px 20px 0px;
}

.prizedistr-item figure img {
    border-radius: 40px 0px 5px 5px;
    -webkit-border-radius: 40px 0px 5px 5px;
    -moz-border-radius: 40px 0px 5px 5px;
    -ms-border-radius: 40px 0px 5px 5px;
    -o-border-radius: 40px 0px 5px 5px;
}

.prizedistr-item h2 {
    font-size: 18px;
    padding-bottom: 20px;
}

.prizedistr-item p {
    font-size: 16px;
    padding-bottom: 20px;
    margin: 0;
    color: #4a4a4a;
}

.testimonialstyle03 {
    position: relative;
    padding: 50px 0px;
    background: #EFF0F0;
    padding-bottom: 140px;
}

.testimonialstyle03 .elementlinebeat {
    position: absolute;
    bottom: -11%;
    top: unset;
    left: 0;
    background-size: cover !important;
    background-position: center right;
    background-repeat: no-repeat;
    width: 100%;
    height: 45%;
    z-index: 99;
}

.single_testimonials_2 {
    text-align: center;
    position: relative;
    z-index: 2;
    /*height: 100%;
    */
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;
    */
    /*border: #E31E33 solid 1px;
    */
    width: 90%;
    /*background: #fff;
    */
    border-top: 0 solid;
    border-right: 0 solid;
    border: 3px solid #0098A4;
    -webkit-border-radius: 0 10px 200px/0 200px 14px 250px;
    border-radius: 0 10px 200px/0 200px 14px 250px;
    -moz-border-radius: 0 10px 200px/0 200px 14px 250px;
    -ms-border-radius: 0 10px 200px/0 200px 14px 250px;
    -o-border-radius: 0 10px 200px/0 200px 14px 250px;
}

.big_font3 .item .single_testimonials_2 {
    /* background-color: #fbfefd;
    position: relative;
    border: 1px solid #bdebe5; */
    padding: 25px;
    width: 100%;
}

.big_font3 .item .single_testimonials_2:before {
    background: url(../images/testi-pattern2.png?v=1) no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 72%;
    right: 0;
    opacity: 0.5;
    background-size: 50%;
}

.organiser_world2 .single_testimonials_2 span {
    font-size: 20px;
    line-height: 20px;
    color: #1898a2;
    font-weight: 800;
}

p.description {
    position: relative;
    padding-top: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    color: #152a3f;
    font-family: 'Exo 2', sans-serif;
}

.big_font3 .item .slider_content {
    text-align: center;
    padding: 0px;
}

.big_font3 .item .slider_content p {
    color: #152a3f;
}

.big_font3 .item .slider_content {
    text-align: center;
    padding: 20px;
}

.big_font3 p.description img {
    display: inline-block !important;
    max-width: 18px !important;
    margin-right: 10px;
}

.single_testimonials_2 span {
    font-size: 18px;
    line-height: 20px;
    color: #1898a2;
    font-weight: 600;
}

.big_font3 p.description::after {
    position: absolute;
    content: '';
    bottom: 2px;
    background: url(../images/quote-dobble2.png?v=1.4) no-repeat;
    width: 18px;
    background-size: 100%;
    padding-bottom: 50px;
    transform: rotate(180deg);
    margin-right: 0px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    margin-left: 10px;
}

.big_font3 .item .single_testimonials_2:after {
    background: url(../images/testi-pattern2.png?v=1) no-repeat;
    background-size: cover;
    background-size: 50%;
    content: "";
    position: absolute;
    top: 70%;
    right: 0 !important;
    bottom: 0;
    right: 0 !important;
    opacity: 0.3;
    z-index: 0;
    transform: rotate(180deg);
    left: 0;
    background-color: transparent !important;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.testimonial-carousel {
    z-index: 99;
}

.testimonial-carousel .owl-stage {
    display: flex;
    flex-wrap: wrap;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    right: 3%;
    bottom: 35%;
    width: 100%;
    z-index: 1;
    max-width: 69px;
    margin-left: 20px;
}

.testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    font-family: flaticon;
    font-size: 20px;
}

.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    right: -12px;
    font-family: flaticon;
    font-size: 20px;
}

.logo-details {
    align-items: start;
}

.logo-details h2 {
    font-size: 20px;
    padding: 0 0 20px;
    text-align: center;
    margin: 0 auto;
    font-weight: 600;
    text-transform: uppercase;
    color: #1898a2 !important;
}

.logo-details figure {
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    margin: 0;
    background: #fff;
    box-shadow: 1px 5px 4px 0 #0c0c0c2b;
    padding: 10px;
    margin-bottom: 20px;
}

.logo-details p {
    line-height: 22px;
    text-align: center;
    font-size: 14px;
}

.visit-incredible {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.visit-incredible .testelement02 {
    position: absolute;
    bottom: 0;
    left: -2%;
    z-index: 99;
}

.visit-incredible .col4box-item img {
    width: 35%;
    margin-bottom: 30px;
}

.visit-incredible .col4box-item {
    padding: 10px 10px 20px 20px;
}


.visittracks .newlabel {
    line-height: 25px;
    color: #152a3f;
    background: #FFE075;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 1px;
    transform: rotate(355deg);
    margin-bottom: 15px;
    margin-top: -20px;
    -webkit-transform: rotate(355deg);
    -moz-transform: rotate(355deg);
    -ms-transform: rotate(355deg);
    -o-transform: rotate(355deg);
}

.newsletterSec {
    position: relative;
    padding: 40px 0px;
    z-index: 99;
}

.testimonialWrap {
    position: relative;
    padding: 50px 0px;
    background: #152a3f;
}

.visittagline h4 {
    line-height: 40px;
}

.pitech-timeline {
    padding: 50px 0px;
    background: #EFF0F0;
    position: relative;
    z-index: 99;
}

.timeline-horzt {
    padding: 50px 0px 0px 0px;
}

.timelineItemOuter {
    position: relative;
    display: table-cell;
    width: 19%;
    padding: 0 0;
    vertical-align: top;
    margin-bottom: 20px;
    margin: 0 auto;
    position: relative;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    z-index: 999;
    text-align: center;
}

.timelineCircle {
    width: 160px;
    height: 160px;
    /*border: #E31E33 solid 2px;
    */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*margin: 0 10px;
    */
    /*-webkit-border-radius: 100%;
    */
    /*-moz-border-radius: 100%;
    border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;*/
    background: #dbdbdb;
    padding: 10px 10px;
    /*-webkit-border-radius: 100%;
    -moz-border-radius: 100%;*/
}

.timelineCircle:before {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    height: 50%;
    width: 25px;
    transform: skewX(15deg);
    margin-right: -8%;
    /*margin-top: 20px;
    */
    -ms-transform: skewX(15deg);
    -webkit-transform: skewX(15deg);
    -o-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    background: #E31E33;
    z-index: 9;
    -ms-transform: skewX(15deg);
}

.timelineCircle:after {
    content: " ";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50%;
    width: 25px;
    margin-right: -8%;
    margin-top: 20px;
    transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    -webkit-transform: skewX(-15deg);
    -o-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    background: #E31E33;
}

.timelineCircle p {
    font-weight: 800;
    color: #152a3f;
    margin: 0;
    font-size: 16px;
}

.timelineItemOuter h4 {
    padding: 10px 0px;
    font-size: 18px;
}

.quoteslideItem {
    width: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0px 0px 0px;
    padding-top: 80px;
}

.quoteOuter {
    width: 100%;
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.quotesInner {
    position: relative;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quotesInner p {
    background: #152a3f;
    padding: 30px 30px;
    color: #fff;
    width: 80%;
    font-size: 20px;
    padding-bottom: 60px;
    padding-right: 60px;
    position: relative;
    margin: 0;
    min-height: 200px;
}

.quotesInner p strong {
    font-weight: 600;
    color: #FFE075;
}

.blackoverlay {
    background: #152a3f;
    position: absolute;
    bottom: 0;
    height: 60px;
    width: 90%;
    left: 0;
}

.quotesInner p:before {
    content: "";
    position: absolute;
    top: -15%;
    left: -5%;
    width: 100%;
    height: 100%;
    background: transparent;
    border-bottom: 7px solid #E31E33;
    border-left: 7px solid #E31E33;
    box-sizing: border-box;
}

.quotesInner p:after {
    content: "";
    position: absolute;
    top: -15%;
    left: -30px;
    width: 100%;
    height: 100%;
    background: transparent;
    border-top: 7px solid #E31E33;
    border-right: 7px solid #E31E33;
    box-sizing: border-box;
    /* border-bottom: #000 solid 10px; */
}

.quotesInner .fa-quote-left {
    position: absolute;
    top: -34%;
    left: 10%;
    font-size: 60px;
    background: #EFF0F0;
    padding: 5px 10px 0 10px;
    color: #E31E33;
    z-index: 9;
}

.quotesInner .fa-quote-right {
    position: absolute;
    bottom: 4%;
    right: 18%;
    font-size: 50px;
    background: #152a3f;
    padding: 0px 10px;
    z-index: 9;
    padding-right: 20px;
    color: #E31E33;
}

.quotBtm {
    position: relative;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0px;
    margin: 0 auto;
}

.quotBtm:before {
    position: absolute;
    top: -20px;
    left: 20%;
    content: '';
    border-top: 60px solid #152a3f;
    border-left: 120px solid transparent;
}

.quotBtm figure {
    width: 180px;
    margin-bottom: 10px;
    background-color: #EFF0F0;
}

.quotBtm figure img {
    width: unset !important;
    max-width: 100%;
    transform-style: unset;
    -webkit-transform-style: unset;
    mix-blend-mode: multiply;
    filter: contrast(1);
    -webkit-filter: contrast(1);
}

.quotBtm h4 {
    background: #E31E33;
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    font-family: 'Exo 2', sans-serif;
}

.visitquote {
    position: relative;
    padding: 50px 0px 10px 0px;
    z-index: 99;
    background-color: #EFF0F0;
}


.visitquote .owl-nav {
    position: static;
    right: 11%;
    bottom: 25%;
    width: 100%;
    z-index: 1;
    max-width: 150px;
    /*margin-left: 20px;
    margin-right: 20px;*/
}

.visitquote .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    font-family: flaticon;
    font-size: 20px;
}

.visitquote .owl-nav .owl-next {
    position: absolute;
    right: -12px;
    font-family: flaticon;
    font-size: 20px;
}

.mediapartners .logoscrollStyle {
    z-index: 99;
}

.speakersInner {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.speakerItem01 {
    padding: 0px;
    text-align: center;
    z-index: 2;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    height: 100%;
    position: relative;
    margin: 0px !important;
    background: #152a3f;
}

.speakerItem01 figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    max-height: 400px;
}

.speakerItem01 figure img {
    width: 100%;
}

    .speakerItem01 figure:before {
        content: '';
        position: absolute;
      /*  bottom: -2px;*/
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(181deg, #0c0c0c33, #14141400, #00000021, #000000);
    }

.speakerItem01 .speakerInfo {
    position: relative;
    padding: 20px 20px;
}

    .speakerItem01 .speakerInfo h2 {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 22px;
        line-height: 30px;
        text-align: left;
    }

.speakerItem01 .speakerInfo p.speakDesg {
    margin: 0;
    padding: 5px 0px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
}

    .speakerItem01 .speakerInfo p.speakComapny {
        margin: 0;
        padding: 0;
        color: #fff;
        font-weight: 600;
        font-size: 25px;
        padding-bottom: 10px;
        text-align: left;
        line-height: 33px;
        color: #ffe076;
        text-transform: uppercase;
    }

.speakerpop {
    position: relative;
    padding: 0px 0px;
}

.speakerpop .modalContentBox,
.speakerpop .modal-body {
    padding: 0;
    width: 100%;
    display: block;
}

.PopupLeftSide {
    height: 100%;
    padding: 12px;
    background-color: #000 !important;
    padding: 50px 20px;
}

.PopupLeftSide figure {
    width: 100%;
    text-align: center;
    margin: 0 auto 16px;
    border: 5px solid #fff;
}

.SpeakersLeftInfo h2 {
    font-size: 16px;
    text-align: center;
    color: #fff;
}

.popdesignation {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.popcompanyName {
    font-size: 18px;
    color: #ffe076;
    text-align: center;
}

.popcountry {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.popclaimtofame {
    text-align: center;
}

.popclaimtofame p {
    font-size: 12px;
    font-style: italic;
}

.PopupRightSide {
    position: relative;
    padding: 50px 10px;
}

.PopupRightSide .section-title h2 {
    font-size: 20px;
    text-align: center;
}

.Sepeaker_Bio {
    padding: 0px 10px;
    padding-top: 30px;
}

.Sepeaker_Bio p {
    color: #4a4a4a;
    font-size: 13px;
}

.customSection {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.newsinnerSec {
    position: relative;
    padding: 40px 0 30px;
}

.newsThumb {
    z-index: 99;
    position: relative;
    padding: 50px 0px;
}

.new-detail {
    padding: 20px 0px;
    position: relative;
}

.new-detail h2 {
    text-align: center;
    padding: 30px 0px;
}

.new-detail p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    /* color: #e7e7e7; */
    color: #4a4a4a !important;
}

.new-detail figure {
    width: 80%;
    margin: 0 auto;
}

.exhibitintro {
    /* padding: 30px 0px 70px 0px; */
    z-index: 99;
    position: relative;
}

.exhibitintro p {
    color: #e7e7e7;
}

.z-index99 {
    z-index: 999;
}

.videoWraper {
    z-index: 99;
    position: relative;
    padding: 50px 0px;
}

.videoWraper .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -20px
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -20px;
}

.video_box {
    max-width: 100%;
    padding: 0 15px;
    position: relative;
}

.video_box .slider_img {
    position: relative;
}

.video_box .slider_img img {
    border-radius: 10px;
}

.video_text .row {
    align-items: center;
}

.video_text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 10px 10px;
    background: linear-gradient(0deg, #000000 50%, #00000000 101%);
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;
}

.video_text p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 1px 1px 8px #152a3f;
    margin-bottom: 0;
    line-height: 22px;
}

.video_text a {
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
    /* vertical-align: middle; */
    padding: 0px 0 0 3px;
    background-color: #df1e3b;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_text a .fa {
    font-size: 16px;
    color: #fff;
}

.heroSection {
    height: 100vh;
}

.exhibitTracks {
    position: relative;
    padding: 50px 0px;
    z-index: 999;
}

.exhibitTracks .novafetures-Item h2 {
    padding-bottom: 15px;
    min-height: auto;
}

.exhibitTracks .testelement02 {
    position: absolute;
    bottom: 30%;
}

.mfp-wrap {
    z-index: 99999 !important;
}

.aboutgfText {
    position: relative;
    z-index: 99;
    padding: 50px 0px;
}

.innerBanner .bannerheading {
    width: 80%;
    padding: 150px 0px 100px 0px;
}

.logoscrollStyle .swiper-marquee .swiper-slide>div {
    cursor: pointer;
}

.commonModal {
    z-index: 9999;
}

.splitlogo a {
    width: 49%;
    display: inline-block;
}

.faqsection {
    position: relative;
    padding: 50px 0;
    z-index: 999;
}


.fottershowlogo {
    position: relative;
    z-index: 99;
    padding: 20px 0px;
}

.sublogonewstyle {
    display: inline-flex;
    justify-content: center;
    align-items: start;
    margin: 0 auto;
    padding: 0;
}

.sublogonewstyle li {
    width: 20%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 10px;
    flex-direction: column;
    height: 100%;
    margin: 0px 10px;
}

.sublogonewstyle li h4 {
    font-size: 12px !important;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    height: 20px;
}

.sublogonewstyle li figure {
    text-align: center;
}

.logo150W {
    width: 80%;
}

.logo170W {
    width: 90%;
}

.logo160W {
    width: 80%;
}

.sublogonewstyle li.affilated {
    width: 45%;
}

@media only screen and (min-width:320px) and (max-width:768px) {
    .sublogonewstyle li.affilated {
        width: 100%;
    }

    .sublogonewstyle {
        display: block;
        height: auto;
    }

    .sublogonewstyle li {
        height: auto;
        display: inline-flex;
        width: 32%;
        margin: 0;
        justify-content: space-between;
        align-items: center;
    }

    .sublogonewstyle li h4 {
        font-size: 10px !important;
        margin-bottom: 0px;
        height: 30px;
    }

    .logo170W {
        width: 100%;
    }

    .logo160W {
        width: 100%;
    }

    .logo150W {
        width: 90%;
    }
}

.conferencesIntro {
    position: relative;
    padding: 50px 0px 80px 0px;
}

.conferencesIntro .uk-slideshow-items img {
    border-radius: 30px 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
    object-position: center;
}

.conferencesIntro p {
    font-size: 16px;
}

h4.confdateview {
    line-height: 25px;
    color: #000 !important;
    background: #FFE075;
    font-size: 20px;
    padding: 4px 15px;
    border-radius: 1px;
    transform: rotate(355deg);
    margin-bottom: 15px;
    margin-top: 0px;
    display: inline-block;
    font-weight: 800;
    -webkit-transform: rotate(355deg);
    -moz-transform: rotate(355deg);
    -ms-transform: rotate(355deg);
    -o-transform: rotate(355deg);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}

.keytopics-conf {
    position: relative;
    z-index: 99;
    padding: 50px 0px;
}

.topicOuter01 {
    text-align: center;
    margin: 20px 0;
    width: 19.9%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.topicInnerItem {
    height: 100%;
    border: 1px solid #000 !important;
    background-color: #ffffff !important;
    border-radius: 40px 0px 40px 40px;
    cursor: pointer;
    width: 100%;
    position: relative;
    transition: .25s ease-in-out;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
}

.topicOuter01 h2 {
    font-size: 20px;
    margin: 0;
    padding: 0;
    line-height: 30px;
}

.keytopics-agenda {
    position: relative;
    z-index: 99;
    padding: 50px 0px;
}

.keytopics-agenda .testelement02 {
    position: absolute;
    top: 40%;
    bottom: unset;
    left: -2%;
    z-index: 99;
}

.executiveTopics .topicOuter01 {
    width: 16.5%;
}

.executiveTopics .topicOuter01 h2 {
    font-size: 16px;
    line-height: 24px;
}

.topicsagenda {
    border: 1px solid #000 !important;
    /*background-color: #ffffff!important;
    */
    border-radius: 40px 0px 40px 40px;
    padding: 5px 5px 20px 5px;
    height: 100%;
    -webkit-border-radius: 40px 0px 40px 40px;
    -moz-border-radius: 40px 0px 40px 40px;
    -ms-border-radius: 40px 0px 40px 40px;
    -o-border-radius: 40px 0px 40px 40px;
}



.topicInerContent {
    padding: 5px 15px 20px 15px;
}

.topicsagenda figure {
    position: relative;
}

.topicsagenda figure img {
    border-radius: 40px 0px 0px 0px;
    -webkit-border-radius: 40px 0px 0px 0px;
    -moz-border-radius: 40px 0px 0px 0px;
    -ms-border-radius: 40px 0px 0px 0px;
    -o-border-radius: 40px 0px 0px 0px;
}

.topicsagenda h2 {
    font-size: 25px;
    padding: 50px 0px;
    text-align: center;
}

.topicsagenda .confdateview {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
}

.topicsagenda p strong {
    font-size: 16px;
    line-height: 20px;
}

.supportedBY {
    text-align: center;
    padding: 10px 0px;
}

.supportedBY p {
    font-weight: 600;
    font-size: 12px;
    margin: 0;
}

.supportedBY img {
    width: 80px;
}

.topicsagenda .listStyle li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.topicsagenda .listStyle li:before {
    color: #fff;
}

.keybgcolor h2,
.keybgcolor p,
.keybgcolor ul li {
    color: #fff !important;
}

.keybgcolor p strong {
    color: #FFE075;
}

.bgG01 {
    background: #e31e33c9;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0 / 73%), rgb(26 26 27/0%));
}

.bgG02 {
    background: #0098a4e0;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0 / 77%), rgb(26 26 27/0%));
}

.bgG03 {
    background: #055d31bf;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0 / 79%), rgb(0 0 0 / 0%));
}

.cybersupport-logo {
    position: relative;
    text-align: center;
    padding-bottom: 40px;
}

.cybersupport-logo figure {
    background: #fff;
    height: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cybersupport-logo figure img {
    width: 250px;
    max-width: 100%;
    max-height: 100%;
}

.cybersupport-logo figure p {
    color: #152a3f;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
}

h2.titlewithlogo {
    min-height: unset !important;
    padding: 0;
}

.healthechLogo {
    color: #fff;
    font-size: 11px;
    line-height: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    display: block;
    padding-top: 10px;
    padding-bottom: 20px;
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.healthechLogo img {
    filter: brightness(0) invert(1);
    width: 60%;
    margin-left: 0px;
    margin-top: 10px;
    -webkit-filter: brightness(0) invert(1);
}

img.ailogoBy {
    width: 100px !important;
    margin-left: 30px;
}


.innerBanner h4.confdateview {
    margin: 0 auto;
    text-align: center;
    transform: unset;
}

.aikeytopic .topicOuter01 {
    width: 15.9%;
}

.aikeytopic .topicOuter01 h2 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

.aikeytopic .topicInnerItem {
    padding: 40px 10px;
    border-radius: 0;
    justify-content: center;
}

.nationalagenda {
    color: #fff;
}

.nationalagenda h2 {
    padding-top: 5px;
    padding-bottom: 10px;
    color: #FFE075;
}

.nationalagenda li {
    color: #fff !important;
    padding-bottom: 20px;
}

.gatewayAfricaItem {
    padding: 5px 10px 5px 0px;
    margin-bottom: 10px;
}

.gatewayAfricaItem h2 {
    color: #FFE075;
    font-size: 22px;
    line-height: 19px;
    text-transform: uppercase;
}

.gatewayAfricaItem p {
    color: #fff;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.gatewaysfeatures3 {
    position: relative;
    padding: 50px 0px;
    background-color: #EFF0F0;
    z-index: 99;
}

.gatewayfeatureItem {
    height: 100%;
    position: relative;
    border: #000 solid 1px;
    border-radius: 40px;
    background: #e31e33ed;
    background-image: linear-gradient(to bottom, rgb(6 7 10), rgb(0 0 0/37%), rgb(26 26 27/0%));
}

.gatewayfeatureItem figure {
    height: 250px;
    width: 100%;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    border-radius: 40px 40px 0px 0px;
    -webkit-border-radius: 40px 40px 0px 0px;
    -moz-border-radius: 40px 40px 0px 0px;
    -ms-border-radius: 40px 40px 0px 0px;
    -o-border-radius: 40px 40px 0px 0px;
}

.gatewayfeatureContent {
    padding: 10px;
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 150px;
}

.borderfirstbox {
    position: relative;
    height: 100%;
}

.borderfirstbox:before {
    border-right: #b5b3b330 solid 1px;
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
}

.gatewayfeatureItem p {
    font-size: 14px;
    /* color: #fff; */
    text-align: center;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0.6px;
    color: #fff;
}

.gatewayfeatureItem ul {
    margin: 0px;
    padding: 0px;
}

.gatewayfeatureItem li {
    list-style: none;
    display: block;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

.moroccocultural {
    position: relative;
    padding: 50px 0px;
    z-index: 99;
}

.moroccocultural-item {
    margin-top: 0;
    border: #000 solid 1px;
    position: relative;
    border-radius: 40px 0px 40px 40px;
    padding: 10px 10px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    /*justify-content: space-between;
     */
    -webkit-border-radius: 40px 0px 40px 40px;
    -moz-border-radius: 40px 0px 40px 40px;
    -ms-border-radius: 40px 0px 40px 40px;
    -o-border-radius: 40px 0px 40px 40px;
}

.moroccocultural-item figure {
    margin: 0 0px 20px 0px;
    min-height: 150px;
    position: relative;
}

.moroccocultural-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 0px 0px 0px;
    -webkit-border-radius: 40px 0px 0px 0px;
    -moz-border-radius: 40px 0px 0px 0px;
    -ms-border-radius: 40px 0px 0px 0px;
    -o-border-radius: 40px 0px 0px 0px;
}

.moroccocultural-item h2 {
    font-size: 18px;
    padding-bottom: 20px;
    text-align: center;
}

.moroccocultural-item p {
    font-size: 16px;
    padding-bottom: 20px;
    margin: 0;
    color: #4a4a4a;
}

.speakerSlider .swiper-button-next:after,
.swiper-button-prev:after {
    color: #fff;
}

.conferenceArrow {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9993;
    margin: 0 auto;
    text-align: center;
    right: 0;
}

.conferenceArrow>div {
    display: flex;
    align-items: center;
}

.conferenceArrow a {
    font-size: 20px;
    color: #fff;
    padding: 0px 20px;
    display: flex;
    align-items: center;
}

.conferenceArrow a:hover {
    color: #ffe076;
}

.conferenceArrow .arrow {
    margin-right: 1rem;
    height: 0.1rem;
    width: 2.5rem;
    position: relative;
    background: #ff4754;
    transition: width 0.2s ease;
}

.conferenceArrow .arrow::before,
.conferenceArrow .arrow::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: #ff4754;
    height: 0.1rem;
    width: 0.6rem;
}

.conferenceArrow .arrow::before {
    transform: rotate(45deg);
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.conferenceArrow .arrow::after {
    transform: rotate(-45deg);
    transform-origin: right top;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.conferenceArrow>div:hover .arrow {
    width: 4rem;
}

.conferenceArrow .arrow.PrevArrow {
    transform: rotate(182deg);
    padding-left: 20px;
    -webkit-transform: rotate(182deg);
    -moz-transform: rotate(182deg);
    -ms-transform: rotate(182deg);
    -o-transform: rotate(182deg);
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .conferenceArrow {
        display: none;
    }
}

#Backdropone {
    z-index: 9999;
    background: #0a000078;
}

.onloadpopup {
    position: relative;
    padding: 40px 40px;
}

.onloadpopup:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/loadLeftelments.jpg);
    background-repeat: no-repeat;
    height: 100%;
    width: 25%;
    background-position: left;
}

.onloadpopup:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/loadrightelements1.jpg);
    background-repeat: no-repeat;
    height: 100%;
    height: 100%;
    width: 25%;
    background-position: right;
}

.onloadpopup .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 10px;
    /*background: #e9e9e9;
    */
    z-index: 999;
    opacity: unset;
    color: #fff;
    font-size: 25px;
    background-color: #e7e0e0;
    border-radius: 0px 0px 0px 10px;
    -webkit-border-radius: 0px 0px 0px 10px;
    -moz-border-radius: 0px 0px 0px 10px;
    -ms-border-radius: 0px 0px 0px 10px;
    -o-border-radius: 0px 0px 0px 10px;
}

.onloadpopup h2 {
    padding-bottom: 30px;
    background: linear-gradient(to right, #eb1b24 0%, #eb1b24 21%, #6b0b10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.onloadpopup .modal-body {
    text-align: center;
    padding: 0px 15%;
    z-index: 99;
    background: #fff6;
}

.onloadpopup .modal-body a.redOutline-btn:hover {
    color: #fff;
}

.margedpagehead .row .col-sm-6 {
    border: #f2eded7d solid 1px;
    padding: 10px 0px;
    background: #0000007d;
}

.margedpagehead .row .col-sm-12 {
    border: #f2eded7d solid 1px;
    border-top: 0;
    background: #0000007d;
}

.margedpagehead h2 {
    color: #fff;
    font-size: 17px;
    padding: 10px 0px;
    text-transform: uppercase;
}

.margedpagehead p {
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    /* height: 100%; */
    justify-content: center;
    font-weight: 600;
    margin: 0px;
    padding: 15px 0px;
    line-height: 25px;
}

.margedpagehead .innerBanner h4.confdateview {
    margin-bottom: 20px;
}

.summit10xBorder {
    border: #fff solid 1px;
    padding: 20px 20px;
    height: 100%;
    border-radius: 40px 40px;
    -webkit-border-radius: 40px 40px;
    -moz-border-radius: 40px 40px;
    -ms-border-radius: 40px 40px;
    -o-border-radius: 40px 40px;
}

.summit10x-agenda .topicInnerItem {
    padding: 40px 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.summit10x-agenda .topicInnerItem h2 {
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 10px;
}

.summit10x-agenda .topicOuter01 {
    width: 24.9%;
}

.summit10x-agenda {
    z-index: 999
}

.blacktopImage {
    height: 350px;
}

.newdivideBox {
    background: #152a3f;
    justify-content: flex-start;
    height: 100%;
}

.newdivideBox.bigtechLeft h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 26px;
}

.newdivideBox2 {
    background: #152a3f;
    justify-content: flex-start;
    height: 100%;
}

section.speakersInner.speakersInnerStyle_2 .speakerItem01 .speakerInfo h2.speakername {
    font-size: 16px;
}

section.speakersInner.speakersInnerStyle_2 .speakerItem01 .speakerInfo p.speakComapny {
    font-size: 20px;
}



/* end */

.heroSection {
    z-index: 999;
}

.video-bttomText {
    margin: 20px 0px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.videoInnterBtm {
    display: flex;
    align-items: center;
    width: 50%;
}

.newsslick-carousel {
    width: 50%;
    text-align: right;
}

.heroNEwsSlide {
    position: relative;
}

    .heroNEwsSlide p {
        font-size: 16px;
        line-height: 26px;
        font-weight: 600;
        margin: 0;
        color: #fff;
    }

        .heroNEwsSlide p a {
            border-bottom: #ffffff dotted 1px;
            padding-bottom: 5px;
            color: #c81c24;
        }

            .heroNEwsSlide p a:hover {
                color: #fff;
            }


.training-categories {
    position: relative;
    padding: 50px 0px;
    z-index: 999;
}

.trainingsBlocks {
    padding: 50px 0px;
    position: relative;
}

.trainingsItem {
    position: relative;
    padding: 10px 20px;
    border-radius: 20px;
    padding-bottom: 40px;
    border: #fff solid 1px;
    height: 100%;
    /* background: #0098A4; */
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    z-index: 99;
}

    .trainingsItem.colorblock-1 {
        background: #0098a4ad;
        background-image: linear-gradient(to bottom,rgb(6 7 10),rgb(0 0 0/37%),rgb(26 26 27/0%));
    }

    .trainingsItem.colorblock-2 {
        background: #e31e33b8;
        background-image: linear-gradient(to bottom,rgb(6 7 10),rgb(0 0 0/37%),rgb(26 26 27/0%));
    }

    .trainingsItem.colorblock-3 {
        background: #055d3182;
        background-image: linear-gradient(to bottom,rgb(6 7 10),rgb(0 0 0/37%),rgb(26 26 27/0%));
    }

.trainingsbxtop {
    padding: 10px 10px;
    text-align: center;
}

    .trainingsbxtop figure {
        height: 180px;
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }

        .trainingsbxtop figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 40px 0px 0px 0px;
            -webkit-border-radius: 40px 0px 0px 0px;
            -moz-border-radius: 40px 0px 0px 0px;
            -ms-border-radius: 40px 0px 0px 0px;
            -o-border-radius: 40px 0px 0px 0px;
        }

    .trainingsbxtop h2 {
        padding-top: 10px;
        padding-bottom: 20px;
        text-align: center;
        color: #fff;
        font-size: 20px;
        /* height: 80px; */
        line-height: 35px;
        text-transform: uppercase;
        /* letter-spacing: 1.3px; */
        text-transform: uppercase;
        font-weight: 800;
    }

        .trainingsbxtop h2 small {
            color: #fff;
            font-size: 16px;
            font-family: montserrat,sans-serif;
            font-weight: 300;
        }

    .trainingsbxtop p {
        text-align: center;
        display: inline-block;
        margin: 10px auto;
        width: auto;
        color: #000 !important;
        background: #FFE075;
        padding: 5px 20px;
        font-weight: 800;
        line-height: 15px;
        /* border-radius: 20px; */
        transform: rotate(357deg);
    }

.trainingsbxbottom {
    text-align: center;
    margin: 0 auto;
    /* background-color: #152a3f; */
    /* border-radius: 0px 0px 40px 40px;
            -webkit-border-radius: 0px 0px 40px 40px;
            -moz-border-radius: 0px 0px 40px 40px;
            -ms-border-radius: 0px 0px 40px 40px;
            -o-border-radius: 0px 0px 40px 40px; */
}

a.traininglinkbar {
    background-color: #fff;
    border-radius: 40px 40px 40px 40px;
    width: 100%;
    padding: 5px 25px 5px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #152a3f;
    /* padding-right: 30px; */
    font-size: 14px;
    /* height: 50px; */
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    transition: 1s all ease;
}

a:hover.traininglinkbar {
    background-color: #152a3f;
    color: #fff;
}

.trainingInnerPage {
    position: relative;
    padding: 0px 0px;
    z-index: 999;
}

.stats-marker {
    position: absolute;
    top: 15px;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 107%;
}


    .stats-marker:after {
        content: "";
        width: 2px;
        background: #eb1b24;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 6px;
        height: 95%;
    }

    .stats-marker:before {
        background: #eb1b24;
        border: 3px solid transparent;
        border-radius: 100%;
        content: "";
        display: block;
        height: 15px;
        position: absolute;
        top: -3px;
        left: 0;
        width: 15px;
        transition: background .3s ease-in-out, border .3s ease-in-out;
    }

.markerHeading {
    position: relative;
    padding: 0;
    padding-left: 30px;
    /* padding-top: 100px; */
    margin-bottom: 30px;
}

    .markerHeading .maintitle {
        background: #ffe075;
        display: inline-block;
        padding: 10px 30px;
    }

.markerInnerSpace {
    padding-left: 30px;
    padding-bottom: 50px;
}

.tariningMeta {
    position: relative;
    padding: 20px 20px;
    border: #000 solid 1px;
    height:100%;
}

    .tariningMeta h4 {
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        color: #545252;
        height: 50px;
    }

    .tariningMeta p {
        font-size: 18px;
        font-weight: 800;
        margin: 0;
        padding: 0;
    }

.stats-marker.markerouter:before {
    display: none;
}

.leaderItemOuter {
    padding-left: 20px;
}

    .leaderItemOuter figure {
        width: 300px;
        height: 300px;
        margin: 0 auto;
        position: relative;
        z-index: 9;
        padding: 30px 30px 30px 0;
        margin-bottom: 50px;
    }

        .leaderItemOuter figure .quoteimg {
            width: 40% !important;
            z-index: -1;
            position: absolute;
            top: -5%;
            left: -17%;
        }

            .leaderItemOuter figure .quoteimg img {
                filter: grayscale(0) !important;
                -webkit-filter: grayscale(0) !important;
            }

        .leaderItemOuter figure img {
            filter: grayscale(1);
            width: unset !important;
            -webkit-filter: grayscale(1);
        }

.leader-Content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
}

    .leader-Content p.testText {
        font-size: 16px;
        line-height: 26px;
        font-weight: 800;
        color: #152a3f;
        margin: 0;
        font-family: 'exo 2',sans-serif;
        padding-top: 30px;
    }

    .leader-Content h2 {
        font-size: 18px;
        font-family: nekst;
        font-weight: 600;
        font-style: normal;
        color: #152a3f;
        padding: 0;
        margin: 0;
        line-height: 31px;
        padding-top: 20px;
        font-family: montserrat,sans-serif;
        font-weight: 600;
    }

    .leader-Content p.testiDesig {
        font-size: 16px;
        font-family: 'exo 2',sans-serif;
        font-weight: 300;
        color: #4a4a4a;
        line-height: 23px;
        margin: 0;
        width: 70%;
    }

    .leader-Content p.TestiCompany {
        color: #152a3f;
        font-size: 24px;
        font-family: russo one,sans-serif;
        font-weight: 400;
        padding-top: 0;
        margin: 0;
        padding-bottom: 20px;
    }
 
.area2days {
    border: #cecbcb solid 1px;
    padding: 20px 20px;
    border-radius: 20px;
    height:100%;
}
.area2days p {
    font-weight: 800;
    background: #131313;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 40px;
    color: #fff;
}

.maintitle.orangeRoom {
    background: #da6e05!important;
    color: #fff;
}

.maintitle.blackRoom {
    background: #000 !important;
    color: #fff;
}

.maintitle.blueRoom {
    background: #75ecff !important;
   
}

.ministryLogoWrap {
    position: relative;
    padding: 50px 0px;
}

    .ministryLogoWrap.cybersupport-logo figure img {
        width: auto;
        padding: 10px;
    }

    .ministryLogoWrap.cybersupport-logo figure {
        height: 150px;
    }

.ministryLogoWrap.cybersupport-logo p{
    text-transform:uppercase;
}
p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.workshopsWrap {
    position: relative;
    padding: 50px 0px;
    background: #152a3f;
}

    .workshopsWrap hr {
        border-top: #c5c4c3 solid;
        margin: 20px 0px 0px 0px;
    }

.workshopInner {
    position: relative;
    z-index: 999;
}

.workshoproomTab {
    position: relative;
    margin: 0 auto;
    margin-bottom: 40px;
}

    .workshoproomTab ul {
        margin: 0;
        text-align: center;
        width: 100%;
    }

        .workshoproomTab ul li {
            list-style: none;
            display: inline-block;
            text-align: center;
            margin-left: 0;
            margin: 10px 10px;
        }

            .workshoproomTab ul li a {
                color: #fff;
                padding: 5px 20px;
                display: block;
                text-decoration: none;
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                border-bottom: #000 solid 1px;
                margin-bottom: 24px;
                border-radius: 40px
            }

            .workshoproomTab ul li.purpleTab a {
                background: #69359a;
                color: #fff;
            }

                .workshoproomTab ul li.purpleTab a:hover, .workshoproomTab ul li.purpleTab.active a {
                    background: #fff;
                    color: #69359a;
                }

            .workshoproomTab ul li.greenTab a {
                background: #5e813f;
                color: #fff;
            }

                .workshoproomTab ul li.greenTab a:hover, .workshoproomTab ul li.greenTab.active a {
                    background: #fff;
                    color: #5e813f;
                }

            .workshoproomTab ul li.blueTab a {
                background: #5071be;
                color: #fff;
            }

                .workshoproomTab ul li.blueTab a:hover, .workshoproomTab ul li.blueTab.active a {
                    background: #fff;
                    color: #5071be;
                }


.schedule-section {
    position: relative;
    padding: 120px 0 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fafafa;
    overflow: hidden;
}

    .schedule-section .icon-circle-4 {
        right: -200px;
        bottom: 160px;
    }

    .schedule-section .icon-circle-3 {
        left: -375px;
        top: 340px;
        opacity: .30;
    }

.tabs-box {
    position: relative;
}

    .tabs-box .tab {
        display: none;
    }

        .tabs-box .tab.active-tab {
            display: block;
        }

.schedule-tabs {
    position: relative;
}

    .schedule-tabs .btns-box {
        position: relative;
        display: block;
        margin-bottom: 100px;
    }

    .schedule-tabs .tab-buttons {
        position: relative;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        display: flex;
        /* align-items: center; */
        justify-content: center;
    }

        .schedule-tabs .tab-buttons .tabbox {
            position: relative;
            display: inline-block;
            height: 105px;
            width: 160px;
            border-radius: 10px;
            background-color: #1b1b1b;
            font-size: 20px;
            line-height: 28px;
            color: #cfcfcf;
            font-weight: 600;
            text-align: left;
            padding: 15px 15px;
            padding-top: 50px;
            padding-left: 90px;
            cursor: pointer;
            margin: 0 15px 20px;
            border: 1px solid #4d4949;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .schedule-tabs .tab-buttons .tabbox.active {
                background-color: #d5d5d5;
                color: #152a3f;
                border: 1px solid #dddddd;
            }

            .schedule-tabs .tab-buttons .tabbox .day {
                position: absolute;
                left: -1px;
                top: 14px;
                padding: 5px 20px;
                background-color: #222222;
                font-size: 14px;
                line-height: 20px;
                font-weight: 600;
                color: #ffffff8c;
                border-radius: 0 15px 15px 0;
            }

            .schedule-tabs .tab-buttons .tabbox.active .day {
                color: #ffffff;
            }

            .schedule-tabs .tab-buttons .tabbox .date {
                position: absolute;
                left: -0;
                top: 65px;
                width: 100px;
                text-align: center;
                font-size: 40px;
                line-height: 20px;
                font-weight: 600;
                color: #222222;
            }

            .schedule-tabs .tab-buttons .tabbox .month {
                display: block;
                font-size: 21px;
                line-height: 23px;
                font-weight: 600;
                color: #222222;
                text-transform: uppercase;
            }

            .schedule-tabs .tab-buttons .tabbox.active .month,
            .schedule-tabs .tab-buttons .tabbox.active .date,
            .schedule-tabs .tab-buttons .tabbox.active .day {
                opacity: 0.8;
            }

            .schedule-tabs .tab-buttons .tabbox .year {
                font-size: 30px;
            }

    .schedule-tabs #purpleRoom .tab-buttons .tabbox.active {
        box-shadow: 0 20px 30px rgba(0,0,0,.10);
    }

    .schedule-tabs #purpleRoom .tab-buttons .tabbox .day {
        background-color: #69359a;
    }


    .schedule-tabs #purpleRoom .tab-buttons .tabbox .month,
    .schedule-tabs #purpleRoom .tab-buttons .tabbox .date {
        color: #69359a;
    }

    .schedule-tabs #purpleRoom .tab-buttons .tabbox.active {
        box-shadow: 0 0px 30px rgba(255,194,11,.30);
        border: 1px solid #69359a;
        background: #fff;
    }


    .schedule-tabs #greenRoom .tab-buttons .tabbox.active {
        box-shadow: 0 20px 30px rgba(0,0,0,.10);
    }

    .schedule-tabs #greenRoom .tab-buttons .tabbox .day {
        background-color: #5e813f;
    }


    .schedule-tabs #greenRoom .tab-buttons .tabbox .month,
    .schedule-tabs #greenRoom .tab-buttons .tabbox .date {
        color: #5e813f;
    }

    .schedule-tabs #greenRoom .tab-buttons .tabbox.active {
        box-shadow: 0 0px 30px rgba(255,194,11,.30);
        border: 1px solid #5e813f;
        background: #fff;
    }

    .schedule-tabs #blueRoom .tab-buttons .tabbox.active {
        box-shadow: 0 20px 30px rgba(0,0,0,.10);
    }

    .schedule-tabs #blueRoom .tab-buttons .tabbox .day {
        background-color: #5071be;
    }


    .schedule-tabs #blueRoom .tab-buttons .tabbox .month,
    .schedule-tabs #blueRoom .tab-buttons .tabbox .date {
        color: #5071be;
    }

    .schedule-tabs #blueRoom .tab-buttons .tabbox.active {
        box-shadow: 0 0px 30px rgba(255,194,11,.30);
        border: 1px solid #5071be;
        background: #fff;
    }


.schedule-timeline {
    position: relative;
}

/*=== Schedule Block ===*/

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

    .schedule-block:after {
        display: table;
        clear: both;
        content: "";
    }

    .schedule-block .inner-box {
        position: relative;
        /* float: left; */
        width: 90%;
        margin: 0 auto;
        text-align: left;
    }

        .schedule-block .inner-box .inner {
            position: relative;
            padding: 20px 30px 20px;
            background-color: #e8e8e8;
            border: 1px solid #dddddd;
            box-shadow: 0 0 30px rgba(0,0,0,0.05);
            margin-left: 80px;
            border-radius: 20px;
        }

    .schedule-block .inner:before {
        position: absolute;
        top: 0;
        bottom: -30px;
        right: 100%;
        border-left: 2px dashed #dddddd;
        content: "";
        margin-right: 80px;
    }

    .schedule-block .inner:after {
        position: absolute;
        right: 100%;
        top: 35px;
        border-top: 15px solid transparent;
        border-right: 20px solid #e8e8e8;
        border-bottom: 15px solid transparent;
        content: "";
    }

    .schedule-block .date {
        position: absolute;
        left: -132px;
        width: 104px;
        top: 0px;
        height: 100px;
        background-color: #ffffff;
        text-align: center;
        font-size: 14px;
        line-height: 26px;
        color: #212639;
        font-weight: 600;
        padding: 30px 5px 0;
        padding-top: 5px;
        border-radius: 10px;
        border: 2px dashed #dddddd;
        box-shadow: 0 0 30px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

#purpleRoom .schedule-block .date {
    background-color: #69359a;
    color: #fff;
}

#greenRoom .schedule-block .date {
    background-color: #5e813f;
    color: #fff;
}

#blueRoom .schedule-block .date {
    background-color: #5071be;
    color: #fff;
}

.schedule-block .speaker-info {
    position: relative;
    padding-left: 80px;
    padding-top: 10px;
    min-height: 60px;
}

    .schedule-block .speaker-info .thumb {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        border-radius: 50%;
        overflow: hidden;
    }

    .schedule-block .speaker-info .name {
        font-size: 16px;
        color: #212639;
        font-weight: 500;
        line-height: 1.2em;
    }

    .schedule-block .speaker-info .designation {
        font-size: 13px;
    }

.schedule-block h4 {
    position: relative;
    font-size: 22px;
    line-height: 1.2em;
    color: #0f1925;
    font-weight: 600;
    margin-bottom: 15px;
    padding-top: 15px;
}

    .schedule-block h4 a {
        color: #212639;
        display: inline-block;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .schedule-block h4 a:hover {
            color: #f14b59;
        }

.schedule-block .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #888888;
    margin-bottom: 15px;
}

.schedule-block .btn-box {
    position: relative;
    padding: 6px 0;
}

    .schedule-block .btn-box a {
        padding: 10px 20px;
        line-height: 20px;
        font-size: 14px;
        background-color: #444444;
        color: #ffffff;
        border-top: 2px solid transparent;
        border-bottom: 2px solid transparent;
        border-radius: 5px;
    }

        .schedule-block .btn-box a:hover {
            color: #ffffff;
            /* box-shadow: 0 10px 20px rgba(0,0,0,0.10); */
        }

.schedule-block.even .inner-box {
    float: left;
    text-align: right;
}

    .schedule-block.even .inner-box .inner {
        margin-left: 0;
        margin-right: 80px;
    }

.schedule-block.even .inner:before {
    right: auto;
    left: 100%;
    margin-left: 80px;
    margin-right: 0;
}

.schedule-block.even .inner:after {
    right: auto;
    left: 100%;
    border-right: 0;
    border-left: 20px solid #ffffff;
}

.schedule-block:last-child .inner:before {
    display: none;
}

.schedule-block.even .date {
    left: auto;
    right: -132px;
}

.schedule-block.even .speaker-info {
    padding-left: 0;
    padding-right: 80px;
}

    .schedule-block.even .speaker-info .thumb {
        left: auto;
        right: 0;
    }

#purpleRoom .schedule-block .date,
#purpleRoom .schedule-block .inner:before {
    border-color: #69359a;
}

#greenRoom .schedule-block .date,
#greenRoom .schedule-block .inner:before {
    border-color: #5e813f;
}


#blueRoom .schedule-block .date,
#blueRoom .schedule-block .inner:before {
    border-color: #5071be;
}


.metascheduleText {
    position: relative;
    padding-bottom: 20px;
    border-bottom: #e3dcdcab solid 1px;
}

    .metascheduleText ul {
        margin: 0;
        padding: 0;
    }

    .metascheduleText li {
        list-style: none;
        font-size: 14px;
        color: #152a3f;
        /* margin: 0 10px; */
        display: inline-block;
        position: relative;
        width: auto;
        padding: 0px 15px;
        padding-top: 0px;
        padding-right: 15px;
        padding-bottom: 0px;
    }

        .metascheduleText li:first-child {
            padding-left: 0;
        }

        .metascheduleText li:before {
            position: absolute;
            top: 0;
            right: 0;
            content: '';
            width: 1px;
            height: 100%;
            background: #dedede;
        }

        .metascheduleText li:last-child:before {
            display: none;
        }

        .metascheduleText li .fa-circle-dot {
            margin-right: 7px;
            font-size: 16px;
            color: #565656;
        }

        .metascheduleText li .metaicon {
            margin-right: 7px;
            font-size: 16px;
            color: #565656;
        }

#purpleRoom .fa-circle-dot {
    color: #69359a;
}

#greenRoom .fa-circle-dot {
    color: #5e813f;
}

#blueRoom .fa-circle-dot {
    color: #5071be;
}

.metaicon {
    color: #fff;
}

span.HeaderTiming {
    display:none;
}

.GitexFooter_ h1 {
    color: #fff;
    font-size: 16px;
}

.GitexFooter_ h3 {
    font-size: 13px;
    color: #fff;
    margin: 10px 0 0 0;
    display: block;
}

h3.GitexDate_ {
    letter-spacing: 1.2px;
}

.GitexFooter_ h3 a {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.ftrEmails h3 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 0;
}

.stickyTiming {
    position: relative;
    top: 0;
    width: 100%;
    left: 0;
    background: #292929;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 10px 0px;
}

.stickyTiming h2 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    padding: 0;
    line-height: 25px;
    display: inline-block;
    text-align: center;
}

.stickyTiming p {
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-right: 30px;
    font-size: 16px;
    display: inline-block;
    margin: 0;
}

    .stickyTiming p a {
        color: #fff;
        border-bottom: #fff dotted 1px;
    }

.stickyTiming em {
    text-align: center;
    color: #fff;
    margin: 0 auto;
    display: block;
    padding-bottom: 4px;
}

.closeBtnTM {
    color: #fff;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

    .closeBtnTM i {
        color: #fff;
    }

/* .stickyTiming.active {
    display: none;
}*/

..speakerItem01 .speakerInfo p.speakComapny {
    text-align: center;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 40px;
    line-height: 18px;
}

a.redSolid-btn.guide-redbtn {
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
}

.newsBlockItem .news-author-meta .newssourcename,
.newsBlockItem .news-author-meta .pr-news-more {
    width: auto;
}

.arrow-custom-slide .owl-stage { display: flex; }
.owl-carousel.arrow-custom-slide .owl-nav .owl-next, .owl-carousel.arrow-custom-slide .owl-nav .owl-prev { top: 0; bottom: 0; height: 45px; width: 45px; margin: auto; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; border: 2px solid #152a3f; }
.owl-carousel.arrow-custom-slide .owl-nav .owl-next.disabled, .owl-carousel.arrow-custom-slide .owl-nav .owl-prev.disabled{display:none;}

.owl-carousel.arrow-custom-slide .owl-nav .owl-next:hover, .owl-carousel.arrow-custom-slide .owl-nav .owl-prev:hover{background:#152a3f; color:#fff;}

.owl-carousel.arrow-custom-slide .owl-nav .owl-next{right:-60px}
.owl-carousel.arrow-custom-slide .owl-nav .owl-prev{left:-60px}

.owl-next .fa-angle-right:before {font-size: 22px;}
.owl-prev .fa-angle-left:before {font-size: 22px;}


cardflipbox{position:relative}.cardflipbox .cardflipinner{position:relative;width:100%;height:100%;height:340px;backface-visibility:hidden;transform-style:preserve-3d;perspective:1000px;-ms-transform-style:preserve-3d;-webkit-transform-style:preserve-3d;-webkit-perspective:1000px;-webkit-backface-visibility:hidden}.cardflipbox .innercontent{position:absolute;left:0;width:100%;padding:0 10px;outline:1px solid transparent;-webkit-perspective:inherit;perspective:inherit;z-index:2;top:50%;transform:translateY(-50%) translateZ(60px) scale(.94);-webkit-transform:translateY(-50%) translateZ(60px) scale(.94);-ms-transform:translateY(-50%) translateZ(60px) scale(.94);-moz-transform:translateY(-50%) translateZ(60px) scale(.94);-o-transform:translateY(-50%) translateZ(60px) scale(.94)}.cardflipbox .cardback,.cardflipbox .cardfront{background-size:cover;background-position:center;width:100%;height:80%;background-color:#101010;transition:transform .7s cubic-bezier(.4,.2,.2,1);backface-visibility:hidden;-webkit-backface-visibility:hidden;-webkit-transition:transform .7s cubic-bezier(.4,.2,.2,1);-ms-transition:transform .7s cubic-bezier(.4,.2,.2,1);-moz-transition:transform .7s cubic-bezier(.4,.2,.2,1);-o-transition:transform .7s cubic-bezier(.4,.2,.2,1)}.cardflipbox .cardfront{transform:rotateY(0);transform-style:preserve-3d;-ms-transform:rotateY(0);-webkit-transform:rotateY(0);-webkit-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-moz-transform:rotateY(0);-o-transform:rotateY(0)}.cardflipbox .cardback{position:absolute;top:0;left:0;width:100%;transform:rotateY(180deg);transform-style:preserve-3d;-ms-transform:rotateY(180deg);-webkit-transform:rotateY(180deg);-webkit-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-moz-transform:rotateY(180deg);-o-transform:rotateY(180deg)}.cardflipbox:hover .cardfront{transform:rotateY(-180deg);transform-style:preserve-3d;-ms-transform:rotateY(-180deg);-webkit-transform:rotateY(-180deg);-webkit-transform-style:preserve-3d;-ms-transform-style:preserve-3d;-moz-transform:rotateY(-180deg);-o-transform:rotateY(-180deg)}.cardflipbox:hover .cardback{-ms-transform:rotateY(0);-webkit-transform:rotateY(0);transform:rotateY(0);-webkit-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.cardflipbox .cardflipinner .cardfront{background-size:cover;background-position:center;backface-visibility:hidden;transition:transform .7s cubic-bezier(.4,.2,.2,1),opacity .55s ease .25s;border:1px solid #333;-webkit-backface-visibility:hidden;-ms-transition:transform .7s cubic-bezier(.4,.2,.2,1),opacity .55s ease .25s;-webkit-transition:transform .7s cubic-bezier(.4,.2,.2,1),opacity .55s ease .25s;-moz-transition:transform .7s cubic-bezier(.4,.2,.2,1),opacity .55s ease .25s;-o-transition:transform .7s cubic-bezier(.4,.2,.2,1),opacity .55s ease .25s}.cardflipbox .cardflipinner .cardfront::before{content:"";position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;display:block;opacity:.4;background-color:inherit;backface-visibility:hidden}.cardflipbox .innercontent h2{color:#fff;font-size:18px;line-height:26px;margin-bottom:15px;text-align:center;text-transform:uppercase}.cardflipbox .innercontent p{color: #fff;font-size: 15px;line-height: 22px;text-align: center;margin-top: 15px;}


.testimonial-box-item { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 50px; width: 100%; border: 1px solid #FFFFFF1A; backdrop-filter: blur(100px); -webkit-backdrop-filter: blur(100px);  overflow: hidden; }
.client-author-image { width: calc(27% - 25px); }
/* .client-testimonial-content { width: calc(73% - 25px); } */
.client-author-image figure { display: block; border-radius: 50%; overflow: hidden; }
.client-author-image img { width: 100%; object-fit: cover; aspect-ratio: 1 / 1; border-radius: 50%; }
.client-testimonial-info { margin-bottom: 20px; }
.client-testimonial-info p { font-size: 22px; color: #fff; }

.client-author-content { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; }
.client-author-title { width: calc(65% - 15px); }
.client-author-title h3 { font-size: 20px; text-transform: capitalize; margin-bottom: 5px; color: #FFE075;}
.client-author-title p { text-transform: capitalize; margin-bottom: 0;  color: #fff;}
.client-author-logo { width: calc(35% - 15px); text-align: end; }
.client-author-logo img { max-width: 200px; object-fit: contain; }
.client-author-title h5 { color: #fff; font-size: 15px; font-style: italic; }
#counter-section { padding: 50px 0; position: relative; margin-top: -4px; background-color:#152a3f; }
.counter-count { text-align: center; font-family:'Russo One', sans-serif; }


.counter-count span { font-size: 36px; font-weight: 700; color: #fff; }
.plussign { margin-left: 5px; }
.counter-title {  font-size: 14px; margin:5px 0 0 0; text-align: center; color: #49B964; text-transform: uppercase; font-weight: 600; font-family:'Exo 2', sans-serif; }
.visitquote .owl-carousel.arrow-custom-slide .owl-nav .owl-prev { left: auto; right: 0; }
.visitquote .owl-carousel.arrow-custom-slide .owl-nav .owl-prev, .visitquote .owl-carousel.arrow-custom-slide .owl-nav .owl-next { position: static; }
.visitquote .owl-carousel.arrow-custom-slide .owl-nav { display: flex; align-items: center; flex-wrap: wrap; position: absolute; bottom: 20%; right: 14%; width: inherit; }
.owl-nav{
    display: none;
}

.globalpower .owl-carousel {
    width:90%;
    margin:0 auto;
}
/*Logo Card Sec with Pop*/
.sgdahkvh {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background-color: #152a3f;
}

    .sgdahkvh .auto-container {
        width: 80%;
        margin: 0 auto;
    }

.vkodkgan {
    background-color: #fff;
    /*border: 1px solid rgba(0, 0, 0, 0.175);*/
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    padding: 20px 10px;
    transition: all 0.3s;
    -webkit-tranosition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-around;
    height:290px;
    /*gap: 15px;*/
}

    .vkodkgan:hover {
        -webkit-box-shadow: 2px 2px 23px -7px rgba(235, 28, 36, 1);
        -moz-box-shadow: 2px 2px 23px -7px rgba(235, 28, 36, 1);
        box-shadow: 2px 2px 23px -7px rgba(235, 28, 36, 1);
    }

.twxpfobu {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
}

    .twxpfobu img {
        height: 100%;
        object-fit: contain;
    }

.kiayxqxn {
    width: 100%;
    height: 1px;
    background-color: #ced4da;
}

.bofkzaxa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

    .bofkzaxa h4 {
        margin: 0;
        padding: 0;
        text-transform: uppercase;
        text-align: center;
        font-family: "montserrat", sans-serif;
        font-size: 16.5px;
        font-weight: 500;
    }

.pqasagej button {
    border: none;
    margin: 0;
    padding: 7px 15px;
    font-family: "montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    background-color: #c81c24;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
}

    .pqasagej button:hover {
        background-color: #152a3f;
        -webkit-transition: 1s all ease;
        -moz-transition: 1s all ease;
        -ms-transition: 1s all ease;
        -o-transition: 1s all ease;
    }

.lxvifrkd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dyvmbamr {
    margin-top: 20px;
}

    .dyvmbamr p {
        margin: 0;
        padding: 0;
        font-family: "montserrat", sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #152a3f;
        text-align: center;
    }

.lbadoiqq {
    margin-top: 40px;
}

    .lbadoiqq a {
        text-decoration: none;
        border: none;
        margin: 0;
        padding: 10px 20px;
        font-family: "montserrat", sans-serif;
        font-weight: 500;
        font-size: 16px;
        background-color: #c81c24;
        color: #fff;
        text-transform: uppercase;
        -webkit-transition: 1s all ease;
        -moz-transition: 1s all ease;
        -ms-transition: 1s all ease;
        -o-transition: 1s all ease;
    }

        .lbadoiqq a:hover {
            background-color: #152a3f;
            -webkit-transition: 1s all ease;
            -moz-transition: 1s all ease;
            -ms-transition: 1s all ease;
            -o-transition: 1s all ease;
        }

.bnofrltv .modal-dialog {
    max-width: 800px;
    margin-top: 160px;
}

.bnofrltv .modal-content {
    padding: 20px;
    align-items: end;
}

.bnofrltv .btn-close {
    opacity: 1;
    width: 30px;
    height: 30px;
    border: 1.5px solid #152a3f;
    font-size: 16px;
    border-radius: 0;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
}

    .bnofrltv .btn-close:hover {
        background-color: #c81c24;
    }
/* Media Quries */
@media (max-width: 991.98px) {
    .bnofrltv .modal-dialog {
        width: auto;
    }
}
/* Media Quries */
/*Logo Card Sec with Pop*/

/*.globalpower .owl-carousel.arrow-custom-slide .owl-nav .owl-next {
    right: -60px
}
.globalpower .owl-carousel.arrow-custom-slide .owl-nav .owl-prev {
    left: -60px
}
.globalpower .owl-carousel.arrow-custom-slide .owl-nav .owl-next, .owl-carousel.arrow-custom-slide .owl-nav .owl-prev {
    top: 0;
    bottom: 0;
    height: 45px;
    width: 45px;
    margin: auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid #152a3f;
}*/
#particles-js {
    width: 100%;
    position: absolute;
    top:0;
}

.dyhtiztj {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background-color: #152a3f;
}

    .dyhtiztj .auto-container {
        width: 90%;
        margin: 0 auto;
        position:relative;
        z-index:999;
    }

.counter-alignment {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.counter-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 0;
    width: 225px;
    border-radius: 10px;
    transition: 1.5s all ease-in;
}
    .counter-box:hover {
        transition: 1.5s all ease-in;
        background: linear-gradient(0deg, rgba(235,28,36,1) 0%, rgba(0,0,0,0) 65%);
    }

    .counter-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .counter-wrapper span {
        font-size: 40px;
        font-weight: 700;
        color: #c81c24;
        font-family: 'Russo One', sans-serif;
    }

.counter-title {
    font-size: 14px !important;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 500;
    margin: 5px 0 0 0;
    text-align: center;
}

/*.counter-box svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.counter-box path {
    stroke: #c81c24;
    stroke-width: 8px;
    stroke-dasharray: 0 1500;
}

.counter-box:hover path {
    animation: draw 1s forwards;
}

@keyframes draw {
    from {
        stroke-dasharray: 0 1500;
    }

    to {
        stroke-dasharray: 1500 1500;
    }
}*/
@media (max-width: 1499.98px) {
    .counter-box {
        width: 200px;
    }
}

@media (max-width: 1399.98px) {
    .counter-alignment {
        flex-wrap: wrap;
        justify-content:center;
    }
    .count-wrap {
        width: 25%;
        display: flex;
        justify-content: center;
    }
    .counter-box {
        width: 350px;
        padding:25px 0;
    }
}
@media (max-width: 991.98px) {
    .count-wrap {
        width: 50%;
    }

    .counter-alignment {
        align-items: flex-start;
        justify-content:center;
    }

    .counter-box {
        padding: 20px 0;
    }
}
@media (max-width: 767.98px) {
    .dyhtiztj .auto-container {
        width: 90%;
        margin: 0 auto;
    }

    .counter-title {
        font-size: 12px !important;
    }
}

/*Speaker New Design Css*/
.rsgbukmg {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.dwvrh {
    width: 100%;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.cblsi img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    min-height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
    /* filter: grayscale(1); */
    transition: transform 2.5s ease-in;
    transition: transform 2.5s ease-out;
}

.dwvrh:hover .cblsi img {
    /* filter: grayscale(0); */
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    transition: transform 2.5s ease-in;
    transition: transform 2.5s ease-out;
}

.vlali {
    height: 200px;
    padding: 10px;
    background-color: #152a3f;
    position: relative;
    overflow: hidden;
    display: flex;
}

    .vlali::before {
        position: absolute;
        content: "";
        background-color: rgba(235, 28, 36, 0.7);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        -webkit-transform-origin: right center;
        -moz-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: scale(0, 1);
        -moz-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        -o-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.6, 0, 0.2, 1);
        -moz-transition: -moz-transform 0.6s cubic-bezier(0.6, 0, 0.2, 1);
        -ms-transition: -ms-transform 0.6s cubic-bezier(0.6, 0, 0.2, 1);
        -o-transition: -o-transform 0.6s cubic-bezier(0.6, 0, 0.2, 1);
        transition: transform 0.6s cubic-bezier(0.6, 0, 0.2, 1);
        z-index: 0;
    }

.dwvrh:hover .vlali:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.vlali::after {
    content: "";
    position: absolute;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, rgba(235, 28, 36, 0.7) 100% );
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    transition: 0.6s all ease-out;
}

.dwvrh:hover .vlali::after {
    background: linear-gradient( 180deg, rgba(235, 28, 36, 0) 0%, rgba(0, 0, 0, 1) 100% );
    transition: 0.6s all ease-in;
    height: 70%;
}

.bolhbikd {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width:100%;
}

    .bolhbikd h4 {
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        margin: 0;
        padding: 0;
        font-family: "Montserrat", sans-serif;
        text-align: center;
    }

    .bolhbikd p {
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        margin: 0;
        padding: 0;
        font-family: "Montserrat", sans-serif;
        text-align: center;
    }

    .bolhbikd h5 {
        color: #ffe075;
        font-size: 15px;
        font-weight: 700;
        margin: 0;
        padding: 0;
        font-family: "Montserrat", sans-serif;
        text-align: center;
    }
/* .rsgbukmg .owl-stage {
    padding: 30px 0;
    } */
.rsgbukmg .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -5%;
    width: 40px;
    height: 40px;
    background-color: #152a3f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-transition: 0.3s all ease-in-out;
}

    .rsgbukmg .owl-carousel .owl-nav .owl-prev:hover {
        background-image: -webkit-gradient( linear, left bottom, right top, from(#000), color-stop(#2e0e16), color-stop(#550e1f), color-stop(#7e0722), color-stop(#a7001d), color-stop(#a7001d), color-stop(#a7001d), color-stop(#a7001d), color-stop(#7e0722), color-stop(#550e1f), color-stop(#2e0e16), to(#000) );
        background-image: -o-linear-gradient( left bottom, #000, #2e0e16, #550e1f, #7e0722, #a7001d, #a7001d, #a7001d, #a7001d, #7e0722, #550e1f, #2e0e16, #000 );
        background-image: linear-gradient( to right top, #000, #2e0e16, #550e1f, #7e0722, #a7001d, #a7001d, #a7001d, #a7001d, #7e0722, #550e1f, #2e0e16, #000 );
        transition: 0.3s all ease-in-out;
        -webkit-transition: 0.3s all ease-in-out;
        -moz-transition: 0.3s all ease-in-out;
        -o-transition: 0.3s all ease-in-out;
        -ms-transition: 0.3s all ease-in-out;
    }

    .rsgbukmg .owl-carousel .owl-nav .owl-prev i {
        font-size: 24px;
        font-weight: 600;
        color: #fff;
    }

.rsgbukmg .owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 40px;
    height: 40px;
    background-color: #152a3f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-transition: 0.3s all ease-in-out;
}

    .rsgbukmg .owl-carousel .owl-nav .owl-next:hover {
        background-image: -webkit-gradient( linear, left bottom, right top, from(#000), color-stop(#2e0e16), color-stop(#550e1f), color-stop(#7e0722), color-stop(#a7001d), color-stop(#a7001d), color-stop(#a7001d), color-stop(#a7001d), color-stop(#7e0722), color-stop(#550e1f), color-stop(#2e0e16), to(#000) );
        background-image: -o-linear-gradient( left bottom, #000, #2e0e16, #550e1f, #7e0722, #a7001d, #a7001d, #a7001d, #a7001d, #7e0722, #550e1f, #2e0e16, #000 );
        background-image: linear-gradient( to right top, #000, #2e0e16, #550e1f, #7e0722, #a7001d, #a7001d, #a7001d, #a7001d, #7e0722, #550e1f, #2e0e16, #000 );
        transition: 0.3s all ease-in-out;
        -webkit-transition: 0.3s all ease-in-out;
        -moz-transition: 0.3s all ease-in-out;
        -o-transition: 0.3s all ease-in-out;
        -ms-transition: 0.3s all ease-in-out;
    }

    .rsgbukmg .owl-carousel .owl-nav .owl-next i {
        font-size: 24px;
        font-weight: 600;
        color: #fff;
    }

.yzropzkq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

.kyymlmzu {
    background-color: #152a3f;
    padding: 45px 15px;
    height: auto;
    width: 30%;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.5rem 0 0 0.5rem;
    -webkit-border-radius: 0.5rem 0 0 0.5rem;
    -moz-border-radius: 0.5rem 0 0 0.5rem;
    -ms-border-radius: 0.5rem 0 0 0.5rem;
    -o-border-radius: 0.5rem 0 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.bosxynnq {
    background-color: #fff;
    padding: 2px;
}

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

.qwhuhjnv {
    max-height: 520px;
    overflow-y: scroll;
    height: 100%;
    width: 70%;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 10px;
}

    .qwhuhjnv::-webkit-scrollbar {
        width: 12px; /* width of the entire scrollbar */
    }

    .qwhuhjnv::-webkit-scrollbar-track {
        background: #fff; /* color of the tracking area */
    }

    .qwhuhjnv::-webkit-scrollbar-thumb {
        background-color: #dddbdb; /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 3px solid #fff; /* creates padding around scroll thumb */
    }

    .qwhuhjnv h6 {
        color: #152a3f;
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        padding: 0;
        font-family: "Russo One", sans-serif;
    }

    .qwhuhjnv p {
        line-height: 1.5;
        font-size: 14px;
        margin-top: 20px;
        font-family: "Montserrat", sans-serif;
    }

.pcemqcgp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

    .pcemqcgp h4 {
        color: #ffe075;
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        padding: 0;
        text-align: center;
        line-height: 1.5;
        font-family: "Montserrat", sans-serif;
    }

    .pcemqcgp p {
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        margin: 0;
        padding: 0;
        text-align: center;
        line-height: 1.5;
        font-family: "Montserrat", sans-serif;
    }

.menintrf {
    --bs-modal-width: 800px;
    z-index: 99999;
    top: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.dlnhottr {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    stroke: #152a3f;
    z-index: 9;
}

    .dlnhottr:hover {
        stroke: #c81c24;
    }

.qdemgnyk {
    padding: 0;
}

@media (max-width: 1920px) and (min-width: 1550px) {
    .menintrf {
        top: 15%;
    }
}

@media (max-width: 700px) {
    .yzropzkq {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .bosxynnq {
        width: 300px;
    }

    .kyymlmzu {
        width: 100%;
        padding: 30px 20px;
        border-radius: 0.5rem 0.5rem 0 0;
        -webkit-border-radius: 0.5rem 0.5rem 0 0;
        -moz-border-radius: 0.5rem 0.5rem 0 0;
        -ms-border-radius: 0.5rem 0.5rem 0 0;
        -o-border-radius: 0.5rem 0.5rem 0 0;
    }

    .qwhuhjnv {
        width: 100%;
        height: 100%;
        margin-bottom: 30px;
    }

    .menintrf {
        width: 100%;
        height: 100%;
        /* overflow: visible; */
        top: 8%;
    }

    .dlnhottr {
        stroke: #fff;
    }
}

@media (max-width: 767.98px) {
    .enuqsqyk {
        padding-right: 20px;
        padding-left: 20px;
    }

    .rsgbukmg .sectionheading02 h2,
    .rsgbukmg .sectionheading02 h2 .text-start {
        text-align: center !important;
    }

    .rsgbukmg .owl-carousel .owl-nav .owl-next,
    .rsgbukmg .owl-carousel .owl-nav .owl-prev {
        top: unset;
        bottom: -1.625rem;
        width: 32px;
        height: 32px;
    }

    .rsgbukmg .owl-carousel .owl-nav .owl-prev {
        left: 38%;
    }

    .rsgbukmg .owl-carousel .owl-nav .owl-next {
        right: 38%;
    }

        .rsgbukmg .owl-carousel .owl-nav .owl-next em,
        .rsgbukmg .owl-carousel .owl-nav .owl-next i,
        .rsgbukmg .owl-carousel .owl-nav .owl-prev em,
        .rsgbukmg .owl-carousel .owl-nav .owl-prev i {
            font-size: 18px;
        }

    .rsgbukmg .dwvrh .vlali {
        padding-right: 0.625rem;
        gap: unset;
        text-align: center;
        justify-content: flex-start;
    }

        .rsgbukmg .dwvrh .vlali h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .rsgbukmg .dwvrh .vlali p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .rsgbukmg .dwvrh .vlali h5 {
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 5px;
        }

    .rsgbukmg .dwvrh:hover {
        border-radius: 5px;
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -o-transform: none !important;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }
}
/* Inner Page Style */
.yslkmhyg .vlali {
    height: 170px;
}

.yslkmhyg .bolhbikd p {
    font-size: 11px;
}

.yslkmhyg .bolhbikd h4 {
    font-size: 14px;
}

.yslkmhyg .bolhbikd h5 {
    font-size: 13px;
}
/* Inner Page Style */

.rsgbukmg .cepyeoud h2 {
    color: black;
    font-size: 38px;
    line-height: normal;
}

.rsgbukmg .cepyeoud p {
    color: black;
    font-size: 20px;
}
/*Speaker New Design Css*/

/*Exhibitor List Logo Sec CSS*/
.axhepslc {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background-color: black;
}

    .axhepslc .auto-container {
        width: 80%;
        margin: 0 auto;
    }

    .axhepslc .owl-theme .owl-nav {
        margin: 0;
    }

    .axhepslc .owl-prev .arrow,
    .axhepslc .owl-next .arrow {
        position: absolute;
        top: -142px;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }

    .axhepslc .owl-prev .arrow {
        left: -40px;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
    }

    .axhepslc .owl-next .arrow {
        right: -40px;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
    }

    .axhepslc .arrow span {
        display: block;
        width: 1.2vw;
        height: 1.2vw;
        border-bottom: 5px solid #dd1414;
        border-right: 5px solid #dd1414;
        transform: rotate(45deg);
        margin: -13px;
        animation: animate 2s infinite;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -webkit-animation: animate 2s infinite;
    }

        .axhepslc .arrow span:nth-child(2) {
            animation-delay: -0.2s;
        }

        .axhepslc .arrow span:nth-child(3) {
            animation-delay: -0.4s;
        }

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
        -webkit-transform: rotate(45deg) translate(-20px, -20px);
        -moz-transform: rotate(45deg) translate(-20px, -20px);
        -ms-transform: rotate(45deg) translate(-20px, -20px);
        -o-transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
        -webkit-transform: rotate(45deg) translate(20px, 20px);
        -moz-transform: rotate(45deg) translate(20px, 20px);
        -ms-transform: rotate(45deg) translate(20px, 20px);
        -o-transform: rotate(45deg) translate(20px, 20px);
    }
}

@media (max-width: 1299.98px) {
    .axhepslc .owl-prev .arrow {
        top: 40px;
    }

    .axhepslc .owl-next .arrow {
        top: 28px;
    }

    .axhepslc {
        padding: 50px 0 100px 0;
    }

        .axhepslc .owl-prev .arrow {
            left: 400px;
        }

        .axhepslc .owl-next .arrow {
            right: 400px;
        }
}

@media (max-width: 991.98px) {
    .axhepslc .owl-prev .arrow {
        top: 34px;
    }

    .axhepslc .owl-next .arrow {
        top: 28px;
    }

    .axhepslc {
        padding: 50px 0 100px 0;
    }

        .axhepslc .owl-prev .arrow {
            left: 300px;
        }

        .axhepslc .owl-next .arrow {
            right: 300px;
        }

        .axhepslc .arrow span {
            width: 2vw;
            height: 2vw;
        }
}

@media (max-width: 767.98px) {
    .axhepslc .owl-prev .arrow {
        top: 30px;
    }

    .axhepslc .owl-next .arrow {
        top: 28px;
    }

    .axhepslc {
        padding: 50px 0 100px 0;
    }

        .axhepslc .owl-prev .arrow {
            left: 220px;
        }

        .axhepslc .owl-next .arrow {
            right: 220px;
        }

        .axhepslc .arrow span {
            width: 3vw;
            height: 3vw;
        }
}

@media (max-width: 575.98px) {
    .axhepslc .auto-container {
        width: 100%;
    }

    .axhepslc .owl-prev .arrow {
        top: 30px;
    }

    .axhepslc .owl-next .arrow {
        top: 28px;
    }

    .axhepslc {
        padding: 50px 20px 100px 20px;
    }

        .axhepslc .owl-prev .arrow {
            left: 180px;
        }

        .axhepslc .owl-next .arrow {
            right: 180px;
        }

        .axhepslc .arrow span {
            width: 4vw;
            height: 4vw;
        }
}

@media (max-width: 480px) {
    .axhepslc .owl-prev .arrow {
        top: 32px;
    }

    .axhepslc .owl-next .arrow {
        top: 28px;
    }

    .axhepslc .owl-prev .arrow {
        left: 100px;
    }

    .axhepslc .owl-next .arrow {
        right: 100px;
    }

    .axhepslc .arrow span {
        width: 4.5vw;
        height: 4.5vw;
    }
}

@media (max-width: 400px) {
    .axhepslc {
        padding: 30px 20px 90px 20px;
    }

        .axhepslc .owl-prev .arrow {
            top: 32px;
        }

        .axhepslc .owl-next .arrow {
            top: 28px;
        }

        .axhepslc .owl-prev .arrow {
            left: 80px;
        }

        .axhepslc .owl-next .arrow {
            right: 80px;
        }

        .axhepslc .arrow span {
            width: 5vw;
            height: 5vw;
        }

        .axhepslc .pqasagej button {
            font-size: 12px;
        }

        .axhepslc .bofkzaxa h4 {
            font-size: 16px;
        }
}

.cepyeoud2 h2 {
    color: black;
    font-size: 38px;
    line-height: normal;
}

.cepyeoud2 p {
    color: black;
    font-size: 20px;
}
/*Logo Slider Section*/
.wgnxjant {
    padding: 0px 0 50px 0;
}

.auto-container {
    width: 85%;
    margin: 0 auto;
}

.tddyxbqv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.tabibjnk {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .tabibjnk figure {
        margin: 0;
        padding: 0 10px;
        width: 230px;
        height: 115px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: -1px 6px 13px 0 #0c0c0c21;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .tabibjnk figure img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            width: 90% !important;
            padding: 15px;
        }

.wgnxjant .owl-stage {
    padding: 15px 0;
}

.wgnxjant .owl-carousel .owl-nav .owl-prev .arrow,
.wgnxjant .owl-carousel .owl-nav .owl-next .arrow {
    position: absolute !important;
    top: -200px !important;
}

.wgnxjant .owl-carousel .owl-nav .owl-prev .arrow {
    left: -40px !important;
}

.wgnxjant .owl-carousel .owl-nav .owl-next .arrow {
    right: -40px !important;
}

@media (max-width: 1399.98px) {
    .wgnxjant .owl-carousel .owl-nav .owl-prev {
        left: 10px;
    }
    .wgnxjant .owl-carousel .owl-nav .owl-next {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .wgnxjant .owl-carousel .owl-nav .owl-prev {
        left: 30px;
    }
    .wgnxjant .owl-carousel .owl-nav .owl-next {
        left: 30px;
    }
}

@media (max-width: 575.98px) {
    .oxipcgse .owl-carousel .owl-nav .owl-prev .arrow {
        left: -15px !important;
    }

    .oxipcgse .owl-carousel .owl-nav .owl-next .arrow {
        right: -15px !important;
    }
}
/*Logo Slider Section*/

.rsgbukmg2 {
    padding:50px 0 0 0;
}
.rsgbukmg2 .cepyeoud h2 {
    color: black;
    font-size: 38px;
    line-height: normal;
}

.rsgbukmg2 .cepyeoud p {
    color: black;
    font-size: 20px;
}

.cblsi img {
    height: 300px;
    object-fit: cover;
	object-position:top;
}
.speakerItem01 figure img {
    height: 370px;
    object-fit: cover;object-position:top;
}

.chooseus-block-one { max-width: 370px; margin: 0 auto; }
.chooseus-block-one .inner-box { position: relative; display: block; text-align: center; padding: 33px 30px 90px 30px; margin-bottom: 30px; border-radius: 10px; overflow: hidden; }
.chooseus-block-one .inner-box .shape .shape-1 { position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; background-size: cover; background-repeat: no-repeat; background-position: center; }
.chooseus-block-one .inner-box .shape .shape-2 { position: absolute; left: 29px; bottom: 0px; width: 312px; height: 121px; background-repeat: no-repeat; z-index: 1; }
.chooseus-block-one .inner-box .shape .shape-3 { position: absolute; left: 30px; bottom: 0px; width: 340px; height: 120px; background-repeat: no-repeat; opacity: 0.15; filter: grayscale(100%); transition: all 500ms ease; }
.chooseus-block-one .inner-box h3 { position: relative; display: block; font-size: 22px; line-height: 32px; font-weight: 600; margin-bottom: 9px; }
.chooseus-block-one .icon-box { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2; }.chooseus-block-one .icon-box { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2; display: flex; align-items: center; height: 70px; }.sponsors-logo img { width: 140px; height: 140px; object-fit: contain; }
.sponsors-logo { position: relative; }
.chooseus-block-one .inner-box .shape .shape-3 { filter: grayscale(0%); opacity: 1; }
.chooseus-block-one .icon-box h5 {
    font-size: 17px;
}

/*logo bio popup*/
/* Popup Code */
.menintrf2 {
    --bs-modal-width: 800px;
    z-index: 99999;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.menintrf2 .modal-dialog {
    max-width: 800px;
    position: relative;
    top: 17%;
}

.menintrf2.show {
    background-color: #00000050;
}

.menintrf2 .modal-content {
    border-radius: 0.5rem;
    overflow: hidden;
}

.dlnhottr2 {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    stroke: #152a3f;
    z-index: 9;
    opacity: 1;
}

    .dlnhottr2:hover {
        stroke: #c81c24;
        opacity: 1;
    }

.qdemgnyk2 {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.yzropzkq2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

.qwhuhjnv2 {
    overflow: hidden;
    height: 100%;
    width: 100%;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    background-color: fffaf7;
}

.qihhz2 {
    overflow: hidden;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #c81c24;
    border-radius: 10px;
    box-shadow: 0px 3px 10px #00000012;
}

    .qihhz2 figure {
        margin: 0;
        padding: 10px;
        width: 200px;
    }

        .qihhz2 figure img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

.qwhuhjnv2 h6 {
    /* color: #ff2a83; */
    color: #152a3f;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    text-align:center;
}

.qwhuhjnv2 p {
    line-height: 1.7;
    font-size: 14px;
    margin-top: 20px;
    color: #152a3f;
    text-align: center;
}

.modal-backdrop.show {
    display: none;
}
.qmiwgley {
height:250px;
overflow-Y:scroll;
}
    .qmiwgley::-webkit-scrollbar {
        width: 12px; /* width of the entire scrollbar */
    }

    .qmiwgley::-webkit-scrollbar-track {
        background: #fff; /* color of the tracking area */
    }

    .qmiwgley::-webkit-scrollbar-thumb {
        background-color: #dddbdb; /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 3px solid #fff; /* creates padding around scroll thumb */
    }

@media (max-width: 1920px) and (min-width: 1550px) {
    .menintrf2 {
        top: 15%;
    }
}

@media (max-width: 700px) {
    .yzropzkq2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .qwhuhjnv2 {
        width: 100%;
        height: 100%;
        margin-bottom: 30px;
    }

    .menintrf2 {
        width: 100%;
        height: 100%;
        /* overflow: visible; */
        top: 8%;
    }

    .dlnhottr2 {
        stroke: #fff;
    }
}


.speakerStyle01 {
    position: relative;
    z-index: 999;
}

.cmp-revoke-consent {
    bottom: 0;
    right: 0;
    position: fixed;
    padding: 10px;
    z-index: 99999;
    left: inherit;
}

section.TrainingsMainWrapper_.TrainingsMainWrapper_Bottom {
    margin-top: 5px;
}

a.redOutline-btn.WebBtn {
    background: #fff !important;
    color: #152a3f;
    animation: none;
    padding: 9px 10px 8px 10px !important;
    margin: 0 9px 0 0 !important;
}

.TrainingsWrapper_ h2 {
    font-size: 28px;
    line-height: 46px;
}

section.TrainingsMainWrapper_ {
    background: #060606;
}

.EnqureNowBtn p a:hover {
    color: #fff;
}

.EnqureNowBtn p {
    font-size: 16px;
    margin: 14px 0 0 0;
}

section.speakersInner.speakersInnerStyle_2 {
    background-color: #EFF0F0;
}

.onloadpopup:after,
.onloadpopup:before {
    display: none;
}

.headfixed .logo-box_new .top-logo figure.logolockup {
    width: 38%;
    margin: 15px 0 0;
}
.splitlogo a {
    width: unset;
}

    .splitlogo a.gaLogo {
        width: 48%;
        display: inline-block;
    }

a.health-logo {
    width: 29%
}

a.date-logo {
    width: 20%
}

.new-detail figure {
    text-align: center;
}

.redOutline-btn:hover {
    color: #fff;
}

.headerBtn .whiteOutline-btn, .headerBtn .redOutline-btn {
    text-transform: uppercase;
}

.logo-details img.img-fluid {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.logo-details .modal-body {
    width: 100%
}

.logoboard-grey {
    z-index: 999;
}

.workshoproomTab ul li.purpleTab.active a, .workshoproomTab ul li.greenTab.active a, .workshoproomTab ul li.blueTab.active a {
    background: #fff;
    color: #69359a;
}

.speakerITem figcaption p.speakDesg {
    padding: 5px 0px;
}

div#Backdropone .onloadpopup {
    width: 55%;
    margin: 0 auto;
    padding: 0;
    padding-top: 33px !important;
}

.newsslick-carousel {
    overflow: hidden;
}

.cc-message p {
    color: #fff;
}

.cmp-tabs p {
    color: #fff;
}

</style >

<style >
.bannerimg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}


.gitexmaincontainer {
    overflow: hidden !important
}

.top-right {
    position: absolute;
    top: 0;
    right: 0;
    -ms-transform: translateX(30%) translateY(0%) rotate(45deg);
    -webkit-transform: translateX(30%) translateY(0%) rotate(45deg);
    transform: translateX(30%) translateY(0%) rotate(45deg);
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

.badge.red {
    background: #ed1b24;
}

.badge-overlay {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
    -webkit-transition: width 1s ease, height 1s ease;
    -moz-transition: width 1s ease, height 1s ease;
    -o-transition: width 1s ease, height 1s ease;
    transition: width 0.4s ease, height 0.4s ease;
}

.badge {
    margin: 0;
    padding: 0;
    color: white;
    padding: 10px 10px;
    font-size: 15px !important;
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    background: #ed1b24;
}

    .badge::before, .badge::after {
        content: "";
        position: absolute;
        top: 0;
        margin: 0 -10px;
        width: 100%;
        height: 100%;
        background: inherit;
        min-width: 100%;
    }

    .badge::before {
        right: 100%;
    }

    .badge::after {
        left: 100%;
    }

.conferenceArrow a {
    color: #fff !important;
}

.inner-footer li a {
    color: #fff !important;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}
/* Popup Code */
/*logo bio popup*/


/*Exhibitor List Logo Sec CSS*/

/* About Us Css Start */
/* Header Nav Css */
   
   .imghero .aboutOverlay {
       background: linear-gradient(177deg, #00010a73, #000000cc, #0f0f0f8f, #030303ad);
    }
    .aboutOverlay {
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: #152a3f; */
        z-index: 1;
        display: flex;
        align-items: flex;
        align-items: center;
    }
    
    .top-logo {
        display: flex;
        align-items: center;
        }
        .date-venue {
        width: 50%;
        padding-top: 12px;
        margin-left: 12px;
        }
        .date-venue {
        width: 50%;
        padding-top: 12px;
        margin-left: 22px;
        position: relative;
        }
        .date-venue:before {
        border-right: 2px dotted #d1bb70;
        content: '';
        /* background: #056839; */
        width: 2px;
        height: 50px;
        position: absolute;
        top: 14%;
        left: -12px;
        }
        .date-venue {
        width: 50%;
        padding-top: 12px;
        }
        .date-venue:before {
        border-right: 2px dotted #d1bb70;
        content: '';
        /* background: #056839; */
        width: 2px;
        height: 50px;
        position: absolute;
        top: 14%;
        left: -12px;
        }
        p.date-col {
        text-align: start;
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 0px;
        font-weight: 600;
        color: #fff;
        line-height: 20px;
        margin-bottom: 4px;
        }
        #menu-wrapper #hamburger-menu {
        position: relative;
        margin: 16px;
        color: #fff;
        font-weight: 700;
        margin-left: 0;
        }
        .burger {
        font-family: 'Montserrat', sans-serif;
        }
        header.headfixed {
        background: #000 ;
        }
/* End Head */
/*footer Css */
        .fa-location-dot:before, .fa-map-marker-alt:before {
        content: "\f3c5";
        margin-right: 4px;
        color: #ead684;
        }
        .fa-phone-volume:before, .fa-volume-control-phone:before {
        content: "\f2a0";
        color: #ead684;
        margin-right: 4px;
        }
        .fa-user:before {
        content: "\f007";
        color:#ead684;
        margin-right: 13px;
        }
        .footer-social li a span {
        position: relative;
        color: #ead684 !important;
        font-size: 24px;
        }
        .showlogoft figure {
        width: 70%;
        margin: 0;
        }
        /* Css Footer End */
        /* Start New Section  Css */
        .section-title {
        position: relative;
        display: block;
        width: 98%;
        padding-bottom: 0;
        margin-bottom: 32px;
        margin: 0 auto 32px;
        }
        .section-title .section-title__title {
        margin: 0;
        position: relative;
        color: #272727;
        font-size: 45px;
        line-height: 42px;
        font-weight: 600;
        letter-spacing: -0.1px;
        margin: 0;
        margin-bottom: 15px;
        text-transform: uppercase;
        }
        .section-title p {
        color: #000000;
        font-size: 18px;
        line-height: 30px;
        font-weight: 400;
        margin-bottom: 15px;
        }
        .aboutboxthumb {
        position: relative;
        overflow: hidden;
        display: block;
        min-height: 350px;
        height: 100%;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-position: center;
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        border-radius: .825rem;
        width: 100%;
        height: 100%;
        border: 1px solid #e5bdbd;
        padding: 6px;
        z-index: 1;
        padding: calc(100vw* .01);
        transition: .3s;
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
        box-shadow: 0 0 30px rgba(0, 0, 0, .1);
        -webkit-border-radius: .825rem;
        -webkit-transition: .3s;
        }
        .aboutboxthumb::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: rgba(0, 0, 0, .1);
        }
        .aboutcontent.p-0 {
        padding: 0 !important;
        }
        .aboutcontent {
        position: relative;
        margin-bottom: 10px;
        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;
        height: 100%;
        }
        .aboutcontent h4 {
        color: #000000;
        font-size: 28px;
        line-height: 36px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 15px;
        }
        .aboutcontent p {
        color: #000000;
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 15px;
        }
        .singlenavbox {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-bottom: 15px;
        }
        .singlenavbox li {
        position: relative;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        line-height: 28px;
        color: #000;
        margin-bottom: 14px;
        padding-left: 24px;
        }
        .singlenavbox li::before {
        content: "\f192";
        position: absolute;
        left: 0;
        top: 3px;
        font-family: "FontAwesome";
        color: #c81c24;
        font-size: 14px;
        line-height: 1.5;
        font-weight: 900;
        }
        /*End New Section Css */
        .about_Section {
          height: 50vh ;
        }
        .about_Section{
            width: 100%;
            /* height: 100%; */
            background-color: #152a3f;
            position: relative;
        }
        .redSolid-btn {
        background: #a1874a;
        border:1px solid #c0a862;
        }
        .redSolid-btn:hover {
        background: #a1874a;
        color: #fff;
        border: 1px solid #c0a862;
        text-decoration: none;
        }
        .video_tagline_1 {
        width: 100%;
        text-align: center;
        }
        .video_tagline_1 h2 {
            color: #fff;
            font-weight: 700;
            font-size: 65px;
            line-height: 66px;
        }
        
        /* Gradient Css */
        .testelement02 {
        position: absolute;
        bottom: -20%;
        left: -2%;
        z-index: 1 !important;
        }
        .gradientmove3 {
        position: absolute;
        /* animation: yellow 8s infinite ease; */
        width: 100%;
        animation: blurb3 20s infinite ease;
        z-index: 1 !important;
        -webkit-animation: blurb3 20s infinite ease;
        }
        /* Gradient Css */
        /*Card Css */
        .singlenavbox {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-bottom: 15px;
        }
        .singlenavbox li {
        position: relative;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        line-height: 28px;
        color: #000;
        margin-bottom: 14px;
        padding-left: 24px;
        }
        .singlenavbox_1 li{
        color: #fff;
        }
        .singlenavbox li::before {
        content: "\f192";
        position: absolute;
        left: 0;
        top: 3px;
        font-family: "FontAwesome";
        color: #c81c24;
        font-size: 14px;
        line-height: 1.5;
        font-weight: 900;
        }
        .singlenavbox_1 li::before{
        color: #fff;
        }
        .features-style01{
        background-color: #fff;
        }
        .ga-card{
        text-align: start;
        }
        .ga-card .content01{
        padding-left: 7px;
        }
        .ga-card .title{
        font-size: 22px;
        margin-left: 20px;
        line-height: 25px;
        }
        .ga-card:hover {
        border: #fff solid 1px;
        padding: 20px 22px;
        }
        .ga-card:hover:after, .ga-card:focus-within:after {
        background: #000;
        }
        .gradientmove3 {
        position: absolute;
        /* animation: yellow 8s infinite ease; */
        width: 100%;
        animation: blurb3 20s infinite ease;
        z-index: 0 !important;
        -webkit-animation: blurb3 20s infinite ease;
        }
        /*Card Css End */
        .inner-footer li a {
        color: #fff !important;
        font-size: 16px;
        font-weight: 400;
        }
        
        
/* End About Us Css */