/********** Template CSS **********/
:root {
--primary: #009CFF;
--secondary: #777777;
--light: #F8F8F8;
--dark: #252525;
}

.back-to-top {
position: fixed;
display: none;
right: 30px;
bottom: 30px;
z-index: 99;
}


/*** Spinner ***/
#spinner {
opacity: 0;
visibility: hidden;
transition: opacity .5s ease-out, visibility 0s linear .5s;
z-index: 99999;
}

#spinner.show {
transition: opacity .5s ease-out, visibility 0s linear 0s;
visibility: visible;
opacity: 1;
}


/*** Button ***/
.btn {
font-weight: 500;
transition: .5s;
}

.btn.btn-primary {
color: #FFFFFF;
}

.btn-square {
width: 38px;
height: 38px;
}

.btn-sm-square {
width: 32px;
height: 32px;
}

.btn-lg-square {
width: 48px;
height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
border: none;
content: "\f107";
font-family: "Font Awesome 5 Free";
font-weight: 900;
vertical-align: middle;
margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
margin-right: 30px;
padding: 20px 0 0px 0;
color: #20327c;
font-weight: 500;
outline: none;
font-size: 1.0rem;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
color: rgb(0, 20, 81);
font-weight: 800;
}

.navbar.sticky-top {
top: -100px;
transition: .5s;
}

@media (max-width: 991.98px) {
.navbar .navbar-nav .nav-link {
margin-right: 0;
padding: 8px 0;
}

.navbar .navbar-nav {
margin-top: 8px;
border-top: 1px solid rgba(256, 256, 256, .1)
}
}

@media (min-width: 992px) {
.navbar .nav-item .dropdown-menu {
display: block;
visibility: hidden;
top: 100%;
transform: rotateX(-75deg);
transform-origin: 0% 0%;
transition: .5s;
opacity: 0;
}

.navbar .nav-item:hover .dropdown-menu {
transform: rotateX(0deg);
visibility: visible;
transition: .5s;
opacity: 1;
}
}


/*** Header ***/
#header-carousel .carousel-caption {
top: -15%;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
text-align: left;
justify-content: center;
z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
width: 3rem;
height: 3rem;
}

@media (max-width: 768px) {
#header-carousel .carousel-item {
position: relative;
min-height: 500px;
}

#header-carousel .carousel-item img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
background: rgba(0, 0, 0, .4);
}
}

#header-carousel .carousel-indicators [data-bs-target] {
width: 60px;
height: 60px;
text-indent: 0;
margin-bottom: 15px;
border: 2px solid #FFFFFF;
border-radius: 60px;
overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
width: 100%;
height: 100%;
object-fit: cover;
}

.page-header {
background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
color: var(--secondary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
color: var(--light);
}


/*** Section Title ***/
.section-title {
position: relative;
display: inline-block;
text-transform: uppercase;
}

.section-title::before {
position: absolute;
content: "";
width: calc(100% + 80px);
height: 2px;
top: 4px;
left: -40px;
background: var(--primary);
z-index: -1;
}

.section-title::after {
position: absolute;
content: "";
width: calc(100% + 120px);
height: 2px;
bottom: 4px;
left: -60px;
background: var(--primary);
z-index: -1;
}

.section-title.text-start::before {
width: calc(100% + 40px);
left: 0;
}

.section-title.text-start::after {
width: calc(100% + 60px);
left: 0;
}

.speaker-desc
{
    min-height: 50px;;
}
/*** Img Border ***/
.img-border {
position: relative;
height: 100%;
min-height: 400px;
}

.img-border::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 3rem;
bottom: 3rem;
border: 5px solid var(--primary);
border-radius: 6px;
}

.img-border img {
position: absolute;
top: 3rem;
left: 3rem;
width: calc(100% - 3rem);
height: calc(100% - 3rem);
object-fit: cover;
border-radius: 6px;
}


/*** Facts ***/
.fact-item {
transition: .5s;
}

.fact-item:hover {
margin-top: -10px;
background: #FFFFFF !important;
box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
box-shadow: 0 0 45px rgba(0, 0, 0, .07);
border: 1px solid transparent;
transition: .5s;
}

.service-item:hover {
margin-top: -10px;
box-shadow: none;
border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
height: 5px;
}

.progress .progress-bar {
width: 0px;
transition: 3s;
}


/*** Project ***/
.project-item a {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
color: #FFFFFF;
background: rgba(0, 0, 0, .5);
border-radius: 6px;
opacity: 0;
transition: .5s;
}

.project-item:hover a {
opacity: 1;
}

.project-carousel .owl-dots {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-top: 20px;
}

.project-carousel .owl-dot {
width: 35px;
height: 35px;
margin: 3px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #DEE2E6;
border-radius: 35px;
transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
color: #FFFFFF;
border-color: var(--primary);
background: var(--primary);
}


/*** Team ***/
.team-item {
box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
position: relative;
height: 65px;
overflow: hidden;
}

.team-item .team-title {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: .5s;
}

.team-item:hover .team-title {
top: -65px;
}

.team-item .team-social {
position: absolute;
width: 100%;
height: 100%;
top: 65px;
left: 0;
display: flex;
align-items: center;
justify-content: center;
background: #FFFFFF;
transition: .5s;
}

.team-item .team-social .btn {
margin: 0 3px;
}

.team-item:hover .team-social {
top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
width: 160px;
height: 160px;
border:1px solid #09AEC1;
border-radius: 20px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
transition: .5s;
text-align: center;
}

.testimonial-carousel .owl-item.center .testimonial-item {


}

.testimonial-carousel .owl-item.center .testimonial-item img {
width: 347.333px;
height: 250px;
border:1px solid #09AEC1;
border-radius: 20px;

}

.testimonial-carousel .owl-item.center .testimonial-item * {
color: rgb(0, 20, 81) !important;
text-align: center;
}

.testimonial-carousel .owl-nav {
margin-top: 30px;
display: flex;
justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
margin: 0 12px;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #DEE2E6;
border-radius: 50px;
font-size: 18px;
transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
color: #FFFFFF;
border-color: var(--primary);
background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
display: block;
margin-bottom: 5px;
padding: 0;
text-align: left;
color: var(--secondary);
font-weight: normal;
text-transform: capitalize;
transition: .3s;
}

.footer .btn.btn-link::before {
position: relative;
content: "\f105";
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: var(--secondary);
margin-right: 10px;
}

.footer .btn.btn-link:hover {
color: var(--primary);
letter-spacing: 1px;
box-shadow: none;
}

.footer .copyright {
padding: 25px 0;
font-size: 15px;
border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
color: var(--light);
}

.footer .copyright a:hover {
color: var(--primary);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6
{
color: #fff;
/* font-family: 'SST-Arabic-Roman'!important; */
}

.header__right-pulse {
  display: flex;
  text-transform: uppercase;
}
.header__right-pulse:after {
  content: "";
  flex: 1;
  margin-right: 1rem;
  background-image: url(../images/header-line.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

.header__right-pulse-en {
    display: flex;
    text-transform: uppercase;
  }
  .header__right-pulse-en:after {
    content: "";
    flex: 1;
    margin-left: 1rem;
    background-image: url(../images/header-line.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
  }


.bg-cont1 {
background-image: url(../images/banner.png);
background-repeat: no-repeat;
background-position: top center;
background-size:cover;
height: 600px!important;
max-height: 611px;;
margin-top: -5%;
border-radius: 25px;


}
.bg-cont-programme {
background-image: url(../images/banner-programme.png);
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
margin-top: -5%;
border-radius: 30px;;


}

.bg-cont-ebtekar {
background: radial-gradient(circle, rgba(0,134,146,1) 0%, rgba(0,181,198,1) 100%);
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
margin-top: -5%;
border-radius: 30px;;


}

.bg-cont-media {
background: rgb(106,110,113);
background: radial-gradient(circle, rgba(106,110,113,1) 0%, rgba(156,157,161,1) 100%);
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
margin-top: -5%;
border-radius: 30px;;


}


.bg-cont-partener
{

background: rgb(106,110,113);
background: radial-gradient(circle, rgba(0,20,81,1) 0%,rgba(17,106,174,1)  100%);
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
margin-top: -5%;
border-radius: 30px;;
}


.bg-cont-registration {
    background-image: url(../images/banner-registration.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: -5%;
    border-radius: 30px;;


    }

.schedTab
{
    border-bottom: 1px solid rgba(0,0,0,0.4) !important;
color: #20327c;
font-size: 1.2rem;
font-weight: 600;
}

.slick-intro-black
{
border-bottom: 1px solid rgba(0,0,0,0.4) !important;
min-height:100px;
padding:25px;
color:rgba(0,0,0,0.4) !important;
margin-top: 15px;
align-items: center;

}

.btn-image
{
    border-radius: 16px;
    -webkit-box-shadow: 6px 6px 9px -3px rgba(0,0,0,0.49);
    -moz-box-shadow: 6px 6px 9px -3px rgba(0,0,0,0.49);
    box-shadow: 6px 6px 9px -3px rgba(0,0,0,0.49);
}
option {
    color: #009CFF!important;

}
.section1
{
background: url("../images/pattern-section1.png") no-repeat top center , linear-gradient( rgba(17,106,174,1) 0%,
rgba(0,20,81,1) 100%);
border-radius: 20px;
background-size: 100% ;

}

.section2
{
background: url("../images/pattern-section2.png") no-repeat center left , radial-gradient(circle, rgba(0,134,146,1) 0%,
rgba(0,181,198,1) 100%);
background-size: 30%;
padding-top: 5%;
padding-bottom: 5%;
}

.section3
{

background-image: url("../images/pattern-section3.png") , radial-gradient(circle, rgba(236, 236, 236,1) 0%,
rgba(236, 236, 236,1) 100%) ;
background-position: center top;
background-repeat: no-repeat, no-repeat;
background-size:cover;
padding-top: 5%;
padding-bottom: 5%;
}

.section3-en
{

background-image: url("../images/pattern-section3-en.png") , radial-gradient(circle, rgba(236, 236, 236,1) 0%,
rgba(236, 236, 236,1) 100%) ;
background-position: center top;
background-repeat: no-repeat, no-repeat;
background-size:cover;
padding-top: 5%;
padding-bottom: 5%;
}

.section4
{

background: url("../images/pattern-section1.png") no-repeat top center , linear-gradient( rgba(17,106,174,1) 0%,
rgba(0,20,81,1) 100%);
background-size: 100%;
padding-top: 5%;
padding-bottom: 5%;
}

.section5
{
padding: 15px;
background: rgb(17,104,173);
background: radial-gradient(circle, rgba(17,104,173,1) 0%, rgba(2,24,81,1) 100%);
border-top:1px solid #009CFF;
border-bottom:1px solid #009CFF;
}

.section-programme
{
background: url("../images/pattern-section-programme.png") no-repeat top center , radial-gradient(circle, rgba(222, 223,
225,1) 0%,
rgba(222, 223, 225,1) 100%) ;
border-radius: 20px;
background-size: 100% ;
min-height: 80vh;

}

.section-media
{
background: url("../images/pattern-section-programme.png") no-repeat top center , radial-gradient(circle, rgba(222, 222,
222,1) 0%, rgba(222,222,222,1) 100%) ;
border-radius: 20px;
background-size: 100% ;
min-height: 80vh;

}

.section-partener
{
    background: url("../images/pattern-section1.png") no-repeat top center , linear-gradient( rgba(17,106,174,1) 0%,
    rgba(0,20,81,1) 100%);
    border-radius: 20px;
    background-size: 100% ;
}


.section-ebtekar
{
background: url("../images/pattern-section-ebtekar.png") no-repeat center left , radial-gradient(circle,
rgba(0,134,146,1) 0%,
rgba(0,181,198,1) 100%);
background-size: 100%;
border-radius: 20px;
padding-bottom: 5%;
}

.separetorhight {
height: 261px !important;;
}


.counterback {
color: #09AEC1 !important;
max-width: 50px;
font-size: 2rem;
}

.counterback h1 {
font-size: 4rem;
}

.counterseprator {
width: 10%
}

.header {
padding-top: 10%;
color: #20327c
}
.logo-m {
max-width: 230px;
}
.div-goals
{

background-image: url(../images/circle.png);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
height: 250px;
margin: 15px;


}

.div-goals-en
{

background-image: url(../images/circle.png);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
height: 300px;
margin: 15px;


}

.padding-top-goals
{
    padding-top: 1px;
}

.info-div
{
background-color: #fff;
border-radius: 20px;
text-align: center;
padding: 40px;
color: #20327c;
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
}
.info-div p{
padding-top: 20px;
font-weight: bold;
color: #20327c;
}
.info-div img
{
width: 60px !important;
height: 72px;

}

.speaker-div
{
margin-top: 5%;
border-radius: 25px;
background: rgb(2,0,36);
background: linear-gradient(90deg, rgb(0, 61, 130) 0%, rgba(4, 77, 145) 35%, rgba(11, 118, 177) 100%);
border: 1px solid #09AEC1;
}

.sponser-div
{
background-color: #fff;
border-radius: 20px;
text-align: center;
padding: 20px;
margin: 15px;
min-height: 150px;
color: #20327c;
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);

}

.news-div{

margin-top: 5%;
border-radius: 15px;
background: rgb(188,191,192);
background: linear-gradient(90deg, rgba(188,191,192,1) 35%, rgba(140,144,147,1) 100%);


}
.bottom-margin
{
margin-bottom: -15%;
}

.top-margin
{

margin-top: 16%;
}


@media only screen and (max-width: 1199px) {
.bg-cont1 {
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size:cover;
    height: 560px!important;
    max-height: 611px;;
    margin-top: -5%;
    border-radius: 25px;


    }
}



@media only screen and (max-width: 540px) {
.bottom-margin
{
margin-bottom: -15%;
}

.top-margin
{

margin-top: 16%;
}
.separetorhight {
height: 1.4vh!important;
}

.bg-cont1 {
background-image: url(../images/banner.png);
background-repeat: no-repeat;
background-position: top center;
background-size: 150%;
margin-top: -5%;
border-radius: 20px;
height: 250px !important;
max-height: 250px !important;


}

.counterback h1
{
font-size: 2rem;
}
.counterback
{
font-size: 1.2rem;
}

.div-goals
{

background-image: url(../images/circle.png);
background-repeat: no-repeat;
background-position: 100px 100px;
background-size: 45%;
height: 265px;
margin: 15px;


}

.div-goals-en
{

background-image: url(../images/circle.png);
background-repeat: no-repeat;
background-position: 75px 115px;
background-size: 44%;
height: 300px;
margin: 15px;


}

.arrow-top-m
{
    width: 45% !important;
}

.arrow-bottom-m-right
{
    float: right;
    width:45% !important;
}

.arrow-bottom-m-left
{
    float: left;
    width:45% !important;
}

.padding-top-goals
{
    padding-top: 25px;
}



.info-div
{
background-color: #fff;
border-radius: 20px;
text-align: center;
color: #20327c;
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
min-height: 125px;
padding: 20px 6px;

}
.info-div p{
padding-top: 5px;
font-weight: bold;
color: #20327c;
font-size: 0.45rem;
}
.info-div img
{
width: 40px !important;
height: 50px;

}


.counter-text
{

    font-size: 0.6rem!important;
}

h6, .h6 {
    font-size: 0.8rem;
}

.btn-m-footer{
  width:100px;
}

.logo-m-footer
{
    width:140px;
    padding-top: 15px;
    padding-bottom: 30%;
    margin-left: 0px;

}

.text-m-footer
{

    font-size: 50%;
}

.speaker-desc
{
    min-height: 30px;
}


}


ol {
list-style: none;
overflow: hidden;
counter-reset: numList;
}

ol li {
padding: 5% 2%;
font-size: 14pt;
position: relative
}

ol li:before {
counter-increment: numList;
content: counter(numList);
float: left;
font-size: 16pt !important;
font-weight: 100 !important;
position: absolute;
left: -26px;
font: bold 12px sans-serif;
text-align: center;
color: #777777;
line-height: 28px;
width: 30px;
height: 30px;
border: 1px solid rgba(0, 0, 0, .5);
background: #fff;
-moz-border-radius: 999px;
border-radius: 999px
}

.greencontainer {
background-image: url('../images/back.png');
background-size: 100%;
padding: 6%;
color: #fff;
}

.greencontainer h2 {
color: #fff;
font-weight: 100 !important;
}

.airplanecontainer {
background-image: url('../images/plane.png');
background-size: 100%;
background-repeat: no-repeat;
}


.pull-left {
float: left
}



.pull-right {
float: right
}



.outline {
color: white;
}
.gradiant-bg
{
    background: linear-gradient(115deg, rgba(46,70,143,1) 0%, rgba(38,117,175,1) 100%);
}

.transparent-bg
{

    background:rgba(0,0,0,0.6);

}

@media (max-width: 1199px) and (min-width: 540px)
{

    .info-div
{
background-color: #fff;
border-radius: 20px;
text-align: center;
padding: 40px;
min-height: 230px;;
color: #20327c;
-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
}
.info-div p{
padding-top: 20px;
font-weight: bold;
color: #20327c;
}
.info-div img
{
width: 60px !important;
height: 72px;

}


}

.card-image-partners{
  text-align:center;
  height: 150px;
  width: 100%important;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image-partners .card-img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

