@font-face {
    font-family: "Dubai-Bold";
    src: url("../../../webfonts/Dubai-Fonts/Dubai-Bold.woff");
}
@font-face {
    font-family: "Dubai-Regular";
    src: url("../../../webfonts/Dubai-Fonts/Dubai-Regular.woff");
}
@font-face {
    font-family: "Dubai-Medium";
    src: url("../../../webfonts/Dubai-Fonts/Dubai-Medium.woff");
}
body{
    position: relative;
    direction: ltr !important;
    font-family: "Dubai-Regular",sans-serif;
    overflow-x: hidden;
}
a{
    color: #8cc643;
    text-decoration: none;
}
a:hover{
    color: #f0ad4e;
    text-decoration: none;
}
.btn,.btn:focus{
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
}
::selection {
    background: rgb(253 210 68);
    color: #000;
}
.reverse-content{
    flex-direction: row-reverse !important;
}
.text-right,.text-md-right{
    text-align: left !important;
}
.text-left,.text-md-left{
    text-align: right !important;
}
.mr-1,.mr-md-1{
    margin-left: .25rem!important;
}
.mr-2,.mr-md-2{
    margin-left: .5rem!important;
}
.mr-3,.mr-md-3{
    margin-left: 1rem!important;
}
.mr-4,.mr-md-4{
    margin-left: 1.5rem!important;
}
.mr-5,.mr-md-5{
    margin-left: 3rem!important;
}
.ml-1,.ml-md-1{
    margin-right: .25rem!important;
}
.ml-2,.ml-md-2{
    margin-right: .5rem!important;
}
.ml-3,.ml-md-3{
    margin-right: 1rem!important;
}
.ml-4,.ml-md-4{
    margin-right: 1.5rem!important;
}
.ml-5,.ml-md-5{
    margin-right: 3rem!important;
}

/* Navbar-CSS */
.navbar-style{
    background-color: white;
    z-index: 999999;
    transition: all 0.7s;
}
.navbar-style.active{
    box-shadow: 0 0 50px -25px #000;
    transition: all 0.7s;
    position: fixed;
    top: 0;
    width: 100%;
    animation: slide-down 0.7s;
    opacity: 1;
}
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.dropdown{
    position: unset;
}
.flex-100{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.dropdown-menu{
    border-radius: 0;
    border: none;
    right: unset;
    left: 70px;
    top: 95%;
    border-top: 1px solid #8cc643;
    min-width: 260px;
    background-color: white;
    box-shadow: 0 0 2px rgb(0 0 0 / 10%);
    display: none;
    padding: 20px;
}
.dropdown-menu.about{
    left: 215px !important;
}
.dropdown-menu.archive {
    left: 330px !important;
}
.dropdown-menu.active{
    width: 250px;
    top: 134%;
    display: block;
    margin-top: 14px;
}
.dropdown-item {
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    display: block;
    padding: 15px;
    width: 100%;
    clear: both;
    font-weight: 400;
    color: #213460;
    white-space: nowrap;
    border: 0;
    background: none;
    text-align: left;
    border-radius: 4px;
}
.dropdown-item:hover {
    background-color: rgb(140 198 67);
    color: rgb(253 210 69)!important;
}
.main-flex{
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
}
.logo-div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.main-logo{
    width: 100%;
}
/* center page */
.register-link,.register-link:hover{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 16px;
    background-color: rgb(247 164 47);
    color: rgb(33 52 96);
    display: block;
    width: 93px;
    height: 32px;
    border-radius: 10px;
    padding-top: 5px;
    text-align: center;
}
.switch-lang-menu ,.switch-lang-menu:hover{
    font-family: "Dubai-Bold",sans-serif;
    font-weight: bold;
    font-size: 17px;
    background-color: #8cc643;
    color: white;
    padding-top: 3px;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}
.search-icon{font-size: 16px;}
.menu-nav-link{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 17px;
    color: #213460;
    position: relative;
}
.menu-nav-link.active{
    color: #8cc643 !important;
}
.menu-nav-link:hover{
    color: rgb(253 210 69) !important;
}
.menu-nav-link:after{
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background-color: #8cc643;
    position: absolute;
    right: 0;
    bottom: 3px;
    transition: 0.4s;
}
.hover-link{
    position: relative;
    display: inline-block;
}
.hover-link:after{
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background-color: #8cc643;
    position: absolute;
    right: 0;
    bottom: -25px;
    transition: 0.4s;
}
.menu-nav-link.active:after,.hover-link:hover:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    transition: 0.4s;
}
.search-icon-div{
    display: inline-block;
    position: absolute;
    top: 14px;
    right: 13px;
    width: fit-content;
}
.search-input-div{
    opacity: 0;
    /*transform: scaleY(0);*/
    transition: all .4s ease 0s;
    position: relative;
    bottom: -10px;
    width: 0;
}
.search-input-div.active{
    /*transform: scaleY(1);*/
    transition: all .4s ease 0s;
    opacity: 1;
    bottom: 0;
    width: 100%;
}
.search-input,.search-input:focus{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 16px;
    color: #505050;
    border: 1px solid rgb(234 237 239);
    background: rgb(255 255 255);
    border-radius: 5px;
    padding: 10px 40px 10px 20px;
    width: 100%;
    outline: none;
}
.search-input::placeholder{
    text-align: left !important;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
.bars-icon{
    font-size:25px;
    cursor:pointer;
    position: relative;
    top: 1px;
    float: right;
    display: none;
}
.nav-flex{
    display: flex !important;
}
.back-div{
    width: 100%;
    height: 80px;
}
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: rgb(33 52 96);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 10px;
    width: 100%;
    text-align: center;
}

.overlay a {
    font-family: "Dubai-Regular",sans-serif;
    padding: 8px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
    text-align: right;
}

.overlay a:hover, .overlay a:focus {
    color: white;
}

.overlay .closebtn {
    position: absolute;
    top: 19px;
    left:6%;
    right: 8px;
    font-size: 24px;
    background: rgb(255 255 255);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0!important;
}
.back-btn{
    width: 15px;
}
.ar-span{
    position: relative;
    bottom: 2px;
}
.desktop-hide{
    display: none;
}
/* End Navbar-CSS */



/* Main-CSS */
.fixed-social{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    background-color:rgb(33 52 96);
    width: 60px;
    height: auto;
    position: fixed;
    top: 160px;
    right: 0 !important;
    border-radius: 0 0 5px 0;
    z-index: 99;
}
.fixed-social-link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 57px;
    height: 57px;
    font-size: 19px;
    color: white;
    transition: all .3s ease 0s;
}
.fixed-social-link:hover{
    border-radius: 0 5px 5px 0;
    width: 68px;
    color: white;
    background-color:rgb(70 101 163);
    transform: scaleX(1);
    transition: all .3s ease 0s;
    margin-left: -10px !important;
}
#scroll-up{
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: rgb(255 255 255);
    color: rgb(33 52 96);
    font-size: 27px;
    z-index: 10;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    opacity : 0;
    transition: 0.5s;
}
#scroll-up:hover{
    background-color: rgb(33 52 96);
    color: white;
}
#scroll-up.active{
    opacity : 1;
    transition: 0.5s;
}
.main-video-div{
    position: relative;
    width: 100%;
    height: 700px;
}
.opacity-video-div{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29,45,80,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.muntada-title{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 73px;
    font-weight: 600;
    text-shadow: 1px 3px 0 rgb(0 0 0 / 30%);
    color: white;
}
.muntada-time{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 46px;
    font-weight: 600;
    text-shadow: 1px 3px 0 rgb(0 0 0 / 30%);
    color: white;
    margin-top: 60px;
}
.register-now-link{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    background-color: rgb(247 165 48);
    border-radius: 13px;
    padding: 10px 40px;
    display: inline-block;
}
.register-now-link:hover,.more-link:hover,.more-link.blue:hover{
    color: #8cc643;
    background-color: rgb(33 52 96);
}
#clockdiv{
    display: flex;
    justify-content: center;
}
.clock-sub-div:not(:first-child){
    margin-left: 30px;
}
.days,.hours,.minutes,.seconds{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 67px;
    color: white;
}
.time-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 22px;
    color: white;
}

.activity-section{
    background-color: rgb(231 230 236);
    padding-top: 100px;
    padding-bottom: 85px;
}
.section-title{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 40px;
    line-height: 46px;
    color: rgb(33 52 96);
}
.line-icon{
    width: 28%;
}
.activity-pills{
    justify-content: center;
    padding-left: 0;
}
.activity-pills .activity-link.active, .activity-pills .show>.activity-link,.activity-pills .activity-link:hover{
    background-color: white !important;
}
.activity-link,.activity-link:focus{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 285px;
    height: 125px;
    border-radius: 40px !important;
    border: 5px solid;
    background: rgb(231 230 236);
    outline: none;
}
.activity-link:after{
    content: "";
    display: none;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    position: absolute;
    bottom: -12px
}
.activity-time{
    font-size: 16px;
}
.activity-link.active:after{
    display: block;
}
.activity-link.green:after{
    border-top: 12px solid #8cc643;
}
.activity-link.blue:after{
    border-top: 12px solid #213460;
}
.activity-link.orange:after{
    border-top: 12px solid #f7a530;
}
.activity-link.pink:after{
    border-top: 12px solid #cb1d5c;
}
.activity-link.green{
    color: #8cc643 !important;
    border: 5px solid #8cc643;
}
.activity-link.pink{
    color: #cb1d5c  !important;
    border: 5px solid #cb1d5c ;
}
.activity-link.blue{
    color: #213460 !important;
    border: 5px solid #213460;
}
.activity-link.orange{
    color: #f7a530 !important;
    border: 5px solid #f7a530;
}
.activity-box-div{
    background-color: rgb(239 239 242);
    margin-top: 35px;
    text-align: left !important;
}
.clock-icon{
    font-size: 18px;
    color: #8cc643;
}
.event-time{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 18px;
    color: #213460;
    margin-right: 10px;
}
.event-link{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 28px;
    color: #213460;
}
.event-link:hover{
    color: rgb(253 210 69);
}
.trainers-speakers-title{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 28px;
    color: #cb1d5c;
}
.event-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 17px;
    color: #213460;
    line-height: 30px;
}
span{
    background: none !important;
}
.person-img-div{
    display: flex;
    width: 75px;
    height: 75px;
    border-color: #8cc643;
    border-top-width: 0;
    border-right-width: 1px;
    border-bottom-width: 4px;
    border-left-width: 1px;
    border-style: solid;
    border-radius: 50%;
    margin: auto;
}
.person-link{
    display: inline-block;
    margin-left: 10px;
    flex: 0 0 19%;
}
.person-img{
    border-radius: 50%;
    width: 100%;
    height: 100%;
}
.person-name{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 22px;
    color: #cb1d5c;
}
.event-lang-box{
    font-family: "Dubai-Bold",sans-serif;
    font-weight: bold;
    font-size: 16px;
    background-color: #8cc643 !important;
    color: white;
    padding-top: 3px;
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
}
.event-lang-box.en{
    margin-right: 5px;
    margin-left: 10px;
}
.mt-100{
    margin-top: 40px;
}
.guest-img-div,.session-img-div{
    position: relative;
    border-radius: 5px;
}
.guest-img-div:before,.session-img-div:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 30%);
    border-radius: 5px;
    z-index: 1;
}
.guest-img,.session-img{
    width: 100%;
    border-radius: 5px;
}
.guest-content-div,.session-content-div{
    position: absolute;
    bottom: 0;
    z-index: 999;
    left: 18px;
    text-align: left;
    opacity: 1;
}
.guest-content-div.active,.session-content-div.active{
    opacity: 0;
}
.guest-name,.session-name{
    font-family: "Dubai-Regular", sans-serif;
    color: white;
    font-size: 22px;
    display: block;
}
.guest-position,.session-position{
    font-family: "Dubai-Regular", sans-serif;
    color: white;
    font-size: 15px;
    display: block;
}
.guest-img-div:after,.session-img-div:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 100%;
    width: 100%;
    background-color: rgba(80, 80, 80, 0.8);
    border-radius: 5px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .4s ease 0s;
}
.guest-img-div:hover:after,.session-img-div:hover:after{
    bottom: 0;
    opacity: 1;
    transition: all .4s ease 0s;
}
.guest-hover-div,.session-hover-div{
    position: absolute;
    inset: 0;
    display: none;
}
.guest-hover-div.active,.session-hover-div.active{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    padding: 0 35px;
}
.guest-hover-name{
    font-family: "Dubai-Regular", sans-serif;
    color: #8cc643;
    font-size: 20px;
}
.session-hover-name{
    font-family: "Dubai-Regular", sans-serif;
    color: #213460;
    font-size: 20px;
}
.session-hover-name:hover{
    color: #8cc643;
}
.more-link{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    background-color: rgb(247 165 48);
    border-radius: 13px;
    display: flex;
    width: 150px;
    height: 48px;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.more-link.muntada{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: white;
    background-color: rgb(247 165 48);
    border-radius: 13px;
    display: flex;
    width: 300px;
    height: 53px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}
.more-link.blue{
    color: rgb(33 52 96);
}
.more-arrow {
    font-size: 18px;
    position: relative;
    bottom: 3px;
    left: 4px;
    transform: rotate(180deg);
}
.goals-section{
    background-image: url("../../images/about-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding-top: 100px;
}
.goals-div{
    background-color: rgb(250 249 251);
}
.goals-title{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 28px;
    color: rgb(33 52 96);
}
.goals-ul{
    padding-left: 0;
    list-style: none;
    width: 95%;
}
.goals-ul p{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 18px;
    color: rgb(33 52 96);
    text-align: justify;
    margin-left: 9px;
}
.goals-ul li{
    display: flex;
    align-items: baseline;
    color: rgb(33 52 96);
}
.goals-ul li::before {
    content: "\2022";
    color: rgb(33 52 96);
    font-weight: bold;
    display: inline-block;
    font-size: 30px;
    position: relative;
    top: 3px;
    left: 5px;
}
.goals-video-div{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgb(247 165 48);
    padding: 10px;
}
.play-video-link,.play-video-link:hover{
    font-size: 35px;
    background-color: rgb(33 52 96);
    color: rgb(140 198 67);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(33 ,52 ,96, 1);
    transform: scale(1);
    animation: pulse-black 1.7s infinite;
}
@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(33 ,52 ,96, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 25px rgba(33 ,52 ,96, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(33 ,52 ,96, 0);
    }
}
.modal{
    background-color: rgba(0,0,0,0.8);
}
.video-modal-dialog{
    max-width: 900px;
}
.video-modal-content{
    border: none !important;
    background: none !important;
    height: 100%;
}
.video-modal-close,.video-modal-close:hover{
    opacity: 1 !important;
    color: white;
    font-size: 28px;
}
.committee-modal-close-div{
    position: absolute;
    top: 5px;
    right: 13px;
}
.committee-modal-close,.committee-modal-close:hover{
    text-shadow: none;
    color: #525252;
    opacity: 1 !important;
    font-size: 28px;
}
.iframe-div{
    background-color: rgb(0 0 0);
}
.iframe-style{
    width: 100%;
    height: 430px;
}
.numbers-section{
    background-color: rgb(33,52,96,0.53);
}
.numbers-icons{
    font-size: 50px;
    color: rgb(220 220 220);
    line-height: 60px;
}
.number-div{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 60px;
    color: rgb(140 198 67);
    line-height: 60px;
}
.numbers-icons:hover{
    color: rgb(253 210 69);
}
.number-div:hover{
    color: rgb(247 165 48);
}
.numbers-txt{
    font-family: "Dubai-Bold",sans-serif;
    color: rgb(247 165 48);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
}
.committee-img-div{
    position: relative;
}
.committee-img{
    width: 100%;
}
.committee-content-div{
    position: absolute;
    bottom: 0;
    z-index: 999;
    left: 0;
    text-align: center;
    opacity: 1;
    right: 0;
    padding-bottom: 35px;
    transition: 0.3s;
}
.committee-name-div{
    position: relative;
    bottom: -10px;
    transition: 0.3s;
}
.committee-name-div.active{
    bottom: 0;
    transition: 0.3s;
}
.committee-content-div:before{
    content: '';
    position: absolute;
    top: 15%;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background: linear-gradient(to bottom, rgb(34 34 34 / 0%), rgb(34 34 34));
    z-index: 0;
    pointer-events: none;
}
.committee-name{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 24px;
    color: white;
    display: block;
}
.committee-name:hover{
    text-decoration: underline;
}
.committee-more{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 19px;
    color: rgba(255,255,255,0.5);
    opacity: 0;
}
.committee-more:hover{
    color: white;
}
.more-arrow-span{font-size: 12px;}
.committee-link:hover .committee-content-div:before{
    top: 10%;
    transition: 0.3s;
}
.committee-link:hover .committee-more{
    opacity: 1;
}
.sponsor-link-box{
    display: block;
    background-color: white;
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 25%);
    border-radius: 8px 8px 8px 8px;
}
.sponsor-link-box:hover img{
    transform : scale(0.9);
}
.committee-modal-dialog{
    max-width: 950px;
}
.committee-body-style{
    background: rgb(255 255 255);
    border-radius: 20px;
    width: 100%;
    height: 100%;
}
.committee-content-style{
    background: none !important;
    border: none !important;
    border-radius: 20px !important;
    height: 445px;
}
.committee-img-popup-div,.committee-img-popup-div img{
    width: 100%;
    border-radius: 0 20px 20px 0;
    height: 100%;
}
.committee-details-popup{width: 100%;}
.committee-details-name{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 22px;
    color: black;
}
.scroll-committee-content{
    overflow-y: scroll;
    height: 94%;
    width: 100%;
}
.committee-details-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 18px;
    color: black;
    line-height: 38px;
    max-height: 250px;
    overflow-y: auto;
}
.share-title{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 16px;
    color: rgb(33 52 96);
}
.share-social-div{
    display: flex;
    justify-content: center;
}
.social-media-inside-link,.social-media-inside-link:hover{
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.social-media-inside-link:not(:first-child){
    margin-right: 0 !important;
    margin-left: 5px;
}
.social-media-inside-link.fb{background-color:rgb(60 88 154);}
.social-media-inside-link.twitter{background-color:rgb(85 172 238);}
.social-media-inside-link.whatsapp{background-color:rgb(85 235 76);}
.social-media-inside-link.linkedin{background-color:rgb(0 119 181);}
.social-media-inside-link.share{background-color:rgb(238 142 45);}
.add-to-title{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 18px;
    color: rgb(33 52 96);
}
.add-to-icon{
    width: 50px;
}
#registerModal{
    transform: scale(1.2);
    transition:  0.2s;
    z-index: 9999999;
}
.register-modal-close,.register-modal-close:hover{
    opacity: 1 !important;
    color: rgb(56 196 180);
    font-size: 24px;
}
.modal.fade .register-modal-dialog{
    transform: scale(0.3);
    transition: transform 0.5s ease-out;
}
.modal.show .register-modal-dialog {
    transform: scale(0.8);
    transition: transform 0.5s ease-out;
}
.register-modal-dialog{
    max-width: 850px!important;
    margin-top: 50px;
}
.register-modal-content{
    background: none;
    width: 100%;
    height: 100%;
}
.register-modal-body-style{
    background-color: rgb(56 69 79);
    padding: 20px !important;
    width: 100%;
    height: 100%;
}
/* End Main-CSS */

/* Footer-CSS */
.footer-bg{
    background-color: rgb(65 64 66);
}
.social-media-footer{
    display: flex;
    justify-content: start !important;
}
.social-media-footer-link{
    background-color: rgb(51 51 51);
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(153 153 153);
}
.social-media-footer-link:not(:first-child){
    margin-right: unset !important;
    margin-left: 12px !important;
}
.social-media-footer-link:hover{
    background-color: orange;
    color: white;
    transform: scale(1);
    animation: pulse-black 0.5s infinite;
}
@keyframes pulse-black {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
.main-footer-links{
    display: flex;
    justify-content: space-around;
}
.footer-links-title{
    font-family: "Dubai-Regular",sans-serif;
    color: rgb(255 255 255);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    position: relative;
}
.contact-footer-div,.help-footer-div{
    margin-top: 35px;
}
.contact-footer-flex,.help-footer-flex{
    display: flex;
}
.footer-links-title:after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: rgb(140 198 67);
    position: absolute;
    bottom: -9px;
    left: 0;
    right: unset !important;
    top: 36px;
}
.footer-icon{
    font-size: 14px;
    color: rgb(140 198 67);
}
.footer-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 16px;
    color: rgb(170 170 170);
    margin-left: 14px !important;
    /*width: 88%;*/
}
.contact-footer-flex:hover .footer-text,.contact-footer-flex:hover .footer-icon{
    color: white;
}
.help-icon{
    font-size: 12px;
    color: rgb(170 170 170);
    transform: rotate(180deg) !important;
}
.help-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(170 170 170);
    margin-left: 14px !important;
}
.help-footer-flex:hover .help-icon{
    color: white;
}
.help-footer-flex:hover .help-text{
    color: rgb(140 198 67);
}
.footer-input-style,.footer-input-style:focus{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    background-color: white;
    border: 1px solid #aaaaaa;
    border-radius: 5px;
    padding-left: 15px !important;
    width: 75%;
    height: 45px;
    outline: none;
    text-align: left;
}
.submit-footer-btn{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 18px;
    color: white;
    border-radius: 5px;
    border: 1px solid rgb(0 123 255);
    background-color: rgb(33 52 96);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75%;
    height: 45px;
    float: left;
}
.submit-footer-btn:hover{
    background-color: rgb(67 80 110);
}
.copyright-div{
    background-color: rgb(52 50 53);
}
.copyright-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(153 153 153);
}
.copyright-by,.copyright-by:hover{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(253 210 69);
}
/* End Footer-CSS */

/* About-CSS */
.about-title{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 37px;
    color: #213460;
    position: relative;
    text-align: left !important;
    padding-left: 15px !important;
}
.about-title:after{
    content: "";
    display: inline-block;
    width: 5px;
    height: 50px;
    background-color: rgb(253 210 68);
    position: absolute;
    top: 0;
    left: 0;
}
.about-subtitle{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 18px;
    color: #213460;
    line-height: 35px;
    text-align: left !important;
}
.about-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: #213460;
    text-align: left !important;
}
.about-ul,.about-modawena-ul{
    padding-right: 0;
}
.about-ul li{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 20px;
    color: rgb(33 52 96);
    margin-top: 45px;
    line-height: 38px;
    text-align: left !important;
}
.about-time{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 45px;
    color: rgb(140 198 67);
}
.about-muntada{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 37px;
}
.about-muntada.blue{
    color: #213460;
}
.about-muntada.green{
    color: rgb(140 198 67);
}
.about-muntada-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 21px;
    color: #213460;
    text-align: left !important;
}
.about-modawena-ul li {
    font-family: "Dubai-Regular",sans-serif;
    font-size: 20px;
    color: rgb(33 52 96);
    line-height: 38px;
    text-align: left !important;
}
.gift-text p, ul li,p{
    color: rgb(33 52 96);
}
.hamleh-link{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 20px;
    color: rgb(140 198 67);
}
.hamleh-link:hover{
    color: rgb(247 165 48);
}
.contact-title{
    font-family: "Dubai-Regular",sans-serif;
    color: rgb(33 52 96);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3em;
}
.contact-title:after{
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: rgb(140 198 67);
    position: relative;
    top: 9px;
}
.contact-flex{display:flex;}
.contact-text {
    font-family: "Dubai-Regular", sans-serif;
    font-size: 16px;
    color: rgb(33 52 96);
    margin-left: 14px;
}
.contact-icon {
    font-size: 15px;
    color: rgb(140 198 67);
}
.contact-flex:hover .contact-text{
    color: rgb(140 198 67);
}
.contact-flex:hover .contact-icon{
    color: rgb(33 52 96);
}
.span-label{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(33 52 96);
    display: block;
}
.contact-input,.contact-input:focus{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 16px;
    color: black;
    padding-right: 15px;
    outline: none;
    width: 100%;
    height: 45px;
    border: 1px solid rgb(225 225 225);
}
.contact-textarea,.contact-textarea:focus{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 16px;
    color: black;
    padding-top: 15px;
    padding-right: 15px;
    outline: none;
    width: 100%;
    border: 1px solid rgb(225 225 225);
    resize: none;
}
.contact-submit{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(33 52 96);
    background-color: rgb(247 165 48);
    padding: 17px 29px;
    border-radius: 15px;
}
.contact-submit:hover{
    background-color: rgb(33 52 96);
    color: rgb(140 198 67);
}
/* End About-CSS */

/* Trainers-CSS */
.trainers-div{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgb(33 52 96);
}
.trainers-img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.trainers-name-div{
    background-color: rgb(33 52 96);
    width: 100%;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 0;
    opacity: 1;
    z-index: 999;
    padding: 8px;
}
.trainers-name-div.active{
    opacity: 0;
}
.trainer-name{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 19px;
    color: rgb(140 198 67);
    display: block;
}
.trainer-position{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 15px;
    color: white;
    display: block;
}
.trainers-div:after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: -10px;
    height: 100%;
    width: 100%;
    background-color: rgb(80 80 80 / 80%);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .4s ease 0s;
}
.trainers-div.active:after{
    bottom: 0;
    opacity: 1;
    transition: all .4s ease 0s;
}
.trainers-hover-div {
    position: absolute;
    inset: 0;
    display: none;
}
.trainers-hover-div.active{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 0 35px;
}
.trainer-link{
    cursor: pointer;
}
.trainer-social{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    background: none;
    color: rgb(140 198 67);
    border: 1px solid rgb(140 198 67);
    font-size: 20px;
    border-radius: 50%;
    margin: auto;
}
.trainer-social:hover{
    background-color: white;
    color: rgb(247 165 48);
    border: 1px solid rgb(247 165 48);
}
.trainers-inside-div{
    background-color: rgb(33 52 96);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: -70px;
    padding: 12px 18px;
}
.trainer-inside-name{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 20px;
    color: white;
}
.trainer-inside-position{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 16px;
    color: white;
}
.trainer-social-box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    line-height: 30px;
    font-size: 18px;
    background-color: rgb(216 216 216);
    color: rgb(33 52 96);
    border-radius: 2px;
    transition: all .3s ease 0s;
}
.trainer-social-box:hover{
    background-color: rgb(33 52 96);
    color: white;
    transition: all .3s ease 0s;
}
.trainer-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 17px;
    color: rgb(33 52 96);
    line-height: 30px;
}
.share-guest-title{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 19px;
    color: rgb(33 52 96);
    line-height: 30px;
    display: flex;
    align-items: end;
    margin-left: 15px !important;
}
.share-guest-title:before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 42px;
    background-color: rgb(242 162 48);
    position: relative;
    right: 12px !important;
    left: unset !important;
}
.blue-box-div{
    background-color: rgb(33 52 96);
    padding: 5px;
    width: 100%;
}
.blue-box-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 19px;
    color: white;
    line-height: 30px;
}
.date-div,.time-div{
    display: block !important;
    position: relative;
    margin-top: 4px;
}
.date-div:after{
    content: "";
    display: none;
    width: 170px;
    border-bottom: 2px dashed rgb(221 221 221);
    margin: 2px 0;
    position: absolute;
    bottom: -2px;
    right: unset !important;
    left: 0 !important;
}
.session-icon{
    font-size: 18px;
    color: rgb(33 52 96);
}
.session-time{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 18px;
    color: rgb(140 198 67);
    margin-right: 5px;
}
.date-div:hover .session-icon, .time-div:hover .session-icon{
    color: rgb(140 198 67);
}
.date-div:hover .session-time, .time-div:hover .session-time{
    color: rgb(33 52 96);
}
.register-inside-now{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 16px;
    color: white;
    background-color: rgb(242 162 48);
    line-height: 1.5em;
    border-radius: 10px;
    padding: 10px 20px;
    transition: all .3s ease 0s;
}
.register-inside-now:hover{
    background-color: rgb(33 52 96);
    color: rgb(140 198 67);
    transform: scale(1.1);
    transition: all .3s ease 0s;
}
.col-margin-right{
    margin-right: 20px;
}
/* End Trainers-CSS */

/* Search-CSS */
.search-section-bg{
    background-color: rgb(0 9 41);
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-title{
    font-family: "Dubai-Regular",sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 42px;
    color: rgb(255 255 255);
    font-weight: 500!important;
    font-size: 40px;
    position: relative;
    padding-bottom: 25px;
}
.search-title:after{
    background: url("../images/line_inner.png") no-repeat;
    content: "";
    width: 350px;
    height: 12px;
    position: absolute;
    left: 0;
    bottom: -4px;
    margin: 0 auto;
    right: 0;
    background-size: 100%;
}
.search-result-text{
    color: rgb(221 221 221);
    font-size: 16px;
    font-weight: 500;
}
.search-content-div{text-align: left !important;}
.search-content-div:not(:last-child){
    border-bottom: 1px solid rgb(237 237 237);
    padding-bottom: 40px;
}
.search-link{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 30px;
    color: #212121;
}
.search-link:hover{
    color: rgb(253 210 69);
}
.search-text{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 18px;
    color: #213460;
}
.search-more-link{
    font-family: "Dubai-Regular", sans-serif;
    background-color: rgb(247 165 48);
    color: rgb(0 0 0);
    transition: .4s;
    padding: 10px 18px;
    border-radius: 35px;
    border: none;
    font-weight: 500;
    display: inline-block;
}
.search-more-link:hover{
    background-color: #213460;
    color: #8cc643;
}
/* End Search-CSS */

/* Session-CSS */
.session-title{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 30px;
    color: rgb(33 52 96);
}
.time-date-div{
    display: flex;
    justify-content:center;
    align-items:center;
}
.session-time-div:after{
    content: "";
    display: block;
    width: 55%;
    height: 3px;
    background-color: rgb(252 151 39);
    margin: 23px auto;
}
.session-icon{
    font-size: 28px;
    color: rgb(33 52 96);
}
.session-time{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 28px;
    color: #8cc643;
}
.time-div{
    margin-right: 0 !important;
    margin-left: 55px !important;
}
.time-div.trainers{
    margin-left: 0 !important;
}
.session-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 22px;
    color: rgb(33 52 96);
    line-height: 30px;
    text-align: left !important;
}
.session-org-title{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 30px;
    color: rgb(33 52 96);
    display: flex;
    align-items: flex-start;
}
.session-org-title:before{
    content: "";
    display: inline-block;
    width: 5px;
    height: 55px;
    background-color: rgb(253 210 69);
    margin-left: 0 !important;
    margin-right: 15px;
}
.session-muntada-title{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 35px;
    color: rgb(33 52 96);
    text-align: left !important;
}
.muntada-time-box{
    width: 100%;
    height: 100%;
    background-color: rgb(97 46 167);
    padding: 27px;
}
.muntada-time-div{
    display: flex;
    justify-content: space-between;
}
.muntada-time-div:not(:last-child){
    border-bottom: 1px solid rgb(86 40 149);
    padding-bottom: 20px;
}
.muntada-time-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 17px;
    color: white;
    margin-right: 5px;
}
.muntada-icon{
    font-size: 17px;
    color: white;
    /*color: rgb(33 52 96);*/
}
.muntada-register{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 18px;
    color: white;
    background-color: #f7a530;
    border-radius: 35px;
    padding: 12px 30px;
    display: flex;
    transition: all .3s ease 0s;
    margin: auto;
}
.muntada-register:hover{
    background-color: #213460;
    color: #8cc643;
}
.nav-muntada{
    justify-content: center;
    padding-right: 0;
}
.nav-muntada .muntada-tabs.active, .nav-muntada .show>.muntada-tabs {
    color: rgb(255 255 255);
    background-color: white !important;
}
.nav-muntada .muntada-tabs{
    width: 300px;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid white;
    border-radius: 40px;
}
.nav-muntada .muntada-tabs.green{
    background-color: #8cc643;
    border: 4px solid #8cc643;
}
.nav-muntada .muntada-tabs.blue{
    background-color: rgb(33 52 96);
    border: 4px solid rgb(33 52 96);
}
.nav-muntada .muntada-tabs.orange{
    background-color: rgb(247 165 48);
    border: 4px solid rgb(247 165 48);
}
.muntada-day-text{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 22px;
    color: white;
}
.muntada-date-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 16px;
    color: white;
}
.muntada-tabs.active .muntada-day-text.green,.muntada-tabs.active .muntada-date-text.green{
    color: #8cc643;
}
.muntada-tabs.active .muntada-day-text.blue,.muntada-tabs.active .muntada-date-text.blue{
    color: #213460;
}
.muntada-tabs.active .muntada-day-text.orange,.muntada-tabs.active .muntada-date-text.orange{
    color: #f7a530;
}
.muntada-tabs.active .muntada-day-text.pink,.muntada-tabs.active .muntada-date-text.pink{
    color: #cb1d5c;
}
.muntada-table{
    width: 100%;
}
.muntada-table th,.muntada-table td{
    padding: 20px;
}
.main-tr{
    background-color: #f7f7f7 !important;
}
tr:nth-child(odd) {background-color: white;}
tr:nth-child(even){background-color: #f7f7f7;}
.muntada-table th{
    font-family: "Dubai-Bold", sans-serif;
    font-size: 20px;
    color: #213460;
}
.muntada-table td,.muntada-table td a{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 19px;
    color: #212121;
    width: 30%;
}
.td-time{
    color: #213460 !important;
}
.muntada-person-link{
    display: inline-block;
    width: 20% !important;
}
.muntada-person{
    width: 100%;
    border-radius: 50%;
}
.next-prev-link{
    font-family: "Dubai-Regular", sans-serif;
    font-size: 18px;
    color: #212121;
    display: flex;
    align-items: center;
}
.next-arrow-span{
    position: relative;
    top: 2px;
    right: unset !important;
    left: 5px !important;
}
.next-prev-link:hover{
    color: #8cc643;
}
/* End Session-CSS */

/* Question-CSS */
.question-my{margin-top: 120px;margin-bottom: 155px;}
.question-div:not(:first-child){
    margin-top: 50px;
}
.question-box-div{
    background: rgb(247 247 247);
    padding: 15px 35px;
}
.question-title{
    font-family: "Dubai-Bold",sans-serif;
    font-size: 28px;
    line-height: 32px;
    color: rgb(33 52 96);
    display: flex;
    align-items: baseline;
    margin-bottom: 0;
}
.question-title:before {
    content: "";
    display: inline-block;
    transform: rotate(45deg);
    height: 28px;
    width: 15px;
    border-bottom: 6px solid rgb(33 52 96);
    border-right: 6px solid rgb(33 52 96);
}
.question-text-div{padding: 15px 25px;}
.question-text{
    font-family: "Dubai-Regular",sans-serif;
    font-size: 17px;
    line-height: 28px;
    color: rgb(33 52 96);
}
.question-link{
    color: #8cc643;
}
.question-link:hover{color: #f7a530;}
/* End Question-CSS */
.green_div{
    border-color: #8cc643 !important
}
.orange_div{
    border-color: #f7a530 !important;

}
.blue_div{
    border-color: #213460 !important;

}
.pink_div{
    border-color: #cb1d5c !important;

}
.green_title{
    color:#cb1d5c;
}
.blue_title{
    color:#62892c;
}
.orange_title{
    color: #213460;
}

.speakers-main-div{
    display: flex;
    flex-wrap: wrap;
}
/* added by rawan for live event option */
.circle-offline{
  /* position: absolute;
    left: 50%;
    top: 50%; */
    transform: translateX(-50%) translateY(-50%);
    width: 17px;
    height: 17px;
    margin-left: 20px;
}
.circle-offline:before {
    content: "";
    position: relative;
    display: block;
    width: 190%;
    height: 190%;
    box-sizing: border-box;
    margin-left: -5px;
    margin-top: 0px;
    border-radius: 45px;
    background-color: gray;
    animation: pulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }
  .circle-offline:after {
    content: "";
    position: absolute;
    left: 3px;
    top: 8px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: gray;
    border-radius: 50px;
    animation: circle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.5s infinite;
  }
  
.circle {
    /* position: absolute;
    left: 50%;
    top: 50%; */
    transform: translateX(-50%) translateY(-50%);
    width: 17px;
    height: 17px;
    margin-left: 20px;
  }
  .circle:before {
    content: "";
    position: relative;
    display: block;
    width: 190%;
    height: 190%;
    box-sizing: border-box;
    margin-left: -5px;
    margin-top: 0px;
    border-radius: 45px;
    background-color: red;
    animation: pulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  }
  .circle:after {
    content: "";
    position: absolute;
    left: 3px;
    top: 8px;
    display: block;
    width: 100%;
    height: 100%;
    background-color: red;
    border-radius: 50px;
    animation: circle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.5s infinite;
  }
  .live-img{
    border-radius: 50%;
    width: 100%;
    height: 100%;
}
.online{
    width: 25px;
    height: 30px;
    /* margin-left: 20px; */
  }
  .Offline-img{
    width: 20px;
    height: 25px;
  }
 
  @keyframes pulse {
    0% {
      transform: scale(0.4);
    }
    80%, 100% {
      opacity: 0;
    }
  }
  @keyframes circle {
    0% {
      transform: scale(0.7);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.7);
    }
  }

/* All Media Queries */
@media screen and (max-height: 450px) {
    .bars-icon{
        display: none;
    }
    .overlay a {font-size: 18px;}
    .overlay .closebtn {
        font-size: 21px;
        top: 15px;
        left: 5px;
    }
    /*.person-link{
        margin-left: 50%;
    }*/
}

@media (max-width:900px){
    .row-direction{
        flex-direction: row-reverse;
    }
    .web-header{
        display: none;
    }
    .bars-icon{
        display: block;
    }
    .lang-social-div{
        justify-content: center;
    }
    .bars-icon{
        color:  black;
    }
    .header-title{
        font-size: 16px;
    }
    .right-menu-arrow{
        color: black;
    }
    .switch-lang-menu, .switch-lang-menu:hover {
        font-size: 16px;
        background-color: #8cc643;
        color: white;
        padding-top: 3px;
        display: flex !important;
        width: 30px;
        height: 30px;
        justify-content: center;
        align-items: baseline;
    }
    .main-flex{
        justify-content: start;
    }
    .search-collapse-div{
        display: block;
    }
    .main-logo-div{
        width: 50%;
        margin: auto;
    }
    .mobile-hide{
        display: none !important;
    }
    .desktop-hide{
        display: block;
    }
    .overlay a{
        text-align: left;
        font-size: 16px;
        color: rgb(255 255 255) !important;
        display: block;
        white-space: normal;
    }
    .dropdown-menu{
        box-shadow: none;
        border-radius: 5px;
        border: none;
        left: unset;
        right: 0;
        background-color: rgb(46 64 105) !important;
        margin-top: 16px;
        margin-bottom: 12px;
    }
    .main-logo{
        width: 100%;
    }
    .icon-bars-div{
        position: relative;
        top: 4px;
    }
    .nav-menu-link,.nav-menu-content{
        padding: 5px 15px;
    }
    .nav-menu-link:not(:last-child){
        border-bottom: 1px solid white;
    }
    .nav-menu-content{
        border-top: 1px solid white;
    }
    .register-link,.register-link:hover{
        color: rgb(33 52 96) !important;
        display: flex !important;
        align-items: center;
    }
    .dropdown{position: relative;}
    .dropdown-arrow:after{
        content: "";
        display: inline-block;
        border: solid rgb(255 255 255);
        border-width: 0 2px 2px 0;
        padding: 2px;
        position: absolute;
        top: 22px;
        left:89%;
        transform: rotate(45deg);
    }
    .dropdown-arrow.active:after{
        transform: rotate(225deg);
    }
    .overlay::-webkit-scrollbar {
        width: 0 !important
    }
    .overlay {
        -ms-overflow-style: none !important;

    }
    .overlay{
        -ms-overflow-style: none;
    }
    .flex-100{display:none;}
    .padding-r-0{padding-right: 0;}
    .padding-l-0{padding-left: 0;}
    .section-title{font-size: 35px;}
    .line-icon {width: 75%;}
    .muntada-title{
        font-size: 40px;
        margin: 0 15px;
    }
    .muntada-time{font-size: 21px;}
    .guest-position{margin: 0 5px;}
    .more-link {
        font-size: 20px;
        padding: 6px 30px;
    }
    .goals-video-div{
        width: 95px;
        height: 95px;
    }
    .play-video-link, .play-video-link:hover{font-size: 33px;}
    .days, .hours, .minutes, .seconds{font-size: 45px;}
    .time-text{font-size: 19px;}
    .clock-sub-div:not(:first-child){margin-right: 0;}
    .footer-text{width: 100%;}
    .main-footer-links{
        display: block;
    }
    .copyright-text{
        font-size: 15px;
        display:block;
    }
    .copyright-by, .copyright-by:hover{font-size: 15px;}
    .about-title,.about-time,.about-muntada{
        font-size: 30px;
    }
    .about-muntada-text{
        font-size: 20px;
    }
    .about-title,.about-text,.about-subtitle,.about-ul li,.about-muntada-text,.about-modawena-ul li{
        text-align: center;
    }
    .col-margin-right{
        margin-right: 0;
    }
    .trainers-inside-div{
        position: unset;
    }
    .session-title,.session-text{text-align: center;}
    .session-icon,.session-time{font-size: 24px;}
    .session-org-title{
        font-size: 24px;
        align-items: center;
    }
    .session-org-title:before {
        height: 40px;
    }
    .nav-muntada .muntada-tabs {
        width: 270px;
        height: 110px;
        margin-top: 10px;
    }
    .muntada-table th{
        font-size: 16px;
    }
    .muntada-table td, .muntada-table td a{
        font-size: 16px;
    }
    .muntada-person-link {
        width: 45% !important;
    }
    .question-my{margin-top: 55px;}
    .question-div:not(:first-child){
        margin-top: 25px;
    }
    .question-box-div {
        padding: 7px 24px;
    }
    .question-title {
        font-size: 22px;
        line-height: 40px;
    }
    .question-title:before {
        height: 26px;
        width: 13px;
        border-bottom: 4px solid rgb(33 52 96);
        border-right: 4px solid rgb(33 52 96);
        position: relative;
        top: 5px;
    }
    .question-text{margin-bottom: 0;}
    .person-link{
        flex: 0 0 30%;
    }
    .person-name{
        font-size: 20px;
    }
    .goals-ul p{
        text-align: left;
    }
    .activity-link, .activity-link:focus {
        height: 90px;
        line-height: 18px;
    }
    .committee-img-popup-div,.committee-img-popup-div img{
        border-radius: 20px 20px 0 0;
        height: unset;
    }
    .committee-details-popup{
        background-color: white !important;
        border-radius: 0 0 20px 20px;
    }
    .scroll-committee-content{
        height: 250px;
    }
    .committee-modal{
        top: 8%;
    }
    .committee-details-text{
        line-height: 2em;
        max-height: 150px;
    }
    .committee-modal-dialog{
        min-height: auto !important;
    }
    .container-menu-div{
        justify-content: end !important;
    }
    .mr-0{
        margin-left: 0 !important;
    }
}
/* End All Media Query (900px) */
